blob: 88ef4cca7b9a241dfe66cc061dc5fb90426a5205 [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 Marion612dd6a2018-07-30 12:45:07 +020044 interface_stats.c
Damjan Marion4553c952018-08-26 11:04:40 +020045 misc.c
Damjan Marion4553c952018-08-26 11:04:40 +020046)
47
Filip Tehlar62668772019-03-04 03:33:32 -080048list(APPEND VNET_MULTIARCH_SOURCES
49 interface_output.c
50 interface_stats.c
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -070051 handoff.c
Filip Tehlar62668772019-03-04 03:33:32 -080052)
53
Damjan Marion4553c952018-08-26 11:04:40 +020054list(APPEND VNET_HEADERS
55 api_errno.h
Damjan Marion81bb6fc2022-01-16 22:47:55 +010056 error.h
Damjan Marion4553c952018-08-26 11:04:40 +020057 buffer.h
58 config.h
59 devices/devices.h
60 devices/netlink.h
61 flow/flow.h
62 global_funcs.h
Damjan Marion94100532020-11-06 23:25:57 +010063 interface/rx_queue_funcs.h
Damjan Marion1bd6cbb2021-04-15 13:12:51 +020064 interface/tx_queue_funcs.h
Damjan Marion4553c952018-08-26 11:04:40 +020065 interface.h
66 interface_funcs.h
Dave Barach1bd2c012020-04-12 08:31:39 -040067 interface_output.h
Damjan Marion4553c952018-08-26 11:04:40 +020068 ip/ip4_to_ip6.h
69 ip/ip6_to_ip4.h
Benoît Ganne09267f72019-05-17 14:24:17 +020070 ip/ip_types_api.h
Damjan Marion4553c952018-08-26 11:04:40 +020071 l3_types.h
72 plugin/plugin.h
73 pipeline.h
Damjan Marion4553c952018-08-26 11:04:40 +020074 vnet.h
Damjan Marion4553c952018-08-26 11:04:40 +020075 util/radix.h
76 util/refcount.h
IJsbrand Wijnands724c8052020-03-05 11:29:23 -080077 format_fns.h
78 ip/ip_format_fns.h
Ole Troan8034a362021-08-11 13:54:14 +020079 ip/ip_sas.h
IJsbrand Wijnands724c8052020-03-05 11:29:23 -080080 ethernet/ethernet_format_fns.h
Mohammed Hawari6da37692021-08-16 14:37:21 +020081 ethernet/ethernet_types_api.h
Damjan Marion4553c952018-08-26 11:04:40 +020082)
83
Benoît Ganne09267f72019-05-17 14:24:17 +020084list(APPEND VNET_API_FILES
85 interface.api
Benoît Ganned39495d2019-07-25 14:14:03 +020086 interface_types.api
Benoît Ganne09267f72019-05-17 14:24:17 +020087 ip/ip_types.api
Chenmin Sund0236f72020-07-27 17:54:40 +080088 flow/flow_types.api
89 flow/flow.api
Benoît Ganne09267f72019-05-17 14:24:17 +020090)
Damjan Marion4553c952018-08-26 11:04:40 +020091
92##############################################################################
93# Policer infra
94##############################################################################
95list(APPEND VNET_SOURCES
96 policer/node_funcs.c
97 policer/policer.c
98 policer/xlate.c
99 policer/policer_api.c
100)
101
Filip Tehlar30d93482019-03-06 04:28:32 -0800102list(APPEND VNET_MULTIARCH_SOURCES
103 policer/node_funcs.c
104)
105
Damjan Marion4553c952018-08-26 11:04:40 +0200106list(APPEND VNET_HEADERS
107 policer/police.h
108 policer/policer.h
109 policer/xlate.h
110)
111
Jakub Grajciarcd01fb42020-03-02 13:16:53 +0100112list(APPEND VNET_API_FILES
113 policer/policer.api
114 policer/policer_types.api
115)
Damjan Marion4553c952018-08-26 11:04:40 +0200116
117##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200118# Layer 2 protocols go here
119##############################################################################
120
121##############################################################################
122# Layer 2 protocol: Ethernet
123##############################################################################
124list(APPEND VNET_SOURCES
Neale Rannscbe25aa2019-09-30 10:53:31 +0000125 ethernet/arp_packet.c
Neale Rannsde5b08f2018-08-29 06:37:18 -0700126 ethernet/ethernet_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200127 ethernet/format.c
128 ethernet/init.c
129 ethernet/interface.c
Neale Rannsde5b08f2018-08-29 06:37:18 -0700130 ethernet/mac_address.c
Damjan Marion4553c952018-08-26 11:04:40 +0200131 ethernet/node.c
132 ethernet/pg.c
133 ethernet/sfp.c
134 ethernet/p2p_ethernet.c
135 ethernet/p2p_ethernet_input.c
136 ethernet/p2p_ethernet_api.c
137)
138
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -0700139list(APPEND VNET_MULTIARCH_SOURCES
140 ethernet/node.c
141 ethernet/p2p_ethernet_input.c
142)
Damjan Marion4553c952018-08-26 11:04:40 +0200143
144list(APPEND VNET_HEADERS
145 ethernet/error.def
146 ethernet/ethernet.h
Jon Loeliger330bf932018-11-28 13:51:42 -0600147 ethernet/mac_address.h
Damjan Marion4553c952018-08-26 11:04:40 +0200148 ethernet/packet.h
149 ethernet/types.def
150 ethernet/sfp.h
151 ethernet/p2p_ethernet.h
Neale Rannscbe25aa2019-09-30 10:53:31 +0000152 ethernet/arp_packet.h
Damjan Marion4553c952018-08-26 11:04:40 +0200153)
154
Benoît Ganned39495d2019-07-25 14:14:03 +0200155list(APPEND VNET_API_FILES
156 ethernet/p2p_ethernet.api
157 ethernet/ethernet_types.api)
Damjan Marion4553c952018-08-26 11:04:40 +0200158
159##############################################################################
160# Layer 2 protocol: Ethernet bridging
161##############################################################################
162list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200163 l2/feat_bitmap.c
164 l2/l2_api.c
Neale Rannscbe25aa2019-09-30 10:53:31 +0000165 l2/l2_arp_term.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200166 l2/l2_bd.c
167 l2/l2_bvi.c
Neale Ranns192b13f2019-03-15 02:16:20 -0700168 l2/l2_bvi_node.c
Damjan Marion4553c952018-08-26 11:04:40 +0200169 l2/l2_input_classify.c
170 l2/l2_output_classify.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200171 l2/l2_efp_filter.c
172 l2/l2_fib.c
173 l2/l2_flood.c
174 l2/l2_fwd.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200175 l2/l2_input.c
Neale Ranns47a3d992020-09-29 15:38:51 +0000176 l2/l2_input_node.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200177 l2/l2_input_vtr.c
178 l2/l2_learn.c
179 l2/l2_output.c
Damjan Marion4553c952018-08-26 11:04:40 +0200180 l2/l2_in_out_acl.c
Andrew Yourtchenkoa23cade2018-10-06 09:18:00 +0200181 l2/l2_in_out_feat_arc.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200182 l2/l2_patch.c
183 l2/l2_rw.c
Neale Rannsb4743802018-09-05 09:13:57 -0700184 l2/l2_uu_fwd.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200185 l2/l2_vtr.c
186 l2/l2_xcrw.c
Damjan Marion4553c952018-08-26 11:04:40 +0200187)
188
Neale Rannsc25eb452018-09-12 06:53:03 -0400189list(APPEND VNET_MULTIARCH_SOURCES
Neale Ranns192b13f2019-03-15 02:16:20 -0700190 l2/l2_bvi_node.c
Neale Rannsc25eb452018-09-12 06:53:03 -0400191 l2/l2_fwd.c
192 l2/l2_learn.c
193 l2/l2_output.c
Damjan Marionc3baf622018-11-06 13:33:27 +0100194 l2/l2_patch.c
Filip Tehlar44f0f712019-03-11 04:26:37 -0700195 l2/l2_in_out_feat_arc.c
196 l2/l2_input_classify.c
Neale Ranns47a3d992020-09-29 15:38:51 +0000197 l2/l2_input_node.c
Filip Tehlar44f0f712019-03-11 04:26:37 -0700198 l2/l2_output_classify.c
199 l2/l2_flood.c
200 l2/l2_uu_fwd.c
201 l2/l2_efp_filter.c
202 l2/l2_rw.c
203 l2/l2_xcrw.c
204 l2/l2_in_out_acl.c
205 l2/l2_input_vtr.c
Neale Rannsc25eb452018-09-12 06:53:03 -0400206)
Neale Rannseb1525f2018-09-09 04:41:02 -0400207
Damjan Marion4553c952018-08-26 11:04:40 +0200208list(APPEND VNET_HEADERS
209 l2/feat_bitmap.h
210 l2/l2_input.h
211 l2/l2_output.h
212 l2/l2_vtr.h
213 l2/l2_input_vtr.h
214 l2/l2_efp_filter.h
215 l2/l2_fwd.h
216 l2/l2_bd.h
217 l2/l2_bvi.h
218 l2/l2_flood.h
219 l2/l2_fib.h
220 l2/l2_rw.h
221 l2/l2_xcrw.h
222 l2/l2_classify.h
223)
224
225list(APPEND VNET_API_FILES l2/l2.api)
226
227##############################################################################
228# Layer 2 protocol: SRP
229##############################################################################
230list(APPEND VNET_SOURCES
231 srp/format.c
232 srp/interface.c
233 srp/node.c
234 srp/pg.c
235)
236
237list(APPEND VNET_HEADERS
238 srp/packet.h
239 srp/srp.h
240)
241
242##############################################################################
243# Layer 2 protocol: PPP
244##############################################################################
245list(APPEND VNET_SOURCES
246 ppp/node.c
247 ppp/pg.c
248 ppp/ppp.c
249)
250
251list(APPEND VNET_HEADERS
252 ppp/error.def
253 ppp/ppp.h
254 ppp/packet.h
255)
256
257##############################################################################
258# Layer 2 protocol: HDLC
259##############################################################################
260list(APPEND VNET_SOURCES
261 hdlc/node.c
262 hdlc/pg.c
263 hdlc/hdlc.c
264)
265
266list(APPEND VNET_HEADERS
267 hdlc/error.def
268 hdlc/hdlc.h
269 hdlc/packet.h
270)
271
272##############################################################################
273# Layer 2 protocol: LLC
274##############################################################################
275list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200276 llc/llc.c
277 llc/node.c
278 llc/pg.c
Damjan Marion4553c952018-08-26 11:04:40 +0200279)
280
281list(APPEND VNET_HEADERS
282 llc/llc.h
283)
284
285##############################################################################
286# Layer 2 protocol: SNAP
287##############################################################################
288list(APPEND VNET_SOURCES
289 snap/snap.c
290 snap/node.c
291 snap/pg.c
292)
293
294list(APPEND VNET_HEADERS
295 snap/snap.h
296)
297
298##############################################################################
299# Layer 2 / vxlan
300##############################################################################
301list(APPEND VNET_SOURCES
302 vxlan/vxlan.c
303 vxlan/encap.c
304 vxlan/decap.c
305 vxlan/vxlan_api.c
306)
307
Filip Tehlare1714d32019-03-05 03:01:43 -0800308list(APPEND VNET_MULTIARCH_SOURCES
309 vxlan/encap.c
310)
311
Damjan Marion4553c952018-08-26 11:04:40 +0200312list(APPEND VNET_HEADERS
313 vxlan/vxlan.h
314 vxlan/vxlan_packet.h
315 vxlan/vxlan_error.def
316)
317
Eyal Baria5679e82018-08-26 15:20:07 +0300318list(APPEND VNET_MULTIARCH_SOURCES vxlan/decap.c)
319
Damjan Marion4553c952018-08-26 11:04:40 +0200320list(APPEND VNET_API_FILES vxlan/vxlan.api)
321
322##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200323# Layer 2 / Bonding
324##############################################################################
325list(APPEND VNET_SOURCES
326 bonding/cli.c
327 bonding/node.c
328 bonding/device.c
329 bonding/bond_api.c
330)
331
332list(APPEND VNET_HEADERS
333 bonding/node.h
334)
335
Damjan Marioncefe1342018-09-21 18:11:33 +0200336list(APPEND VNET_MULTIARCH_SOURCES bonding/node.c bonding/device.c)
Damjan Marion4553c952018-08-26 11:04:40 +0200337list(APPEND VNET_API_FILES bonding/bond.api)
338
339##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200340# Layer 2/3 "classify"
341##############################################################################
342list(APPEND VNET_SOURCES
343 classify/vnet_classify.c
Dave Barach9137e542019-09-13 17:47:50 -0400344 classify/trace_classify.h
Damjan Marion4553c952018-08-26 11:04:40 +0200345 classify/ip_classify.c
346 classify/in_out_acl.c
347 classify/policer_classify.c
348 classify/flow_classify.c
349 classify/flow_classify_node.c
350 classify/vnet_classify.h
351 classify/classify_api.c
352)
353
Filip Tehlare8cb5212019-03-06 04:50:34 -0800354list(APPEND VNET_MULTIARCH_SOURCES
355 classify/ip_classify.c
356 classify/flow_classify_node.c
357)
358
Damjan Marion4553c952018-08-26 11:04:40 +0200359list(APPEND VNET_HEADERS
360 classify/vnet_classify.h
Dave Barach9137e542019-09-13 17:47:50 -0400361 classify/trace_classify.h
Damjan Marion4553c952018-08-26 11:04:40 +0200362 classify/in_out_acl.h
363 classify/policer_classify.h
364 classify/flow_classify.h
365)
366
367list(APPEND VNET_API_FILES classify/classify.api)
368
369##############################################################################
370# Layer 3 protocols go here
371##############################################################################
372
373##############################################################################
374# Layer 3 protocol: IP v4/v6
375##############################################################################
376list(APPEND VNET_SOURCES
377 ip/format.c
378 ip/icmp4.c
379 ip/icmp6.c
380 ip/ip46_cli.c
381 ip/ip_types_api.c
Neale Rannscbe25aa2019-09-30 10:53:31 +0000382 ip/ip46_address.c
Damjan Marion4553c952018-08-26 11:04:40 +0200383 ip/ip4_format.c
384 ip/ip4_forward.c
385 ip/ip4_punt_drop.c
386 ip/ip4_input.c
387 ip/ip4_options.c
388 ip/ip4_mtrie.c
389 ip/ip4_pg.c
390 ip/ip4_source_and_port_range_check.c
Klement Sekera896c8962019-06-24 11:52:49 +0000391 ip/reass/ip4_full_reass.c
Klement Sekerade34c352019-06-25 11:19:22 +0000392 ip/reass/ip4_sv_reass.c
Damjan Marion4553c952018-08-26 11:04:40 +0200393 ip/ip6_format.c
394 ip/ip6_forward.c
395 ip/ip6_ll_table.c
396 ip/ip6_ll_types.c
397 ip/ip6_punt_drop.c
398 ip/ip6_hop_by_hop.c
399 ip/ip6_input.c
Neale Rannscbe25aa2019-09-30 10:53:31 +0000400 ip/ip6_link.c
Damjan Marion4553c952018-08-26 11:04:40 +0200401 ip/ip6_pg.c
Klement Sekera896c8962019-06-24 11:52:49 +0000402 ip/reass/ip6_full_reass.c
Klement Sekerade34c352019-06-25 11:19:22 +0000403 ip/reass/ip6_sv_reass.c
Damjan Marion4553c952018-08-26 11:04:40 +0200404 ip/ip_api.c
405 ip/ip_checksum.c
Neale Rannse4031132020-10-26 13:00:06 +0000406 ip/ip_container_proxy.c
Damjan Marion4553c952018-08-26 11:04:40 +0200407 ip/ip_frag.c
408 ip/ip.c
Neale Ranns59f71132020-04-08 12:19:38 +0000409 ip/ip_interface.c
Damjan Marion4553c952018-08-26 11:04:40 +0200410 ip/ip_init.c
411 ip/ip_in_out_acl.c
Neale Ranns8f5fef22020-12-21 08:29:34 +0000412 ip/ip_path_mtu.c
413 ip/ip_path_mtu_node.c
Neale Ranns92207752019-06-03 13:21:40 +0000414 ip/ip_punt_drop.c
Neale Rannsea93e482019-11-12 17:16:47 +0000415 ip/ip_types.c
Damjan Marion4553c952018-08-26 11:04:40 +0200416 ip/lookup.c
Damjan Marion4553c952018-08-26 11:04:40 +0200417 ip/punt_api.c
418 ip/punt.c
Neale Ranns50f0ac02019-05-15 02:13:37 -0700419 ip/punt_node.c
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000420 ip/vtep.c
Ole Troan8034a362021-08-11 13:54:14 +0200421 ip/ip_sas.c
Damjan Marion4553c952018-08-26 11:04:40 +0200422)
423
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700424list(APPEND VNET_MULTIARCH_SOURCES
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700425 ip/ip4_punt_drop.c
Klement Sekera896c8962019-06-24 11:52:49 +0000426 ip/reass/ip4_full_reass.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700427 ip/ip6_hop_by_hop.c
Klement Sekera896c8962019-06-24 11:52:49 +0000428 ip/reass/ip6_full_reass.c
Klement Sekerade34c352019-06-25 11:19:22 +0000429 ip/reass/ip4_sv_reass.c
430 ip/ip6_hop_by_hop.c
431 ip/reass/ip6_full_reass.c
432 ip/reass/ip6_sv_reass.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700433 ip/ip6_input.c
434 ip/ip6_punt_drop.c
Neale Ranns50f0ac02019-05-15 02:13:37 -0700435 ip/punt_node.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700436 ip/ip_in_out_acl.c
Neale Ranns8f5fef22020-12-21 08:29:34 +0000437 ip/ip_path_mtu_node.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700438)
439
Damjan Marion4553c952018-08-26 11:04:40 +0200440list(APPEND VNET_HEADERS
441 ip/format.h
442 ip/icmp46_packet.h
443 ip/icmp4.h
444 ip/icmp6.h
445 ip/igmp_packet.h
446 ip/ip4_error.h
447 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_error.h
453 ip/ip6.h
454 ip/ip6_hop_by_hop.h
455 ip/ip6_hop_by_hop_packet.h
Neale Rannse4031132020-10-26 13:00:06 +0000456 ip/ip6_inlines.h
Damjan Marion4553c952018-08-26 11:04:40 +0200457 ip/ip6_packet.h
Damjan Marion4553c952018-08-26 11:04:40 +0200458 ip/ip.h
Neale Rannse4031132020-10-26 13:00:06 +0000459 ip/ip_container_proxy.h
460 ip/ip_flow_hash.h
Steven Luongc3ed1c92020-07-27 10:06:58 -0700461 ip/ip_table.h
Neale Ranns59f71132020-04-08 12:19:38 +0000462 ip/ip_interface.h
Damjan Marion4553c952018-08-26 11:04:40 +0200463 ip/ip_packet.h
Mohsin Kazmif5462362021-02-23 15:55:04 +0100464 ip/ip_psh_cksum.h
Damjan Marion4553c952018-08-26 11:04:40 +0200465 ip/ip_source_and_port_range_check.h
Neale Rannsea93e482019-11-12 17:16:47 +0000466 ip/ip_types.h
Damjan Marion4553c952018-08-26 11:04:40 +0200467 ip/lookup.h
468 ip/ports.def
469 ip/protocols.def
470 ip/punt_error.def
471 ip/punt.h
472)
473
474list(APPEND VNET_API_FILES
475 ip/ip.api
Damjan Marion4553c952018-08-26 11:04:40 +0200476 ip/punt.api
477)
478
Damjan Marion38173502019-02-13 19:30:09 +0100479list(APPEND VNET_MULTIARCH_SOURCES
480 ip/ip4_forward.c
481 ip/ip6_forward.c
482 ip/ip4_input.c
483)
Damjan Marion4553c952018-08-26 11:04:40 +0200484
485##############################################################################
Neale Rannscbe25aa2019-09-30 10:53:31 +0000486# Layer 3 neighbours
Damjan Marion4553c952018-08-26 11:04:40 +0200487##############################################################################
488list(APPEND VNET_SOURCES
Neale Rannscbe25aa2019-09-30 10:53:31 +0000489 ip-neighbor/ip_neighbor.c
490 ip-neighbor/ip_neighbor_api.c
491 ip-neighbor/ip_neighbor_dp.c
492 ip-neighbor/ip_neighbor_types.c
493 ip-neighbor/ip_neighbor_watch.c
494 ip-neighbor/ip4_neighbor.c
495 ip-neighbor/ip6_neighbor.c
Damjan Marion4553c952018-08-26 11:04:40 +0200496)
497
498list(APPEND VNET_HEADERS
Neale Rannscbe25aa2019-09-30 10:53:31 +0000499 ip-neighbor/ip_neighbor.h
500 ip-neighbor/ip_neighbor_types.h
501)
502
503list(APPEND VNET_API_FILES
504 ip-neighbor/ip_neighbor.api
Damjan Marion4553c952018-08-26 11:04:40 +0200505)
506
507##############################################################################
508# Bidirectional Forwarding Detection
509##############################################################################
510
511list(APPEND VNET_HEADERS
512 bfd/bfd_protocol.h
513 bfd/bfd_main.h
514 bfd/bfd_api.h
515 bfd/bfd_udp.h
516)
517
518list(APPEND VNET_SOURCES
519 bfd/bfd_api.h
520 bfd/bfd_udp.c
521 bfd/bfd_main.c
522 bfd/bfd_protocol.c
523 bfd/bfd_cli.c
524 bfd/bfd_api.c
525)
526
527list(APPEND VNET_API_FILES bfd/bfd.api)
528
529##############################################################################
Damjan Marion91f17dc2019-03-18 18:59:25 +0100530# Crypto
531##############################################################################
532
533list(APPEND VNET_SOURCES
534 crypto/cli.c
535 crypto/crypto.c
536 crypto/format.c
Fan Zhangf5395782020-04-29 14:00:03 +0100537 crypto/node.c
Nathan Skrzypczak0c936b12020-08-31 15:33:57 +0200538 crypto/crypto_api.c
Damjan Marion91f17dc2019-03-18 18:59:25 +0100539)
540
541list(APPEND VNET_HEADERS
542 crypto/crypto.h
543)
544
Fan Zhangf5395782020-04-29 14:00:03 +0100545list(APPEND VNET_MULTIARCH_SOURCES crypto/node.c)
546
Nathan Skrzypczak0c936b12020-08-31 15:33:57 +0200547list(APPEND VNET_API_FILES crypto/crypto.api)
548
Damjan Marion91f17dc2019-03-18 18:59:25 +0100549##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200550# Layer 3 protocol: IPSec
551##############################################################################
552list(APPEND VNET_SOURCES
553 ipsec/ipsec.c
554 ipsec/ipsec_cli.c
555 ipsec/ipsec_format.c
Neale Rannsf62a8c02019-04-02 08:13:33 +0000556 ipsec/ipsec_handoff.c
Damjan Marion4553c952018-08-26 11:04:40 +0200557 ipsec/ipsec_input.c
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000558 ipsec/ipsec_itf.c
Neale Rannsb71fa752019-04-04 12:43:36 +0000559 ipsec/ipsec_punt.c
Neale Ranns999c8ee2019-02-01 03:31:24 -0800560 ipsec/ipsec_sa.c
561 ipsec/ipsec_spd.c
562 ipsec/ipsec_spd_policy.c
Neale Rannsc87b66c2019-02-07 07:26:12 -0800563 ipsec/ipsec_tun.c
564 ipsec/ipsec_tun_in.c
Damjan Marion4553c952018-08-26 11:04:40 +0200565 ipsec/esp_format.c
566 ipsec/esp_encrypt.c
567 ipsec/esp_decrypt.c
568 ipsec/ah_decrypt.c
569 ipsec/ah_encrypt.c
Damjan Marion4553c952018-08-26 11:04:40 +0200570 ipsec/ipsec_api.c
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +0530571 ipsec/ipsec_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200572)
573
Klement Sekerab8f35442018-10-29 13:38:19 +0100574list(APPEND VNET_MULTIARCH_SOURCES
575 ipsec/esp_encrypt.c
576 ipsec/esp_decrypt.c
577 ipsec/ah_decrypt.c
578 ipsec/ah_encrypt.c
Neale Rannsf62a8c02019-04-02 08:13:33 +0000579 ipsec/ipsec_handoff.c
Kingwel Xiec69ac312019-02-04 01:49:29 -0800580 ipsec/ipsec_output.c
581 ipsec/ipsec_input.c
Neale Rannsc87b66c2019-02-07 07:26:12 -0800582 ipsec/ipsec_tun_in.c
Klement Sekerab8f35442018-10-29 13:38:19 +0100583)
584
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +0530585list(APPEND VNET_API_FILES ipsec/ipsec_types.api)
Damjan Marion4553c952018-08-26 11:04:40 +0200586list(APPEND VNET_API_FILES ipsec/ipsec.api)
587
588list(APPEND VNET_SOURCES
589 ipsec/ipsec_output.c
590)
591
592list(APPEND VNET_HEADERS
593 ipsec/ipsec.h
Neale Ranns918c1612019-02-21 23:34:59 -0800594 ipsec/ipsec_spd.h
595 ipsec/ipsec_spd_policy.h
596 ipsec/ipsec_sa.h
Neale Ranns12989b52019-09-26 16:20:19 +0000597 ipsec/ipsec_tun.h
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +0530598 ipsec/ipsec_types_api.h
Neale Rannsba05e5d2019-06-07 05:17:07 -0700599 ipsec/ipsec_punt.h
Damjan Marion4553c952018-08-26 11:04:40 +0200600 ipsec/esp.h
601 ipsec/ah.h
Damjan Marion4553c952018-08-26 11:04:40 +0200602)
603
604##############################################################################
605# Layer 3 protocol: osi
606##############################################################################
607list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200608 osi/node.c
609 osi/osi.c
610 osi/pg.c
Damjan Marion4553c952018-08-26 11:04:40 +0200611)
612
613list(APPEND VNET_HEADERS
614 osi/osi.h
615)
616
617##############################################################################
618# Layer 4 protocol: tcp
619##############################################################################
620list(APPEND VNET_SOURCES
621 tcp/tcp_api.c
622 tcp/tcp_format.c
623 tcp/tcp_pg.c
624 tcp/tcp_syn_filter4.c
625 tcp/tcp_output.c
626 tcp/tcp_input.c
627 tcp/tcp_newreno.c
Florin Coras52814732019-06-12 15:38:19 -0700628 tcp/tcp_bt.c
Florin Coras999840c2020-03-18 20:31:34 +0000629 tcp/tcp_cli.c
630 tcp/tcp_cubic.c
Florin Corasa436a422019-08-20 07:09:31 -0700631 tcp/tcp_debug.c
Florin Coras999840c2020-03-18 20:31:34 +0000632 tcp/tcp_sack.c
Florin Coras49036a52020-10-08 09:28:32 -0700633 tcp/tcp_timer.c
Damjan Marion4553c952018-08-26 11:04:40 +0200634 tcp/tcp.c
635)
636
Filip Tehlare275bed2019-03-06 00:06:56 -0800637list(APPEND VNET_MULTIARCH_SOURCES
638 tcp/tcp_input.c
639 tcp/tcp_output.c
640 tcp/tcp_syn_filter4.c
641)
642
Damjan Marion4553c952018-08-26 11:04:40 +0200643list(APPEND VNET_HEADERS
644 tcp/tcp_packet.h
645 tcp/tcp_timer.h
Florin Coras999840c2020-03-18 20:31:34 +0000646 tcp/tcp_bt.h
647 tcp/tcp_cc.h
Damjan Marion4553c952018-08-26 11:04:40 +0200648 tcp/tcp_debug.h
Florin Coras999840c2020-03-18 20:31:34 +0000649 tcp/tcp_inlines.h
650 tcp/tcp_sack.h
651 tcp/tcp_types.h
Damjan Marion4553c952018-08-26 11:04:40 +0200652 tcp/tcp.h
653 tcp/tcp_error.def
654)
655
656list(APPEND VNET_API_FILES tcp/tcp.api)
657
658##############################################################################
659# Layer 4 protocol: udp
660##############################################################################
661list(APPEND VNET_SOURCES
662 udp/udp.c
Florin Corasc98ef752020-04-07 17:30:13 +0000663 udp/udp_cli.c
Damjan Marion4553c952018-08-26 11:04:40 +0200664 udp/udp_input.c
665 udp/udp_format.c
666 udp/udp_local.c
667 udp/udp_pg.c
668 udp/udp_encap_node.c
669 udp/udp_encap.c
Arthur de Kerhor8a6f5d32021-05-20 11:48:00 +0200670 udp/udp_decap.c
Damjan Marion4553c952018-08-26 11:04:40 +0200671 udp/udp_api.c
672)
673
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800674list(APPEND VNET_MULTIARCH_SOURCES
675 udp/udp_local.c
676 udp/udp_encap_node.c
677)
678
Damjan Marion4553c952018-08-26 11:04:40 +0200679list(APPEND VNET_HEADERS
680 udp/udp_error.def
681 udp/udp.h
Dave Wallace40cfc152022-02-23 17:15:14 -0500682 udp/udp_encap.h
Damjan Marion4553c952018-08-26 11:04:40 +0200683 udp/udp_packet.h
Florin Corasb040f982020-10-20 14:59:43 -0700684 udp/udp_inlines.h
685 udp/udp_local.h
Damjan Marion4553c952018-08-26 11:04:40 +0200686)
687
688list(APPEND VNET_API_FILES udp/udp.api)
689
690##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200691# Tunnel protocol: gre
692##############################################################################
693list(APPEND VNET_SOURCES
694 gre/gre.c
695 gre/node.c
696 gre/interface.c
697 gre/pg.c
698 gre/gre_api.c
699)
700
Filip Tehlar0fce11f2019-03-04 09:21:59 -0800701list(APPEND VNET_MULTIARCH_SOURCES
702 gre/node.c
703 gre/gre.c
704)
705
Damjan Marion4553c952018-08-26 11:04:40 +0200706list(APPEND VNET_HEADERS
707 gre/gre.h
708 gre/packet.h
709 gre/error.def
710)
711
712list(APPEND VNET_API_FILES gre/gre.api)
713
714##############################################################################
715# Tunnel protocol: ipip
716##############################################################################
717list(APPEND VNET_SOURCES
718 ipip/ipip.c
719 ipip/node.c
720 ipip/sixrd.c
721 ipip/ipip_api.c
722 ipip/ipip_cli.c
723)
724
Filip Tehlar7a542f42019-03-05 04:50:23 -0800725list(APPEND VNET_MULTIARCH_SOURCES
726 ipip/node.c
727)
728
Damjan Marion4553c952018-08-26 11:04:40 +0200729list(APPEND VNET_HEADERS
730 ipip/ipip.h
731)
732
Neale Ranns95346962019-11-25 13:04:44 +0000733list(APPEND VNET_API_FILES
Neale Ranns95346962019-11-25 13:04:44 +0000734 ipip/ipip.api
735)
Damjan Marion4553c952018-08-26 11:04:40 +0200736
737##############################################################################
Neale Ranns59ff9182019-12-29 23:55:18 +0000738# Tunnel infra
739##############################################################################
740list(APPEND VNET_SOURCES
741 tunnel/tunnel.c
742 tunnel/tunnel_types_api.c
743)
744
745list(APPEND VNET_API_FILES
746 tunnel/tunnel_types.api
747)
748
749list(APPEND VNET_HEADERS
750 tunnel/tunnel.h
Neale Rannse5b94dd2019-12-31 05:13:14 +0000751 tunnel/tunnel_dp.h
Neale Ranns59ff9182019-12-29 23:55:18 +0000752)
753
754##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200755# Tunnel protocol: gre+mpls
756##############################################################################
757list(APPEND VNET_SOURCES
758 mpls/mpls.c
759 mpls/mpls_lookup.c
760 mpls/mpls_output.c
761 mpls/mpls_features.c
762 mpls/mpls_input.c
763 mpls/interface.c
764 mpls/mpls_tunnel.c
765 mpls/pg.c
766 mpls/mpls_api.c
767)
768
Filip Tehlar17fcd982019-03-05 04:32:11 -0800769list(APPEND VNET_MULTIARCH_SOURCES
770 mpls/mpls_output.c
771 mpls/mpls_input.c
772 mpls/mpls_lookup.c
773 mpls/mpls_features.c
774)
775
Damjan Marion4553c952018-08-26 11:04:40 +0200776list(APPEND VNET_HEADERS
777 mpls/mpls.h
778 mpls/mpls_types.h
779 mpls/mpls_tunnel.h
780 mpls/packet.h
781 mpls/error.def
782)
783
784list(APPEND VNET_API_FILES mpls/mpls.api)
785
786##############################################################################
787# Tunnel protocol: vxlan-gpe
788##############################################################################
789
790list(APPEND VNET_SOURCES
791 vxlan-gpe/vxlan_gpe.c
792 vxlan-gpe/encap.c
793 vxlan-gpe/decap.c
794 vxlan-gpe/vxlan_gpe_api.c
795)
796
Filip Tehlare1714d32019-03-05 03:01:43 -0800797list (APPEND VNET_MULTIARCH_SOURCES
798 vxlan-gpe/decap.c
799)
800
Damjan Marion4553c952018-08-26 11:04:40 +0200801list(APPEND VNET_HEADERS
802 vxlan-gpe/vxlan_gpe.h
803 vxlan-gpe/vxlan_gpe_packet.h
804 vxlan-gpe/vxlan_gpe_error.def
805)
806
807list(APPEND VNET_API_FILES vxlan-gpe/vxlan_gpe.api)
808
809##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200810# ipv6 segment routing
811##############################################################################
812
813list(APPEND VNET_SOURCES
814 srv6/sr.c
815 srv6/sr_localsid.c
816 srv6/sr_policy_rewrite.c
817 srv6/sr_steering.c
818 srv6/sr_api.c
819)
820
821list(APPEND VNET_HEADERS
822 srv6/sr_packet.h
823 srv6/sr.h
824)
825
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100826list(APPEND VNET_API_FILES
827 srv6/sr.api
828 srv6/sr_types.api
829)
Damjan Marion4553c952018-08-26 11:04:40 +0200830
831##############################################################################
832# mpls segment routing
833##############################################################################
834
835list(APPEND VNET_SOURCES
836 srmpls/sr_mpls_policy.c
837 srmpls/sr_mpls_steering.c
838 srmpls/sr_mpls_api.c
839)
840
841list(APPEND VNET_HEADERS
842 srmpls/sr_mpls.h
843)
844
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100845list(APPEND VNET_API_FILES
846 srmpls/sr_mpls.api
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100847)
Damjan Marion4553c952018-08-26 11:04:40 +0200848
849##############################################################################
850# IPFIX / netflow v10
851##############################################################################
852list(APPEND VNET_SOURCES
853 ipfix-export/flow_report.c
854 ipfix-export/flow_api.c
855)
856
857list(APPEND VNET_HEADERS
858 ipfix-export/flow_report.h
859 ipfix-export/ipfix_info_elements.h
860 ipfix-export/ipfix_packet.h
861)
862
863list(APPEND VNET_API_FILES ipfix-export/ipfix_export.api)
864
865##############################################################################
Mohsin Kazmi41b23bc2021-06-30 18:26:25 +0000866# HASH
867##############################################################################
868list(APPEND VNET_SOURCES
869 hash/hash.c
870 hash/cli.c
871 hash/crc32_5tuple.c
Florin Coras1e6d30b2021-11-02 10:32:19 -0700872 hash/handoff_eth.c
Steven Luong05a68d62021-12-03 12:05:45 -0800873 hash/hash_eth.c
Mohsin Kazmi41b23bc2021-06-30 18:26:25 +0000874)
875
876list(APPEND VNET_HEADERS
877 hash/hash.h
878)
879
880##############################################################################
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200881# GSO
882##############################################################################
883list(APPEND VNET_SOURCES
884 gso/cli.c
885 gso/gso.c
886 gso/gso_api.c
887 gso/node.c
888)
889
890list(APPEND VNET_HEADERS
Mohsin Kazmif382b062020-08-11 15:00:44 +0200891 gso/gro.h
892 gso/gro_func.h
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000893 gso/hdr_offset_parser.h
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200894 gso/gso.h
895)
896
897list(APPEND VNET_API_FILES
898 gso/gso.api
899)
900
901##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200902# IPFIX classify code
903##############################################################################
904
905list(APPEND VNET_SOURCES
906 ipfix-export/flow_report_classify.c
907)
908
909list(APPEND VNET_HEADERS
910 ipfix-export/flow_report_classify.h
911)
912
913##############################################################################
914# lawful intercept
915##############################################################################
916
917list(APPEND VNET_SOURCES
918 lawful-intercept/lawful_intercept.c
919 lawful-intercept/node.c
920)
921
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -0700922list(APPEND VNET_MULTIARCH_SOURCES
923 lawful-intercept/node.c
924)
925
Damjan Marion4553c952018-08-26 11:04:40 +0200926list(APPEND VNET_HEADERS
927 lawful-intercept/lawful_intercept.h
928)
929
930##############################################################################
931# SPAN (port mirroring)
932##############################################################################
933
934list(APPEND VNET_SOURCES
935 span/span_api.c
936 span/span.c
937 span/node.c
938)
939
Filip Tehlara79271f2019-03-05 03:46:40 -0800940list(APPEND VNET_MULTIARCH_SOURCES
941 span/node.c
942)
943
Damjan Marion4553c952018-08-26 11:04:40 +0200944list(APPEND VNET_HEADERS
945 span/span.h
946)
947
948list(APPEND VNET_API_FILES span/span.api)
949
950##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200951# Packet generator
952##############################################################################
953
954list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200955 pg/cli.c
956 pg/edit.c
957 pg/init.c
958 pg/input.c
959 pg/output.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200960 pg/stream.c
Damjan Marion4553c952018-08-26 11:04:40 +0200961 pg/pg_api.c
962)
963
964list(APPEND VNET_HEADERS
965 pg/pg.h
966 pg/edit.h
967)
968
969list(APPEND VNET_API_FILES pg/pg.api)
970
971##############################################################################
972# virtio
973##############################################################################
974
975list(APPEND VNET_SOURCES
Damjan Marionf41244f2019-11-08 17:41:06 +0100976 devices/virtio/cli.c
Damjan Marion4553c952018-08-26 11:04:40 +0200977 devices/virtio/device.c
Damjan Marionf41244f2019-11-08 17:41:06 +0100978 devices/virtio/format.c
Damjan Marion4553c952018-08-26 11:04:40 +0200979 devices/virtio/node.c
Damjan Marionf41244f2019-11-08 17:41:06 +0100980 devices/virtio/pci.c
Damjan Marion4553c952018-08-26 11:04:40 +0200981 devices/virtio/vhost_user.c
982 devices/virtio/vhost_user_input.c
983 devices/virtio/vhost_user_output.c
984 devices/virtio/vhost_user_api.c
985 devices/virtio/virtio.c
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200986 devices/virtio/virtio_api.c
Mohsin Kazmia0a68332020-07-16 12:55:42 +0000987 devices/virtio/virtio_pci_legacy.c
Mohsin Kazmi379aac32020-08-20 10:25:12 +0200988 devices/virtio/virtio_pci_modern.c
Mohsin Kazmib7e4e6d2021-12-13 18:32:42 +0000989 devices/virtio/virtio_pre_input.c
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200990 devices/virtio/virtio_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200991)
992
993list(APPEND VNET_HEADERS
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200994 devices/virtio/pci.h
Damjan Marion4553c952018-08-26 11:04:40 +0200995 devices/virtio/virtio.h
Mohsin Kazmie347acb2020-09-28 10:26:33 +0000996 devices/virtio/virtio_buffering.h
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200997 devices/virtio/virtio_std.h
Mohsin Kazmia0a68332020-07-16 12:55:42 +0000998 devices/virtio/virtio_pci_legacy.h
Mohsin Kazmi379aac32020-08-20 10:25:12 +0200999 devices/virtio/virtio_pci_modern.h
Mohsin Kazmia7a22812020-08-31 17:17:16 +02001000 devices/virtio/vhost_std.h
Damjan Marion4553c952018-08-26 11:04:40 +02001001 devices/virtio/vhost_user.h
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +02001002 devices/virtio/virtio_types_api.h
Damjan Marion4553c952018-08-26 11:04:40 +02001003)
1004
1005list(APPEND VNET_MULTIARCH_SOURCES
1006 devices/virtio/vhost_user_input.c
1007 devices/virtio/vhost_user_output.c
Filip Tehlar608996d2019-03-04 03:03:13 -08001008 devices/virtio/node.c
1009 devices/af_packet/node.c
Filip Tehlaraee73642019-03-13 05:50:44 -07001010 devices/virtio/device.c
Damjan Marion4553c952018-08-26 11:04:40 +02001011)
1012
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001013list(APPEND VNET_API_FILES
1014 devices/virtio/vhost_user.api
1015 devices/virtio/virtio.api
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +02001016 devices/virtio/virtio_types.api
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001017)
Damjan Marion4553c952018-08-26 11:04:40 +02001018
1019##############################################################################
1020# tap interface (with virtio backend)
1021##############################################################################
1022
1023list(APPEND VNET_SOURCES
1024 devices/tap/cli.c
1025 devices/tap/tap.c
1026 devices/tap/tapv2_api.c
1027)
1028
1029list(APPEND VNET_HEADERS
1030 devices/tap/tap.h
1031)
1032
Mohsin Kazmia7a22812020-08-31 17:17:16 +02001033list(APPEND VNET_API_FILES
1034 devices/tap/tapv2.api
1035)
Damjan Marion4553c952018-08-26 11:04:40 +02001036
1037##############################################################################
1038# tap interface (with virtio backend)
1039##############################################################################
1040
1041list(APPEND VNET_SOURCES
1042 devices/pipe/pipe_api.c
1043 devices/pipe/pipe.c
1044)
1045
1046list(APPEND VNET_HEADERS
1047 devices/pipe/pipe.h
1048)
1049
1050list(APPEND VNET_API_FILES devices/pipe/pipe.api)
1051
1052##############################################################################
1053# session managmeent
1054##############################################################################
1055
1056list(APPEND VNET_SOURCES
1057 session/session.c
Florin Coras11166672020-04-13 01:20:25 +00001058 session/session_debug.c
Damjan Marion4553c952018-08-26 11:04:40 +02001059 session/session_table.c
1060 session/session_rules_table.c
1061 session/session_lookup.c
1062 session/session_node.c
1063 session/transport.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001064 session/application.c
Florin Coras623eb562019-02-03 19:28:34 -08001065 session/application_worker.c
Damjan Marion4553c952018-08-26 11:04:40 +02001066 session/session_cli.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001067 session/application_interface.c
Florin Corasba7d8f52019-02-22 13:11:38 -08001068 session/application_local.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001069 session/application_namespace.c
Damjan Marion4553c952018-08-26 11:04:40 +02001070 session/segment_manager.c
Damjan Marion4553c952018-08-26 11:04:40 +02001071 session/session_api.c
1072)
1073
1074list(APPEND VNET_HEADERS
1075 session/session.h
1076 session/session_table.h
1077 session/session_rules_table.h
Florin Coras288eaab2019-02-03 15:26:14 -08001078 session/session_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001079 session/session_lookup.h
1080 session/application.h
1081 session/transport.h
Florin Coras1ee78302019-02-05 15:51:15 -08001082 session/transport_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001083 session/application_interface.h
Florin Corasba7d8f52019-02-22 13:11:38 -08001084 session/application_local.h
Damjan Marion4553c952018-08-26 11:04:40 +02001085 session/application_namespace.h
1086 session/session_debug.h
1087 session/segment_manager.h
1088 session/mma_template.h
1089 session/mma_template.c
1090 session/mma_16.h
1091 session/mma_40.h
1092)
1093
1094list(APPEND VNET_API_FILES session/session.api)
1095
1096##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +02001097# TLS protocol
1098##############################################################################
1099
1100list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +02001101 tls/tls.c
Damjan Marion4553c952018-08-26 11:04:40 +02001102)
1103
1104list(APPEND VNET_HEADERS
1105 tls/tls.h
Florin Coras54a51fd2019-02-07 15:34:52 -08001106 tls/tls_test.h
Damjan Marion4553c952018-08-26 11:04:40 +02001107)
1108
1109##############################################################################
1110# Linux packet interface
1111##############################################################################
1112
1113list(APPEND VNET_SOURCES
1114 devices/af_packet/af_packet.c
1115 devices/af_packet/device.c
1116 devices/af_packet/node.c
1117 devices/af_packet/cli.c
1118 devices/af_packet/af_packet_api.c
1119)
1120
Filip Tehlaraee73642019-03-13 05:50:44 -07001121list(APPEND VNET_MULTIARCH_SOURCES
Filip Tehlaraee73642019-03-13 05:50:44 -07001122 devices/af_packet/device.c
1123)
1124
Damjan Marion4553c952018-08-26 11:04:40 +02001125list(APPEND VNET_HEADERS
1126 devices/af_packet/af_packet.h
1127)
1128
1129list(APPEND VNET_API_FILES devices/af_packet/af_packet.api)
1130
1131##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +02001132# Driver feature graph arc support
1133##############################################################################
1134
1135list(APPEND VNET_SOURCES
1136 feature/feature.c
1137 feature/feature_api.c
1138 feature/registration.c
1139)
1140
1141list(APPEND VNET_HEADERS
1142 feature/feature.h
1143)
1144
1145list(APPEND VNET_API_FILES feature/feature.api)
1146
1147##############################################################################
1148# Unix kernel related
1149##############################################################################
1150
1151# FIXME: unix/hgshm.c
1152
1153list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +02001154 unix/gdb_funcs.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001155 unix/tuntap.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001156)
1157
Damjan Marion4553c952018-08-26 11:04:40 +02001158list(APPEND VNET_HEADERS
Damjan Marion4553c952018-08-26 11:04:40 +02001159 unix/tuntap.h
Damjan Marion612dd6a2018-07-30 12:45:07 +02001160)
1161
Damjan Marion4553c952018-08-26 11:04:40 +02001162##############################################################################
1163# FIB
1164##############################################################################
1165
1166list(APPEND VNET_SOURCES
1167 fib/fib.c
Neale Rannsd6953332021-08-10 07:39:18 +00001168 fib/ip4_fib_hash.c
Damjan Marion4553c952018-08-26 11:04:40 +02001169 fib/ip4_fib.c
Neale Rannsd6953332021-08-10 07:39:18 +00001170 fib/ip4_fib_16.c
1171 fib/ip4_fib_8.c
Damjan Marion4553c952018-08-26 11:04:40 +02001172 fib/ip6_fib.c
1173 fib/mpls_fib.c
1174 fib/fib_table.c
1175 fib/fib_walk.c
1176 fib/fib_types.c
1177 fib/fib_node.c
1178 fib/fib_node_list.c
1179 fib/fib_entry.c
1180 fib/fib_entry_src.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001181 fib/fib_entry_src_adj.c
1182 fib/fib_entry_src_api.c
1183 fib/fib_entry_src_drop.c
Damjan Marion4553c952018-08-26 11:04:40 +02001184 fib/fib_entry_src_interface.c
1185 fib/fib_entry_src_interpose.c
Damjan Marion4553c952018-08-26 11:04:40 +02001186 fib/fib_entry_src_lisp.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001187 fib/fib_entry_src_mpls.c
1188 fib/fib_entry_src_simple.c
1189 fib/fib_entry_src_rr.c
Damjan Marion4553c952018-08-26 11:04:40 +02001190 fib/fib_entry_cover.c
1191 fib/fib_entry_delegate.c
Neale Ranns1f50bf82019-07-16 15:28:52 +00001192 fib/fib_entry_track.c
Damjan Marion4553c952018-08-26 11:04:40 +02001193 fib/fib_path_list.c
1194 fib/fib_path.c
1195 fib/fib_path_ext.c
Neale Rannse2fe0972020-11-26 08:37:27 +00001196 fib/fib_sas.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001197 fib/fib_source.c
Damjan Marion4553c952018-08-26 11:04:40 +02001198 fib/fib_urpf_list.c
1199 fib/fib_attached_export.c
1200 fib/fib_api.c
1201 fib/fib_bfd.c
1202)
1203
1204list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001205 fib/fib.h
Damjan Marion4553c952018-08-26 11:04:40 +02001206 fib/fib_api.h
Dave Wallace40cfc152022-02-23 17:15:14 -05001207 fib/fib_entry_track.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001208 fib/ip4_fib.h
Benoît Ganned9fc7082021-10-18 11:16:01 +02001209 fib/ip4_fib_8.h
1210 fib/ip4_fib_16.h
1211 fib/ip4_fib_hash.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001212 fib/ip6_fib.h
1213 fib/fib_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001214 fib/fib_table.h
1215 fib/fib_node.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001216 fib/fib_node_list.h
Damjan Marion4553c952018-08-26 11:04:40 +02001217 fib/fib_entry.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001218 fib/fib_entry_delegate.h
Neale Rannse2fe0972020-11-26 08:37:27 +00001219 fib/fib_sas.h
Neale Ranns3bab8f92019-12-04 06:11:00 +00001220 fib/fib_source.h
Damjan Marion4553c952018-08-26 11:04:40 +02001221)
1222
Neale Ranns976b2592019-12-04 06:11:00 +00001223list(APPEND VNET_API_FILES
1224 fib/fib_types.api
1225 fib/fib.api
1226)
Benoît Ganned39495d2019-07-25 14:14:03 +02001227
Damjan Marion4553c952018-08-26 11:04:40 +02001228##############################################################################
1229# ADJ
1230##############################################################################
1231
1232list(APPEND VNET_SOURCES
1233 adj/adj_nbr.c
1234 adj/adj_glean.c
1235 adj/adj_midchain.c
Neale Rannsf339f492021-03-31 07:36:33 +00001236 adj/adj_midchain_node.c
Neale Ranns4c3ba812019-03-26 07:02:58 +00001237 adj/adj_midchain_delegate.c
Damjan Marion4553c952018-08-26 11:04:40 +02001238 adj/adj_mcast.c
1239 adj/adj_l2.c
1240 adj/adj_nsh.c
1241 adj/adj.c
1242 adj/rewrite.c
1243 adj/adj_bfd.c
1244 adj/adj_delegate.c
1245)
1246
Filip Tehlar0b2c15d2019-03-04 02:52:54 -08001247list(APPEND VNET_MULTIARCH_SOURCES
1248 adj/adj_nsh.c
1249 adj/adj_l2.c
Neale Rannsf339f492021-03-31 07:36:33 +00001250 adj/adj_midchain_node.c
Filip Tehlar0b2c15d2019-03-04 02:52:54 -08001251)
1252
Damjan Marion4553c952018-08-26 11:04:40 +02001253list(APPEND VNET_HEADERS
1254 adj/adj.h
1255 adj/adj_types.h
1256 adj/adj_glean.h
1257 adj/adj_nsh.h
1258 adj/adj_nbr.h
Alberto Compagnod8ca1e42019-08-12 11:43:19 +02001259 adj/adj_midchain.h
Damjan Marion4553c952018-08-26 11:04:40 +02001260 adj/rewrite.h
1261)
1262
1263##############################################################################
1264# Data-Plane Objects
1265##############################################################################
1266
1267list(APPEND VNET_SOURCES
1268 dpo/dpo.c
1269 dpo/drop_dpo.c
1270 dpo/ip_null_dpo.c
1271 dpo/ip6_ll_dpo.c
1272 dpo/punt_dpo.c
1273 dpo/receive_dpo.c
1274 dpo/load_balance.c
1275 dpo/load_balance_map.c
1276 dpo/lookup_dpo.c
1277 dpo/classify_dpo.c
1278 dpo/replicate_dpo.c
1279 dpo/interface_rx_dpo.c
1280 dpo/interface_tx_dpo.c
1281 dpo/mpls_disposition.c
1282 dpo/mpls_label_dpo.c
1283 dpo/l3_proxy_dpo.c
1284 dpo/dvr_dpo.c
Neale Ranns1dbcf302019-07-19 11:44:53 +00001285 dpo/pw_cw.c
Damjan Marion4553c952018-08-26 11:04:40 +02001286)
1287
Filip Tehlareb9a27f2019-03-07 01:42:11 -08001288list(APPEND VNET_MULTIARCH_SOURCES
1289 dpo/lookup_dpo.h
1290 dpo/mpls_disposition.c
1291 dpo/dvr_dpo.c
1292 dpo/mpls_label_dpo.c
1293 dpo/interface_rx_dpo.c
1294)
1295
Damjan Marion4553c952018-08-26 11:04:40 +02001296list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001297 dpo/load_balance.h
Damjan Marion0cc76942022-01-20 18:45:39 +01001298 dpo/load_balance_map.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001299 dpo/drop_dpo.h
Damjan Marion4553c952018-08-26 11:04:40 +02001300 dpo/lookup_dpo.h
1301 dpo/punt_dpo.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001302 dpo/classify_dpo.h
1303 dpo/receive_dpo.h
1304 dpo/ip_null_dpo.h
1305 dpo/replicate_dpo.h
Damjan Marion4553c952018-08-26 11:04:40 +02001306 dpo/dpo.h
1307)
1308
1309##############################################################################
1310# Multicast FIB
1311##############################################################################
1312
1313list(APPEND VNET_SOURCES
Damjan Marion4553c952018-08-26 11:04:40 +02001314 mfib/mfib_forward.c
1315 mfib/ip4_mfib.c
1316 mfib/ip6_mfib.c
Neale Ranns097fa662018-05-01 05:17:55 -07001317 mfib/mfib_api.c
Damjan Marion4553c952018-08-26 11:04:40 +02001318 mfib/mfib_types.c
1319 mfib/mfib_signal.c
1320 mfib/mfib_itf.c
1321 mfib/mfib_entry.c
Neale Ranns9e829a82018-12-17 05:50:32 -08001322 mfib/mfib_entry.c
1323 mfib/mfib_entry_cover.c
1324 mfib/mfib_entry_delegate.c
1325 mfib/mfib_entry_src.c
1326 mfib/mfib_entry_src_rr.c
Damjan Marion4553c952018-08-26 11:04:40 +02001327 mfib/mfib_table.c
1328)
1329
Filip Tehlar79c27eb2019-03-07 00:30:03 -08001330list(APPEND VNET_MULTIARCH_SOURCES
1331 mfib/mfib_forward.c
1332)
1333
Damjan Marion4553c952018-08-26 11:04:40 +02001334list(APPEND VNET_HEADERS
1335 mfib/ip4_mfib.h
1336 mfib/mfib_types.h
1337 mfib/mfib_table.h
1338)
1339
Benoît Ganned39495d2019-07-25 14:14:03 +02001340list(APPEND VNET_API_FILES mfib/mfib_types.api)
1341
Damjan Marion4553c952018-08-26 11:04:40 +02001342##############################################################################
1343# Utilities
1344##############################################################################
1345
1346list(APPEND VNET_SOURCES
1347 util/radix.c
1348 util/refcount.c
Neale Rannsc8352bc2018-08-29 10:23:58 -07001349 util/throttle.c
Damjan Marion4553c952018-08-26 11:04:40 +02001350)
1351
Damjan Marionac5554c2018-08-30 22:56:59 +02001352list(APPEND VNET_HEADERS
1353 util/throttle.h
1354)
1355
Damjan Marion4553c952018-08-26 11:04:40 +02001356##############################################################################
1357# QoS
1358##############################################################################
1359
1360list(APPEND VNET_SOURCES
1361 qos/qos_types.c
1362 qos/qos_api.c
1363 qos/qos_egress_map.c
1364 qos/qos_record.c
Filip Tehlar0bddf7e2019-03-04 08:14:07 -08001365 qos/qos_record_node.c
Neale Ranns83832e72019-07-31 02:48:02 -07001366 qos/qos_store.c
1367 qos/qos_store_node.c
Damjan Marion4553c952018-08-26 11:04:40 +02001368 qos/qos_mark.c
Filip Tehlar0bddf7e2019-03-04 08:14:07 -08001369 qos/qos_mark_node.c
1370)
1371
1372list(APPEND VNET_MULTIARCH_SOURCES
1373 qos/qos_record_node.c
1374 qos/qos_mark_node.c
Damjan Marion4553c952018-08-26 11:04:40 +02001375)
1376
1377list(APPEND VNET_API_FILES qos/qos.api)
1378
1379##############################################################################
1380# BIER
1381##############################################################################
1382
1383list(APPEND VNET_SOURCES
1384 bier/bier_bit_string.c
1385 bier/bier_entry.c
1386 bier/bier_fmask.c
1387 bier/bier_fmask_db.c
1388 bier/bier_input.c
1389 bier/bier_lookup.c
1390 bier/bier_output.c
1391 bier/bier_table.c
1392 bier/bier_types.c
Damjan Marion4553c952018-08-26 11:04:40 +02001393 bier/bier_api.c
1394 bier/bier_drop.c
1395 bier/bier_update.c
1396 bier/bier_imp_node.c
1397 bier/bier_imp.c
1398 bier/bier_disp_entry.c
1399 bier/bier_disp_lookup_node.c
1400 bier/bier_disp_dispatch_node.c
1401 bier/bier_disp_table.c
1402 bier/bier_bift_table.c
1403)
1404
Filip Tehlara01e0322019-03-05 03:34:52 -08001405list(APPEND VNET_MULTIARCH_SOURCES
1406 bier/bier_disp_dispatch_node.c
1407 bier/bier_disp_lookup_node.c
1408 bier/bier_imp_node.c
1409)
1410
Damjan Marion4553c952018-08-26 11:04:40 +02001411list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001412 bier/bier_types.h
1413 bier/bier_entry.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001414 bier/bier_update.h
Damjan Marion4553c952018-08-26 11:04:40 +02001415 bier/bier_table.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001416)
1417
Damjan Marion4553c952018-08-26 11:04:40 +02001418list(APPEND VNET_API_FILES bier/bier.api)
Damjan Marion612dd6a2018-07-30 12:45:07 +02001419
Florin Coras41c9e042018-09-11 00:10:41 -07001420##############################################################################
Matus Fabianb4515b42018-11-19 04:25:32 -08001421# SYSLOG
1422##############################################################################
1423
1424list (APPEND VNET_SOURCES
1425 syslog/syslog_api.c
1426 syslog/syslog_udp.c
1427 syslog/syslog.c
1428)
1429
1430list(APPEND VNET_HEADERS
1431 syslog/syslog_udp.h
1432 syslog/syslog.h
1433)
1434
1435list(APPEND VNET_API_FILES syslog/syslog.api)
1436
1437##############################################################################
Neale Ranns03ce4622020-02-03 10:55:09 +00001438# Tunnel Endpoint Information Base
Neale Ranns5f8f6172019-04-18 10:23:56 +00001439##############################################################################
1440
1441list (APPEND VNET_SOURCES
Neale Ranns03ce4622020-02-03 10:55:09 +00001442 teib/teib_api.c
1443 teib/teib_cli.c
1444 teib/teib.c
Neale Ranns5f8f6172019-04-18 10:23:56 +00001445)
1446
1447list(APPEND VNET_HEADERS
Neale Ranns03ce4622020-02-03 10:55:09 +00001448 teib/teib.h
Neale Ranns5f8f6172019-04-18 10:23:56 +00001449)
1450
Neale Ranns03ce4622020-02-03 10:55:09 +00001451list(APPEND VNET_API_FILES teib/teib.api)
Neale Ranns5f8f6172019-04-18 10:23:56 +00001452
1453##############################################################################
Neale Rannscbe25aa2019-09-30 10:53:31 +00001454# ARP/ND
1455##############################################################################
1456
1457list (APPEND VNET_SOURCES
1458 arp/arp_api.c
1459 arp/arp.c
1460 arp/arp_proxy.c
1461)
1462
1463list(APPEND VNET_HEADERS
1464 arp/arp.h
1465)
1466
1467list(APPEND VNET_API_FILES arp/arp.api)
1468
1469list (APPEND VNET_SOURCES
1470 ip6-nd/ip6_mld.c
1471 ip6-nd/ip6_nd.c
1472 ip6-nd/ip6_nd_api.c
1473 ip6-nd/ip6_nd_proxy.c
Mohsin Kazmicebb4772021-04-07 19:50:35 +02001474 ip6-nd/ip6_nd_mirror_proxy.c
Neale Rannscbe25aa2019-09-30 10:53:31 +00001475 ip6-nd/ip6_ra.c
1476 ip6-nd/rd_cp.c
1477 ip6-nd/rd_cp_api.c
1478)
1479
1480list(APPEND VNET_HEADERS
1481 ip6-nd/ip6_nd.h
1482)
1483
1484list(APPEND VNET_API_FILES
1485 ip6-nd/ip6_nd.api
1486 ip6-nd/rd_cp.api
1487)
1488
1489##############################################################################
Florin Coras41c9e042018-09-11 00:10:41 -07001490# VNET Library
1491##############################################################################
1492
Damjan Marion4553c952018-08-26 11:04:40 +02001493add_vpp_library(vnet
1494 SOURCES ${VNET_SOURCES}
1495 MULTIARCH_SOURCES ${VNET_MULTIARCH_SOURCES}
1496 INSTALL_HEADERS ${VNET_HEADERS}
1497 API_FILES ${VNET_API_FILES}
Klement Sekeraefd4d702021-04-20 19:21:36 +02001498 LINK_LIBRARIES vppinfra svm vlib
Chris Lukec171d012020-01-15 20:30:04 -05001499 DEPENDS vpp_version_h api_headers
Damjan Marion612dd6a2018-07-30 12:45:07 +02001500)
Florin Coras41c9e042018-09-11 00:10:41 -07001501
1502##############################################################################
Yulong Peidb43bb62020-01-09 01:12:43 +08001503# vpp api test client library
1504##############################################################################
1505
1506add_vpp_library (vatclient
1507 SOURCES ip/ip_types_api.c
1508 DEPENDS api_headers
1509)
1510
Florin Coras248210c2021-09-14 18:54:45 -07001511add_vat_test_library(vnet
Filip Tehlarf0e67d72021-07-23 22:03:05 +00001512 interface_test.c
Florin Coras248210c2021-09-14 18:54:45 -07001513 ip/ip_test.c
1514 arp/arp_test.c
1515 ip6-nd/ip6_nd_test.c
Filip Tehlar850024b2021-09-02 10:32:40 +00001516 srmpls/sr_mpls_test.c
Filip Tehlarea257222021-10-18 09:02:37 +00001517 session/session_test.c
Filip Tehlar1b6fb402021-07-24 18:10:39 +00001518 l2/l2_test.c
Filip Tehlar0ad06082021-07-25 14:38:45 +00001519 ipsec/ipsec_test.c
Florin Coras248210c2021-09-14 18:54:45 -07001520)
1521
Yulong Peidb43bb62020-01-09 01:12:43 +08001522##############################################################################
Ole Troandf87f802020-11-18 19:17:48 +01001523# VAT2 plugins
1524##############################################################################
1525add_vpp_test_library(vnet
1526 ${VNET_API_FILES}
1527)
1528
1529##############################################################################