blob: 99cc551f576c960172f93b748f8f2b1353eb6be4 [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
Neale Ranns59ff9182019-12-29 23:55:18 +0000753)
754
755##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200756# Tunnel protocol: gre+mpls
757##############################################################################
758list(APPEND VNET_SOURCES
759 mpls/mpls.c
760 mpls/mpls_lookup.c
761 mpls/mpls_output.c
762 mpls/mpls_features.c
763 mpls/mpls_input.c
764 mpls/interface.c
765 mpls/mpls_tunnel.c
766 mpls/pg.c
767 mpls/mpls_api.c
768)
769
Filip Tehlar17fcd982019-03-05 04:32:11 -0800770list(APPEND VNET_MULTIARCH_SOURCES
771 mpls/mpls_output.c
772 mpls/mpls_input.c
773 mpls/mpls_lookup.c
774 mpls/mpls_features.c
775)
776
Damjan Marion4553c952018-08-26 11:04:40 +0200777list(APPEND VNET_HEADERS
778 mpls/mpls.h
779 mpls/mpls_types.h
780 mpls/mpls_tunnel.h
781 mpls/packet.h
Damjan Marion4553c952018-08-26 11:04:40 +0200782)
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
Ahmed Abdelsalamc933bb72022-06-29 11:08:42 +0000819 srv6/sr_pt.c
Damjan Marion4553c952018-08-26 11:04:40 +0200820)
821
822list(APPEND VNET_HEADERS
823 srv6/sr_packet.h
824 srv6/sr.h
Ahmed Abdelsalamc933bb72022-06-29 11:08:42 +0000825 srv6/sr_pt.h
Damjan Marion4553c952018-08-26 11:04:40 +0200826)
827
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100828list(APPEND VNET_API_FILES
829 srv6/sr.api
830 srv6/sr_types.api
831)
Damjan Marion4553c952018-08-26 11:04:40 +0200832
833##############################################################################
834# mpls segment routing
835##############################################################################
836
837list(APPEND VNET_SOURCES
838 srmpls/sr_mpls_policy.c
839 srmpls/sr_mpls_steering.c
840 srmpls/sr_mpls_api.c
841)
842
843list(APPEND VNET_HEADERS
844 srmpls/sr_mpls.h
845)
846
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100847list(APPEND VNET_API_FILES
848 srmpls/sr_mpls.api
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100849)
Damjan Marion4553c952018-08-26 11:04:40 +0200850
851##############################################################################
852# IPFIX / netflow v10
853##############################################################################
854list(APPEND VNET_SOURCES
855 ipfix-export/flow_report.c
856 ipfix-export/flow_api.c
857)
858
859list(APPEND VNET_HEADERS
860 ipfix-export/flow_report.h
861 ipfix-export/ipfix_info_elements.h
862 ipfix-export/ipfix_packet.h
863)
864
865list(APPEND VNET_API_FILES ipfix-export/ipfix_export.api)
866
867##############################################################################
Mohsin Kazmi41b23bc2021-06-30 18:26:25 +0000868# HASH
869##############################################################################
870list(APPEND VNET_SOURCES
871 hash/hash.c
872 hash/cli.c
873 hash/crc32_5tuple.c
Florin Coras1e6d30b2021-11-02 10:32:19 -0700874 hash/handoff_eth.c
Steven Luong05a68d62021-12-03 12:05:45 -0800875 hash/hash_eth.c
Mohsin Kazmi41b23bc2021-06-30 18:26:25 +0000876)
877
878list(APPEND VNET_HEADERS
879 hash/hash.h
880)
881
882##############################################################################
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200883# GSO
884##############################################################################
885list(APPEND VNET_SOURCES
886 gso/cli.c
887 gso/gso.c
888 gso/gso_api.c
889 gso/node.c
890)
891
892list(APPEND VNET_HEADERS
Mohsin Kazmif382b062020-08-11 15:00:44 +0200893 gso/gro.h
894 gso/gro_func.h
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000895 gso/hdr_offset_parser.h
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200896 gso/gso.h
897)
898
899list(APPEND VNET_API_FILES
900 gso/gso.api
901)
902
903##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200904# IPFIX classify code
905##############################################################################
906
907list(APPEND VNET_SOURCES
908 ipfix-export/flow_report_classify.c
909)
910
911list(APPEND VNET_HEADERS
912 ipfix-export/flow_report_classify.h
913)
914
915##############################################################################
916# lawful intercept
917##############################################################################
918
919list(APPEND VNET_SOURCES
920 lawful-intercept/lawful_intercept.c
921 lawful-intercept/node.c
922)
923
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -0700924list(APPEND VNET_MULTIARCH_SOURCES
925 lawful-intercept/node.c
926)
927
Damjan Marion4553c952018-08-26 11:04:40 +0200928list(APPEND VNET_HEADERS
929 lawful-intercept/lawful_intercept.h
930)
931
932##############################################################################
933# SPAN (port mirroring)
934##############################################################################
935
936list(APPEND VNET_SOURCES
937 span/span_api.c
938 span/span.c
939 span/node.c
940)
941
Filip Tehlara79271f2019-03-05 03:46:40 -0800942list(APPEND VNET_MULTIARCH_SOURCES
943 span/node.c
944)
945
Damjan Marion4553c952018-08-26 11:04:40 +0200946list(APPEND VNET_HEADERS
947 span/span.h
948)
949
950list(APPEND VNET_API_FILES span/span.api)
951
952##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200953# Packet generator
954##############################################################################
955
956list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200957 pg/cli.c
958 pg/edit.c
959 pg/init.c
960 pg/input.c
961 pg/output.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200962 pg/stream.c
Damjan Marion4553c952018-08-26 11:04:40 +0200963 pg/pg_api.c
964)
965
966list(APPEND VNET_HEADERS
967 pg/pg.h
968 pg/edit.h
969)
970
971list(APPEND VNET_API_FILES pg/pg.api)
972
973##############################################################################
974# virtio
975##############################################################################
976
977list(APPEND VNET_SOURCES
Damjan Marionf41244f2019-11-08 17:41:06 +0100978 devices/virtio/cli.c
Damjan Marion4553c952018-08-26 11:04:40 +0200979 devices/virtio/device.c
Damjan Marionf41244f2019-11-08 17:41:06 +0100980 devices/virtio/format.c
Damjan Marion4553c952018-08-26 11:04:40 +0200981 devices/virtio/node.c
Damjan Marionf41244f2019-11-08 17:41:06 +0100982 devices/virtio/pci.c
Damjan Marion4553c952018-08-26 11:04:40 +0200983 devices/virtio/vhost_user.c
984 devices/virtio/vhost_user_input.c
985 devices/virtio/vhost_user_output.c
986 devices/virtio/vhost_user_api.c
987 devices/virtio/virtio.c
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200988 devices/virtio/virtio_api.c
Mohsin Kazmia0a68332020-07-16 12:55:42 +0000989 devices/virtio/virtio_pci_legacy.c
Mohsin Kazmi379aac32020-08-20 10:25:12 +0200990 devices/virtio/virtio_pci_modern.c
Mohsin Kazmib7e4e6d2021-12-13 18:32:42 +0000991 devices/virtio/virtio_pre_input.c
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200992 devices/virtio/virtio_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200993)
994
995list(APPEND VNET_HEADERS
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200996 devices/virtio/pci.h
Damjan Marion4553c952018-08-26 11:04:40 +0200997 devices/virtio/virtio.h
Mohsin Kazmie347acb2020-09-28 10:26:33 +0000998 devices/virtio/virtio_buffering.h
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200999 devices/virtio/virtio_std.h
Mohsin Kazmia0a68332020-07-16 12:55:42 +00001000 devices/virtio/virtio_pci_legacy.h
Mohsin Kazmi379aac32020-08-20 10:25:12 +02001001 devices/virtio/virtio_pci_modern.h
Mohsin Kazmia7a22812020-08-31 17:17:16 +02001002 devices/virtio/vhost_std.h
Damjan Marion4553c952018-08-26 11:04:40 +02001003 devices/virtio/vhost_user.h
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +02001004 devices/virtio/virtio_types_api.h
Damjan Marion4553c952018-08-26 11:04:40 +02001005)
1006
1007list(APPEND VNET_MULTIARCH_SOURCES
1008 devices/virtio/vhost_user_input.c
1009 devices/virtio/vhost_user_output.c
Filip Tehlar608996d2019-03-04 03:03:13 -08001010 devices/virtio/node.c
1011 devices/af_packet/node.c
Filip Tehlaraee73642019-03-13 05:50:44 -07001012 devices/virtio/device.c
Damjan Marion4553c952018-08-26 11:04:40 +02001013)
1014
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001015list(APPEND VNET_API_FILES
1016 devices/virtio/vhost_user.api
1017 devices/virtio/virtio.api
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +02001018 devices/virtio/virtio_types.api
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001019)
Damjan Marion4553c952018-08-26 11:04:40 +02001020
1021##############################################################################
1022# tap interface (with virtio backend)
1023##############################################################################
1024
1025list(APPEND VNET_SOURCES
1026 devices/tap/cli.c
1027 devices/tap/tap.c
1028 devices/tap/tapv2_api.c
1029)
1030
1031list(APPEND VNET_HEADERS
1032 devices/tap/tap.h
1033)
1034
Mohsin Kazmia7a22812020-08-31 17:17:16 +02001035list(APPEND VNET_API_FILES
1036 devices/tap/tapv2.api
1037)
Damjan Marion4553c952018-08-26 11:04:40 +02001038
1039##############################################################################
1040# tap interface (with virtio backend)
1041##############################################################################
1042
1043list(APPEND VNET_SOURCES
1044 devices/pipe/pipe_api.c
1045 devices/pipe/pipe.c
1046)
1047
1048list(APPEND VNET_HEADERS
1049 devices/pipe/pipe.h
1050)
1051
1052list(APPEND VNET_API_FILES devices/pipe/pipe.api)
1053
1054##############################################################################
1055# session managmeent
1056##############################################################################
1057
1058list(APPEND VNET_SOURCES
1059 session/session.c
Florin Coras11166672020-04-13 01:20:25 +00001060 session/session_debug.c
Damjan Marion4553c952018-08-26 11:04:40 +02001061 session/session_table.c
1062 session/session_rules_table.c
1063 session/session_lookup.c
1064 session/session_node.c
1065 session/transport.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001066 session/application.c
Florin Coras623eb562019-02-03 19:28:34 -08001067 session/application_worker.c
Damjan Marion4553c952018-08-26 11:04:40 +02001068 session/session_cli.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001069 session/application_interface.c
Florin Corasba7d8f52019-02-22 13:11:38 -08001070 session/application_local.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001071 session/application_namespace.c
Damjan Marion4553c952018-08-26 11:04:40 +02001072 session/segment_manager.c
Damjan Marion4553c952018-08-26 11:04:40 +02001073 session/session_api.c
1074)
1075
1076list(APPEND VNET_HEADERS
1077 session/session.h
1078 session/session_table.h
1079 session/session_rules_table.h
Florin Coras288eaab2019-02-03 15:26:14 -08001080 session/session_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001081 session/session_lookup.h
1082 session/application.h
1083 session/transport.h
Florin Coras1ee78302019-02-05 15:51:15 -08001084 session/transport_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001085 session/application_interface.h
Florin Corasba7d8f52019-02-22 13:11:38 -08001086 session/application_local.h
Damjan Marion4553c952018-08-26 11:04:40 +02001087 session/application_namespace.h
1088 session/session_debug.h
1089 session/segment_manager.h
1090 session/mma_template.h
1091 session/mma_template.c
1092 session/mma_16.h
1093 session/mma_40.h
1094)
1095
1096list(APPEND VNET_API_FILES session/session.api)
1097
1098##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +02001099# TLS protocol
1100##############################################################################
1101
1102list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +02001103 tls/tls.c
Damjan Marion4553c952018-08-26 11:04:40 +02001104)
1105
1106list(APPEND VNET_HEADERS
1107 tls/tls.h
Florin Coras54a51fd2019-02-07 15:34:52 -08001108 tls/tls_test.h
Damjan Marion4553c952018-08-26 11:04:40 +02001109)
1110
1111##############################################################################
1112# Linux packet interface
1113##############################################################################
1114
1115list(APPEND VNET_SOURCES
1116 devices/af_packet/af_packet.c
1117 devices/af_packet/device.c
1118 devices/af_packet/node.c
1119 devices/af_packet/cli.c
1120 devices/af_packet/af_packet_api.c
1121)
1122
Filip Tehlaraee73642019-03-13 05:50:44 -07001123list(APPEND VNET_MULTIARCH_SOURCES
Filip Tehlaraee73642019-03-13 05:50:44 -07001124 devices/af_packet/device.c
1125)
1126
Damjan Marion4553c952018-08-26 11:04:40 +02001127list(APPEND VNET_HEADERS
1128 devices/af_packet/af_packet.h
1129)
1130
1131list(APPEND VNET_API_FILES devices/af_packet/af_packet.api)
1132
1133##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +02001134# Driver feature graph arc support
1135##############################################################################
1136
1137list(APPEND VNET_SOURCES
1138 feature/feature.c
1139 feature/feature_api.c
1140 feature/registration.c
1141)
1142
1143list(APPEND VNET_HEADERS
1144 feature/feature.h
1145)
1146
1147list(APPEND VNET_API_FILES feature/feature.api)
1148
1149##############################################################################
1150# Unix kernel related
1151##############################################################################
1152
1153# FIXME: unix/hgshm.c
1154
1155list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +02001156 unix/gdb_funcs.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001157 unix/tuntap.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001158)
1159
Damjan Marion4553c952018-08-26 11:04:40 +02001160list(APPEND VNET_HEADERS
Damjan Marion4553c952018-08-26 11:04:40 +02001161 unix/tuntap.h
Damjan Marion612dd6a2018-07-30 12:45:07 +02001162)
1163
Damjan Marion4553c952018-08-26 11:04:40 +02001164##############################################################################
1165# FIB
1166##############################################################################
1167
1168list(APPEND VNET_SOURCES
1169 fib/fib.c
Neale Rannsd6953332021-08-10 07:39:18 +00001170 fib/ip4_fib_hash.c
Damjan Marion4553c952018-08-26 11:04:40 +02001171 fib/ip4_fib.c
Neale Rannsd6953332021-08-10 07:39:18 +00001172 fib/ip4_fib_16.c
1173 fib/ip4_fib_8.c
Damjan Marion4553c952018-08-26 11:04:40 +02001174 fib/ip6_fib.c
1175 fib/mpls_fib.c
1176 fib/fib_table.c
1177 fib/fib_walk.c
1178 fib/fib_types.c
1179 fib/fib_node.c
1180 fib/fib_node_list.c
1181 fib/fib_entry.c
1182 fib/fib_entry_src.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001183 fib/fib_entry_src_adj.c
1184 fib/fib_entry_src_api.c
1185 fib/fib_entry_src_drop.c
Damjan Marion4553c952018-08-26 11:04:40 +02001186 fib/fib_entry_src_interface.c
1187 fib/fib_entry_src_interpose.c
Damjan Marion4553c952018-08-26 11:04:40 +02001188 fib/fib_entry_src_lisp.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001189 fib/fib_entry_src_mpls.c
1190 fib/fib_entry_src_simple.c
1191 fib/fib_entry_src_rr.c
Damjan Marion4553c952018-08-26 11:04:40 +02001192 fib/fib_entry_cover.c
1193 fib/fib_entry_delegate.c
Neale Ranns1f50bf82019-07-16 15:28:52 +00001194 fib/fib_entry_track.c
Damjan Marion4553c952018-08-26 11:04:40 +02001195 fib/fib_path_list.c
1196 fib/fib_path.c
1197 fib/fib_path_ext.c
Neale Rannse2fe0972020-11-26 08:37:27 +00001198 fib/fib_sas.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001199 fib/fib_source.c
Damjan Marion4553c952018-08-26 11:04:40 +02001200 fib/fib_urpf_list.c
1201 fib/fib_attached_export.c
1202 fib/fib_api.c
1203 fib/fib_bfd.c
1204)
1205
1206list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001207 fib/fib.h
Damjan Marion4553c952018-08-26 11:04:40 +02001208 fib/fib_api.h
Dave Wallace40cfc152022-02-23 17:15:14 -05001209 fib/fib_entry_track.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001210 fib/ip4_fib.h
Benoît Ganned9fc7082021-10-18 11:16:01 +02001211 fib/ip4_fib_8.h
1212 fib/ip4_fib_16.h
1213 fib/ip4_fib_hash.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001214 fib/ip6_fib.h
1215 fib/fib_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001216 fib/fib_table.h
1217 fib/fib_node.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001218 fib/fib_node_list.h
Damjan Marion4553c952018-08-26 11:04:40 +02001219 fib/fib_entry.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001220 fib/fib_entry_delegate.h
Neale Rannse2fe0972020-11-26 08:37:27 +00001221 fib/fib_sas.h
Neale Ranns3bab8f92019-12-04 06:11:00 +00001222 fib/fib_source.h
Damjan Marion4553c952018-08-26 11:04:40 +02001223)
1224
Neale Ranns976b2592019-12-04 06:11:00 +00001225list(APPEND VNET_API_FILES
1226 fib/fib_types.api
1227 fib/fib.api
1228)
Benoît Ganned39495d2019-07-25 14:14:03 +02001229
Damjan Marion4553c952018-08-26 11:04:40 +02001230##############################################################################
1231# ADJ
1232##############################################################################
1233
1234list(APPEND VNET_SOURCES
1235 adj/adj_nbr.c
1236 adj/adj_glean.c
1237 adj/adj_midchain.c
Neale Rannsf339f492021-03-31 07:36:33 +00001238 adj/adj_midchain_node.c
Neale Ranns4c3ba812019-03-26 07:02:58 +00001239 adj/adj_midchain_delegate.c
Damjan Marion4553c952018-08-26 11:04:40 +02001240 adj/adj_mcast.c
1241 adj/adj_l2.c
1242 adj/adj_nsh.c
1243 adj/adj.c
1244 adj/rewrite.c
1245 adj/adj_bfd.c
1246 adj/adj_delegate.c
1247)
1248
Filip Tehlar0b2c15d2019-03-04 02:52:54 -08001249list(APPEND VNET_MULTIARCH_SOURCES
1250 adj/adj_nsh.c
1251 adj/adj_l2.c
Neale Rannsf339f492021-03-31 07:36:33 +00001252 adj/adj_midchain_node.c
Filip Tehlar0b2c15d2019-03-04 02:52:54 -08001253)
1254
Damjan Marion4553c952018-08-26 11:04:40 +02001255list(APPEND VNET_HEADERS
1256 adj/adj.h
1257 adj/adj_types.h
1258 adj/adj_glean.h
1259 adj/adj_nsh.h
1260 adj/adj_nbr.h
Alberto Compagnod8ca1e42019-08-12 11:43:19 +02001261 adj/adj_midchain.h
Damjan Marion4553c952018-08-26 11:04:40 +02001262 adj/rewrite.h
1263)
1264
1265##############################################################################
1266# Data-Plane Objects
1267##############################################################################
1268
1269list(APPEND VNET_SOURCES
1270 dpo/dpo.c
1271 dpo/drop_dpo.c
1272 dpo/ip_null_dpo.c
1273 dpo/ip6_ll_dpo.c
1274 dpo/punt_dpo.c
1275 dpo/receive_dpo.c
1276 dpo/load_balance.c
1277 dpo/load_balance_map.c
1278 dpo/lookup_dpo.c
1279 dpo/classify_dpo.c
1280 dpo/replicate_dpo.c
1281 dpo/interface_rx_dpo.c
1282 dpo/interface_tx_dpo.c
1283 dpo/mpls_disposition.c
1284 dpo/mpls_label_dpo.c
1285 dpo/l3_proxy_dpo.c
1286 dpo/dvr_dpo.c
Neale Ranns1dbcf302019-07-19 11:44:53 +00001287 dpo/pw_cw.c
Damjan Marion4553c952018-08-26 11:04:40 +02001288)
1289
Filip Tehlareb9a27f2019-03-07 01:42:11 -08001290list(APPEND VNET_MULTIARCH_SOURCES
1291 dpo/lookup_dpo.h
1292 dpo/mpls_disposition.c
1293 dpo/dvr_dpo.c
1294 dpo/mpls_label_dpo.c
1295 dpo/interface_rx_dpo.c
1296)
1297
Damjan Marion4553c952018-08-26 11:04:40 +02001298list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001299 dpo/load_balance.h
Damjan Marion0cc76942022-01-20 18:45:39 +01001300 dpo/load_balance_map.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001301 dpo/drop_dpo.h
Damjan Marion4553c952018-08-26 11:04:40 +02001302 dpo/lookup_dpo.h
1303 dpo/punt_dpo.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001304 dpo/classify_dpo.h
1305 dpo/receive_dpo.h
1306 dpo/ip_null_dpo.h
1307 dpo/replicate_dpo.h
Damjan Marion4553c952018-08-26 11:04:40 +02001308 dpo/dpo.h
1309)
1310
1311##############################################################################
1312# Multicast FIB
1313##############################################################################
1314
1315list(APPEND VNET_SOURCES
Damjan Marion4553c952018-08-26 11:04:40 +02001316 mfib/mfib_forward.c
1317 mfib/ip4_mfib.c
1318 mfib/ip6_mfib.c
Neale Ranns097fa662018-05-01 05:17:55 -07001319 mfib/mfib_api.c
Damjan Marion4553c952018-08-26 11:04:40 +02001320 mfib/mfib_types.c
1321 mfib/mfib_signal.c
1322 mfib/mfib_itf.c
1323 mfib/mfib_entry.c
Neale Ranns9e829a82018-12-17 05:50:32 -08001324 mfib/mfib_entry.c
1325 mfib/mfib_entry_cover.c
1326 mfib/mfib_entry_delegate.c
1327 mfib/mfib_entry_src.c
1328 mfib/mfib_entry_src_rr.c
Damjan Marion4553c952018-08-26 11:04:40 +02001329 mfib/mfib_table.c
1330)
1331
Filip Tehlar79c27eb2019-03-07 00:30:03 -08001332list(APPEND VNET_MULTIARCH_SOURCES
1333 mfib/mfib_forward.c
1334)
1335
Damjan Marion4553c952018-08-26 11:04:40 +02001336list(APPEND VNET_HEADERS
1337 mfib/ip4_mfib.h
1338 mfib/mfib_types.h
1339 mfib/mfib_table.h
1340)
1341
Benoît Ganned39495d2019-07-25 14:14:03 +02001342list(APPEND VNET_API_FILES mfib/mfib_types.api)
1343
Damjan Marion4553c952018-08-26 11:04:40 +02001344##############################################################################
1345# Utilities
1346##############################################################################
1347
1348list(APPEND VNET_SOURCES
1349 util/radix.c
1350 util/refcount.c
Neale Rannsc8352bc2018-08-29 10:23:58 -07001351 util/throttle.c
Damjan Marion4553c952018-08-26 11:04:40 +02001352)
1353
Damjan Marionac5554c2018-08-30 22:56:59 +02001354list(APPEND VNET_HEADERS
1355 util/throttle.h
1356)
1357
Damjan Marion4553c952018-08-26 11:04:40 +02001358##############################################################################
1359# QoS
1360##############################################################################
1361
1362list(APPEND VNET_SOURCES
1363 qos/qos_types.c
1364 qos/qos_api.c
1365 qos/qos_egress_map.c
1366 qos/qos_record.c
Filip Tehlar0bddf7e2019-03-04 08:14:07 -08001367 qos/qos_record_node.c
Neale Ranns83832e72019-07-31 02:48:02 -07001368 qos/qos_store.c
1369 qos/qos_store_node.c
Damjan Marion4553c952018-08-26 11:04:40 +02001370 qos/qos_mark.c
Filip Tehlar0bddf7e2019-03-04 08:14:07 -08001371 qos/qos_mark_node.c
1372)
1373
1374list(APPEND VNET_MULTIARCH_SOURCES
1375 qos/qos_record_node.c
1376 qos/qos_mark_node.c
Damjan Marion4553c952018-08-26 11:04:40 +02001377)
1378
1379list(APPEND VNET_API_FILES qos/qos.api)
1380
1381##############################################################################
1382# BIER
1383##############################################################################
1384
1385list(APPEND VNET_SOURCES
1386 bier/bier_bit_string.c
1387 bier/bier_entry.c
1388 bier/bier_fmask.c
1389 bier/bier_fmask_db.c
1390 bier/bier_input.c
1391 bier/bier_lookup.c
1392 bier/bier_output.c
1393 bier/bier_table.c
1394 bier/bier_types.c
Damjan Marion4553c952018-08-26 11:04:40 +02001395 bier/bier_api.c
1396 bier/bier_drop.c
1397 bier/bier_update.c
1398 bier/bier_imp_node.c
1399 bier/bier_imp.c
1400 bier/bier_disp_entry.c
1401 bier/bier_disp_lookup_node.c
1402 bier/bier_disp_dispatch_node.c
1403 bier/bier_disp_table.c
1404 bier/bier_bift_table.c
1405)
1406
Filip Tehlara01e0322019-03-05 03:34:52 -08001407list(APPEND VNET_MULTIARCH_SOURCES
1408 bier/bier_disp_dispatch_node.c
1409 bier/bier_disp_lookup_node.c
1410 bier/bier_imp_node.c
1411)
1412
Damjan Marion4553c952018-08-26 11:04:40 +02001413list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001414 bier/bier_types.h
1415 bier/bier_entry.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001416 bier/bier_update.h
Damjan Marion4553c952018-08-26 11:04:40 +02001417 bier/bier_table.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001418)
1419
Damjan Marion4553c952018-08-26 11:04:40 +02001420list(APPEND VNET_API_FILES bier/bier.api)
Damjan Marion612dd6a2018-07-30 12:45:07 +02001421
Florin Coras41c9e042018-09-11 00:10:41 -07001422##############################################################################
Matus Fabianb4515b42018-11-19 04:25:32 -08001423# SYSLOG
1424##############################################################################
1425
1426list (APPEND VNET_SOURCES
1427 syslog/syslog_api.c
1428 syslog/syslog_udp.c
1429 syslog/syslog.c
1430)
1431
1432list(APPEND VNET_HEADERS
1433 syslog/syslog_udp.h
1434 syslog/syslog.h
1435)
1436
1437list(APPEND VNET_API_FILES syslog/syslog.api)
1438
1439##############################################################################
Neale Ranns03ce4622020-02-03 10:55:09 +00001440# Tunnel Endpoint Information Base
Neale Ranns5f8f6172019-04-18 10:23:56 +00001441##############################################################################
1442
1443list (APPEND VNET_SOURCES
Neale Ranns03ce4622020-02-03 10:55:09 +00001444 teib/teib_api.c
1445 teib/teib_cli.c
1446 teib/teib.c
Neale Ranns5f8f6172019-04-18 10:23:56 +00001447)
1448
1449list(APPEND VNET_HEADERS
Neale Ranns03ce4622020-02-03 10:55:09 +00001450 teib/teib.h
Neale Ranns5f8f6172019-04-18 10:23:56 +00001451)
1452
Neale Ranns03ce4622020-02-03 10:55:09 +00001453list(APPEND VNET_API_FILES teib/teib.api)
Neale Ranns5f8f6172019-04-18 10:23:56 +00001454
1455##############################################################################
Neale Rannscbe25aa2019-09-30 10:53:31 +00001456# ARP/ND
1457##############################################################################
1458
1459list (APPEND VNET_SOURCES
1460 arp/arp_api.c
1461 arp/arp.c
1462 arp/arp_proxy.c
1463)
1464
1465list(APPEND VNET_HEADERS
1466 arp/arp.h
1467)
1468
1469list(APPEND VNET_API_FILES arp/arp.api)
1470
1471list (APPEND VNET_SOURCES
1472 ip6-nd/ip6_mld.c
1473 ip6-nd/ip6_nd.c
1474 ip6-nd/ip6_nd_api.c
1475 ip6-nd/ip6_nd_proxy.c
Mohsin Kazmicebb4772021-04-07 19:50:35 +02001476 ip6-nd/ip6_nd_mirror_proxy.c
Neale Rannscbe25aa2019-09-30 10:53:31 +00001477 ip6-nd/ip6_ra.c
1478 ip6-nd/rd_cp.c
1479 ip6-nd/rd_cp_api.c
1480)
1481
1482list(APPEND VNET_HEADERS
1483 ip6-nd/ip6_nd.h
1484)
1485
1486list(APPEND VNET_API_FILES
1487 ip6-nd/ip6_nd.api
1488 ip6-nd/rd_cp.api
1489)
1490
1491##############################################################################
Florin Coras41c9e042018-09-11 00:10:41 -07001492# VNET Library
1493##############################################################################
1494
Damjan Marion4553c952018-08-26 11:04:40 +02001495add_vpp_library(vnet
1496 SOURCES ${VNET_SOURCES}
1497 MULTIARCH_SOURCES ${VNET_MULTIARCH_SOURCES}
1498 INSTALL_HEADERS ${VNET_HEADERS}
1499 API_FILES ${VNET_API_FILES}
Klement Sekeraefd4d702021-04-20 19:21:36 +02001500 LINK_LIBRARIES vppinfra svm vlib
Chris Lukec171d012020-01-15 20:30:04 -05001501 DEPENDS vpp_version_h api_headers
Damjan Marion612dd6a2018-07-30 12:45:07 +02001502)
Florin Coras41c9e042018-09-11 00:10:41 -07001503
1504##############################################################################
Yulong Peidb43bb62020-01-09 01:12:43 +08001505# vpp api test client library
1506##############################################################################
1507
1508add_vpp_library (vatclient
1509 SOURCES ip/ip_types_api.c
1510 DEPENDS api_headers
1511)
1512
Florin Coras248210c2021-09-14 18:54:45 -07001513add_vat_test_library(vnet
Filip Tehlarf0e67d72021-07-23 22:03:05 +00001514 interface_test.c
Florin Coras248210c2021-09-14 18:54:45 -07001515 ip/ip_test.c
1516 arp/arp_test.c
1517 ip6-nd/ip6_nd_test.c
Filip Tehlar850024b2021-09-02 10:32:40 +00001518 srmpls/sr_mpls_test.c
Filip Tehlarea257222021-10-18 09:02:37 +00001519 session/session_test.c
Filip Tehlar1b6fb402021-07-24 18:10:39 +00001520 l2/l2_test.c
Filip Tehlar0ad06082021-07-25 14:38:45 +00001521 ipsec/ipsec_test.c
Florin Coras248210c2021-09-14 18:54:45 -07001522)
1523
Yulong Peidb43bb62020-01-09 01:12:43 +08001524##############################################################################
Ole Troandf87f802020-11-18 19:17:48 +01001525# VAT2 plugins
1526##############################################################################
1527add_vpp_test_library(vnet
1528 ${VNET_API_FILES}
1529)
1530
1531##############################################################################