blob: 32ff39ac3f68b6937d66f61b8f531a69030b0a7a [file] [log] [blame]
Dave Barachac0326f2020-07-14 18:30:05 -04001# Copyright (c) 2018-2020 Cisco and/or its affiliates.
Damjan Marion612dd6a2018-07-30 12:45:07 +02002# 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
Damjan Marion4553c952018-08-26 11:04:40 +020014unset(VNET_SOURCES)
15unset(VNET_HEADERS)
16unset(VNET_API_FILES)
17unset(VNET_MULTIARCH_SOURCES)
18
Neale Rannsa70b0152021-08-10 14:37:11 +000019option(VPP_IP_FIB_MTRIE_16 "IP FIB's MTRIE Stride is 16-8-8 (if not set it's 8-8-8-8)" ON)
20
Damjan Marion4553c952018-08-26 11:04:40 +020021##############################################################################
22# Generic stuff
23##############################################################################
24list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +020025 buffer.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020026 config.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020027 devices/devices.c
28 devices/netlink.c
Damjan Marion81bb6fc2022-01-16 22:47:55 +010029 error.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020030 flow/flow.c
31 flow/flow_cli.c
Chenmin Sund0236f72020-07-27 17:54:40 +080032 flow/flow_api.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020033 handoff.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020034 interface.c
Damjan Marion4553c952018-08-26 11:04:40 +020035 interface_api.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020036 interface_cli.c
37 interface_format.c
38 interface_output.c
Damjan Mariond4f88cc2022-01-05 01:52:38 +010039 interface/caps.c
Damjan Marion94100532020-11-06 23:25:57 +010040 interface/rx_queue.c
Damjan Marion1bd6cbb2021-04-15 13:12:51 +020041 interface/tx_queue.c
Damjan Marion94100532020-11-06 23:25:57 +010042 interface/runtime.c
Nathan Skrzypczak162ff5e2021-11-09 18:18:21 +010043 interface/monitor.c
Damjan Marion8973b072022-03-01 15:51:18 +010044 interface/stats.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020045 interface_stats.c
Damjan Marion4553c952018-08-26 11:04:40 +020046 misc.c
Damjan Marion4553c952018-08-26 11:04:40 +020047)
48
Filip Tehlar62668772019-03-04 03:33:32 -080049list(APPEND VNET_MULTIARCH_SOURCES
50 interface_output.c
51 interface_stats.c
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -070052 handoff.c
Filip Tehlar62668772019-03-04 03:33:32 -080053)
54
Damjan Marion4553c952018-08-26 11:04:40 +020055list(APPEND VNET_HEADERS
56 api_errno.h
Damjan Marion81bb6fc2022-01-16 22:47:55 +010057 error.h
Damjan Marion4553c952018-08-26 11:04:40 +020058 buffer.h
59 config.h
60 devices/devices.h
61 devices/netlink.h
62 flow/flow.h
63 global_funcs.h
Damjan Marion94100532020-11-06 23:25:57 +010064 interface/rx_queue_funcs.h
Damjan Marion1bd6cbb2021-04-15 13:12:51 +020065 interface/tx_queue_funcs.h
Damjan Marion4553c952018-08-26 11:04:40 +020066 interface.h
67 interface_funcs.h
Dave Barach1bd2c012020-04-12 08:31:39 -040068 interface_output.h
Damjan Marion4553c952018-08-26 11:04:40 +020069 ip/ip4_to_ip6.h
70 ip/ip6_to_ip4.h
Benoît Ganne09267f72019-05-17 14:24:17 +020071 ip/ip_types_api.h
Damjan Marion4553c952018-08-26 11:04:40 +020072 l3_types.h
73 plugin/plugin.h
74 pipeline.h
Damjan Marion4553c952018-08-26 11:04:40 +020075 vnet.h
Damjan Marion4553c952018-08-26 11:04:40 +020076 util/radix.h
77 util/refcount.h
IJsbrand Wijnands724c8052020-03-05 11:29:23 -080078 format_fns.h
79 ip/ip_format_fns.h
Ole Troan8034a362021-08-11 13:54:14 +020080 ip/ip_sas.h
IJsbrand Wijnands724c8052020-03-05 11:29:23 -080081 ethernet/ethernet_format_fns.h
Mohammed Hawari6da37692021-08-16 14:37:21 +020082 ethernet/ethernet_types_api.h
Damjan Marion4553c952018-08-26 11:04:40 +020083)
84
Benoît Ganne09267f72019-05-17 14:24:17 +020085list(APPEND VNET_API_FILES
86 interface.api
Benoît Ganned39495d2019-07-25 14:14:03 +020087 interface_types.api
Benoît Ganne09267f72019-05-17 14:24:17 +020088 ip/ip_types.api
Chenmin Sund0236f72020-07-27 17:54:40 +080089 flow/flow_types.api
90 flow/flow.api
Benoît Ganne09267f72019-05-17 14:24:17 +020091)
Damjan Marion4553c952018-08-26 11:04:40 +020092
93##############################################################################
94# Policer infra
95##############################################################################
96list(APPEND VNET_SOURCES
97 policer/node_funcs.c
98 policer/policer.c
99 policer/xlate.c
100 policer/policer_api.c
101)
102
Filip Tehlar30d93482019-03-06 04:28:32 -0800103list(APPEND VNET_MULTIARCH_SOURCES
104 policer/node_funcs.c
105)
106
Damjan Marion4553c952018-08-26 11:04:40 +0200107list(APPEND VNET_HEADERS
108 policer/police.h
109 policer/policer.h
110 policer/xlate.h
111)
112
Jakub Grajciarcd01fb42020-03-02 13:16:53 +0100113list(APPEND VNET_API_FILES
114 policer/policer.api
115 policer/policer_types.api
116)
Damjan Marion4553c952018-08-26 11:04:40 +0200117
118##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200119# Layer 2 protocols go here
120##############################################################################
121
122##############################################################################
123# Layer 2 protocol: Ethernet
124##############################################################################
125list(APPEND VNET_SOURCES
Neale Rannscbe25aa2019-09-30 10:53:31 +0000126 ethernet/arp_packet.c
Neale Rannsde5b08f2018-08-29 06:37:18 -0700127 ethernet/ethernet_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200128 ethernet/format.c
129 ethernet/init.c
130 ethernet/interface.c
Neale Rannsde5b08f2018-08-29 06:37:18 -0700131 ethernet/mac_address.c
Damjan Marion4553c952018-08-26 11:04:40 +0200132 ethernet/node.c
133 ethernet/pg.c
134 ethernet/sfp.c
135 ethernet/p2p_ethernet.c
136 ethernet/p2p_ethernet_input.c
137 ethernet/p2p_ethernet_api.c
138)
139
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -0700140list(APPEND VNET_MULTIARCH_SOURCES
141 ethernet/node.c
142 ethernet/p2p_ethernet_input.c
143)
Damjan Marion4553c952018-08-26 11:04:40 +0200144
145list(APPEND VNET_HEADERS
146 ethernet/error.def
147 ethernet/ethernet.h
Jon Loeliger330bf932018-11-28 13:51:42 -0600148 ethernet/mac_address.h
Damjan Marion4553c952018-08-26 11:04:40 +0200149 ethernet/packet.h
150 ethernet/types.def
151 ethernet/sfp.h
152 ethernet/p2p_ethernet.h
Neale Rannscbe25aa2019-09-30 10:53:31 +0000153 ethernet/arp_packet.h
Damjan Marion4553c952018-08-26 11:04:40 +0200154)
155
Benoît Ganned39495d2019-07-25 14:14:03 +0200156list(APPEND VNET_API_FILES
157 ethernet/p2p_ethernet.api
158 ethernet/ethernet_types.api)
Damjan Marion4553c952018-08-26 11:04:40 +0200159
160##############################################################################
161# Layer 2 protocol: Ethernet bridging
162##############################################################################
163list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200164 l2/feat_bitmap.c
165 l2/l2_api.c
Neale Rannscbe25aa2019-09-30 10:53:31 +0000166 l2/l2_arp_term.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200167 l2/l2_bd.c
168 l2/l2_bvi.c
Neale Ranns192b13f2019-03-15 02:16:20 -0700169 l2/l2_bvi_node.c
Damjan Marion4553c952018-08-26 11:04:40 +0200170 l2/l2_input_classify.c
171 l2/l2_output_classify.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200172 l2/l2_efp_filter.c
173 l2/l2_fib.c
174 l2/l2_flood.c
175 l2/l2_fwd.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200176 l2/l2_input.c
Neale Ranns47a3d992020-09-29 15:38:51 +0000177 l2/l2_input_node.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200178 l2/l2_input_vtr.c
179 l2/l2_learn.c
180 l2/l2_output.c
Damjan Marion4553c952018-08-26 11:04:40 +0200181 l2/l2_in_out_acl.c
Andrew Yourtchenkoa23cade2018-10-06 09:18:00 +0200182 l2/l2_in_out_feat_arc.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200183 l2/l2_patch.c
184 l2/l2_rw.c
Neale Rannsb4743802018-09-05 09:13:57 -0700185 l2/l2_uu_fwd.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200186 l2/l2_vtr.c
187 l2/l2_xcrw.c
Damjan Marion4553c952018-08-26 11:04:40 +0200188)
189
Neale Rannsc25eb452018-09-12 06:53:03 -0400190list(APPEND VNET_MULTIARCH_SOURCES
Neale Ranns192b13f2019-03-15 02:16:20 -0700191 l2/l2_bvi_node.c
Neale Rannsc25eb452018-09-12 06:53:03 -0400192 l2/l2_fwd.c
193 l2/l2_learn.c
194 l2/l2_output.c
Damjan Marionc3baf622018-11-06 13:33:27 +0100195 l2/l2_patch.c
Filip Tehlar44f0f712019-03-11 04:26:37 -0700196 l2/l2_in_out_feat_arc.c
197 l2/l2_input_classify.c
Neale Ranns47a3d992020-09-29 15:38:51 +0000198 l2/l2_input_node.c
Filip Tehlar44f0f712019-03-11 04:26:37 -0700199 l2/l2_output_classify.c
200 l2/l2_flood.c
201 l2/l2_uu_fwd.c
202 l2/l2_efp_filter.c
203 l2/l2_rw.c
204 l2/l2_xcrw.c
205 l2/l2_in_out_acl.c
206 l2/l2_input_vtr.c
Neale Rannsc25eb452018-09-12 06:53:03 -0400207)
Neale Rannseb1525f2018-09-09 04:41:02 -0400208
Damjan Marion4553c952018-08-26 11:04:40 +0200209list(APPEND VNET_HEADERS
210 l2/feat_bitmap.h
211 l2/l2_input.h
212 l2/l2_output.h
213 l2/l2_vtr.h
214 l2/l2_input_vtr.h
215 l2/l2_efp_filter.h
216 l2/l2_fwd.h
217 l2/l2_bd.h
218 l2/l2_bvi.h
219 l2/l2_flood.h
220 l2/l2_fib.h
221 l2/l2_rw.h
222 l2/l2_xcrw.h
223 l2/l2_classify.h
224)
225
226list(APPEND VNET_API_FILES l2/l2.api)
227
228##############################################################################
229# Layer 2 protocol: SRP
230##############################################################################
231list(APPEND VNET_SOURCES
232 srp/format.c
233 srp/interface.c
234 srp/node.c
235 srp/pg.c
236)
237
238list(APPEND VNET_HEADERS
239 srp/packet.h
240 srp/srp.h
241)
242
243##############################################################################
244# Layer 2 protocol: PPP
245##############################################################################
246list(APPEND VNET_SOURCES
247 ppp/node.c
248 ppp/pg.c
249 ppp/ppp.c
250)
251
252list(APPEND VNET_HEADERS
253 ppp/error.def
254 ppp/ppp.h
255 ppp/packet.h
256)
257
258##############################################################################
259# Layer 2 protocol: HDLC
260##############################################################################
261list(APPEND VNET_SOURCES
262 hdlc/node.c
263 hdlc/pg.c
264 hdlc/hdlc.c
265)
266
267list(APPEND VNET_HEADERS
268 hdlc/error.def
269 hdlc/hdlc.h
270 hdlc/packet.h
271)
272
273##############################################################################
274# Layer 2 protocol: LLC
275##############################################################################
276list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200277 llc/llc.c
278 llc/node.c
279 llc/pg.c
Damjan Marion4553c952018-08-26 11:04:40 +0200280)
281
282list(APPEND VNET_HEADERS
283 llc/llc.h
284)
285
286##############################################################################
287# Layer 2 protocol: SNAP
288##############################################################################
289list(APPEND VNET_SOURCES
290 snap/snap.c
291 snap/node.c
292 snap/pg.c
293)
294
295list(APPEND VNET_HEADERS
296 snap/snap.h
297)
298
299##############################################################################
300# Layer 2 / vxlan
301##############################################################################
302list(APPEND VNET_SOURCES
303 vxlan/vxlan.c
304 vxlan/encap.c
305 vxlan/decap.c
306 vxlan/vxlan_api.c
307)
308
Filip Tehlare1714d32019-03-05 03:01:43 -0800309list(APPEND VNET_MULTIARCH_SOURCES
310 vxlan/encap.c
311)
312
Damjan Marion4553c952018-08-26 11:04:40 +0200313list(APPEND VNET_HEADERS
314 vxlan/vxlan.h
315 vxlan/vxlan_packet.h
316 vxlan/vxlan_error.def
317)
318
Eyal Baria5679e82018-08-26 15:20:07 +0300319list(APPEND VNET_MULTIARCH_SOURCES vxlan/decap.c)
320
Damjan Marion4553c952018-08-26 11:04:40 +0200321list(APPEND VNET_API_FILES vxlan/vxlan.api)
322
323##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200324# Layer 2 / Bonding
325##############################################################################
326list(APPEND VNET_SOURCES
327 bonding/cli.c
328 bonding/node.c
329 bonding/device.c
330 bonding/bond_api.c
331)
332
333list(APPEND VNET_HEADERS
334 bonding/node.h
335)
336
Damjan Marioncefe1342018-09-21 18:11:33 +0200337list(APPEND VNET_MULTIARCH_SOURCES bonding/node.c bonding/device.c)
Damjan Marion4553c952018-08-26 11:04:40 +0200338list(APPEND VNET_API_FILES bonding/bond.api)
339
340##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200341# Layer 2/3 "classify"
342##############################################################################
343list(APPEND VNET_SOURCES
344 classify/vnet_classify.c
Dave Barach9137e542019-09-13 17:47:50 -0400345 classify/trace_classify.h
Damjan Marion4553c952018-08-26 11:04:40 +0200346 classify/ip_classify.c
347 classify/in_out_acl.c
348 classify/policer_classify.c
349 classify/flow_classify.c
350 classify/flow_classify_node.c
351 classify/vnet_classify.h
352 classify/classify_api.c
353)
354
Filip Tehlare8cb5212019-03-06 04:50:34 -0800355list(APPEND VNET_MULTIARCH_SOURCES
356 classify/ip_classify.c
357 classify/flow_classify_node.c
358)
359
Damjan Marion4553c952018-08-26 11:04:40 +0200360list(APPEND VNET_HEADERS
361 classify/vnet_classify.h
Dave Barach9137e542019-09-13 17:47:50 -0400362 classify/trace_classify.h
Damjan Marion4553c952018-08-26 11:04:40 +0200363 classify/in_out_acl.h
364 classify/policer_classify.h
365 classify/flow_classify.h
366)
367
368list(APPEND VNET_API_FILES classify/classify.api)
369
370##############################################################################
371# Layer 3 protocols go here
372##############################################################################
373
374##############################################################################
375# Layer 3 protocol: IP v4/v6
376##############################################################################
377list(APPEND VNET_SOURCES
378 ip/format.c
379 ip/icmp4.c
380 ip/icmp6.c
381 ip/ip46_cli.c
382 ip/ip_types_api.c
Neale Rannscbe25aa2019-09-30 10:53:31 +0000383 ip/ip46_address.c
Damjan Marion4553c952018-08-26 11:04:40 +0200384 ip/ip4_format.c
385 ip/ip4_forward.c
386 ip/ip4_punt_drop.c
387 ip/ip4_input.c
388 ip/ip4_options.c
389 ip/ip4_mtrie.c
390 ip/ip4_pg.c
391 ip/ip4_source_and_port_range_check.c
Klement Sekera896c8962019-06-24 11:52:49 +0000392 ip/reass/ip4_full_reass.c
Klement Sekerade34c352019-06-25 11:19:22 +0000393 ip/reass/ip4_sv_reass.c
Damjan Marion4553c952018-08-26 11:04:40 +0200394 ip/ip6_format.c
395 ip/ip6_forward.c
396 ip/ip6_ll_table.c
397 ip/ip6_ll_types.c
398 ip/ip6_punt_drop.c
399 ip/ip6_hop_by_hop.c
400 ip/ip6_input.c
Neale Rannscbe25aa2019-09-30 10:53:31 +0000401 ip/ip6_link.c
Damjan Marion4553c952018-08-26 11:04:40 +0200402 ip/ip6_pg.c
Klement Sekera896c8962019-06-24 11:52:49 +0000403 ip/reass/ip6_full_reass.c
Klement Sekerade34c352019-06-25 11:19:22 +0000404 ip/reass/ip6_sv_reass.c
Damjan Marion4553c952018-08-26 11:04:40 +0200405 ip/ip_api.c
406 ip/ip_checksum.c
Neale Rannse4031132020-10-26 13:00:06 +0000407 ip/ip_container_proxy.c
Damjan Marion4553c952018-08-26 11:04:40 +0200408 ip/ip_frag.c
409 ip/ip.c
Neale Ranns59f71132020-04-08 12:19:38 +0000410 ip/ip_interface.c
Damjan Marion4553c952018-08-26 11:04:40 +0200411 ip/ip_init.c
412 ip/ip_in_out_acl.c
Neale Ranns8f5fef22020-12-21 08:29:34 +0000413 ip/ip_path_mtu.c
414 ip/ip_path_mtu_node.c
Neale Ranns92207752019-06-03 13:21:40 +0000415 ip/ip_punt_drop.c
Neale Rannsea93e482019-11-12 17:16:47 +0000416 ip/ip_types.c
Damjan Marion4553c952018-08-26 11:04:40 +0200417 ip/lookup.c
Damjan Marion4553c952018-08-26 11:04:40 +0200418 ip/punt_api.c
419 ip/punt.c
Neale Ranns50f0ac02019-05-15 02:13:37 -0700420 ip/punt_node.c
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000421 ip/vtep.c
Ole Troan8034a362021-08-11 13:54:14 +0200422 ip/ip_sas.c
Damjan Marion4553c952018-08-26 11:04:40 +0200423)
424
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700425list(APPEND VNET_MULTIARCH_SOURCES
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700426 ip/ip4_punt_drop.c
Klement Sekera896c8962019-06-24 11:52:49 +0000427 ip/reass/ip4_full_reass.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700428 ip/ip6_hop_by_hop.c
Klement Sekera896c8962019-06-24 11:52:49 +0000429 ip/reass/ip6_full_reass.c
Klement Sekerade34c352019-06-25 11:19:22 +0000430 ip/reass/ip4_sv_reass.c
431 ip/ip6_hop_by_hop.c
432 ip/reass/ip6_full_reass.c
433 ip/reass/ip6_sv_reass.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700434 ip/ip6_input.c
435 ip/ip6_punt_drop.c
Neale Ranns50f0ac02019-05-15 02:13:37 -0700436 ip/punt_node.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700437 ip/ip_in_out_acl.c
Neale Ranns8f5fef22020-12-21 08:29:34 +0000438 ip/ip_path_mtu_node.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700439)
440
Damjan Marion4553c952018-08-26 11:04:40 +0200441list(APPEND VNET_HEADERS
442 ip/format.h
443 ip/icmp46_packet.h
444 ip/icmp4.h
445 ip/icmp6.h
446 ip/igmp_packet.h
Damjan Marion4553c952018-08-26 11:04:40 +0200447 ip/ip4.h
448 ip/ip4_mtrie.h
Neale Rannse4031132020-10-26 13:00:06 +0000449 ip/ip4_inlines.h
Damjan Marion4553c952018-08-26 11:04:40 +0200450 ip/ip4_packet.h
Neale Rannscbe25aa2019-09-30 10:53:31 +0000451 ip/ip46_address.h
Damjan Marion4553c952018-08-26 11:04:40 +0200452 ip/ip6.h
453 ip/ip6_hop_by_hop.h
454 ip/ip6_hop_by_hop_packet.h
Neale Rannse4031132020-10-26 13:00:06 +0000455 ip/ip6_inlines.h
Damjan Marion4553c952018-08-26 11:04:40 +0200456 ip/ip6_packet.h
Damjan Marion4553c952018-08-26 11:04:40 +0200457 ip/ip.h
Neale Rannse4031132020-10-26 13:00:06 +0000458 ip/ip_container_proxy.h
459 ip/ip_flow_hash.h
Steven Luongc3ed1c92020-07-27 10:06:58 -0700460 ip/ip_table.h
Neale Ranns59f71132020-04-08 12:19:38 +0000461 ip/ip_interface.h
Damjan Marion4553c952018-08-26 11:04:40 +0200462 ip/ip_packet.h
Mohsin Kazmif5462362021-02-23 15:55:04 +0100463 ip/ip_psh_cksum.h
Damjan Marion4553c952018-08-26 11:04:40 +0200464 ip/ip_source_and_port_range_check.h
Neale Rannsea93e482019-11-12 17:16:47 +0000465 ip/ip_types.h
Damjan Marion4553c952018-08-26 11:04:40 +0200466 ip/lookup.h
467 ip/ports.def
468 ip/protocols.def
469 ip/punt_error.def
470 ip/punt.h
Mohammed Hawari896b1842022-06-14 11:44:45 +0200471 ip/reass/ip4_sv_reass.h
472 ip/reass/ip6_sv_reass.h
Damjan Marion4553c952018-08-26 11:04:40 +0200473)
474
475list(APPEND VNET_API_FILES
476 ip/ip.api
Damjan Marion4553c952018-08-26 11:04:40 +0200477 ip/punt.api
478)
479
Damjan Marion38173502019-02-13 19:30:09 +0100480list(APPEND VNET_MULTIARCH_SOURCES
481 ip/ip4_forward.c
482 ip/ip6_forward.c
483 ip/ip4_input.c
484)
Damjan Marion4553c952018-08-26 11:04:40 +0200485
486##############################################################################
Neale Rannscbe25aa2019-09-30 10:53:31 +0000487# Layer 3 neighbours
Damjan Marion4553c952018-08-26 11:04:40 +0200488##############################################################################
489list(APPEND VNET_SOURCES
Neale Rannscbe25aa2019-09-30 10:53:31 +0000490 ip-neighbor/ip_neighbor.c
491 ip-neighbor/ip_neighbor_api.c
492 ip-neighbor/ip_neighbor_dp.c
493 ip-neighbor/ip_neighbor_types.c
494 ip-neighbor/ip_neighbor_watch.c
495 ip-neighbor/ip4_neighbor.c
496 ip-neighbor/ip6_neighbor.c
Damjan Marion4553c952018-08-26 11:04:40 +0200497)
498
499list(APPEND VNET_HEADERS
Neale Rannscbe25aa2019-09-30 10:53:31 +0000500 ip-neighbor/ip_neighbor.h
501 ip-neighbor/ip_neighbor_types.h
502)
503
504list(APPEND VNET_API_FILES
505 ip-neighbor/ip_neighbor.api
Damjan Marion4553c952018-08-26 11:04:40 +0200506)
507
508##############################################################################
509# Bidirectional Forwarding Detection
510##############################################################################
511
512list(APPEND VNET_HEADERS
513 bfd/bfd_protocol.h
514 bfd/bfd_main.h
515 bfd/bfd_api.h
516 bfd/bfd_udp.h
517)
518
519list(APPEND VNET_SOURCES
520 bfd/bfd_api.h
521 bfd/bfd_udp.c
522 bfd/bfd_main.c
523 bfd/bfd_protocol.c
524 bfd/bfd_cli.c
525 bfd/bfd_api.c
526)
527
528list(APPEND VNET_API_FILES bfd/bfd.api)
529
530##############################################################################
Damjan Marion91f17dc2019-03-18 18:59:25 +0100531# Crypto
532##############################################################################
533
534list(APPEND VNET_SOURCES
535 crypto/cli.c
536 crypto/crypto.c
537 crypto/format.c
Fan Zhangf5395782020-04-29 14:00:03 +0100538 crypto/node.c
Nathan Skrzypczak0c936b12020-08-31 15:33:57 +0200539 crypto/crypto_api.c
Damjan Marion91f17dc2019-03-18 18:59:25 +0100540)
541
542list(APPEND VNET_HEADERS
543 crypto/crypto.h
544)
545
Fan Zhangf5395782020-04-29 14:00:03 +0100546list(APPEND VNET_MULTIARCH_SOURCES crypto/node.c)
547
Nathan Skrzypczak0c936b12020-08-31 15:33:57 +0200548list(APPEND VNET_API_FILES crypto/crypto.api)
549
Damjan Marion91f17dc2019-03-18 18:59:25 +0100550##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200551# Layer 3 protocol: IPSec
552##############################################################################
553list(APPEND VNET_SOURCES
554 ipsec/ipsec.c
555 ipsec/ipsec_cli.c
556 ipsec/ipsec_format.c
Neale Rannsf62a8c02019-04-02 08:13:33 +0000557 ipsec/ipsec_handoff.c
Damjan Marion4553c952018-08-26 11:04:40 +0200558 ipsec/ipsec_input.c
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000559 ipsec/ipsec_itf.c
Neale Rannsb71fa752019-04-04 12:43:36 +0000560 ipsec/ipsec_punt.c
Neale Ranns999c8ee2019-02-01 03:31:24 -0800561 ipsec/ipsec_sa.c
562 ipsec/ipsec_spd.c
563 ipsec/ipsec_spd_policy.c
Neale Rannsc87b66c2019-02-07 07:26:12 -0800564 ipsec/ipsec_tun.c
565 ipsec/ipsec_tun_in.c
Damjan Marion4553c952018-08-26 11:04:40 +0200566 ipsec/esp_format.c
567 ipsec/esp_encrypt.c
568 ipsec/esp_decrypt.c
569 ipsec/ah_decrypt.c
570 ipsec/ah_encrypt.c
Damjan Marion4553c952018-08-26 11:04:40 +0200571 ipsec/ipsec_api.c
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +0530572 ipsec/ipsec_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200573)
574
Klement Sekerab8f35442018-10-29 13:38:19 +0100575list(APPEND VNET_MULTIARCH_SOURCES
576 ipsec/esp_encrypt.c
577 ipsec/esp_decrypt.c
578 ipsec/ah_decrypt.c
579 ipsec/ah_encrypt.c
Neale Rannsf62a8c02019-04-02 08:13:33 +0000580 ipsec/ipsec_handoff.c
Kingwel Xiec69ac312019-02-04 01:49:29 -0800581 ipsec/ipsec_output.c
582 ipsec/ipsec_input.c
Neale Rannsc87b66c2019-02-07 07:26:12 -0800583 ipsec/ipsec_tun_in.c
Klement Sekerab8f35442018-10-29 13:38:19 +0100584)
585
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +0530586list(APPEND VNET_API_FILES ipsec/ipsec_types.api)
Damjan Marion4553c952018-08-26 11:04:40 +0200587list(APPEND VNET_API_FILES ipsec/ipsec.api)
588
589list(APPEND VNET_SOURCES
590 ipsec/ipsec_output.c
591)
592
593list(APPEND VNET_HEADERS
594 ipsec/ipsec.h
Neale Ranns918c1612019-02-21 23:34:59 -0800595 ipsec/ipsec_spd.h
596 ipsec/ipsec_spd_policy.h
597 ipsec/ipsec_sa.h
Neale Ranns12989b52019-09-26 16:20:19 +0000598 ipsec/ipsec_tun.h
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +0530599 ipsec/ipsec_types_api.h
Neale Rannsba05e5d2019-06-07 05:17:07 -0700600 ipsec/ipsec_punt.h
Damjan Marion4553c952018-08-26 11:04:40 +0200601 ipsec/esp.h
602 ipsec/ah.h
Damjan Marion4553c952018-08-26 11:04:40 +0200603)
604
605##############################################################################
606# Layer 3 protocol: osi
607##############################################################################
608list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200609 osi/node.c
610 osi/osi.c
611 osi/pg.c
Damjan Marion4553c952018-08-26 11:04:40 +0200612)
613
614list(APPEND VNET_HEADERS
615 osi/osi.h
616)
617
618##############################################################################
619# Layer 4 protocol: tcp
620##############################################################################
621list(APPEND VNET_SOURCES
622 tcp/tcp_api.c
623 tcp/tcp_format.c
624 tcp/tcp_pg.c
625 tcp/tcp_syn_filter4.c
626 tcp/tcp_output.c
627 tcp/tcp_input.c
628 tcp/tcp_newreno.c
Florin Coras52814732019-06-12 15:38:19 -0700629 tcp/tcp_bt.c
Florin Coras999840c2020-03-18 20:31:34 +0000630 tcp/tcp_cli.c
631 tcp/tcp_cubic.c
Florin Corasa436a422019-08-20 07:09:31 -0700632 tcp/tcp_debug.c
Florin Coras999840c2020-03-18 20:31:34 +0000633 tcp/tcp_sack.c
Florin Coras49036a52020-10-08 09:28:32 -0700634 tcp/tcp_timer.c
Damjan Marion4553c952018-08-26 11:04:40 +0200635 tcp/tcp.c
636)
637
Filip Tehlare275bed2019-03-06 00:06:56 -0800638list(APPEND VNET_MULTIARCH_SOURCES
639 tcp/tcp_input.c
640 tcp/tcp_output.c
641 tcp/tcp_syn_filter4.c
642)
643
Damjan Marion4553c952018-08-26 11:04:40 +0200644list(APPEND VNET_HEADERS
645 tcp/tcp_packet.h
646 tcp/tcp_timer.h
Florin Coras999840c2020-03-18 20:31:34 +0000647 tcp/tcp_bt.h
648 tcp/tcp_cc.h
Damjan Marion4553c952018-08-26 11:04:40 +0200649 tcp/tcp_debug.h
Florin Coras999840c2020-03-18 20:31:34 +0000650 tcp/tcp_inlines.h
651 tcp/tcp_sack.h
652 tcp/tcp_types.h
Damjan Marion4553c952018-08-26 11:04:40 +0200653 tcp/tcp.h
654 tcp/tcp_error.def
655)
656
657list(APPEND VNET_API_FILES tcp/tcp.api)
658
659##############################################################################
660# Layer 4 protocol: udp
661##############################################################################
662list(APPEND VNET_SOURCES
663 udp/udp.c
Florin Corasc98ef752020-04-07 17:30:13 +0000664 udp/udp_cli.c
Damjan Marion4553c952018-08-26 11:04:40 +0200665 udp/udp_input.c
666 udp/udp_format.c
667 udp/udp_local.c
668 udp/udp_pg.c
669 udp/udp_encap_node.c
670 udp/udp_encap.c
Arthur de Kerhor8a6f5d32021-05-20 11:48:00 +0200671 udp/udp_decap.c
Damjan Marion4553c952018-08-26 11:04:40 +0200672 udp/udp_api.c
Florin Coras8c1be052022-10-17 11:52:34 -0700673 udp/udp_output.c
Damjan Marion4553c952018-08-26 11:04:40 +0200674)
675
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800676list(APPEND VNET_MULTIARCH_SOURCES
677 udp/udp_local.c
678 udp/udp_encap_node.c
679)
680
Damjan Marion4553c952018-08-26 11:04:40 +0200681list(APPEND VNET_HEADERS
682 udp/udp_error.def
683 udp/udp.h
Dave Wallace40cfc152022-02-23 17:15:14 -0500684 udp/udp_encap.h
Damjan Marion4553c952018-08-26 11:04:40 +0200685 udp/udp_packet.h
Florin Corasb040f982020-10-20 14:59:43 -0700686 udp/udp_inlines.h
687 udp/udp_local.h
Damjan Marion4553c952018-08-26 11:04:40 +0200688)
689
690list(APPEND VNET_API_FILES udp/udp.api)
691
692##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200693# Tunnel protocol: gre
694##############################################################################
695list(APPEND VNET_SOURCES
696 gre/gre.c
697 gre/node.c
698 gre/interface.c
699 gre/pg.c
700 gre/gre_api.c
701)
702
Filip Tehlar0fce11f2019-03-04 09:21:59 -0800703list(APPEND VNET_MULTIARCH_SOURCES
704 gre/node.c
705 gre/gre.c
706)
707
Damjan Marion4553c952018-08-26 11:04:40 +0200708list(APPEND VNET_HEADERS
709 gre/gre.h
710 gre/packet.h
711 gre/error.def
712)
713
714list(APPEND VNET_API_FILES gre/gre.api)
715
716##############################################################################
717# Tunnel protocol: ipip
718##############################################################################
719list(APPEND VNET_SOURCES
720 ipip/ipip.c
721 ipip/node.c
722 ipip/sixrd.c
723 ipip/ipip_api.c
724 ipip/ipip_cli.c
725)
726
Filip Tehlar7a542f42019-03-05 04:50:23 -0800727list(APPEND VNET_MULTIARCH_SOURCES
728 ipip/node.c
729)
730
Damjan Marion4553c952018-08-26 11:04:40 +0200731list(APPEND VNET_HEADERS
732 ipip/ipip.h
733)
734
Neale Ranns95346962019-11-25 13:04:44 +0000735list(APPEND VNET_API_FILES
Neale Ranns95346962019-11-25 13:04:44 +0000736 ipip/ipip.api
737)
Damjan Marion4553c952018-08-26 11:04:40 +0200738
739##############################################################################
Neale Ranns59ff9182019-12-29 23:55:18 +0000740# Tunnel infra
741##############################################################################
742list(APPEND VNET_SOURCES
743 tunnel/tunnel.c
744 tunnel/tunnel_types_api.c
745)
746
747list(APPEND VNET_API_FILES
748 tunnel/tunnel_types.api
749)
750
751list(APPEND VNET_HEADERS
752 tunnel/tunnel.h
Neale Rannse5b94dd2019-12-31 05:13:14 +0000753 tunnel/tunnel_dp.h
Benoît Ganne6e3b3b72022-08-31 12:05:43 +0200754 tunnel/tunnel_types_api.h
Neale Ranns59ff9182019-12-29 23:55:18 +0000755)
756
757##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200758# Tunnel protocol: gre+mpls
759##############################################################################
760list(APPEND VNET_SOURCES
761 mpls/mpls.c
762 mpls/mpls_lookup.c
763 mpls/mpls_output.c
764 mpls/mpls_features.c
765 mpls/mpls_input.c
766 mpls/interface.c
767 mpls/mpls_tunnel.c
768 mpls/pg.c
769 mpls/mpls_api.c
770)
771
Filip Tehlar17fcd982019-03-05 04:32:11 -0800772list(APPEND VNET_MULTIARCH_SOURCES
773 mpls/mpls_output.c
774 mpls/mpls_input.c
775 mpls/mpls_lookup.c
776 mpls/mpls_features.c
777)
778
Damjan Marion4553c952018-08-26 11:04:40 +0200779list(APPEND VNET_HEADERS
780 mpls/mpls.h
Benoît Ganne6e3b3b72022-08-31 12:05:43 +0200781 mpls/mpls_lookup.h
Damjan Marion4553c952018-08-26 11:04:40 +0200782 mpls/mpls_types.h
783 mpls/mpls_tunnel.h
784 mpls/packet.h
Damjan Marion4553c952018-08-26 11:04:40 +0200785)
786
787list(APPEND VNET_API_FILES mpls/mpls.api)
788
789##############################################################################
790# Tunnel protocol: vxlan-gpe
791##############################################################################
792
793list(APPEND VNET_SOURCES
794 vxlan-gpe/vxlan_gpe.c
795 vxlan-gpe/encap.c
796 vxlan-gpe/decap.c
797 vxlan-gpe/vxlan_gpe_api.c
798)
799
Filip Tehlare1714d32019-03-05 03:01:43 -0800800list (APPEND VNET_MULTIARCH_SOURCES
801 vxlan-gpe/decap.c
802)
803
Damjan Marion4553c952018-08-26 11:04:40 +0200804list(APPEND VNET_HEADERS
805 vxlan-gpe/vxlan_gpe.h
806 vxlan-gpe/vxlan_gpe_packet.h
807 vxlan-gpe/vxlan_gpe_error.def
808)
809
810list(APPEND VNET_API_FILES vxlan-gpe/vxlan_gpe.api)
811
812##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200813# ipv6 segment routing
814##############################################################################
815
816list(APPEND VNET_SOURCES
817 srv6/sr.c
818 srv6/sr_localsid.c
819 srv6/sr_policy_rewrite.c
820 srv6/sr_steering.c
821 srv6/sr_api.c
Ahmed Abdelsalamc933bb72022-06-29 11:08:42 +0000822 srv6/sr_pt.c
Julian Klaiber39d6dec2022-10-18 10:37:14 +0200823 srv6/sr_pt_node.c
Damjan Marion4553c952018-08-26 11:04:40 +0200824)
825
826list(APPEND VNET_HEADERS
827 srv6/sr_packet.h
828 srv6/sr.h
Ahmed Abdelsalamc933bb72022-06-29 11:08:42 +0000829 srv6/sr_pt.h
Damjan Marion4553c952018-08-26 11:04:40 +0200830)
831
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100832list(APPEND VNET_API_FILES
833 srv6/sr.api
834 srv6/sr_types.api
835)
Damjan Marion4553c952018-08-26 11:04:40 +0200836
837##############################################################################
838# mpls segment routing
839##############################################################################
840
841list(APPEND VNET_SOURCES
842 srmpls/sr_mpls_policy.c
843 srmpls/sr_mpls_steering.c
844 srmpls/sr_mpls_api.c
845)
846
847list(APPEND VNET_HEADERS
848 srmpls/sr_mpls.h
849)
850
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100851list(APPEND VNET_API_FILES
852 srmpls/sr_mpls.api
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100853)
Damjan Marion4553c952018-08-26 11:04:40 +0200854
855##############################################################################
856# IPFIX / netflow v10
857##############################################################################
858list(APPEND VNET_SOURCES
859 ipfix-export/flow_report.c
860 ipfix-export/flow_api.c
861)
862
863list(APPEND VNET_HEADERS
864 ipfix-export/flow_report.h
865 ipfix-export/ipfix_info_elements.h
866 ipfix-export/ipfix_packet.h
867)
868
869list(APPEND VNET_API_FILES ipfix-export/ipfix_export.api)
870
871##############################################################################
Mohsin Kazmi41b23bc2021-06-30 18:26:25 +0000872# HASH
873##############################################################################
874list(APPEND VNET_SOURCES
875 hash/hash.c
876 hash/cli.c
877 hash/crc32_5tuple.c
Florin Coras1e6d30b2021-11-02 10:32:19 -0700878 hash/handoff_eth.c
Steven Luong05a68d62021-12-03 12:05:45 -0800879 hash/hash_eth.c
Mohsin Kazmi41b23bc2021-06-30 18:26:25 +0000880)
881
882list(APPEND VNET_HEADERS
883 hash/hash.h
884)
885
886##############################################################################
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200887# GSO
888##############################################################################
889list(APPEND VNET_SOURCES
890 gso/cli.c
891 gso/gso.c
892 gso/gso_api.c
893 gso/node.c
894)
895
896list(APPEND VNET_HEADERS
Mohsin Kazmif382b062020-08-11 15:00:44 +0200897 gso/gro.h
898 gso/gro_func.h
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000899 gso/hdr_offset_parser.h
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200900 gso/gso.h
901)
902
903list(APPEND VNET_API_FILES
904 gso/gso.api
905)
906
907##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200908# IPFIX classify code
909##############################################################################
910
911list(APPEND VNET_SOURCES
912 ipfix-export/flow_report_classify.c
913)
914
915list(APPEND VNET_HEADERS
916 ipfix-export/flow_report_classify.h
917)
918
919##############################################################################
920# lawful intercept
921##############################################################################
922
923list(APPEND VNET_SOURCES
924 lawful-intercept/lawful_intercept.c
925 lawful-intercept/node.c
926)
927
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -0700928list(APPEND VNET_MULTIARCH_SOURCES
929 lawful-intercept/node.c
930)
931
Damjan Marion4553c952018-08-26 11:04:40 +0200932list(APPEND VNET_HEADERS
933 lawful-intercept/lawful_intercept.h
934)
935
936##############################################################################
937# SPAN (port mirroring)
938##############################################################################
939
940list(APPEND VNET_SOURCES
941 span/span_api.c
942 span/span.c
943 span/node.c
944)
945
Filip Tehlara79271f2019-03-05 03:46:40 -0800946list(APPEND VNET_MULTIARCH_SOURCES
947 span/node.c
948)
949
Damjan Marion4553c952018-08-26 11:04:40 +0200950list(APPEND VNET_HEADERS
951 span/span.h
952)
953
954list(APPEND VNET_API_FILES span/span.api)
955
956##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200957# Packet generator
958##############################################################################
959
960list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200961 pg/cli.c
962 pg/edit.c
963 pg/init.c
964 pg/input.c
965 pg/output.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200966 pg/stream.c
Damjan Marion4553c952018-08-26 11:04:40 +0200967 pg/pg_api.c
968)
969
970list(APPEND VNET_HEADERS
971 pg/pg.h
972 pg/edit.h
973)
974
975list(APPEND VNET_API_FILES pg/pg.api)
976
977##############################################################################
978# virtio
979##############################################################################
980
981list(APPEND VNET_SOURCES
Damjan Marionf41244f2019-11-08 17:41:06 +0100982 devices/virtio/cli.c
Damjan Marion4553c952018-08-26 11:04:40 +0200983 devices/virtio/device.c
Damjan Marionf41244f2019-11-08 17:41:06 +0100984 devices/virtio/format.c
Damjan Marion4553c952018-08-26 11:04:40 +0200985 devices/virtio/node.c
Damjan Marionf41244f2019-11-08 17:41:06 +0100986 devices/virtio/pci.c
Damjan Marion4553c952018-08-26 11:04:40 +0200987 devices/virtio/vhost_user.c
988 devices/virtio/vhost_user_input.c
989 devices/virtio/vhost_user_output.c
990 devices/virtio/vhost_user_api.c
991 devices/virtio/virtio.c
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200992 devices/virtio/virtio_api.c
Mohsin Kazmia0a68332020-07-16 12:55:42 +0000993 devices/virtio/virtio_pci_legacy.c
Mohsin Kazmi379aac32020-08-20 10:25:12 +0200994 devices/virtio/virtio_pci_modern.c
Mohsin Kazmib7e4e6d2021-12-13 18:32:42 +0000995 devices/virtio/virtio_pre_input.c
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200996 devices/virtio/virtio_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200997)
998
999list(APPEND VNET_HEADERS
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001000 devices/virtio/pci.h
Damjan Marion4553c952018-08-26 11:04:40 +02001001 devices/virtio/virtio.h
Mohsin Kazmie347acb2020-09-28 10:26:33 +00001002 devices/virtio/virtio_buffering.h
Mohsin Kazmia7a22812020-08-31 17:17:16 +02001003 devices/virtio/virtio_std.h
Mohsin Kazmia0a68332020-07-16 12:55:42 +00001004 devices/virtio/virtio_pci_legacy.h
Mohsin Kazmi379aac32020-08-20 10:25:12 +02001005 devices/virtio/virtio_pci_modern.h
Mohsin Kazmia7a22812020-08-31 17:17:16 +02001006 devices/virtio/vhost_std.h
Damjan Marion4553c952018-08-26 11:04:40 +02001007 devices/virtio/vhost_user.h
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +02001008 devices/virtio/virtio_types_api.h
Damjan Marion4553c952018-08-26 11:04:40 +02001009)
1010
1011list(APPEND VNET_MULTIARCH_SOURCES
1012 devices/virtio/vhost_user_input.c
1013 devices/virtio/vhost_user_output.c
Filip Tehlar608996d2019-03-04 03:03:13 -08001014 devices/virtio/node.c
1015 devices/af_packet/node.c
Filip Tehlaraee73642019-03-13 05:50:44 -07001016 devices/virtio/device.c
Damjan Marion4553c952018-08-26 11:04:40 +02001017)
1018
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001019list(APPEND VNET_API_FILES
1020 devices/virtio/vhost_user.api
1021 devices/virtio/virtio.api
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +02001022 devices/virtio/virtio_types.api
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001023)
Damjan Marion4553c952018-08-26 11:04:40 +02001024
1025##############################################################################
1026# tap interface (with virtio backend)
1027##############################################################################
1028
1029list(APPEND VNET_SOURCES
1030 devices/tap/cli.c
1031 devices/tap/tap.c
1032 devices/tap/tapv2_api.c
1033)
1034
1035list(APPEND VNET_HEADERS
1036 devices/tap/tap.h
1037)
1038
Mohsin Kazmia7a22812020-08-31 17:17:16 +02001039list(APPEND VNET_API_FILES
1040 devices/tap/tapv2.api
1041)
Damjan Marion4553c952018-08-26 11:04:40 +02001042
1043##############################################################################
1044# tap interface (with virtio backend)
1045##############################################################################
1046
1047list(APPEND VNET_SOURCES
1048 devices/pipe/pipe_api.c
1049 devices/pipe/pipe.c
1050)
1051
1052list(APPEND VNET_HEADERS
1053 devices/pipe/pipe.h
1054)
1055
1056list(APPEND VNET_API_FILES devices/pipe/pipe.api)
1057
1058##############################################################################
1059# session managmeent
1060##############################################################################
1061
1062list(APPEND VNET_SOURCES
1063 session/session.c
Florin Coras11166672020-04-13 01:20:25 +00001064 session/session_debug.c
Damjan Marion4553c952018-08-26 11:04:40 +02001065 session/session_table.c
1066 session/session_rules_table.c
1067 session/session_lookup.c
1068 session/session_node.c
1069 session/transport.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001070 session/application.c
Florin Coras623eb562019-02-03 19:28:34 -08001071 session/application_worker.c
Damjan Marion4553c952018-08-26 11:04:40 +02001072 session/session_cli.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001073 session/application_interface.c
Florin Corasba7d8f52019-02-22 13:11:38 -08001074 session/application_local.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001075 session/application_namespace.c
Damjan Marion4553c952018-08-26 11:04:40 +02001076 session/segment_manager.c
Damjan Marion4553c952018-08-26 11:04:40 +02001077 session/session_api.c
1078)
1079
1080list(APPEND VNET_HEADERS
1081 session/session.h
1082 session/session_table.h
1083 session/session_rules_table.h
Florin Coras288eaab2019-02-03 15:26:14 -08001084 session/session_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001085 session/session_lookup.h
1086 session/application.h
1087 session/transport.h
Florin Coras1ee78302019-02-05 15:51:15 -08001088 session/transport_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001089 session/application_interface.h
Florin Corasba7d8f52019-02-22 13:11:38 -08001090 session/application_local.h
Damjan Marion4553c952018-08-26 11:04:40 +02001091 session/application_namespace.h
1092 session/session_debug.h
1093 session/segment_manager.h
1094 session/mma_template.h
1095 session/mma_template.c
1096 session/mma_16.h
1097 session/mma_40.h
1098)
1099
1100list(APPEND VNET_API_FILES session/session.api)
1101
1102##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +02001103# TLS protocol
1104##############################################################################
1105
1106list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +02001107 tls/tls.c
Damjan Marion4553c952018-08-26 11:04:40 +02001108)
1109
1110list(APPEND VNET_HEADERS
1111 tls/tls.h
Florin Coras54a51fd2019-02-07 15:34:52 -08001112 tls/tls_test.h
Damjan Marion4553c952018-08-26 11:04:40 +02001113)
1114
1115##############################################################################
1116# Linux packet interface
1117##############################################################################
1118
1119list(APPEND VNET_SOURCES
1120 devices/af_packet/af_packet.c
1121 devices/af_packet/device.c
1122 devices/af_packet/node.c
1123 devices/af_packet/cli.c
1124 devices/af_packet/af_packet_api.c
1125)
1126
Filip Tehlaraee73642019-03-13 05:50:44 -07001127list(APPEND VNET_MULTIARCH_SOURCES
Filip Tehlaraee73642019-03-13 05:50:44 -07001128 devices/af_packet/device.c
1129)
1130
Damjan Marion4553c952018-08-26 11:04:40 +02001131list(APPEND VNET_HEADERS
1132 devices/af_packet/af_packet.h
1133)
1134
1135list(APPEND VNET_API_FILES devices/af_packet/af_packet.api)
1136
1137##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +02001138# Driver feature graph arc support
1139##############################################################################
1140
1141list(APPEND VNET_SOURCES
1142 feature/feature.c
1143 feature/feature_api.c
1144 feature/registration.c
1145)
1146
1147list(APPEND VNET_HEADERS
1148 feature/feature.h
1149)
1150
1151list(APPEND VNET_API_FILES feature/feature.api)
1152
1153##############################################################################
1154# Unix kernel related
1155##############################################################################
1156
1157# FIXME: unix/hgshm.c
1158
1159list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +02001160 unix/gdb_funcs.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001161 unix/tuntap.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001162)
1163
Damjan Marion4553c952018-08-26 11:04:40 +02001164list(APPEND VNET_HEADERS
Damjan Marion4553c952018-08-26 11:04:40 +02001165 unix/tuntap.h
Damjan Marion612dd6a2018-07-30 12:45:07 +02001166)
1167
Damjan Marion4553c952018-08-26 11:04:40 +02001168##############################################################################
1169# FIB
1170##############################################################################
1171
1172list(APPEND VNET_SOURCES
1173 fib/fib.c
Neale Rannsd6953332021-08-10 07:39:18 +00001174 fib/ip4_fib_hash.c
Damjan Marion4553c952018-08-26 11:04:40 +02001175 fib/ip4_fib.c
Neale Rannsd6953332021-08-10 07:39:18 +00001176 fib/ip4_fib_16.c
1177 fib/ip4_fib_8.c
Damjan Marion4553c952018-08-26 11:04:40 +02001178 fib/ip6_fib.c
1179 fib/mpls_fib.c
1180 fib/fib_table.c
1181 fib/fib_walk.c
1182 fib/fib_types.c
1183 fib/fib_node.c
1184 fib/fib_node_list.c
1185 fib/fib_entry.c
1186 fib/fib_entry_src.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001187 fib/fib_entry_src_adj.c
1188 fib/fib_entry_src_api.c
1189 fib/fib_entry_src_drop.c
Damjan Marion4553c952018-08-26 11:04:40 +02001190 fib/fib_entry_src_interface.c
1191 fib/fib_entry_src_interpose.c
Damjan Marion4553c952018-08-26 11:04:40 +02001192 fib/fib_entry_src_lisp.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001193 fib/fib_entry_src_mpls.c
1194 fib/fib_entry_src_simple.c
1195 fib/fib_entry_src_rr.c
Damjan Marion4553c952018-08-26 11:04:40 +02001196 fib/fib_entry_cover.c
1197 fib/fib_entry_delegate.c
Neale Ranns1f50bf82019-07-16 15:28:52 +00001198 fib/fib_entry_track.c
Damjan Marion4553c952018-08-26 11:04:40 +02001199 fib/fib_path_list.c
1200 fib/fib_path.c
1201 fib/fib_path_ext.c
Neale Rannse2fe0972020-11-26 08:37:27 +00001202 fib/fib_sas.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001203 fib/fib_source.c
Damjan Marion4553c952018-08-26 11:04:40 +02001204 fib/fib_urpf_list.c
1205 fib/fib_attached_export.c
1206 fib/fib_api.c
1207 fib/fib_bfd.c
1208)
1209
1210list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001211 fib/fib.h
Damjan Marion4553c952018-08-26 11:04:40 +02001212 fib/fib_api.h
Dave Wallace40cfc152022-02-23 17:15:14 -05001213 fib/fib_entry_track.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001214 fib/ip4_fib.h
Benoît Ganned9fc7082021-10-18 11:16:01 +02001215 fib/ip4_fib_8.h
1216 fib/ip4_fib_16.h
1217 fib/ip4_fib_hash.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001218 fib/ip6_fib.h
1219 fib/fib_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001220 fib/fib_table.h
1221 fib/fib_node.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001222 fib/fib_node_list.h
Damjan Marion4553c952018-08-26 11:04:40 +02001223 fib/fib_entry.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001224 fib/fib_entry_delegate.h
Damjan Marion4a5564d2022-09-07 18:52:18 +02001225 fib/fib_path.h
1226 fib/fib_path_list.h
Neale Rannse2fe0972020-11-26 08:37:27 +00001227 fib/fib_sas.h
Neale Ranns3bab8f92019-12-04 06:11:00 +00001228 fib/fib_source.h
Damjan Marion4553c952018-08-26 11:04:40 +02001229)
1230
Neale Ranns976b2592019-12-04 06:11:00 +00001231list(APPEND VNET_API_FILES
1232 fib/fib_types.api
1233 fib/fib.api
1234)
Benoît Ganned39495d2019-07-25 14:14:03 +02001235
Damjan Marion4553c952018-08-26 11:04:40 +02001236##############################################################################
1237# ADJ
1238##############################################################################
1239
1240list(APPEND VNET_SOURCES
1241 adj/adj_nbr.c
1242 adj/adj_glean.c
1243 adj/adj_midchain.c
Neale Rannsf339f492021-03-31 07:36:33 +00001244 adj/adj_midchain_node.c
Neale Ranns4c3ba812019-03-26 07:02:58 +00001245 adj/adj_midchain_delegate.c
Damjan Marion4553c952018-08-26 11:04:40 +02001246 adj/adj_mcast.c
1247 adj/adj_l2.c
1248 adj/adj_nsh.c
1249 adj/adj.c
1250 adj/rewrite.c
1251 adj/adj_bfd.c
1252 adj/adj_delegate.c
1253)
1254
Filip Tehlar0b2c15d2019-03-04 02:52:54 -08001255list(APPEND VNET_MULTIARCH_SOURCES
1256 adj/adj_nsh.c
1257 adj/adj_l2.c
Neale Rannsf339f492021-03-31 07:36:33 +00001258 adj/adj_midchain_node.c
Filip Tehlar0b2c15d2019-03-04 02:52:54 -08001259)
1260
Damjan Marion4553c952018-08-26 11:04:40 +02001261list(APPEND VNET_HEADERS
1262 adj/adj.h
1263 adj/adj_types.h
1264 adj/adj_glean.h
1265 adj/adj_nsh.h
1266 adj/adj_nbr.h
Alberto Compagnod8ca1e42019-08-12 11:43:19 +02001267 adj/adj_midchain.h
Damjan Marion4553c952018-08-26 11:04:40 +02001268 adj/rewrite.h
1269)
1270
1271##############################################################################
1272# Data-Plane Objects
1273##############################################################################
1274
1275list(APPEND VNET_SOURCES
1276 dpo/dpo.c
1277 dpo/drop_dpo.c
1278 dpo/ip_null_dpo.c
1279 dpo/ip6_ll_dpo.c
1280 dpo/punt_dpo.c
1281 dpo/receive_dpo.c
1282 dpo/load_balance.c
1283 dpo/load_balance_map.c
1284 dpo/lookup_dpo.c
1285 dpo/classify_dpo.c
1286 dpo/replicate_dpo.c
1287 dpo/interface_rx_dpo.c
1288 dpo/interface_tx_dpo.c
1289 dpo/mpls_disposition.c
1290 dpo/mpls_label_dpo.c
1291 dpo/l3_proxy_dpo.c
1292 dpo/dvr_dpo.c
Neale Ranns1dbcf302019-07-19 11:44:53 +00001293 dpo/pw_cw.c
Damjan Marion4553c952018-08-26 11:04:40 +02001294)
1295
Filip Tehlareb9a27f2019-03-07 01:42:11 -08001296list(APPEND VNET_MULTIARCH_SOURCES
1297 dpo/lookup_dpo.h
1298 dpo/mpls_disposition.c
1299 dpo/dvr_dpo.c
1300 dpo/mpls_label_dpo.c
1301 dpo/interface_rx_dpo.c
1302)
1303
Damjan Marion4553c952018-08-26 11:04:40 +02001304list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001305 dpo/load_balance.h
Damjan Marion0cc76942022-01-20 18:45:39 +01001306 dpo/load_balance_map.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001307 dpo/drop_dpo.h
Damjan Marion4553c952018-08-26 11:04:40 +02001308 dpo/lookup_dpo.h
1309 dpo/punt_dpo.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001310 dpo/classify_dpo.h
1311 dpo/receive_dpo.h
1312 dpo/ip_null_dpo.h
1313 dpo/replicate_dpo.h
Damjan Marion4553c952018-08-26 11:04:40 +02001314 dpo/dpo.h
1315)
1316
1317##############################################################################
1318# Multicast FIB
1319##############################################################################
1320
1321list(APPEND VNET_SOURCES
Damjan Marion4553c952018-08-26 11:04:40 +02001322 mfib/mfib_forward.c
1323 mfib/ip4_mfib.c
1324 mfib/ip6_mfib.c
Neale Ranns097fa662018-05-01 05:17:55 -07001325 mfib/mfib_api.c
Damjan Marion4553c952018-08-26 11:04:40 +02001326 mfib/mfib_types.c
1327 mfib/mfib_signal.c
1328 mfib/mfib_itf.c
1329 mfib/mfib_entry.c
Neale Ranns9e829a82018-12-17 05:50:32 -08001330 mfib/mfib_entry.c
1331 mfib/mfib_entry_cover.c
1332 mfib/mfib_entry_delegate.c
1333 mfib/mfib_entry_src.c
1334 mfib/mfib_entry_src_rr.c
Damjan Marion4553c952018-08-26 11:04:40 +02001335 mfib/mfib_table.c
1336)
1337
Filip Tehlar79c27eb2019-03-07 00:30:03 -08001338list(APPEND VNET_MULTIARCH_SOURCES
1339 mfib/mfib_forward.c
1340)
1341
Damjan Marion4553c952018-08-26 11:04:40 +02001342list(APPEND VNET_HEADERS
1343 mfib/ip4_mfib.h
1344 mfib/mfib_types.h
1345 mfib/mfib_table.h
1346)
1347
Benoît Ganned39495d2019-07-25 14:14:03 +02001348list(APPEND VNET_API_FILES mfib/mfib_types.api)
1349
Damjan Marion4553c952018-08-26 11:04:40 +02001350##############################################################################
1351# Utilities
1352##############################################################################
1353
1354list(APPEND VNET_SOURCES
1355 util/radix.c
1356 util/refcount.c
Neale Rannsc8352bc2018-08-29 10:23:58 -07001357 util/throttle.c
Damjan Marion4553c952018-08-26 11:04:40 +02001358)
1359
Damjan Marionac5554c2018-08-30 22:56:59 +02001360list(APPEND VNET_HEADERS
1361 util/throttle.h
1362)
1363
Damjan Marion4553c952018-08-26 11:04:40 +02001364##############################################################################
1365# QoS
1366##############################################################################
1367
1368list(APPEND VNET_SOURCES
1369 qos/qos_types.c
1370 qos/qos_api.c
1371 qos/qos_egress_map.c
1372 qos/qos_record.c
Filip Tehlar0bddf7e2019-03-04 08:14:07 -08001373 qos/qos_record_node.c
Neale Ranns83832e72019-07-31 02:48:02 -07001374 qos/qos_store.c
1375 qos/qos_store_node.c
Damjan Marion4553c952018-08-26 11:04:40 +02001376 qos/qos_mark.c
Filip Tehlar0bddf7e2019-03-04 08:14:07 -08001377 qos/qos_mark_node.c
1378)
1379
1380list(APPEND VNET_MULTIARCH_SOURCES
1381 qos/qos_record_node.c
1382 qos/qos_mark_node.c
Damjan Marion4553c952018-08-26 11:04:40 +02001383)
1384
1385list(APPEND VNET_API_FILES qos/qos.api)
1386
1387##############################################################################
1388# BIER
1389##############################################################################
1390
1391list(APPEND VNET_SOURCES
1392 bier/bier_bit_string.c
1393 bier/bier_entry.c
1394 bier/bier_fmask.c
1395 bier/bier_fmask_db.c
1396 bier/bier_input.c
1397 bier/bier_lookup.c
1398 bier/bier_output.c
1399 bier/bier_table.c
1400 bier/bier_types.c
Damjan Marion4553c952018-08-26 11:04:40 +02001401 bier/bier_api.c
1402 bier/bier_drop.c
1403 bier/bier_update.c
1404 bier/bier_imp_node.c
1405 bier/bier_imp.c
1406 bier/bier_disp_entry.c
1407 bier/bier_disp_lookup_node.c
1408 bier/bier_disp_dispatch_node.c
1409 bier/bier_disp_table.c
1410 bier/bier_bift_table.c
1411)
1412
Filip Tehlara01e0322019-03-05 03:34:52 -08001413list(APPEND VNET_MULTIARCH_SOURCES
1414 bier/bier_disp_dispatch_node.c
1415 bier/bier_disp_lookup_node.c
1416 bier/bier_imp_node.c
1417)
1418
Damjan Marion4553c952018-08-26 11:04:40 +02001419list(APPEND VNET_HEADERS
Benoît Ganne6e3b3b72022-08-31 12:05:43 +02001420 bier/bier_bit_string.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001421 bier/bier_entry.h
Benoît Ganne6e3b3b72022-08-31 12:05:43 +02001422 bier/bier_fwd.h
1423 bier/bier_hdr_inlines.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001424 bier/bier_update.h
Damjan Marion4553c952018-08-26 11:04:40 +02001425 bier/bier_table.h
Benoît Ganne6e3b3b72022-08-31 12:05:43 +02001426 bier/bier_types.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001427)
1428
Damjan Marion4553c952018-08-26 11:04:40 +02001429list(APPEND VNET_API_FILES bier/bier.api)
Damjan Marion612dd6a2018-07-30 12:45:07 +02001430
Florin Coras41c9e042018-09-11 00:10:41 -07001431##############################################################################
Matus Fabianb4515b42018-11-19 04:25:32 -08001432# SYSLOG
1433##############################################################################
1434
1435list (APPEND VNET_SOURCES
1436 syslog/syslog_api.c
1437 syslog/syslog_udp.c
1438 syslog/syslog.c
1439)
1440
1441list(APPEND VNET_HEADERS
1442 syslog/syslog_udp.h
1443 syslog/syslog.h
1444)
1445
1446list(APPEND VNET_API_FILES syslog/syslog.api)
1447
1448##############################################################################
Neale Ranns03ce4622020-02-03 10:55:09 +00001449# Tunnel Endpoint Information Base
Neale Ranns5f8f6172019-04-18 10:23:56 +00001450##############################################################################
1451
1452list (APPEND VNET_SOURCES
Neale Ranns03ce4622020-02-03 10:55:09 +00001453 teib/teib_api.c
1454 teib/teib_cli.c
1455 teib/teib.c
Neale Ranns5f8f6172019-04-18 10:23:56 +00001456)
1457
1458list(APPEND VNET_HEADERS
Neale Ranns03ce4622020-02-03 10:55:09 +00001459 teib/teib.h
Neale Ranns5f8f6172019-04-18 10:23:56 +00001460)
1461
Neale Ranns03ce4622020-02-03 10:55:09 +00001462list(APPEND VNET_API_FILES teib/teib.api)
Neale Ranns5f8f6172019-04-18 10:23:56 +00001463
1464##############################################################################
Neale Rannscbe25aa2019-09-30 10:53:31 +00001465# ARP/ND
1466##############################################################################
1467
1468list (APPEND VNET_SOURCES
1469 arp/arp_api.c
1470 arp/arp.c
1471 arp/arp_proxy.c
1472)
1473
1474list(APPEND VNET_HEADERS
1475 arp/arp.h
1476)
1477
1478list(APPEND VNET_API_FILES arp/arp.api)
1479
1480list (APPEND VNET_SOURCES
1481 ip6-nd/ip6_mld.c
1482 ip6-nd/ip6_nd.c
1483 ip6-nd/ip6_nd_api.c
1484 ip6-nd/ip6_nd_proxy.c
Mohsin Kazmicebb4772021-04-07 19:50:35 +02001485 ip6-nd/ip6_nd_mirror_proxy.c
Neale Rannscbe25aa2019-09-30 10:53:31 +00001486 ip6-nd/ip6_ra.c
1487 ip6-nd/rd_cp.c
1488 ip6-nd/rd_cp_api.c
1489)
1490
1491list(APPEND VNET_HEADERS
1492 ip6-nd/ip6_nd.h
1493)
1494
1495list(APPEND VNET_API_FILES
1496 ip6-nd/ip6_nd.api
1497 ip6-nd/rd_cp.api
1498)
1499
1500##############################################################################
Florin Coras41c9e042018-09-11 00:10:41 -07001501# VNET Library
1502##############################################################################
1503
Damjan Marion4553c952018-08-26 11:04:40 +02001504add_vpp_library(vnet
1505 SOURCES ${VNET_SOURCES}
1506 MULTIARCH_SOURCES ${VNET_MULTIARCH_SOURCES}
1507 INSTALL_HEADERS ${VNET_HEADERS}
1508 API_FILES ${VNET_API_FILES}
Klement Sekeraefd4d702021-04-20 19:21:36 +02001509 LINK_LIBRARIES vppinfra svm vlib
Chris Lukec171d012020-01-15 20:30:04 -05001510 DEPENDS vpp_version_h api_headers
Damjan Marion612dd6a2018-07-30 12:45:07 +02001511)
Florin Coras41c9e042018-09-11 00:10:41 -07001512
1513##############################################################################
Yulong Peidb43bb62020-01-09 01:12:43 +08001514# vpp api test client library
1515##############################################################################
1516
1517add_vpp_library (vatclient
1518 SOURCES ip/ip_types_api.c
1519 DEPENDS api_headers
1520)
1521
Florin Coras248210c2021-09-14 18:54:45 -07001522add_vat_test_library(vnet
Filip Tehlarf0e67d72021-07-23 22:03:05 +00001523 interface_test.c
Florin Coras248210c2021-09-14 18:54:45 -07001524 ip/ip_test.c
1525 arp/arp_test.c
1526 ip6-nd/ip6_nd_test.c
Filip Tehlar850024b2021-09-02 10:32:40 +00001527 srmpls/sr_mpls_test.c
Filip Tehlarea257222021-10-18 09:02:37 +00001528 session/session_test.c
Filip Tehlar1b6fb402021-07-24 18:10:39 +00001529 l2/l2_test.c
Filip Tehlar0ad06082021-07-25 14:38:45 +00001530 ipsec/ipsec_test.c
Florin Coras248210c2021-09-14 18:54:45 -07001531)
1532
Yulong Peidb43bb62020-01-09 01:12:43 +08001533##############################################################################
Ole Troandf87f802020-11-18 19:17:48 +01001534# VAT2 plugins
1535##############################################################################
1536add_vpp_test_library(vnet
1537 ${VNET_API_FILES}
1538)
1539
1540##############################################################################