blob: 1cd5b58f85a6552c52e42c10e61234dff3291b62 [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
447 ip/ip4_error.h
448 ip/ip4.h
449 ip/ip4_mtrie.h
Neale Rannse4031132020-10-26 13:00:06 +0000450 ip/ip4_inlines.h
Damjan Marion4553c952018-08-26 11:04:40 +0200451 ip/ip4_packet.h
Neale Rannscbe25aa2019-09-30 10:53:31 +0000452 ip/ip46_address.h
Damjan Marion4553c952018-08-26 11:04:40 +0200453 ip/ip6_error.h
454 ip/ip6.h
455 ip/ip6_hop_by_hop.h
456 ip/ip6_hop_by_hop_packet.h
Neale Rannse4031132020-10-26 13:00:06 +0000457 ip/ip6_inlines.h
Damjan Marion4553c952018-08-26 11:04:40 +0200458 ip/ip6_packet.h
Damjan Marion4553c952018-08-26 11:04:40 +0200459 ip/ip.h
Neale Rannse4031132020-10-26 13:00:06 +0000460 ip/ip_container_proxy.h
461 ip/ip_flow_hash.h
Steven Luongc3ed1c92020-07-27 10:06:58 -0700462 ip/ip_table.h
Neale Ranns59f71132020-04-08 12:19:38 +0000463 ip/ip_interface.h
Damjan Marion4553c952018-08-26 11:04:40 +0200464 ip/ip_packet.h
Mohsin Kazmif5462362021-02-23 15:55:04 +0100465 ip/ip_psh_cksum.h
Damjan Marion4553c952018-08-26 11:04:40 +0200466 ip/ip_source_and_port_range_check.h
Neale Rannsea93e482019-11-12 17:16:47 +0000467 ip/ip_types.h
Damjan Marion4553c952018-08-26 11:04:40 +0200468 ip/lookup.h
469 ip/ports.def
470 ip/protocols.def
471 ip/punt_error.def
472 ip/punt.h
473)
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
782 mpls/error.def
783)
784
785list(APPEND VNET_API_FILES mpls/mpls.api)
786
787##############################################################################
788# Tunnel protocol: vxlan-gpe
789##############################################################################
790
791list(APPEND VNET_SOURCES
792 vxlan-gpe/vxlan_gpe.c
793 vxlan-gpe/encap.c
794 vxlan-gpe/decap.c
795 vxlan-gpe/vxlan_gpe_api.c
796)
797
Filip Tehlare1714d32019-03-05 03:01:43 -0800798list (APPEND VNET_MULTIARCH_SOURCES
799 vxlan-gpe/decap.c
800)
801
Damjan Marion4553c952018-08-26 11:04:40 +0200802list(APPEND VNET_HEADERS
803 vxlan-gpe/vxlan_gpe.h
804 vxlan-gpe/vxlan_gpe_packet.h
805 vxlan-gpe/vxlan_gpe_error.def
806)
807
808list(APPEND VNET_API_FILES vxlan-gpe/vxlan_gpe.api)
809
810##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200811# ipv6 segment routing
812##############################################################################
813
814list(APPEND VNET_SOURCES
815 srv6/sr.c
816 srv6/sr_localsid.c
817 srv6/sr_policy_rewrite.c
818 srv6/sr_steering.c
819 srv6/sr_api.c
820)
821
822list(APPEND VNET_HEADERS
823 srv6/sr_packet.h
824 srv6/sr.h
825)
826
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100827list(APPEND VNET_API_FILES
828 srv6/sr.api
829 srv6/sr_types.api
830)
Damjan Marion4553c952018-08-26 11:04:40 +0200831
832##############################################################################
833# mpls segment routing
834##############################################################################
835
836list(APPEND VNET_SOURCES
837 srmpls/sr_mpls_policy.c
838 srmpls/sr_mpls_steering.c
839 srmpls/sr_mpls_api.c
840)
841
842list(APPEND VNET_HEADERS
843 srmpls/sr_mpls.h
844)
845
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100846list(APPEND VNET_API_FILES
847 srmpls/sr_mpls.api
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100848)
Damjan Marion4553c952018-08-26 11:04:40 +0200849
850##############################################################################
851# IPFIX / netflow v10
852##############################################################################
853list(APPEND VNET_SOURCES
854 ipfix-export/flow_report.c
855 ipfix-export/flow_api.c
856)
857
858list(APPEND VNET_HEADERS
859 ipfix-export/flow_report.h
860 ipfix-export/ipfix_info_elements.h
861 ipfix-export/ipfix_packet.h
862)
863
864list(APPEND VNET_API_FILES ipfix-export/ipfix_export.api)
865
866##############################################################################
Mohsin Kazmi41b23bc2021-06-30 18:26:25 +0000867# HASH
868##############################################################################
869list(APPEND VNET_SOURCES
870 hash/hash.c
871 hash/cli.c
872 hash/crc32_5tuple.c
Florin Coras1e6d30b2021-11-02 10:32:19 -0700873 hash/handoff_eth.c
Steven Luong05a68d62021-12-03 12:05:45 -0800874 hash/hash_eth.c
Mohsin Kazmi41b23bc2021-06-30 18:26:25 +0000875)
876
877list(APPEND VNET_HEADERS
878 hash/hash.h
879)
880
881##############################################################################
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200882# GSO
883##############################################################################
884list(APPEND VNET_SOURCES
885 gso/cli.c
886 gso/gso.c
887 gso/gso_api.c
888 gso/node.c
889)
890
891list(APPEND VNET_HEADERS
Mohsin Kazmif382b062020-08-11 15:00:44 +0200892 gso/gro.h
893 gso/gro_func.h
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000894 gso/hdr_offset_parser.h
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200895 gso/gso.h
896)
897
898list(APPEND VNET_API_FILES
899 gso/gso.api
900)
901
902##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200903# IPFIX classify code
904##############################################################################
905
906list(APPEND VNET_SOURCES
907 ipfix-export/flow_report_classify.c
908)
909
910list(APPEND VNET_HEADERS
911 ipfix-export/flow_report_classify.h
912)
913
914##############################################################################
915# lawful intercept
916##############################################################################
917
918list(APPEND VNET_SOURCES
919 lawful-intercept/lawful_intercept.c
920 lawful-intercept/node.c
921)
922
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -0700923list(APPEND VNET_MULTIARCH_SOURCES
924 lawful-intercept/node.c
925)
926
Damjan Marion4553c952018-08-26 11:04:40 +0200927list(APPEND VNET_HEADERS
928 lawful-intercept/lawful_intercept.h
929)
930
931##############################################################################
932# SPAN (port mirroring)
933##############################################################################
934
935list(APPEND VNET_SOURCES
936 span/span_api.c
937 span/span.c
938 span/node.c
939)
940
Filip Tehlara79271f2019-03-05 03:46:40 -0800941list(APPEND VNET_MULTIARCH_SOURCES
942 span/node.c
943)
944
Damjan Marion4553c952018-08-26 11:04:40 +0200945list(APPEND VNET_HEADERS
946 span/span.h
947)
948
949list(APPEND VNET_API_FILES span/span.api)
950
951##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200952# Packet generator
953##############################################################################
954
955list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200956 pg/cli.c
957 pg/edit.c
958 pg/init.c
959 pg/input.c
960 pg/output.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200961 pg/stream.c
Damjan Marion4553c952018-08-26 11:04:40 +0200962 pg/pg_api.c
963)
964
965list(APPEND VNET_HEADERS
966 pg/pg.h
967 pg/edit.h
968)
969
970list(APPEND VNET_API_FILES pg/pg.api)
971
972##############################################################################
973# virtio
974##############################################################################
975
976list(APPEND VNET_SOURCES
Damjan Marionf41244f2019-11-08 17:41:06 +0100977 devices/virtio/cli.c
Damjan Marion4553c952018-08-26 11:04:40 +0200978 devices/virtio/device.c
Damjan Marionf41244f2019-11-08 17:41:06 +0100979 devices/virtio/format.c
Damjan Marion4553c952018-08-26 11:04:40 +0200980 devices/virtio/node.c
Damjan Marionf41244f2019-11-08 17:41:06 +0100981 devices/virtio/pci.c
Damjan Marion4553c952018-08-26 11:04:40 +0200982 devices/virtio/vhost_user.c
983 devices/virtio/vhost_user_input.c
984 devices/virtio/vhost_user_output.c
985 devices/virtio/vhost_user_api.c
986 devices/virtio/virtio.c
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200987 devices/virtio/virtio_api.c
Mohsin Kazmia0a68332020-07-16 12:55:42 +0000988 devices/virtio/virtio_pci_legacy.c
Mohsin Kazmi379aac32020-08-20 10:25:12 +0200989 devices/virtio/virtio_pci_modern.c
Mohsin Kazmib7e4e6d2021-12-13 18:32:42 +0000990 devices/virtio/virtio_pre_input.c
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200991 devices/virtio/virtio_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200992)
993
994list(APPEND VNET_HEADERS
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200995 devices/virtio/pci.h
Damjan Marion4553c952018-08-26 11:04:40 +0200996 devices/virtio/virtio.h
Mohsin Kazmie347acb2020-09-28 10:26:33 +0000997 devices/virtio/virtio_buffering.h
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200998 devices/virtio/virtio_std.h
Mohsin Kazmia0a68332020-07-16 12:55:42 +0000999 devices/virtio/virtio_pci_legacy.h
Mohsin Kazmi379aac32020-08-20 10:25:12 +02001000 devices/virtio/virtio_pci_modern.h
Mohsin Kazmia7a22812020-08-31 17:17:16 +02001001 devices/virtio/vhost_std.h
Damjan Marion4553c952018-08-26 11:04:40 +02001002 devices/virtio/vhost_user.h
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +02001003 devices/virtio/virtio_types_api.h
Damjan Marion4553c952018-08-26 11:04:40 +02001004)
1005
1006list(APPEND VNET_MULTIARCH_SOURCES
1007 devices/virtio/vhost_user_input.c
1008 devices/virtio/vhost_user_output.c
Filip Tehlar608996d2019-03-04 03:03:13 -08001009 devices/virtio/node.c
1010 devices/af_packet/node.c
Filip Tehlaraee73642019-03-13 05:50:44 -07001011 devices/virtio/device.c
Damjan Marion4553c952018-08-26 11:04:40 +02001012)
1013
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001014list(APPEND VNET_API_FILES
1015 devices/virtio/vhost_user.api
1016 devices/virtio/virtio.api
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +02001017 devices/virtio/virtio_types.api
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001018)
Damjan Marion4553c952018-08-26 11:04:40 +02001019
1020##############################################################################
1021# tap interface (with virtio backend)
1022##############################################################################
1023
1024list(APPEND VNET_SOURCES
1025 devices/tap/cli.c
1026 devices/tap/tap.c
1027 devices/tap/tapv2_api.c
1028)
1029
1030list(APPEND VNET_HEADERS
1031 devices/tap/tap.h
1032)
1033
Mohsin Kazmia7a22812020-08-31 17:17:16 +02001034list(APPEND VNET_API_FILES
1035 devices/tap/tapv2.api
1036)
Damjan Marion4553c952018-08-26 11:04:40 +02001037
1038##############################################################################
1039# tap interface (with virtio backend)
1040##############################################################################
1041
1042list(APPEND VNET_SOURCES
1043 devices/pipe/pipe_api.c
1044 devices/pipe/pipe.c
1045)
1046
1047list(APPEND VNET_HEADERS
1048 devices/pipe/pipe.h
1049)
1050
1051list(APPEND VNET_API_FILES devices/pipe/pipe.api)
1052
1053##############################################################################
1054# session managmeent
1055##############################################################################
1056
1057list(APPEND VNET_SOURCES
1058 session/session.c
Florin Coras11166672020-04-13 01:20:25 +00001059 session/session_debug.c
Damjan Marion4553c952018-08-26 11:04:40 +02001060 session/session_table.c
1061 session/session_rules_table.c
1062 session/session_lookup.c
1063 session/session_node.c
1064 session/transport.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001065 session/application.c
Florin Coras623eb562019-02-03 19:28:34 -08001066 session/application_worker.c
Damjan Marion4553c952018-08-26 11:04:40 +02001067 session/session_cli.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001068 session/application_interface.c
Florin Corasba7d8f52019-02-22 13:11:38 -08001069 session/application_local.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001070 session/application_namespace.c
Damjan Marion4553c952018-08-26 11:04:40 +02001071 session/segment_manager.c
Damjan Marion4553c952018-08-26 11:04:40 +02001072 session/session_api.c
1073)
1074
1075list(APPEND VNET_HEADERS
1076 session/session.h
1077 session/session_table.h
1078 session/session_rules_table.h
Florin Coras288eaab2019-02-03 15:26:14 -08001079 session/session_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001080 session/session_lookup.h
1081 session/application.h
1082 session/transport.h
Florin Coras1ee78302019-02-05 15:51:15 -08001083 session/transport_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001084 session/application_interface.h
Florin Corasba7d8f52019-02-22 13:11:38 -08001085 session/application_local.h
Damjan Marion4553c952018-08-26 11:04:40 +02001086 session/application_namespace.h
1087 session/session_debug.h
1088 session/segment_manager.h
1089 session/mma_template.h
1090 session/mma_template.c
1091 session/mma_16.h
1092 session/mma_40.h
1093)
1094
1095list(APPEND VNET_API_FILES session/session.api)
1096
1097##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +02001098# TLS protocol
1099##############################################################################
1100
1101list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +02001102 tls/tls.c
Damjan Marion4553c952018-08-26 11:04:40 +02001103)
1104
1105list(APPEND VNET_HEADERS
1106 tls/tls.h
Florin Coras54a51fd2019-02-07 15:34:52 -08001107 tls/tls_test.h
Damjan Marion4553c952018-08-26 11:04:40 +02001108)
1109
1110##############################################################################
1111# Linux packet interface
1112##############################################################################
1113
1114list(APPEND VNET_SOURCES
1115 devices/af_packet/af_packet.c
1116 devices/af_packet/device.c
1117 devices/af_packet/node.c
1118 devices/af_packet/cli.c
1119 devices/af_packet/af_packet_api.c
1120)
1121
Filip Tehlaraee73642019-03-13 05:50:44 -07001122list(APPEND VNET_MULTIARCH_SOURCES
Filip Tehlaraee73642019-03-13 05:50:44 -07001123 devices/af_packet/device.c
1124)
1125
Damjan Marion4553c952018-08-26 11:04:40 +02001126list(APPEND VNET_HEADERS
1127 devices/af_packet/af_packet.h
1128)
1129
1130list(APPEND VNET_API_FILES devices/af_packet/af_packet.api)
1131
1132##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +02001133# Driver feature graph arc support
1134##############################################################################
1135
1136list(APPEND VNET_SOURCES
1137 feature/feature.c
1138 feature/feature_api.c
1139 feature/registration.c
1140)
1141
1142list(APPEND VNET_HEADERS
1143 feature/feature.h
1144)
1145
1146list(APPEND VNET_API_FILES feature/feature.api)
1147
1148##############################################################################
1149# Unix kernel related
1150##############################################################################
1151
1152# FIXME: unix/hgshm.c
1153
1154list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +02001155 unix/gdb_funcs.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001156 unix/tuntap.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001157)
1158
Damjan Marion4553c952018-08-26 11:04:40 +02001159list(APPEND VNET_HEADERS
Damjan Marion4553c952018-08-26 11:04:40 +02001160 unix/tuntap.h
Damjan Marion612dd6a2018-07-30 12:45:07 +02001161)
1162
Damjan Marion4553c952018-08-26 11:04:40 +02001163##############################################################################
1164# FIB
1165##############################################################################
1166
1167list(APPEND VNET_SOURCES
1168 fib/fib.c
Neale Rannsd6953332021-08-10 07:39:18 +00001169 fib/ip4_fib_hash.c
Damjan Marion4553c952018-08-26 11:04:40 +02001170 fib/ip4_fib.c
Neale Rannsd6953332021-08-10 07:39:18 +00001171 fib/ip4_fib_16.c
1172 fib/ip4_fib_8.c
Damjan Marion4553c952018-08-26 11:04:40 +02001173 fib/ip6_fib.c
1174 fib/mpls_fib.c
1175 fib/fib_table.c
1176 fib/fib_walk.c
1177 fib/fib_types.c
1178 fib/fib_node.c
1179 fib/fib_node_list.c
1180 fib/fib_entry.c
1181 fib/fib_entry_src.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001182 fib/fib_entry_src_adj.c
1183 fib/fib_entry_src_api.c
1184 fib/fib_entry_src_drop.c
Damjan Marion4553c952018-08-26 11:04:40 +02001185 fib/fib_entry_src_interface.c
1186 fib/fib_entry_src_interpose.c
Damjan Marion4553c952018-08-26 11:04:40 +02001187 fib/fib_entry_src_lisp.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001188 fib/fib_entry_src_mpls.c
1189 fib/fib_entry_src_simple.c
1190 fib/fib_entry_src_rr.c
Damjan Marion4553c952018-08-26 11:04:40 +02001191 fib/fib_entry_cover.c
1192 fib/fib_entry_delegate.c
Neale Ranns1f50bf82019-07-16 15:28:52 +00001193 fib/fib_entry_track.c
Damjan Marion4553c952018-08-26 11:04:40 +02001194 fib/fib_path_list.c
1195 fib/fib_path.c
1196 fib/fib_path_ext.c
Neale Rannse2fe0972020-11-26 08:37:27 +00001197 fib/fib_sas.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001198 fib/fib_source.c
Damjan Marion4553c952018-08-26 11:04:40 +02001199 fib/fib_urpf_list.c
1200 fib/fib_attached_export.c
1201 fib/fib_api.c
1202 fib/fib_bfd.c
1203)
1204
1205list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001206 fib/fib.h
Damjan Marion4553c952018-08-26 11:04:40 +02001207 fib/fib_api.h
Dave Wallace40cfc152022-02-23 17:15:14 -05001208 fib/fib_entry_track.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001209 fib/ip4_fib.h
Benoît Ganned9fc7082021-10-18 11:16:01 +02001210 fib/ip4_fib_8.h
1211 fib/ip4_fib_16.h
1212 fib/ip4_fib_hash.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001213 fib/ip6_fib.h
1214 fib/fib_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001215 fib/fib_table.h
1216 fib/fib_node.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001217 fib/fib_node_list.h
Damjan Marion4553c952018-08-26 11:04:40 +02001218 fib/fib_entry.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001219 fib/fib_entry_delegate.h
Neale Rannse2fe0972020-11-26 08:37:27 +00001220 fib/fib_sas.h
Neale Ranns3bab8f92019-12-04 06:11:00 +00001221 fib/fib_source.h
Damjan Marion4553c952018-08-26 11:04:40 +02001222)
1223
Neale Ranns976b2592019-12-04 06:11:00 +00001224list(APPEND VNET_API_FILES
1225 fib/fib_types.api
1226 fib/fib.api
1227)
Benoît Ganned39495d2019-07-25 14:14:03 +02001228
Damjan Marion4553c952018-08-26 11:04:40 +02001229##############################################################################
1230# ADJ
1231##############################################################################
1232
1233list(APPEND VNET_SOURCES
1234 adj/adj_nbr.c
1235 adj/adj_glean.c
1236 adj/adj_midchain.c
Neale Rannsf339f492021-03-31 07:36:33 +00001237 adj/adj_midchain_node.c
Neale Ranns4c3ba812019-03-26 07:02:58 +00001238 adj/adj_midchain_delegate.c
Damjan Marion4553c952018-08-26 11:04:40 +02001239 adj/adj_mcast.c
1240 adj/adj_l2.c
1241 adj/adj_nsh.c
1242 adj/adj.c
1243 adj/rewrite.c
1244 adj/adj_bfd.c
1245 adj/adj_delegate.c
1246)
1247
Filip Tehlar0b2c15d2019-03-04 02:52:54 -08001248list(APPEND VNET_MULTIARCH_SOURCES
1249 adj/adj_nsh.c
1250 adj/adj_l2.c
Neale Rannsf339f492021-03-31 07:36:33 +00001251 adj/adj_midchain_node.c
Filip Tehlar0b2c15d2019-03-04 02:52:54 -08001252)
1253
Damjan Marion4553c952018-08-26 11:04:40 +02001254list(APPEND VNET_HEADERS
1255 adj/adj.h
1256 adj/adj_types.h
1257 adj/adj_glean.h
1258 adj/adj_nsh.h
1259 adj/adj_nbr.h
Alberto Compagnod8ca1e42019-08-12 11:43:19 +02001260 adj/adj_midchain.h
Damjan Marion4553c952018-08-26 11:04:40 +02001261 adj/rewrite.h
1262)
1263
1264##############################################################################
1265# Data-Plane Objects
1266##############################################################################
1267
1268list(APPEND VNET_SOURCES
1269 dpo/dpo.c
1270 dpo/drop_dpo.c
1271 dpo/ip_null_dpo.c
1272 dpo/ip6_ll_dpo.c
1273 dpo/punt_dpo.c
1274 dpo/receive_dpo.c
1275 dpo/load_balance.c
1276 dpo/load_balance_map.c
1277 dpo/lookup_dpo.c
1278 dpo/classify_dpo.c
1279 dpo/replicate_dpo.c
1280 dpo/interface_rx_dpo.c
1281 dpo/interface_tx_dpo.c
1282 dpo/mpls_disposition.c
1283 dpo/mpls_label_dpo.c
1284 dpo/l3_proxy_dpo.c
1285 dpo/dvr_dpo.c
Neale Ranns1dbcf302019-07-19 11:44:53 +00001286 dpo/pw_cw.c
Damjan Marion4553c952018-08-26 11:04:40 +02001287)
1288
Filip Tehlareb9a27f2019-03-07 01:42:11 -08001289list(APPEND VNET_MULTIARCH_SOURCES
1290 dpo/lookup_dpo.h
1291 dpo/mpls_disposition.c
1292 dpo/dvr_dpo.c
1293 dpo/mpls_label_dpo.c
1294 dpo/interface_rx_dpo.c
1295)
1296
Damjan Marion4553c952018-08-26 11:04:40 +02001297list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001298 dpo/load_balance.h
Damjan Marion0cc76942022-01-20 18:45:39 +01001299 dpo/load_balance_map.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001300 dpo/drop_dpo.h
Damjan Marion4553c952018-08-26 11:04:40 +02001301 dpo/lookup_dpo.h
1302 dpo/punt_dpo.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001303 dpo/classify_dpo.h
1304 dpo/receive_dpo.h
1305 dpo/ip_null_dpo.h
1306 dpo/replicate_dpo.h
Damjan Marion4553c952018-08-26 11:04:40 +02001307 dpo/dpo.h
1308)
1309
1310##############################################################################
1311# Multicast FIB
1312##############################################################################
1313
1314list(APPEND VNET_SOURCES
Damjan Marion4553c952018-08-26 11:04:40 +02001315 mfib/mfib_forward.c
1316 mfib/ip4_mfib.c
1317 mfib/ip6_mfib.c
Neale Ranns097fa662018-05-01 05:17:55 -07001318 mfib/mfib_api.c
Damjan Marion4553c952018-08-26 11:04:40 +02001319 mfib/mfib_types.c
1320 mfib/mfib_signal.c
1321 mfib/mfib_itf.c
1322 mfib/mfib_entry.c
Neale Ranns9e829a82018-12-17 05:50:32 -08001323 mfib/mfib_entry.c
1324 mfib/mfib_entry_cover.c
1325 mfib/mfib_entry_delegate.c
1326 mfib/mfib_entry_src.c
1327 mfib/mfib_entry_src_rr.c
Damjan Marion4553c952018-08-26 11:04:40 +02001328 mfib/mfib_table.c
1329)
1330
Filip Tehlar79c27eb2019-03-07 00:30:03 -08001331list(APPEND VNET_MULTIARCH_SOURCES
1332 mfib/mfib_forward.c
1333)
1334
Damjan Marion4553c952018-08-26 11:04:40 +02001335list(APPEND VNET_HEADERS
1336 mfib/ip4_mfib.h
1337 mfib/mfib_types.h
1338 mfib/mfib_table.h
1339)
1340
Benoît Ganned39495d2019-07-25 14:14:03 +02001341list(APPEND VNET_API_FILES mfib/mfib_types.api)
1342
Damjan Marion4553c952018-08-26 11:04:40 +02001343##############################################################################
1344# Utilities
1345##############################################################################
1346
1347list(APPEND VNET_SOURCES
1348 util/radix.c
1349 util/refcount.c
Neale Rannsc8352bc2018-08-29 10:23:58 -07001350 util/throttle.c
Damjan Marion4553c952018-08-26 11:04:40 +02001351)
1352
Damjan Marionac5554c2018-08-30 22:56:59 +02001353list(APPEND VNET_HEADERS
1354 util/throttle.h
1355)
1356
Damjan Marion4553c952018-08-26 11:04:40 +02001357##############################################################################
1358# QoS
1359##############################################################################
1360
1361list(APPEND VNET_SOURCES
1362 qos/qos_types.c
1363 qos/qos_api.c
1364 qos/qos_egress_map.c
1365 qos/qos_record.c
Filip Tehlar0bddf7e2019-03-04 08:14:07 -08001366 qos/qos_record_node.c
Neale Ranns83832e72019-07-31 02:48:02 -07001367 qos/qos_store.c
1368 qos/qos_store_node.c
Damjan Marion4553c952018-08-26 11:04:40 +02001369 qos/qos_mark.c
Filip Tehlar0bddf7e2019-03-04 08:14:07 -08001370 qos/qos_mark_node.c
1371)
1372
1373list(APPEND VNET_MULTIARCH_SOURCES
1374 qos/qos_record_node.c
1375 qos/qos_mark_node.c
Damjan Marion4553c952018-08-26 11:04:40 +02001376)
1377
1378list(APPEND VNET_API_FILES qos/qos.api)
1379
1380##############################################################################
1381# BIER
1382##############################################################################
1383
1384list(APPEND VNET_SOURCES
1385 bier/bier_bit_string.c
1386 bier/bier_entry.c
1387 bier/bier_fmask.c
1388 bier/bier_fmask_db.c
1389 bier/bier_input.c
1390 bier/bier_lookup.c
1391 bier/bier_output.c
1392 bier/bier_table.c
1393 bier/bier_types.c
Damjan Marion4553c952018-08-26 11:04:40 +02001394 bier/bier_api.c
1395 bier/bier_drop.c
1396 bier/bier_update.c
1397 bier/bier_imp_node.c
1398 bier/bier_imp.c
1399 bier/bier_disp_entry.c
1400 bier/bier_disp_lookup_node.c
1401 bier/bier_disp_dispatch_node.c
1402 bier/bier_disp_table.c
1403 bier/bier_bift_table.c
1404)
1405
Filip Tehlara01e0322019-03-05 03:34:52 -08001406list(APPEND VNET_MULTIARCH_SOURCES
1407 bier/bier_disp_dispatch_node.c
1408 bier/bier_disp_lookup_node.c
1409 bier/bier_imp_node.c
1410)
1411
Damjan Marion4553c952018-08-26 11:04:40 +02001412list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001413 bier/bier_types.h
1414 bier/bier_entry.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001415 bier/bier_update.h
Damjan Marion4553c952018-08-26 11:04:40 +02001416 bier/bier_table.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001417)
1418
Damjan Marion4553c952018-08-26 11:04:40 +02001419list(APPEND VNET_API_FILES bier/bier.api)
Damjan Marion612dd6a2018-07-30 12:45:07 +02001420
Florin Coras41c9e042018-09-11 00:10:41 -07001421##############################################################################
Matus Fabianb4515b42018-11-19 04:25:32 -08001422# SYSLOG
1423##############################################################################
1424
1425list (APPEND VNET_SOURCES
1426 syslog/syslog_api.c
1427 syslog/syslog_udp.c
1428 syslog/syslog.c
1429)
1430
1431list(APPEND VNET_HEADERS
1432 syslog/syslog_udp.h
1433 syslog/syslog.h
1434)
1435
1436list(APPEND VNET_API_FILES syslog/syslog.api)
1437
1438##############################################################################
Neale Ranns03ce4622020-02-03 10:55:09 +00001439# Tunnel Endpoint Information Base
Neale Ranns5f8f6172019-04-18 10:23:56 +00001440##############################################################################
1441
1442list (APPEND VNET_SOURCES
Neale Ranns03ce4622020-02-03 10:55:09 +00001443 teib/teib_api.c
1444 teib/teib_cli.c
1445 teib/teib.c
Neale Ranns5f8f6172019-04-18 10:23:56 +00001446)
1447
1448list(APPEND VNET_HEADERS
Neale Ranns03ce4622020-02-03 10:55:09 +00001449 teib/teib.h
Neale Ranns5f8f6172019-04-18 10:23:56 +00001450)
1451
Neale Ranns03ce4622020-02-03 10:55:09 +00001452list(APPEND VNET_API_FILES teib/teib.api)
Neale Ranns5f8f6172019-04-18 10:23:56 +00001453
1454##############################################################################
Neale Rannscbe25aa2019-09-30 10:53:31 +00001455# ARP/ND
1456##############################################################################
1457
1458list (APPEND VNET_SOURCES
1459 arp/arp_api.c
1460 arp/arp.c
1461 arp/arp_proxy.c
1462)
1463
1464list(APPEND VNET_HEADERS
1465 arp/arp.h
1466)
1467
1468list(APPEND VNET_API_FILES arp/arp.api)
1469
1470list (APPEND VNET_SOURCES
1471 ip6-nd/ip6_mld.c
1472 ip6-nd/ip6_nd.c
1473 ip6-nd/ip6_nd_api.c
1474 ip6-nd/ip6_nd_proxy.c
Mohsin Kazmicebb4772021-04-07 19:50:35 +02001475 ip6-nd/ip6_nd_mirror_proxy.c
Neale Rannscbe25aa2019-09-30 10:53:31 +00001476 ip6-nd/ip6_ra.c
1477 ip6-nd/rd_cp.c
1478 ip6-nd/rd_cp_api.c
1479)
1480
1481list(APPEND VNET_HEADERS
1482 ip6-nd/ip6_nd.h
1483)
1484
1485list(APPEND VNET_API_FILES
1486 ip6-nd/ip6_nd.api
1487 ip6-nd/rd_cp.api
1488)
1489
1490##############################################################################
Florin Coras41c9e042018-09-11 00:10:41 -07001491# VNET Library
1492##############################################################################
1493
Damjan Marion4553c952018-08-26 11:04:40 +02001494add_vpp_library(vnet
1495 SOURCES ${VNET_SOURCES}
1496 MULTIARCH_SOURCES ${VNET_MULTIARCH_SOURCES}
1497 INSTALL_HEADERS ${VNET_HEADERS}
1498 API_FILES ${VNET_API_FILES}
Klement Sekeraefd4d702021-04-20 19:21:36 +02001499 LINK_LIBRARIES vppinfra svm vlib
Chris Lukec171d012020-01-15 20:30:04 -05001500 DEPENDS vpp_version_h api_headers
Damjan Marion612dd6a2018-07-30 12:45:07 +02001501)
Florin Coras41c9e042018-09-11 00:10:41 -07001502
1503##############################################################################
Yulong Peidb43bb62020-01-09 01:12:43 +08001504# vpp api test client library
1505##############################################################################
1506
1507add_vpp_library (vatclient
1508 SOURCES ip/ip_types_api.c
1509 DEPENDS api_headers
1510)
1511
Florin Coras248210c2021-09-14 18:54:45 -07001512add_vat_test_library(vnet
Filip Tehlarf0e67d72021-07-23 22:03:05 +00001513 interface_test.c
Florin Coras248210c2021-09-14 18:54:45 -07001514 ip/ip_test.c
1515 arp/arp_test.c
1516 ip6-nd/ip6_nd_test.c
Filip Tehlar850024b2021-09-02 10:32:40 +00001517 srmpls/sr_mpls_test.c
Filip Tehlarea257222021-10-18 09:02:37 +00001518 session/session_test.c
Filip Tehlar1b6fb402021-07-24 18:10:39 +00001519 l2/l2_test.c
Filip Tehlar0ad06082021-07-25 14:38:45 +00001520 ipsec/ipsec_test.c
Florin Coras248210c2021-09-14 18:54:45 -07001521)
1522
Yulong Peidb43bb62020-01-09 01:12:43 +08001523##############################################################################
Ole Troandf87f802020-11-18 19:17:48 +01001524# VAT2 plugins
1525##############################################################################
1526add_vpp_test_library(vnet
1527 ${VNET_API_FILES}
1528)
1529
1530##############################################################################