blob: ef187dc2f432e3c9b3405c2f056a3d8ac7012145 [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
673)
674
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800675list(APPEND VNET_MULTIARCH_SOURCES
676 udp/udp_local.c
677 udp/udp_encap_node.c
678)
679
Damjan Marion4553c952018-08-26 11:04:40 +0200680list(APPEND VNET_HEADERS
681 udp/udp_error.def
682 udp/udp.h
Dave Wallace40cfc152022-02-23 17:15:14 -0500683 udp/udp_encap.h
Damjan Marion4553c952018-08-26 11:04:40 +0200684 udp/udp_packet.h
Florin Corasb040f982020-10-20 14:59:43 -0700685 udp/udp_inlines.h
686 udp/udp_local.h
Damjan Marion4553c952018-08-26 11:04:40 +0200687)
688
689list(APPEND VNET_API_FILES udp/udp.api)
690
691##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200692# Tunnel protocol: gre
693##############################################################################
694list(APPEND VNET_SOURCES
695 gre/gre.c
696 gre/node.c
697 gre/interface.c
698 gre/pg.c
699 gre/gre_api.c
700)
701
Filip Tehlar0fce11f2019-03-04 09:21:59 -0800702list(APPEND VNET_MULTIARCH_SOURCES
703 gre/node.c
704 gre/gre.c
705)
706
Damjan Marion4553c952018-08-26 11:04:40 +0200707list(APPEND VNET_HEADERS
708 gre/gre.h
709 gre/packet.h
710 gre/error.def
711)
712
713list(APPEND VNET_API_FILES gre/gre.api)
714
715##############################################################################
716# Tunnel protocol: ipip
717##############################################################################
718list(APPEND VNET_SOURCES
719 ipip/ipip.c
720 ipip/node.c
721 ipip/sixrd.c
722 ipip/ipip_api.c
723 ipip/ipip_cli.c
724)
725
Filip Tehlar7a542f42019-03-05 04:50:23 -0800726list(APPEND VNET_MULTIARCH_SOURCES
727 ipip/node.c
728)
729
Damjan Marion4553c952018-08-26 11:04:40 +0200730list(APPEND VNET_HEADERS
731 ipip/ipip.h
732)
733
Neale Ranns95346962019-11-25 13:04:44 +0000734list(APPEND VNET_API_FILES
Neale Ranns95346962019-11-25 13:04:44 +0000735 ipip/ipip.api
736)
Damjan Marion4553c952018-08-26 11:04:40 +0200737
738##############################################################################
Neale Ranns59ff9182019-12-29 23:55:18 +0000739# Tunnel infra
740##############################################################################
741list(APPEND VNET_SOURCES
742 tunnel/tunnel.c
743 tunnel/tunnel_types_api.c
744)
745
746list(APPEND VNET_API_FILES
747 tunnel/tunnel_types.api
748)
749
750list(APPEND VNET_HEADERS
751 tunnel/tunnel.h
Neale Rannse5b94dd2019-12-31 05:13:14 +0000752 tunnel/tunnel_dp.h
Benoît Ganne6e3b3b72022-08-31 12:05:43 +0200753 tunnel/tunnel_types_api.h
Neale Ranns59ff9182019-12-29 23:55:18 +0000754)
755
756##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200757# Tunnel protocol: gre+mpls
758##############################################################################
759list(APPEND VNET_SOURCES
760 mpls/mpls.c
761 mpls/mpls_lookup.c
762 mpls/mpls_output.c
763 mpls/mpls_features.c
764 mpls/mpls_input.c
765 mpls/interface.c
766 mpls/mpls_tunnel.c
767 mpls/pg.c
768 mpls/mpls_api.c
769)
770
Filip Tehlar17fcd982019-03-05 04:32:11 -0800771list(APPEND VNET_MULTIARCH_SOURCES
772 mpls/mpls_output.c
773 mpls/mpls_input.c
774 mpls/mpls_lookup.c
775 mpls/mpls_features.c
776)
777
Damjan Marion4553c952018-08-26 11:04:40 +0200778list(APPEND VNET_HEADERS
779 mpls/mpls.h
Benoît Ganne6e3b3b72022-08-31 12:05:43 +0200780 mpls/mpls_lookup.h
Damjan Marion4553c952018-08-26 11:04:40 +0200781 mpls/mpls_types.h
782 mpls/mpls_tunnel.h
783 mpls/packet.h
Damjan Marion4553c952018-08-26 11:04:40 +0200784)
785
786list(APPEND VNET_API_FILES mpls/mpls.api)
787
788##############################################################################
789# Tunnel protocol: vxlan-gpe
790##############################################################################
791
792list(APPEND VNET_SOURCES
793 vxlan-gpe/vxlan_gpe.c
794 vxlan-gpe/encap.c
795 vxlan-gpe/decap.c
796 vxlan-gpe/vxlan_gpe_api.c
797)
798
Filip Tehlare1714d32019-03-05 03:01:43 -0800799list (APPEND VNET_MULTIARCH_SOURCES
800 vxlan-gpe/decap.c
801)
802
Damjan Marion4553c952018-08-26 11:04:40 +0200803list(APPEND VNET_HEADERS
804 vxlan-gpe/vxlan_gpe.h
805 vxlan-gpe/vxlan_gpe_packet.h
806 vxlan-gpe/vxlan_gpe_error.def
807)
808
809list(APPEND VNET_API_FILES vxlan-gpe/vxlan_gpe.api)
810
811##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200812# ipv6 segment routing
813##############################################################################
814
815list(APPEND VNET_SOURCES
816 srv6/sr.c
817 srv6/sr_localsid.c
818 srv6/sr_policy_rewrite.c
819 srv6/sr_steering.c
820 srv6/sr_api.c
Ahmed Abdelsalamc933bb72022-06-29 11:08:42 +0000821 srv6/sr_pt.c
Damjan Marion4553c952018-08-26 11:04:40 +0200822)
823
824list(APPEND VNET_HEADERS
825 srv6/sr_packet.h
826 srv6/sr.h
Ahmed Abdelsalamc933bb72022-06-29 11:08:42 +0000827 srv6/sr_pt.h
Damjan Marion4553c952018-08-26 11:04:40 +0200828)
829
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100830list(APPEND VNET_API_FILES
831 srv6/sr.api
832 srv6/sr_types.api
833)
Damjan Marion4553c952018-08-26 11:04:40 +0200834
835##############################################################################
836# mpls segment routing
837##############################################################################
838
839list(APPEND VNET_SOURCES
840 srmpls/sr_mpls_policy.c
841 srmpls/sr_mpls_steering.c
842 srmpls/sr_mpls_api.c
843)
844
845list(APPEND VNET_HEADERS
846 srmpls/sr_mpls.h
847)
848
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100849list(APPEND VNET_API_FILES
850 srmpls/sr_mpls.api
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100851)
Damjan Marion4553c952018-08-26 11:04:40 +0200852
853##############################################################################
854# IPFIX / netflow v10
855##############################################################################
856list(APPEND VNET_SOURCES
857 ipfix-export/flow_report.c
858 ipfix-export/flow_api.c
859)
860
861list(APPEND VNET_HEADERS
862 ipfix-export/flow_report.h
863 ipfix-export/ipfix_info_elements.h
864 ipfix-export/ipfix_packet.h
865)
866
867list(APPEND VNET_API_FILES ipfix-export/ipfix_export.api)
868
869##############################################################################
Mohsin Kazmi41b23bc2021-06-30 18:26:25 +0000870# HASH
871##############################################################################
872list(APPEND VNET_SOURCES
873 hash/hash.c
874 hash/cli.c
875 hash/crc32_5tuple.c
Florin Coras1e6d30b2021-11-02 10:32:19 -0700876 hash/handoff_eth.c
Steven Luong05a68d62021-12-03 12:05:45 -0800877 hash/hash_eth.c
Mohsin Kazmi41b23bc2021-06-30 18:26:25 +0000878)
879
880list(APPEND VNET_HEADERS
881 hash/hash.h
882)
883
884##############################################################################
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200885# GSO
886##############################################################################
887list(APPEND VNET_SOURCES
888 gso/cli.c
889 gso/gso.c
890 gso/gso_api.c
891 gso/node.c
892)
893
894list(APPEND VNET_HEADERS
Mohsin Kazmif382b062020-08-11 15:00:44 +0200895 gso/gro.h
896 gso/gro_func.h
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000897 gso/hdr_offset_parser.h
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200898 gso/gso.h
899)
900
901list(APPEND VNET_API_FILES
902 gso/gso.api
903)
904
905##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200906# IPFIX classify code
907##############################################################################
908
909list(APPEND VNET_SOURCES
910 ipfix-export/flow_report_classify.c
911)
912
913list(APPEND VNET_HEADERS
914 ipfix-export/flow_report_classify.h
915)
916
917##############################################################################
918# lawful intercept
919##############################################################################
920
921list(APPEND VNET_SOURCES
922 lawful-intercept/lawful_intercept.c
923 lawful-intercept/node.c
924)
925
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -0700926list(APPEND VNET_MULTIARCH_SOURCES
927 lawful-intercept/node.c
928)
929
Damjan Marion4553c952018-08-26 11:04:40 +0200930list(APPEND VNET_HEADERS
931 lawful-intercept/lawful_intercept.h
932)
933
934##############################################################################
935# SPAN (port mirroring)
936##############################################################################
937
938list(APPEND VNET_SOURCES
939 span/span_api.c
940 span/span.c
941 span/node.c
942)
943
Filip Tehlara79271f2019-03-05 03:46:40 -0800944list(APPEND VNET_MULTIARCH_SOURCES
945 span/node.c
946)
947
Damjan Marion4553c952018-08-26 11:04:40 +0200948list(APPEND VNET_HEADERS
949 span/span.h
950)
951
952list(APPEND VNET_API_FILES span/span.api)
953
954##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200955# Packet generator
956##############################################################################
957
958list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200959 pg/cli.c
960 pg/edit.c
961 pg/init.c
962 pg/input.c
963 pg/output.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200964 pg/stream.c
Damjan Marion4553c952018-08-26 11:04:40 +0200965 pg/pg_api.c
966)
967
968list(APPEND VNET_HEADERS
969 pg/pg.h
970 pg/edit.h
971)
972
973list(APPEND VNET_API_FILES pg/pg.api)
974
975##############################################################################
976# virtio
977##############################################################################
978
979list(APPEND VNET_SOURCES
Damjan Marionf41244f2019-11-08 17:41:06 +0100980 devices/virtio/cli.c
Damjan Marion4553c952018-08-26 11:04:40 +0200981 devices/virtio/device.c
Damjan Marionf41244f2019-11-08 17:41:06 +0100982 devices/virtio/format.c
Damjan Marion4553c952018-08-26 11:04:40 +0200983 devices/virtio/node.c
Damjan Marionf41244f2019-11-08 17:41:06 +0100984 devices/virtio/pci.c
Damjan Marion4553c952018-08-26 11:04:40 +0200985 devices/virtio/vhost_user.c
986 devices/virtio/vhost_user_input.c
987 devices/virtio/vhost_user_output.c
988 devices/virtio/vhost_user_api.c
989 devices/virtio/virtio.c
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200990 devices/virtio/virtio_api.c
Mohsin Kazmia0a68332020-07-16 12:55:42 +0000991 devices/virtio/virtio_pci_legacy.c
Mohsin Kazmi379aac32020-08-20 10:25:12 +0200992 devices/virtio/virtio_pci_modern.c
Mohsin Kazmib7e4e6d2021-12-13 18:32:42 +0000993 devices/virtio/virtio_pre_input.c
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200994 devices/virtio/virtio_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200995)
996
997list(APPEND VNET_HEADERS
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200998 devices/virtio/pci.h
Damjan Marion4553c952018-08-26 11:04:40 +0200999 devices/virtio/virtio.h
Mohsin Kazmie347acb2020-09-28 10:26:33 +00001000 devices/virtio/virtio_buffering.h
Mohsin Kazmia7a22812020-08-31 17:17:16 +02001001 devices/virtio/virtio_std.h
Mohsin Kazmia0a68332020-07-16 12:55:42 +00001002 devices/virtio/virtio_pci_legacy.h
Mohsin Kazmi379aac32020-08-20 10:25:12 +02001003 devices/virtio/virtio_pci_modern.h
Mohsin Kazmia7a22812020-08-31 17:17:16 +02001004 devices/virtio/vhost_std.h
Damjan Marion4553c952018-08-26 11:04:40 +02001005 devices/virtio/vhost_user.h
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +02001006 devices/virtio/virtio_types_api.h
Damjan Marion4553c952018-08-26 11:04:40 +02001007)
1008
1009list(APPEND VNET_MULTIARCH_SOURCES
1010 devices/virtio/vhost_user_input.c
1011 devices/virtio/vhost_user_output.c
Filip Tehlar608996d2019-03-04 03:03:13 -08001012 devices/virtio/node.c
1013 devices/af_packet/node.c
Filip Tehlaraee73642019-03-13 05:50:44 -07001014 devices/virtio/device.c
Damjan Marion4553c952018-08-26 11:04:40 +02001015)
1016
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001017list(APPEND VNET_API_FILES
1018 devices/virtio/vhost_user.api
1019 devices/virtio/virtio.api
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +02001020 devices/virtio/virtio_types.api
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001021)
Damjan Marion4553c952018-08-26 11:04:40 +02001022
1023##############################################################################
1024# tap interface (with virtio backend)
1025##############################################################################
1026
1027list(APPEND VNET_SOURCES
1028 devices/tap/cli.c
1029 devices/tap/tap.c
1030 devices/tap/tapv2_api.c
1031)
1032
1033list(APPEND VNET_HEADERS
1034 devices/tap/tap.h
1035)
1036
Mohsin Kazmia7a22812020-08-31 17:17:16 +02001037list(APPEND VNET_API_FILES
1038 devices/tap/tapv2.api
1039)
Damjan Marion4553c952018-08-26 11:04:40 +02001040
1041##############################################################################
1042# tap interface (with virtio backend)
1043##############################################################################
1044
1045list(APPEND VNET_SOURCES
1046 devices/pipe/pipe_api.c
1047 devices/pipe/pipe.c
1048)
1049
1050list(APPEND VNET_HEADERS
1051 devices/pipe/pipe.h
1052)
1053
1054list(APPEND VNET_API_FILES devices/pipe/pipe.api)
1055
1056##############################################################################
1057# session managmeent
1058##############################################################################
1059
1060list(APPEND VNET_SOURCES
1061 session/session.c
Florin Coras11166672020-04-13 01:20:25 +00001062 session/session_debug.c
Damjan Marion4553c952018-08-26 11:04:40 +02001063 session/session_table.c
1064 session/session_rules_table.c
1065 session/session_lookup.c
1066 session/session_node.c
1067 session/transport.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001068 session/application.c
Florin Coras623eb562019-02-03 19:28:34 -08001069 session/application_worker.c
Damjan Marion4553c952018-08-26 11:04:40 +02001070 session/session_cli.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001071 session/application_interface.c
Florin Corasba7d8f52019-02-22 13:11:38 -08001072 session/application_local.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001073 session/application_namespace.c
Damjan Marion4553c952018-08-26 11:04:40 +02001074 session/segment_manager.c
Damjan Marion4553c952018-08-26 11:04:40 +02001075 session/session_api.c
1076)
1077
1078list(APPEND VNET_HEADERS
1079 session/session.h
1080 session/session_table.h
1081 session/session_rules_table.h
Florin Coras288eaab2019-02-03 15:26:14 -08001082 session/session_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001083 session/session_lookup.h
1084 session/application.h
1085 session/transport.h
Florin Coras1ee78302019-02-05 15:51:15 -08001086 session/transport_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001087 session/application_interface.h
Florin Corasba7d8f52019-02-22 13:11:38 -08001088 session/application_local.h
Damjan Marion4553c952018-08-26 11:04:40 +02001089 session/application_namespace.h
1090 session/session_debug.h
1091 session/segment_manager.h
1092 session/mma_template.h
1093 session/mma_template.c
1094 session/mma_16.h
1095 session/mma_40.h
1096)
1097
1098list(APPEND VNET_API_FILES session/session.api)
1099
1100##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +02001101# TLS protocol
1102##############################################################################
1103
1104list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +02001105 tls/tls.c
Damjan Marion4553c952018-08-26 11:04:40 +02001106)
1107
1108list(APPEND VNET_HEADERS
1109 tls/tls.h
Florin Coras54a51fd2019-02-07 15:34:52 -08001110 tls/tls_test.h
Damjan Marion4553c952018-08-26 11:04:40 +02001111)
1112
1113##############################################################################
1114# Linux packet interface
1115##############################################################################
1116
1117list(APPEND VNET_SOURCES
1118 devices/af_packet/af_packet.c
1119 devices/af_packet/device.c
1120 devices/af_packet/node.c
1121 devices/af_packet/cli.c
1122 devices/af_packet/af_packet_api.c
1123)
1124
Filip Tehlaraee73642019-03-13 05:50:44 -07001125list(APPEND VNET_MULTIARCH_SOURCES
Filip Tehlaraee73642019-03-13 05:50:44 -07001126 devices/af_packet/device.c
1127)
1128
Damjan Marion4553c952018-08-26 11:04:40 +02001129list(APPEND VNET_HEADERS
1130 devices/af_packet/af_packet.h
1131)
1132
1133list(APPEND VNET_API_FILES devices/af_packet/af_packet.api)
1134
1135##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +02001136# Driver feature graph arc support
1137##############################################################################
1138
1139list(APPEND VNET_SOURCES
1140 feature/feature.c
1141 feature/feature_api.c
1142 feature/registration.c
1143)
1144
1145list(APPEND VNET_HEADERS
1146 feature/feature.h
1147)
1148
1149list(APPEND VNET_API_FILES feature/feature.api)
1150
1151##############################################################################
1152# Unix kernel related
1153##############################################################################
1154
1155# FIXME: unix/hgshm.c
1156
1157list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +02001158 unix/gdb_funcs.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001159 unix/tuntap.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001160)
1161
Damjan Marion4553c952018-08-26 11:04:40 +02001162list(APPEND VNET_HEADERS
Damjan Marion4553c952018-08-26 11:04:40 +02001163 unix/tuntap.h
Damjan Marion612dd6a2018-07-30 12:45:07 +02001164)
1165
Damjan Marion4553c952018-08-26 11:04:40 +02001166##############################################################################
1167# FIB
1168##############################################################################
1169
1170list(APPEND VNET_SOURCES
1171 fib/fib.c
Neale Rannsd6953332021-08-10 07:39:18 +00001172 fib/ip4_fib_hash.c
Damjan Marion4553c952018-08-26 11:04:40 +02001173 fib/ip4_fib.c
Neale Rannsd6953332021-08-10 07:39:18 +00001174 fib/ip4_fib_16.c
1175 fib/ip4_fib_8.c
Damjan Marion4553c952018-08-26 11:04:40 +02001176 fib/ip6_fib.c
1177 fib/mpls_fib.c
1178 fib/fib_table.c
1179 fib/fib_walk.c
1180 fib/fib_types.c
1181 fib/fib_node.c
1182 fib/fib_node_list.c
1183 fib/fib_entry.c
1184 fib/fib_entry_src.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001185 fib/fib_entry_src_adj.c
1186 fib/fib_entry_src_api.c
1187 fib/fib_entry_src_drop.c
Damjan Marion4553c952018-08-26 11:04:40 +02001188 fib/fib_entry_src_interface.c
1189 fib/fib_entry_src_interpose.c
Damjan Marion4553c952018-08-26 11:04:40 +02001190 fib/fib_entry_src_lisp.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001191 fib/fib_entry_src_mpls.c
1192 fib/fib_entry_src_simple.c
1193 fib/fib_entry_src_rr.c
Damjan Marion4553c952018-08-26 11:04:40 +02001194 fib/fib_entry_cover.c
1195 fib/fib_entry_delegate.c
Neale Ranns1f50bf82019-07-16 15:28:52 +00001196 fib/fib_entry_track.c
Damjan Marion4553c952018-08-26 11:04:40 +02001197 fib/fib_path_list.c
1198 fib/fib_path.c
1199 fib/fib_path_ext.c
Neale Rannse2fe0972020-11-26 08:37:27 +00001200 fib/fib_sas.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001201 fib/fib_source.c
Damjan Marion4553c952018-08-26 11:04:40 +02001202 fib/fib_urpf_list.c
1203 fib/fib_attached_export.c
1204 fib/fib_api.c
1205 fib/fib_bfd.c
1206)
1207
1208list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001209 fib/fib.h
Damjan Marion4553c952018-08-26 11:04:40 +02001210 fib/fib_api.h
Dave Wallace40cfc152022-02-23 17:15:14 -05001211 fib/fib_entry_track.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001212 fib/ip4_fib.h
Benoît Ganned9fc7082021-10-18 11:16:01 +02001213 fib/ip4_fib_8.h
1214 fib/ip4_fib_16.h
1215 fib/ip4_fib_hash.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001216 fib/ip6_fib.h
1217 fib/fib_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001218 fib/fib_table.h
1219 fib/fib_node.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001220 fib/fib_node_list.h
Damjan Marion4553c952018-08-26 11:04:40 +02001221 fib/fib_entry.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001222 fib/fib_entry_delegate.h
Damjan Marion4a5564d2022-09-07 18:52:18 +02001223 fib/fib_path.h
1224 fib/fib_path_list.h
Neale Rannse2fe0972020-11-26 08:37:27 +00001225 fib/fib_sas.h
Neale Ranns3bab8f92019-12-04 06:11:00 +00001226 fib/fib_source.h
Damjan Marion4553c952018-08-26 11:04:40 +02001227)
1228
Neale Ranns976b2592019-12-04 06:11:00 +00001229list(APPEND VNET_API_FILES
1230 fib/fib_types.api
1231 fib/fib.api
1232)
Benoît Ganned39495d2019-07-25 14:14:03 +02001233
Damjan Marion4553c952018-08-26 11:04:40 +02001234##############################################################################
1235# ADJ
1236##############################################################################
1237
1238list(APPEND VNET_SOURCES
1239 adj/adj_nbr.c
1240 adj/adj_glean.c
1241 adj/adj_midchain.c
Neale Rannsf339f492021-03-31 07:36:33 +00001242 adj/adj_midchain_node.c
Neale Ranns4c3ba812019-03-26 07:02:58 +00001243 adj/adj_midchain_delegate.c
Damjan Marion4553c952018-08-26 11:04:40 +02001244 adj/adj_mcast.c
1245 adj/adj_l2.c
1246 adj/adj_nsh.c
1247 adj/adj.c
1248 adj/rewrite.c
1249 adj/adj_bfd.c
1250 adj/adj_delegate.c
1251)
1252
Filip Tehlar0b2c15d2019-03-04 02:52:54 -08001253list(APPEND VNET_MULTIARCH_SOURCES
1254 adj/adj_nsh.c
1255 adj/adj_l2.c
Neale Rannsf339f492021-03-31 07:36:33 +00001256 adj/adj_midchain_node.c
Filip Tehlar0b2c15d2019-03-04 02:52:54 -08001257)
1258
Damjan Marion4553c952018-08-26 11:04:40 +02001259list(APPEND VNET_HEADERS
1260 adj/adj.h
1261 adj/adj_types.h
1262 adj/adj_glean.h
1263 adj/adj_nsh.h
1264 adj/adj_nbr.h
Alberto Compagnod8ca1e42019-08-12 11:43:19 +02001265 adj/adj_midchain.h
Damjan Marion4553c952018-08-26 11:04:40 +02001266 adj/rewrite.h
1267)
1268
1269##############################################################################
1270# Data-Plane Objects
1271##############################################################################
1272
1273list(APPEND VNET_SOURCES
1274 dpo/dpo.c
1275 dpo/drop_dpo.c
1276 dpo/ip_null_dpo.c
1277 dpo/ip6_ll_dpo.c
1278 dpo/punt_dpo.c
1279 dpo/receive_dpo.c
1280 dpo/load_balance.c
1281 dpo/load_balance_map.c
1282 dpo/lookup_dpo.c
1283 dpo/classify_dpo.c
1284 dpo/replicate_dpo.c
1285 dpo/interface_rx_dpo.c
1286 dpo/interface_tx_dpo.c
1287 dpo/mpls_disposition.c
1288 dpo/mpls_label_dpo.c
1289 dpo/l3_proxy_dpo.c
1290 dpo/dvr_dpo.c
Neale Ranns1dbcf302019-07-19 11:44:53 +00001291 dpo/pw_cw.c
Damjan Marion4553c952018-08-26 11:04:40 +02001292)
1293
Filip Tehlareb9a27f2019-03-07 01:42:11 -08001294list(APPEND VNET_MULTIARCH_SOURCES
1295 dpo/lookup_dpo.h
1296 dpo/mpls_disposition.c
1297 dpo/dvr_dpo.c
1298 dpo/mpls_label_dpo.c
1299 dpo/interface_rx_dpo.c
1300)
1301
Damjan Marion4553c952018-08-26 11:04:40 +02001302list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001303 dpo/load_balance.h
Damjan Marion0cc76942022-01-20 18:45:39 +01001304 dpo/load_balance_map.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001305 dpo/drop_dpo.h
Damjan Marion4553c952018-08-26 11:04:40 +02001306 dpo/lookup_dpo.h
1307 dpo/punt_dpo.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001308 dpo/classify_dpo.h
1309 dpo/receive_dpo.h
1310 dpo/ip_null_dpo.h
1311 dpo/replicate_dpo.h
Damjan Marion4553c952018-08-26 11:04:40 +02001312 dpo/dpo.h
1313)
1314
1315##############################################################################
1316# Multicast FIB
1317##############################################################################
1318
1319list(APPEND VNET_SOURCES
Damjan Marion4553c952018-08-26 11:04:40 +02001320 mfib/mfib_forward.c
1321 mfib/ip4_mfib.c
1322 mfib/ip6_mfib.c
Neale Ranns097fa662018-05-01 05:17:55 -07001323 mfib/mfib_api.c
Damjan Marion4553c952018-08-26 11:04:40 +02001324 mfib/mfib_types.c
1325 mfib/mfib_signal.c
1326 mfib/mfib_itf.c
1327 mfib/mfib_entry.c
Neale Ranns9e829a82018-12-17 05:50:32 -08001328 mfib/mfib_entry.c
1329 mfib/mfib_entry_cover.c
1330 mfib/mfib_entry_delegate.c
1331 mfib/mfib_entry_src.c
1332 mfib/mfib_entry_src_rr.c
Damjan Marion4553c952018-08-26 11:04:40 +02001333 mfib/mfib_table.c
1334)
1335
Filip Tehlar79c27eb2019-03-07 00:30:03 -08001336list(APPEND VNET_MULTIARCH_SOURCES
1337 mfib/mfib_forward.c
1338)
1339
Damjan Marion4553c952018-08-26 11:04:40 +02001340list(APPEND VNET_HEADERS
1341 mfib/ip4_mfib.h
1342 mfib/mfib_types.h
1343 mfib/mfib_table.h
1344)
1345
Benoît Ganned39495d2019-07-25 14:14:03 +02001346list(APPEND VNET_API_FILES mfib/mfib_types.api)
1347
Damjan Marion4553c952018-08-26 11:04:40 +02001348##############################################################################
1349# Utilities
1350##############################################################################
1351
1352list(APPEND VNET_SOURCES
1353 util/radix.c
1354 util/refcount.c
Neale Rannsc8352bc2018-08-29 10:23:58 -07001355 util/throttle.c
Damjan Marion4553c952018-08-26 11:04:40 +02001356)
1357
Damjan Marionac5554c2018-08-30 22:56:59 +02001358list(APPEND VNET_HEADERS
1359 util/throttle.h
1360)
1361
Damjan Marion4553c952018-08-26 11:04:40 +02001362##############################################################################
1363# QoS
1364##############################################################################
1365
1366list(APPEND VNET_SOURCES
1367 qos/qos_types.c
1368 qos/qos_api.c
1369 qos/qos_egress_map.c
1370 qos/qos_record.c
Filip Tehlar0bddf7e2019-03-04 08:14:07 -08001371 qos/qos_record_node.c
Neale Ranns83832e72019-07-31 02:48:02 -07001372 qos/qos_store.c
1373 qos/qos_store_node.c
Damjan Marion4553c952018-08-26 11:04:40 +02001374 qos/qos_mark.c
Filip Tehlar0bddf7e2019-03-04 08:14:07 -08001375 qos/qos_mark_node.c
1376)
1377
1378list(APPEND VNET_MULTIARCH_SOURCES
1379 qos/qos_record_node.c
1380 qos/qos_mark_node.c
Damjan Marion4553c952018-08-26 11:04:40 +02001381)
1382
1383list(APPEND VNET_API_FILES qos/qos.api)
1384
1385##############################################################################
1386# BIER
1387##############################################################################
1388
1389list(APPEND VNET_SOURCES
1390 bier/bier_bit_string.c
1391 bier/bier_entry.c
1392 bier/bier_fmask.c
1393 bier/bier_fmask_db.c
1394 bier/bier_input.c
1395 bier/bier_lookup.c
1396 bier/bier_output.c
1397 bier/bier_table.c
1398 bier/bier_types.c
Damjan Marion4553c952018-08-26 11:04:40 +02001399 bier/bier_api.c
1400 bier/bier_drop.c
1401 bier/bier_update.c
1402 bier/bier_imp_node.c
1403 bier/bier_imp.c
1404 bier/bier_disp_entry.c
1405 bier/bier_disp_lookup_node.c
1406 bier/bier_disp_dispatch_node.c
1407 bier/bier_disp_table.c
1408 bier/bier_bift_table.c
1409)
1410
Filip Tehlara01e0322019-03-05 03:34:52 -08001411list(APPEND VNET_MULTIARCH_SOURCES
1412 bier/bier_disp_dispatch_node.c
1413 bier/bier_disp_lookup_node.c
1414 bier/bier_imp_node.c
1415)
1416
Damjan Marion4553c952018-08-26 11:04:40 +02001417list(APPEND VNET_HEADERS
Benoît Ganne6e3b3b72022-08-31 12:05:43 +02001418 bier/bier_bit_string.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001419 bier/bier_entry.h
Benoît Ganne6e3b3b72022-08-31 12:05:43 +02001420 bier/bier_fwd.h
1421 bier/bier_hdr_inlines.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001422 bier/bier_update.h
Damjan Marion4553c952018-08-26 11:04:40 +02001423 bier/bier_table.h
Benoît Ganne6e3b3b72022-08-31 12:05:43 +02001424 bier/bier_types.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001425)
1426
Damjan Marion4553c952018-08-26 11:04:40 +02001427list(APPEND VNET_API_FILES bier/bier.api)
Damjan Marion612dd6a2018-07-30 12:45:07 +02001428
Florin Coras41c9e042018-09-11 00:10:41 -07001429##############################################################################
Matus Fabianb4515b42018-11-19 04:25:32 -08001430# SYSLOG
1431##############################################################################
1432
1433list (APPEND VNET_SOURCES
1434 syslog/syslog_api.c
1435 syslog/syslog_udp.c
1436 syslog/syslog.c
1437)
1438
1439list(APPEND VNET_HEADERS
1440 syslog/syslog_udp.h
1441 syslog/syslog.h
1442)
1443
1444list(APPEND VNET_API_FILES syslog/syslog.api)
1445
1446##############################################################################
Neale Ranns03ce4622020-02-03 10:55:09 +00001447# Tunnel Endpoint Information Base
Neale Ranns5f8f6172019-04-18 10:23:56 +00001448##############################################################################
1449
1450list (APPEND VNET_SOURCES
Neale Ranns03ce4622020-02-03 10:55:09 +00001451 teib/teib_api.c
1452 teib/teib_cli.c
1453 teib/teib.c
Neale Ranns5f8f6172019-04-18 10:23:56 +00001454)
1455
1456list(APPEND VNET_HEADERS
Neale Ranns03ce4622020-02-03 10:55:09 +00001457 teib/teib.h
Neale Ranns5f8f6172019-04-18 10:23:56 +00001458)
1459
Neale Ranns03ce4622020-02-03 10:55:09 +00001460list(APPEND VNET_API_FILES teib/teib.api)
Neale Ranns5f8f6172019-04-18 10:23:56 +00001461
1462##############################################################################
Neale Rannscbe25aa2019-09-30 10:53:31 +00001463# ARP/ND
1464##############################################################################
1465
1466list (APPEND VNET_SOURCES
1467 arp/arp_api.c
1468 arp/arp.c
1469 arp/arp_proxy.c
1470)
1471
1472list(APPEND VNET_HEADERS
1473 arp/arp.h
1474)
1475
1476list(APPEND VNET_API_FILES arp/arp.api)
1477
1478list (APPEND VNET_SOURCES
1479 ip6-nd/ip6_mld.c
1480 ip6-nd/ip6_nd.c
1481 ip6-nd/ip6_nd_api.c
1482 ip6-nd/ip6_nd_proxy.c
Mohsin Kazmicebb4772021-04-07 19:50:35 +02001483 ip6-nd/ip6_nd_mirror_proxy.c
Neale Rannscbe25aa2019-09-30 10:53:31 +00001484 ip6-nd/ip6_ra.c
1485 ip6-nd/rd_cp.c
1486 ip6-nd/rd_cp_api.c
1487)
1488
1489list(APPEND VNET_HEADERS
1490 ip6-nd/ip6_nd.h
1491)
1492
1493list(APPEND VNET_API_FILES
1494 ip6-nd/ip6_nd.api
1495 ip6-nd/rd_cp.api
1496)
1497
1498##############################################################################
Florin Coras41c9e042018-09-11 00:10:41 -07001499# VNET Library
1500##############################################################################
1501
Damjan Marion4553c952018-08-26 11:04:40 +02001502add_vpp_library(vnet
1503 SOURCES ${VNET_SOURCES}
1504 MULTIARCH_SOURCES ${VNET_MULTIARCH_SOURCES}
1505 INSTALL_HEADERS ${VNET_HEADERS}
1506 API_FILES ${VNET_API_FILES}
Klement Sekeraefd4d702021-04-20 19:21:36 +02001507 LINK_LIBRARIES vppinfra svm vlib
Chris Lukec171d012020-01-15 20:30:04 -05001508 DEPENDS vpp_version_h api_headers
Damjan Marion612dd6a2018-07-30 12:45:07 +02001509)
Florin Coras41c9e042018-09-11 00:10:41 -07001510
1511##############################################################################
Yulong Peidb43bb62020-01-09 01:12:43 +08001512# vpp api test client library
1513##############################################################################
1514
1515add_vpp_library (vatclient
1516 SOURCES ip/ip_types_api.c
1517 DEPENDS api_headers
1518)
1519
Florin Coras248210c2021-09-14 18:54:45 -07001520add_vat_test_library(vnet
Filip Tehlarf0e67d72021-07-23 22:03:05 +00001521 interface_test.c
Florin Coras248210c2021-09-14 18:54:45 -07001522 ip/ip_test.c
1523 arp/arp_test.c
1524 ip6-nd/ip6_nd_test.c
Filip Tehlar850024b2021-09-02 10:32:40 +00001525 srmpls/sr_mpls_test.c
Filip Tehlarea257222021-10-18 09:02:37 +00001526 session/session_test.c
Filip Tehlar1b6fb402021-07-24 18:10:39 +00001527 l2/l2_test.c
Filip Tehlar0ad06082021-07-25 14:38:45 +00001528 ipsec/ipsec_test.c
Florin Coras248210c2021-09-14 18:54:45 -07001529)
1530
Yulong Peidb43bb62020-01-09 01:12:43 +08001531##############################################################################
Ole Troandf87f802020-11-18 19:17:48 +01001532# VAT2 plugins
1533##############################################################################
1534add_vpp_test_library(vnet
1535 ${VNET_API_FILES}
1536)
1537
1538##############################################################################