blob: 1b04db677c8866e32653cf8ce60e11b83ee12a40 [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 Marion612dd6a2018-07-30 12:45:07 +020029 flow/flow.c
30 flow/flow_cli.c
Chenmin Sund0236f72020-07-27 17:54:40 +080031 flow/flow_api.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020032 handoff.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020033 interface.c
Damjan Marion4553c952018-08-26 11:04:40 +020034 interface_api.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020035 interface_cli.c
36 interface_format.c
37 interface_output.c
Damjan Mariond4f88cc2022-01-05 01:52:38 +010038 interface/caps.c
Damjan Marion94100532020-11-06 23:25:57 +010039 interface/rx_queue.c
Damjan Marion1bd6cbb2021-04-15 13:12:51 +020040 interface/tx_queue.c
Damjan Marion94100532020-11-06 23:25:57 +010041 interface/runtime.c
Nathan Skrzypczak162ff5e2021-11-09 18:18:21 +010042 interface/monitor.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020043 interface_stats.c
Damjan Marion4553c952018-08-26 11:04:40 +020044 misc.c
Damjan Marion4553c952018-08-26 11:04:40 +020045)
46
Filip Tehlar62668772019-03-04 03:33:32 -080047list(APPEND VNET_MULTIARCH_SOURCES
48 interface_output.c
49 interface_stats.c
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -070050 handoff.c
Filip Tehlar62668772019-03-04 03:33:32 -080051)
52
Damjan Marion4553c952018-08-26 11:04:40 +020053list(APPEND VNET_HEADERS
54 api_errno.h
55 buffer.h
56 config.h
57 devices/devices.h
58 devices/netlink.h
59 flow/flow.h
60 global_funcs.h
Damjan Marion94100532020-11-06 23:25:57 +010061 interface/rx_queue_funcs.h
Damjan Marion1bd6cbb2021-04-15 13:12:51 +020062 interface/tx_queue_funcs.h
Damjan Marion4553c952018-08-26 11:04:40 +020063 interface.h
64 interface_funcs.h
Dave Barach1bd2c012020-04-12 08:31:39 -040065 interface_output.h
Damjan Marion4553c952018-08-26 11:04:40 +020066 ip/ip4_to_ip6.h
67 ip/ip6_to_ip4.h
Benoît Ganne09267f72019-05-17 14:24:17 +020068 ip/ip_types_api.h
Damjan Marion4553c952018-08-26 11:04:40 +020069 l3_types.h
70 plugin/plugin.h
71 pipeline.h
Damjan Marion4553c952018-08-26 11:04:40 +020072 vnet.h
Damjan Marion4553c952018-08-26 11:04:40 +020073 util/radix.h
74 util/refcount.h
IJsbrand Wijnands724c8052020-03-05 11:29:23 -080075 format_fns.h
76 ip/ip_format_fns.h
Ole Troan8034a362021-08-11 13:54:14 +020077 ip/ip_sas.h
IJsbrand Wijnands724c8052020-03-05 11:29:23 -080078 ethernet/ethernet_format_fns.h
Mohammed Hawari6da37692021-08-16 14:37:21 +020079 ethernet/ethernet_types_api.h
Damjan Marion4553c952018-08-26 11:04:40 +020080)
81
Benoît Ganne09267f72019-05-17 14:24:17 +020082list(APPEND VNET_API_FILES
83 interface.api
Benoît Ganned39495d2019-07-25 14:14:03 +020084 interface_types.api
Benoît Ganne09267f72019-05-17 14:24:17 +020085 ip/ip_types.api
Chenmin Sund0236f72020-07-27 17:54:40 +080086 flow/flow_types.api
87 flow/flow.api
Benoît Ganne09267f72019-05-17 14:24:17 +020088)
Damjan Marion4553c952018-08-26 11:04:40 +020089
90##############################################################################
91# Policer infra
92##############################################################################
93list(APPEND VNET_SOURCES
94 policer/node_funcs.c
95 policer/policer.c
96 policer/xlate.c
97 policer/policer_api.c
98)
99
Filip Tehlar30d93482019-03-06 04:28:32 -0800100list(APPEND VNET_MULTIARCH_SOURCES
101 policer/node_funcs.c
102)
103
Damjan Marion4553c952018-08-26 11:04:40 +0200104list(APPEND VNET_HEADERS
105 policer/police.h
106 policer/policer.h
107 policer/xlate.h
108)
109
Jakub Grajciarcd01fb42020-03-02 13:16:53 +0100110list(APPEND VNET_API_FILES
111 policer/policer.api
112 policer/policer_types.api
113)
Damjan Marion4553c952018-08-26 11:04:40 +0200114
115##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200116# Layer 2 protocols go here
117##############################################################################
118
119##############################################################################
120# Layer 2 protocol: Ethernet
121##############################################################################
122list(APPEND VNET_SOURCES
Neale Rannscbe25aa2019-09-30 10:53:31 +0000123 ethernet/arp_packet.c
Neale Rannsde5b08f2018-08-29 06:37:18 -0700124 ethernet/ethernet_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200125 ethernet/format.c
126 ethernet/init.c
127 ethernet/interface.c
Neale Rannsde5b08f2018-08-29 06:37:18 -0700128 ethernet/mac_address.c
Damjan Marion4553c952018-08-26 11:04:40 +0200129 ethernet/node.c
130 ethernet/pg.c
131 ethernet/sfp.c
132 ethernet/p2p_ethernet.c
133 ethernet/p2p_ethernet_input.c
134 ethernet/p2p_ethernet_api.c
135)
136
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -0700137list(APPEND VNET_MULTIARCH_SOURCES
138 ethernet/node.c
139 ethernet/p2p_ethernet_input.c
140)
Damjan Marion4553c952018-08-26 11:04:40 +0200141
142list(APPEND VNET_HEADERS
143 ethernet/error.def
144 ethernet/ethernet.h
Jon Loeliger330bf932018-11-28 13:51:42 -0600145 ethernet/mac_address.h
Damjan Marion4553c952018-08-26 11:04:40 +0200146 ethernet/packet.h
147 ethernet/types.def
148 ethernet/sfp.h
149 ethernet/p2p_ethernet.h
Neale Rannscbe25aa2019-09-30 10:53:31 +0000150 ethernet/arp_packet.h
Damjan Marion4553c952018-08-26 11:04:40 +0200151)
152
Benoît Ganned39495d2019-07-25 14:14:03 +0200153list(APPEND VNET_API_FILES
154 ethernet/p2p_ethernet.api
155 ethernet/ethernet_types.api)
Damjan Marion4553c952018-08-26 11:04:40 +0200156
157##############################################################################
158# Layer 2 protocol: Ethernet bridging
159##############################################################################
160list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200161 l2/feat_bitmap.c
162 l2/l2_api.c
Neale Rannscbe25aa2019-09-30 10:53:31 +0000163 l2/l2_arp_term.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200164 l2/l2_bd.c
165 l2/l2_bvi.c
Neale Ranns192b13f2019-03-15 02:16:20 -0700166 l2/l2_bvi_node.c
Damjan Marion4553c952018-08-26 11:04:40 +0200167 l2/l2_input_classify.c
168 l2/l2_output_classify.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200169 l2/l2_efp_filter.c
170 l2/l2_fib.c
171 l2/l2_flood.c
172 l2/l2_fwd.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200173 l2/l2_input.c
Neale Ranns47a3d992020-09-29 15:38:51 +0000174 l2/l2_input_node.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200175 l2/l2_input_vtr.c
176 l2/l2_learn.c
177 l2/l2_output.c
Damjan Marion4553c952018-08-26 11:04:40 +0200178 l2/l2_in_out_acl.c
Andrew Yourtchenkoa23cade2018-10-06 09:18:00 +0200179 l2/l2_in_out_feat_arc.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200180 l2/l2_patch.c
181 l2/l2_rw.c
Neale Rannsb4743802018-09-05 09:13:57 -0700182 l2/l2_uu_fwd.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200183 l2/l2_vtr.c
184 l2/l2_xcrw.c
Damjan Marion4553c952018-08-26 11:04:40 +0200185)
186
Neale Rannsc25eb452018-09-12 06:53:03 -0400187list(APPEND VNET_MULTIARCH_SOURCES
Neale Ranns192b13f2019-03-15 02:16:20 -0700188 l2/l2_bvi_node.c
Neale Rannsc25eb452018-09-12 06:53:03 -0400189 l2/l2_fwd.c
190 l2/l2_learn.c
191 l2/l2_output.c
Damjan Marionc3baf622018-11-06 13:33:27 +0100192 l2/l2_patch.c
Filip Tehlar44f0f712019-03-11 04:26:37 -0700193 l2/l2_in_out_feat_arc.c
194 l2/l2_input_classify.c
Neale Ranns47a3d992020-09-29 15:38:51 +0000195 l2/l2_input_node.c
Filip Tehlar44f0f712019-03-11 04:26:37 -0700196 l2/l2_output_classify.c
197 l2/l2_flood.c
198 l2/l2_uu_fwd.c
199 l2/l2_efp_filter.c
200 l2/l2_rw.c
201 l2/l2_xcrw.c
202 l2/l2_in_out_acl.c
203 l2/l2_input_vtr.c
Neale Rannsc25eb452018-09-12 06:53:03 -0400204)
Neale Rannseb1525f2018-09-09 04:41:02 -0400205
Damjan Marion4553c952018-08-26 11:04:40 +0200206list(APPEND VNET_HEADERS
207 l2/feat_bitmap.h
208 l2/l2_input.h
209 l2/l2_output.h
210 l2/l2_vtr.h
211 l2/l2_input_vtr.h
212 l2/l2_efp_filter.h
213 l2/l2_fwd.h
214 l2/l2_bd.h
215 l2/l2_bvi.h
216 l2/l2_flood.h
217 l2/l2_fib.h
218 l2/l2_rw.h
219 l2/l2_xcrw.h
220 l2/l2_classify.h
221)
222
223list(APPEND VNET_API_FILES l2/l2.api)
224
225##############################################################################
226# Layer 2 protocol: SRP
227##############################################################################
228list(APPEND VNET_SOURCES
229 srp/format.c
230 srp/interface.c
231 srp/node.c
232 srp/pg.c
233)
234
235list(APPEND VNET_HEADERS
236 srp/packet.h
237 srp/srp.h
238)
239
240##############################################################################
241# Layer 2 protocol: PPP
242##############################################################################
243list(APPEND VNET_SOURCES
244 ppp/node.c
245 ppp/pg.c
246 ppp/ppp.c
247)
248
249list(APPEND VNET_HEADERS
250 ppp/error.def
251 ppp/ppp.h
252 ppp/packet.h
253)
254
255##############################################################################
256# Layer 2 protocol: HDLC
257##############################################################################
258list(APPEND VNET_SOURCES
259 hdlc/node.c
260 hdlc/pg.c
261 hdlc/hdlc.c
262)
263
264list(APPEND VNET_HEADERS
265 hdlc/error.def
266 hdlc/hdlc.h
267 hdlc/packet.h
268)
269
270##############################################################################
271# Layer 2 protocol: LLC
272##############################################################################
273list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200274 llc/llc.c
275 llc/node.c
276 llc/pg.c
Damjan Marion4553c952018-08-26 11:04:40 +0200277)
278
279list(APPEND VNET_HEADERS
280 llc/llc.h
281)
282
283##############################################################################
284# Layer 2 protocol: SNAP
285##############################################################################
286list(APPEND VNET_SOURCES
287 snap/snap.c
288 snap/node.c
289 snap/pg.c
290)
291
292list(APPEND VNET_HEADERS
293 snap/snap.h
294)
295
296##############################################################################
297# Layer 2 / vxlan
298##############################################################################
299list(APPEND VNET_SOURCES
300 vxlan/vxlan.c
301 vxlan/encap.c
302 vxlan/decap.c
303 vxlan/vxlan_api.c
304)
305
Filip Tehlare1714d32019-03-05 03:01:43 -0800306list(APPEND VNET_MULTIARCH_SOURCES
307 vxlan/encap.c
308)
309
Damjan Marion4553c952018-08-26 11:04:40 +0200310list(APPEND VNET_HEADERS
311 vxlan/vxlan.h
312 vxlan/vxlan_packet.h
313 vxlan/vxlan_error.def
314)
315
Eyal Baria5679e82018-08-26 15:20:07 +0300316list(APPEND VNET_MULTIARCH_SOURCES vxlan/decap.c)
317
Damjan Marion4553c952018-08-26 11:04:40 +0200318list(APPEND VNET_API_FILES vxlan/vxlan.api)
319
320##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200321# Layer 2 / Bonding
322##############################################################################
323list(APPEND VNET_SOURCES
324 bonding/cli.c
325 bonding/node.c
326 bonding/device.c
327 bonding/bond_api.c
328)
329
330list(APPEND VNET_HEADERS
331 bonding/node.h
332)
333
Damjan Marioncefe1342018-09-21 18:11:33 +0200334list(APPEND VNET_MULTIARCH_SOURCES bonding/node.c bonding/device.c)
Damjan Marion4553c952018-08-26 11:04:40 +0200335list(APPEND VNET_API_FILES bonding/bond.api)
336
337##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200338# Layer 2/3 "classify"
339##############################################################################
340list(APPEND VNET_SOURCES
341 classify/vnet_classify.c
Dave Barach9137e542019-09-13 17:47:50 -0400342 classify/trace_classify.h
Damjan Marion4553c952018-08-26 11:04:40 +0200343 classify/ip_classify.c
344 classify/in_out_acl.c
345 classify/policer_classify.c
346 classify/flow_classify.c
347 classify/flow_classify_node.c
348 classify/vnet_classify.h
349 classify/classify_api.c
350)
351
Filip Tehlare8cb5212019-03-06 04:50:34 -0800352list(APPEND VNET_MULTIARCH_SOURCES
353 classify/ip_classify.c
354 classify/flow_classify_node.c
355)
356
Damjan Marion4553c952018-08-26 11:04:40 +0200357list(APPEND VNET_HEADERS
358 classify/vnet_classify.h
Dave Barach9137e542019-09-13 17:47:50 -0400359 classify/trace_classify.h
Damjan Marion4553c952018-08-26 11:04:40 +0200360 classify/in_out_acl.h
361 classify/policer_classify.h
362 classify/flow_classify.h
363)
364
365list(APPEND VNET_API_FILES classify/classify.api)
366
367##############################################################################
368# Layer 3 protocols go here
369##############################################################################
370
371##############################################################################
372# Layer 3 protocol: IP v4/v6
373##############################################################################
374list(APPEND VNET_SOURCES
375 ip/format.c
376 ip/icmp4.c
377 ip/icmp6.c
378 ip/ip46_cli.c
379 ip/ip_types_api.c
Neale Rannscbe25aa2019-09-30 10:53:31 +0000380 ip/ip46_address.c
Damjan Marion4553c952018-08-26 11:04:40 +0200381 ip/ip4_format.c
382 ip/ip4_forward.c
383 ip/ip4_punt_drop.c
384 ip/ip4_input.c
385 ip/ip4_options.c
386 ip/ip4_mtrie.c
387 ip/ip4_pg.c
388 ip/ip4_source_and_port_range_check.c
Klement Sekera896c8962019-06-24 11:52:49 +0000389 ip/reass/ip4_full_reass.c
Klement Sekerade34c352019-06-25 11:19:22 +0000390 ip/reass/ip4_sv_reass.c
Damjan Marion4553c952018-08-26 11:04:40 +0200391 ip/ip6_format.c
392 ip/ip6_forward.c
393 ip/ip6_ll_table.c
394 ip/ip6_ll_types.c
395 ip/ip6_punt_drop.c
396 ip/ip6_hop_by_hop.c
397 ip/ip6_input.c
Neale Rannscbe25aa2019-09-30 10:53:31 +0000398 ip/ip6_link.c
Damjan Marion4553c952018-08-26 11:04:40 +0200399 ip/ip6_pg.c
Klement Sekera896c8962019-06-24 11:52:49 +0000400 ip/reass/ip6_full_reass.c
Klement Sekerade34c352019-06-25 11:19:22 +0000401 ip/reass/ip6_sv_reass.c
Damjan Marion4553c952018-08-26 11:04:40 +0200402 ip/ip_api.c
403 ip/ip_checksum.c
Neale Rannse4031132020-10-26 13:00:06 +0000404 ip/ip_container_proxy.c
Damjan Marion4553c952018-08-26 11:04:40 +0200405 ip/ip_frag.c
406 ip/ip.c
Neale Ranns59f71132020-04-08 12:19:38 +0000407 ip/ip_interface.c
Damjan Marion4553c952018-08-26 11:04:40 +0200408 ip/ip_init.c
409 ip/ip_in_out_acl.c
Neale Ranns8f5fef22020-12-21 08:29:34 +0000410 ip/ip_path_mtu.c
411 ip/ip_path_mtu_node.c
Neale Ranns92207752019-06-03 13:21:40 +0000412 ip/ip_punt_drop.c
Neale Rannsea93e482019-11-12 17:16:47 +0000413 ip/ip_types.c
Damjan Marion4553c952018-08-26 11:04:40 +0200414 ip/lookup.c
Damjan Marion4553c952018-08-26 11:04:40 +0200415 ip/punt_api.c
416 ip/punt.c
Neale Ranns50f0ac02019-05-15 02:13:37 -0700417 ip/punt_node.c
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000418 ip/vtep.c
Ole Troan8034a362021-08-11 13:54:14 +0200419 ip/ip_sas.c
Damjan Marion4553c952018-08-26 11:04:40 +0200420)
421
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700422list(APPEND VNET_MULTIARCH_SOURCES
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700423 ip/ip4_punt_drop.c
Klement Sekera896c8962019-06-24 11:52:49 +0000424 ip/reass/ip4_full_reass.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700425 ip/ip6_hop_by_hop.c
Klement Sekera896c8962019-06-24 11:52:49 +0000426 ip/reass/ip6_full_reass.c
Klement Sekerade34c352019-06-25 11:19:22 +0000427 ip/reass/ip4_sv_reass.c
428 ip/ip6_hop_by_hop.c
429 ip/reass/ip6_full_reass.c
430 ip/reass/ip6_sv_reass.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700431 ip/ip6_input.c
432 ip/ip6_punt_drop.c
Neale Ranns50f0ac02019-05-15 02:13:37 -0700433 ip/punt_node.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700434 ip/ip_in_out_acl.c
Neale Ranns8f5fef22020-12-21 08:29:34 +0000435 ip/ip_path_mtu_node.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700436)
437
Damjan Marion4553c952018-08-26 11:04:40 +0200438list(APPEND VNET_HEADERS
439 ip/format.h
440 ip/icmp46_packet.h
441 ip/icmp4.h
442 ip/icmp6.h
443 ip/igmp_packet.h
444 ip/ip4_error.h
445 ip/ip4.h
446 ip/ip4_mtrie.h
Neale Rannse4031132020-10-26 13:00:06 +0000447 ip/ip4_inlines.h
Damjan Marion4553c952018-08-26 11:04:40 +0200448 ip/ip4_packet.h
Neale Rannscbe25aa2019-09-30 10:53:31 +0000449 ip/ip46_address.h
Damjan Marion4553c952018-08-26 11:04:40 +0200450 ip/ip6_error.h
451 ip/ip6.h
452 ip/ip6_hop_by_hop.h
453 ip/ip6_hop_by_hop_packet.h
Neale Rannse4031132020-10-26 13:00:06 +0000454 ip/ip6_inlines.h
Damjan Marion4553c952018-08-26 11:04:40 +0200455 ip/ip6_packet.h
Damjan Marion4553c952018-08-26 11:04:40 +0200456 ip/ip.h
Neale Rannse4031132020-10-26 13:00:06 +0000457 ip/ip_container_proxy.h
458 ip/ip_flow_hash.h
Steven Luongc3ed1c92020-07-27 10:06:58 -0700459 ip/ip_table.h
Neale Ranns59f71132020-04-08 12:19:38 +0000460 ip/ip_interface.h
Damjan Marion4553c952018-08-26 11:04:40 +0200461 ip/ip_packet.h
Mohsin Kazmif5462362021-02-23 15:55:04 +0100462 ip/ip_psh_cksum.h
Damjan Marion4553c952018-08-26 11:04:40 +0200463 ip/ip_source_and_port_range_check.h
Neale Rannsea93e482019-11-12 17:16:47 +0000464 ip/ip_types.h
Damjan Marion4553c952018-08-26 11:04:40 +0200465 ip/lookup.h
466 ip/ports.def
467 ip/protocols.def
468 ip/punt_error.def
469 ip/punt.h
470)
471
472list(APPEND VNET_API_FILES
473 ip/ip.api
Damjan Marion4553c952018-08-26 11:04:40 +0200474 ip/punt.api
475)
476
Damjan Marion38173502019-02-13 19:30:09 +0100477list(APPEND VNET_MULTIARCH_SOURCES
478 ip/ip4_forward.c
479 ip/ip6_forward.c
480 ip/ip4_input.c
481)
Damjan Marion4553c952018-08-26 11:04:40 +0200482
483##############################################################################
Neale Rannscbe25aa2019-09-30 10:53:31 +0000484# Layer 3 neighbours
Damjan Marion4553c952018-08-26 11:04:40 +0200485##############################################################################
486list(APPEND VNET_SOURCES
Neale Rannscbe25aa2019-09-30 10:53:31 +0000487 ip-neighbor/ip_neighbor.c
488 ip-neighbor/ip_neighbor_api.c
489 ip-neighbor/ip_neighbor_dp.c
490 ip-neighbor/ip_neighbor_types.c
491 ip-neighbor/ip_neighbor_watch.c
492 ip-neighbor/ip4_neighbor.c
493 ip-neighbor/ip6_neighbor.c
Damjan Marion4553c952018-08-26 11:04:40 +0200494)
495
496list(APPEND VNET_HEADERS
Neale Rannscbe25aa2019-09-30 10:53:31 +0000497 ip-neighbor/ip_neighbor.h
498 ip-neighbor/ip_neighbor_types.h
499)
500
501list(APPEND VNET_API_FILES
502 ip-neighbor/ip_neighbor.api
Damjan Marion4553c952018-08-26 11:04:40 +0200503)
504
505##############################################################################
506# Bidirectional Forwarding Detection
507##############################################################################
508
509list(APPEND VNET_HEADERS
510 bfd/bfd_protocol.h
511 bfd/bfd_main.h
512 bfd/bfd_api.h
513 bfd/bfd_udp.h
514)
515
516list(APPEND VNET_SOURCES
517 bfd/bfd_api.h
518 bfd/bfd_udp.c
519 bfd/bfd_main.c
520 bfd/bfd_protocol.c
521 bfd/bfd_cli.c
522 bfd/bfd_api.c
523)
524
525list(APPEND VNET_API_FILES bfd/bfd.api)
526
527##############################################################################
Damjan Marion91f17dc2019-03-18 18:59:25 +0100528# Crypto
529##############################################################################
530
531list(APPEND VNET_SOURCES
532 crypto/cli.c
533 crypto/crypto.c
534 crypto/format.c
Fan Zhangf5395782020-04-29 14:00:03 +0100535 crypto/node.c
Nathan Skrzypczak0c936b12020-08-31 15:33:57 +0200536 crypto/crypto_api.c
Damjan Marion91f17dc2019-03-18 18:59:25 +0100537)
538
539list(APPEND VNET_HEADERS
540 crypto/crypto.h
541)
542
Fan Zhangf5395782020-04-29 14:00:03 +0100543list(APPEND VNET_MULTIARCH_SOURCES crypto/node.c)
544
Nathan Skrzypczak0c936b12020-08-31 15:33:57 +0200545list(APPEND VNET_API_FILES crypto/crypto.api)
546
Damjan Marion91f17dc2019-03-18 18:59:25 +0100547##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200548# Layer 3 protocol: IPSec
549##############################################################################
550list(APPEND VNET_SOURCES
551 ipsec/ipsec.c
552 ipsec/ipsec_cli.c
553 ipsec/ipsec_format.c
Neale Rannsf62a8c02019-04-02 08:13:33 +0000554 ipsec/ipsec_handoff.c
Damjan Marion4553c952018-08-26 11:04:40 +0200555 ipsec/ipsec_input.c
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000556 ipsec/ipsec_itf.c
Neale Rannsb71fa752019-04-04 12:43:36 +0000557 ipsec/ipsec_punt.c
Neale Ranns999c8ee2019-02-01 03:31:24 -0800558 ipsec/ipsec_sa.c
559 ipsec/ipsec_spd.c
560 ipsec/ipsec_spd_policy.c
Neale Rannsc87b66c2019-02-07 07:26:12 -0800561 ipsec/ipsec_tun.c
562 ipsec/ipsec_tun_in.c
Damjan Marion4553c952018-08-26 11:04:40 +0200563 ipsec/esp_format.c
564 ipsec/esp_encrypt.c
565 ipsec/esp_decrypt.c
566 ipsec/ah_decrypt.c
567 ipsec/ah_encrypt.c
Damjan Marion4553c952018-08-26 11:04:40 +0200568 ipsec/ipsec_api.c
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +0530569 ipsec/ipsec_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200570)
571
Klement Sekerab8f35442018-10-29 13:38:19 +0100572list(APPEND VNET_MULTIARCH_SOURCES
573 ipsec/esp_encrypt.c
574 ipsec/esp_decrypt.c
575 ipsec/ah_decrypt.c
576 ipsec/ah_encrypt.c
Neale Rannsf62a8c02019-04-02 08:13:33 +0000577 ipsec/ipsec_handoff.c
Kingwel Xiec69ac312019-02-04 01:49:29 -0800578 ipsec/ipsec_output.c
579 ipsec/ipsec_input.c
Neale Rannsc87b66c2019-02-07 07:26:12 -0800580 ipsec/ipsec_tun_in.c
Klement Sekerab8f35442018-10-29 13:38:19 +0100581)
582
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +0530583list(APPEND VNET_API_FILES ipsec/ipsec_types.api)
Damjan Marion4553c952018-08-26 11:04:40 +0200584list(APPEND VNET_API_FILES ipsec/ipsec.api)
585
586list(APPEND VNET_SOURCES
587 ipsec/ipsec_output.c
588)
589
590list(APPEND VNET_HEADERS
591 ipsec/ipsec.h
Neale Ranns918c1612019-02-21 23:34:59 -0800592 ipsec/ipsec_spd.h
593 ipsec/ipsec_spd_policy.h
594 ipsec/ipsec_sa.h
Neale Ranns12989b52019-09-26 16:20:19 +0000595 ipsec/ipsec_tun.h
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +0530596 ipsec/ipsec_types_api.h
Neale Rannsba05e5d2019-06-07 05:17:07 -0700597 ipsec/ipsec_punt.h
Damjan Marion4553c952018-08-26 11:04:40 +0200598 ipsec/esp.h
599 ipsec/ah.h
Damjan Marion4553c952018-08-26 11:04:40 +0200600)
601
602##############################################################################
603# Layer 3 protocol: osi
604##############################################################################
605list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200606 osi/node.c
607 osi/osi.c
608 osi/pg.c
Damjan Marion4553c952018-08-26 11:04:40 +0200609)
610
611list(APPEND VNET_HEADERS
612 osi/osi.h
613)
614
615##############################################################################
616# Layer 4 protocol: tcp
617##############################################################################
618list(APPEND VNET_SOURCES
619 tcp/tcp_api.c
620 tcp/tcp_format.c
621 tcp/tcp_pg.c
622 tcp/tcp_syn_filter4.c
623 tcp/tcp_output.c
624 tcp/tcp_input.c
625 tcp/tcp_newreno.c
Florin Coras52814732019-06-12 15:38:19 -0700626 tcp/tcp_bt.c
Florin Coras999840c2020-03-18 20:31:34 +0000627 tcp/tcp_cli.c
628 tcp/tcp_cubic.c
Florin Corasa436a422019-08-20 07:09:31 -0700629 tcp/tcp_debug.c
Florin Coras999840c2020-03-18 20:31:34 +0000630 tcp/tcp_sack.c
Florin Coras49036a52020-10-08 09:28:32 -0700631 tcp/tcp_timer.c
Damjan Marion4553c952018-08-26 11:04:40 +0200632 tcp/tcp.c
633)
634
Filip Tehlare275bed2019-03-06 00:06:56 -0800635list(APPEND VNET_MULTIARCH_SOURCES
636 tcp/tcp_input.c
637 tcp/tcp_output.c
638 tcp/tcp_syn_filter4.c
639)
640
Damjan Marion4553c952018-08-26 11:04:40 +0200641list(APPEND VNET_HEADERS
642 tcp/tcp_packet.h
643 tcp/tcp_timer.h
Florin Coras999840c2020-03-18 20:31:34 +0000644 tcp/tcp_bt.h
645 tcp/tcp_cc.h
Damjan Marion4553c952018-08-26 11:04:40 +0200646 tcp/tcp_debug.h
Florin Coras999840c2020-03-18 20:31:34 +0000647 tcp/tcp_inlines.h
648 tcp/tcp_sack.h
649 tcp/tcp_types.h
Damjan Marion4553c952018-08-26 11:04:40 +0200650 tcp/tcp.h
651 tcp/tcp_error.def
652)
653
654list(APPEND VNET_API_FILES tcp/tcp.api)
655
656##############################################################################
657# Layer 4 protocol: udp
658##############################################################################
659list(APPEND VNET_SOURCES
660 udp/udp.c
Florin Corasc98ef752020-04-07 17:30:13 +0000661 udp/udp_cli.c
Damjan Marion4553c952018-08-26 11:04:40 +0200662 udp/udp_input.c
663 udp/udp_format.c
664 udp/udp_local.c
665 udp/udp_pg.c
666 udp/udp_encap_node.c
667 udp/udp_encap.c
Arthur de Kerhor8a6f5d32021-05-20 11:48:00 +0200668 udp/udp_decap.c
Damjan Marion4553c952018-08-26 11:04:40 +0200669 udp/udp_api.c
670)
671
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800672list(APPEND VNET_MULTIARCH_SOURCES
673 udp/udp_local.c
674 udp/udp_encap_node.c
675)
676
Damjan Marion4553c952018-08-26 11:04:40 +0200677list(APPEND VNET_HEADERS
678 udp/udp_error.def
679 udp/udp.h
680 udp/udp_packet.h
Florin Corasb040f982020-10-20 14:59:43 -0700681 udp/udp_inlines.h
682 udp/udp_local.h
Damjan Marion4553c952018-08-26 11:04:40 +0200683)
684
685list(APPEND VNET_API_FILES udp/udp.api)
686
687##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200688# Tunnel protocol: gre
689##############################################################################
690list(APPEND VNET_SOURCES
691 gre/gre.c
692 gre/node.c
693 gre/interface.c
694 gre/pg.c
695 gre/gre_api.c
696)
697
Filip Tehlar0fce11f2019-03-04 09:21:59 -0800698list(APPEND VNET_MULTIARCH_SOURCES
699 gre/node.c
700 gre/gre.c
701)
702
Damjan Marion4553c952018-08-26 11:04:40 +0200703list(APPEND VNET_HEADERS
704 gre/gre.h
705 gre/packet.h
706 gre/error.def
707)
708
709list(APPEND VNET_API_FILES gre/gre.api)
710
711##############################################################################
712# Tunnel protocol: ipip
713##############################################################################
714list(APPEND VNET_SOURCES
715 ipip/ipip.c
716 ipip/node.c
717 ipip/sixrd.c
718 ipip/ipip_api.c
719 ipip/ipip_cli.c
720)
721
Filip Tehlar7a542f42019-03-05 04:50:23 -0800722list(APPEND VNET_MULTIARCH_SOURCES
723 ipip/node.c
724)
725
Damjan Marion4553c952018-08-26 11:04:40 +0200726list(APPEND VNET_HEADERS
727 ipip/ipip.h
728)
729
Neale Ranns95346962019-11-25 13:04:44 +0000730list(APPEND VNET_API_FILES
Neale Ranns95346962019-11-25 13:04:44 +0000731 ipip/ipip.api
732)
Damjan Marion4553c952018-08-26 11:04:40 +0200733
734##############################################################################
Neale Ranns59ff9182019-12-29 23:55:18 +0000735# Tunnel infra
736##############################################################################
737list(APPEND VNET_SOURCES
738 tunnel/tunnel.c
739 tunnel/tunnel_types_api.c
740)
741
742list(APPEND VNET_API_FILES
743 tunnel/tunnel_types.api
744)
745
746list(APPEND VNET_HEADERS
747 tunnel/tunnel.h
Neale Rannse5b94dd2019-12-31 05:13:14 +0000748 tunnel/tunnel_dp.h
Neale Ranns59ff9182019-12-29 23:55:18 +0000749)
750
751##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200752# Tunnel protocol: gre+mpls
753##############################################################################
754list(APPEND VNET_SOURCES
755 mpls/mpls.c
756 mpls/mpls_lookup.c
757 mpls/mpls_output.c
758 mpls/mpls_features.c
759 mpls/mpls_input.c
760 mpls/interface.c
761 mpls/mpls_tunnel.c
762 mpls/pg.c
763 mpls/mpls_api.c
764)
765
Filip Tehlar17fcd982019-03-05 04:32:11 -0800766list(APPEND VNET_MULTIARCH_SOURCES
767 mpls/mpls_output.c
768 mpls/mpls_input.c
769 mpls/mpls_lookup.c
770 mpls/mpls_features.c
771)
772
Damjan Marion4553c952018-08-26 11:04:40 +0200773list(APPEND VNET_HEADERS
774 mpls/mpls.h
775 mpls/mpls_types.h
776 mpls/mpls_tunnel.h
777 mpls/packet.h
778 mpls/error.def
779)
780
781list(APPEND VNET_API_FILES mpls/mpls.api)
782
783##############################################################################
784# Tunnel protocol: vxlan-gpe
785##############################################################################
786
787list(APPEND VNET_SOURCES
788 vxlan-gpe/vxlan_gpe.c
789 vxlan-gpe/encap.c
790 vxlan-gpe/decap.c
791 vxlan-gpe/vxlan_gpe_api.c
792)
793
Filip Tehlare1714d32019-03-05 03:01:43 -0800794list (APPEND VNET_MULTIARCH_SOURCES
795 vxlan-gpe/decap.c
796)
797
Damjan Marion4553c952018-08-26 11:04:40 +0200798list(APPEND VNET_HEADERS
799 vxlan-gpe/vxlan_gpe.h
800 vxlan-gpe/vxlan_gpe_packet.h
801 vxlan-gpe/vxlan_gpe_error.def
802)
803
804list(APPEND VNET_API_FILES vxlan-gpe/vxlan_gpe.api)
805
806##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200807# ipv6 segment routing
808##############################################################################
809
810list(APPEND VNET_SOURCES
811 srv6/sr.c
812 srv6/sr_localsid.c
813 srv6/sr_policy_rewrite.c
814 srv6/sr_steering.c
815 srv6/sr_api.c
816)
817
818list(APPEND VNET_HEADERS
819 srv6/sr_packet.h
820 srv6/sr.h
821)
822
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100823list(APPEND VNET_API_FILES
824 srv6/sr.api
825 srv6/sr_types.api
826)
Damjan Marion4553c952018-08-26 11:04:40 +0200827
828##############################################################################
829# mpls segment routing
830##############################################################################
831
832list(APPEND VNET_SOURCES
833 srmpls/sr_mpls_policy.c
834 srmpls/sr_mpls_steering.c
835 srmpls/sr_mpls_api.c
836)
837
838list(APPEND VNET_HEADERS
839 srmpls/sr_mpls.h
840)
841
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100842list(APPEND VNET_API_FILES
843 srmpls/sr_mpls.api
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100844)
Damjan Marion4553c952018-08-26 11:04:40 +0200845
846##############################################################################
847# IPFIX / netflow v10
848##############################################################################
849list(APPEND VNET_SOURCES
850 ipfix-export/flow_report.c
851 ipfix-export/flow_api.c
852)
853
854list(APPEND VNET_HEADERS
855 ipfix-export/flow_report.h
856 ipfix-export/ipfix_info_elements.h
857 ipfix-export/ipfix_packet.h
858)
859
860list(APPEND VNET_API_FILES ipfix-export/ipfix_export.api)
861
862##############################################################################
Mohsin Kazmi41b23bc2021-06-30 18:26:25 +0000863# HASH
864##############################################################################
865list(APPEND VNET_SOURCES
866 hash/hash.c
867 hash/cli.c
868 hash/crc32_5tuple.c
Florin Coras1e6d30b2021-11-02 10:32:19 -0700869 hash/handoff_eth.c
Mohsin Kazmi41b23bc2021-06-30 18:26:25 +0000870)
871
872list(APPEND VNET_HEADERS
873 hash/hash.h
874)
875
876##############################################################################
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200877# GSO
878##############################################################################
879list(APPEND VNET_SOURCES
880 gso/cli.c
881 gso/gso.c
882 gso/gso_api.c
883 gso/node.c
884)
885
886list(APPEND VNET_HEADERS
Mohsin Kazmif382b062020-08-11 15:00:44 +0200887 gso/gro.h
888 gso/gro_func.h
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000889 gso/hdr_offset_parser.h
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200890 gso/gso.h
891)
892
893list(APPEND VNET_API_FILES
894 gso/gso.api
895)
896
897##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200898# IPFIX classify code
899##############################################################################
900
901list(APPEND VNET_SOURCES
902 ipfix-export/flow_report_classify.c
903)
904
905list(APPEND VNET_HEADERS
906 ipfix-export/flow_report_classify.h
907)
908
909##############################################################################
910# lawful intercept
911##############################################################################
912
913list(APPEND VNET_SOURCES
914 lawful-intercept/lawful_intercept.c
915 lawful-intercept/node.c
916)
917
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -0700918list(APPEND VNET_MULTIARCH_SOURCES
919 lawful-intercept/node.c
920)
921
Damjan Marion4553c952018-08-26 11:04:40 +0200922list(APPEND VNET_HEADERS
923 lawful-intercept/lawful_intercept.h
924)
925
926##############################################################################
927# SPAN (port mirroring)
928##############################################################################
929
930list(APPEND VNET_SOURCES
931 span/span_api.c
932 span/span.c
933 span/node.c
934)
935
Filip Tehlara79271f2019-03-05 03:46:40 -0800936list(APPEND VNET_MULTIARCH_SOURCES
937 span/node.c
938)
939
Damjan Marion4553c952018-08-26 11:04:40 +0200940list(APPEND VNET_HEADERS
941 span/span.h
942)
943
944list(APPEND VNET_API_FILES span/span.api)
945
946##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200947# Packet generator
948##############################################################################
949
950list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200951 pg/cli.c
952 pg/edit.c
953 pg/init.c
954 pg/input.c
955 pg/output.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200956 pg/stream.c
Damjan Marion4553c952018-08-26 11:04:40 +0200957 pg/pg_api.c
958)
959
960list(APPEND VNET_HEADERS
961 pg/pg.h
962 pg/edit.h
963)
964
965list(APPEND VNET_API_FILES pg/pg.api)
966
967##############################################################################
968# virtio
969##############################################################################
970
971list(APPEND VNET_SOURCES
Damjan Marionf41244f2019-11-08 17:41:06 +0100972 devices/virtio/cli.c
Damjan Marion4553c952018-08-26 11:04:40 +0200973 devices/virtio/device.c
Damjan Marionf41244f2019-11-08 17:41:06 +0100974 devices/virtio/format.c
Damjan Marion4553c952018-08-26 11:04:40 +0200975 devices/virtio/node.c
Damjan Marionf41244f2019-11-08 17:41:06 +0100976 devices/virtio/pci.c
Damjan Marion4553c952018-08-26 11:04:40 +0200977 devices/virtio/vhost_user.c
978 devices/virtio/vhost_user_input.c
979 devices/virtio/vhost_user_output.c
980 devices/virtio/vhost_user_api.c
981 devices/virtio/virtio.c
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200982 devices/virtio/virtio_api.c
Mohsin Kazmia0a68332020-07-16 12:55:42 +0000983 devices/virtio/virtio_pci_legacy.c
Mohsin Kazmi379aac32020-08-20 10:25:12 +0200984 devices/virtio/virtio_pci_modern.c
Mohsin Kazmib7e4e6d2021-12-13 18:32:42 +0000985 devices/virtio/virtio_pre_input.c
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200986 devices/virtio/virtio_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200987)
988
989list(APPEND VNET_HEADERS
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200990 devices/virtio/pci.h
Damjan Marion4553c952018-08-26 11:04:40 +0200991 devices/virtio/virtio.h
Mohsin Kazmie347acb2020-09-28 10:26:33 +0000992 devices/virtio/virtio_buffering.h
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200993 devices/virtio/virtio_std.h
Mohsin Kazmia0a68332020-07-16 12:55:42 +0000994 devices/virtio/virtio_pci_legacy.h
Mohsin Kazmi379aac32020-08-20 10:25:12 +0200995 devices/virtio/virtio_pci_modern.h
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200996 devices/virtio/vhost_std.h
Damjan Marion4553c952018-08-26 11:04:40 +0200997 devices/virtio/vhost_user.h
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200998 devices/virtio/virtio_types_api.h
Damjan Marion4553c952018-08-26 11:04:40 +0200999)
1000
1001list(APPEND VNET_MULTIARCH_SOURCES
1002 devices/virtio/vhost_user_input.c
1003 devices/virtio/vhost_user_output.c
Filip Tehlar608996d2019-03-04 03:03:13 -08001004 devices/virtio/node.c
1005 devices/af_packet/node.c
Filip Tehlaraee73642019-03-13 05:50:44 -07001006 devices/virtio/device.c
Damjan Marion4553c952018-08-26 11:04:40 +02001007)
1008
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001009list(APPEND VNET_API_FILES
1010 devices/virtio/vhost_user.api
1011 devices/virtio/virtio.api
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +02001012 devices/virtio/virtio_types.api
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001013)
Damjan Marion4553c952018-08-26 11:04:40 +02001014
1015##############################################################################
1016# tap interface (with virtio backend)
1017##############################################################################
1018
1019list(APPEND VNET_SOURCES
1020 devices/tap/cli.c
1021 devices/tap/tap.c
1022 devices/tap/tapv2_api.c
1023)
1024
1025list(APPEND VNET_HEADERS
1026 devices/tap/tap.h
1027)
1028
Mohsin Kazmia7a22812020-08-31 17:17:16 +02001029list(APPEND VNET_API_FILES
1030 devices/tap/tapv2.api
1031)
Damjan Marion4553c952018-08-26 11:04:40 +02001032
1033##############################################################################
1034# tap interface (with virtio backend)
1035##############################################################################
1036
1037list(APPEND VNET_SOURCES
1038 devices/pipe/pipe_api.c
1039 devices/pipe/pipe.c
1040)
1041
1042list(APPEND VNET_HEADERS
1043 devices/pipe/pipe.h
1044)
1045
1046list(APPEND VNET_API_FILES devices/pipe/pipe.api)
1047
1048##############################################################################
1049# session managmeent
1050##############################################################################
1051
1052list(APPEND VNET_SOURCES
1053 session/session.c
Florin Coras11166672020-04-13 01:20:25 +00001054 session/session_debug.c
Damjan Marion4553c952018-08-26 11:04:40 +02001055 session/session_table.c
1056 session/session_rules_table.c
1057 session/session_lookup.c
1058 session/session_node.c
1059 session/transport.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001060 session/application.c
Florin Coras623eb562019-02-03 19:28:34 -08001061 session/application_worker.c
Damjan Marion4553c952018-08-26 11:04:40 +02001062 session/session_cli.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001063 session/application_interface.c
Florin Corasba7d8f52019-02-22 13:11:38 -08001064 session/application_local.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001065 session/application_namespace.c
Damjan Marion4553c952018-08-26 11:04:40 +02001066 session/segment_manager.c
Damjan Marion4553c952018-08-26 11:04:40 +02001067 session/session_api.c
1068)
1069
1070list(APPEND VNET_HEADERS
1071 session/session.h
1072 session/session_table.h
1073 session/session_rules_table.h
Florin Coras288eaab2019-02-03 15:26:14 -08001074 session/session_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001075 session/session_lookup.h
1076 session/application.h
1077 session/transport.h
Florin Coras1ee78302019-02-05 15:51:15 -08001078 session/transport_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001079 session/application_interface.h
Florin Corasba7d8f52019-02-22 13:11:38 -08001080 session/application_local.h
Damjan Marion4553c952018-08-26 11:04:40 +02001081 session/application_namespace.h
1082 session/session_debug.h
1083 session/segment_manager.h
1084 session/mma_template.h
1085 session/mma_template.c
1086 session/mma_16.h
1087 session/mma_40.h
1088)
1089
1090list(APPEND VNET_API_FILES session/session.api)
1091
1092##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +02001093# TLS protocol
1094##############################################################################
1095
1096list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +02001097 tls/tls.c
Damjan Marion4553c952018-08-26 11:04:40 +02001098)
1099
1100list(APPEND VNET_HEADERS
1101 tls/tls.h
Florin Coras54a51fd2019-02-07 15:34:52 -08001102 tls/tls_test.h
Damjan Marion4553c952018-08-26 11:04:40 +02001103)
1104
1105##############################################################################
1106# Linux packet interface
1107##############################################################################
1108
1109list(APPEND VNET_SOURCES
1110 devices/af_packet/af_packet.c
1111 devices/af_packet/device.c
1112 devices/af_packet/node.c
1113 devices/af_packet/cli.c
1114 devices/af_packet/af_packet_api.c
1115)
1116
Filip Tehlaraee73642019-03-13 05:50:44 -07001117list(APPEND VNET_MULTIARCH_SOURCES
Filip Tehlaraee73642019-03-13 05:50:44 -07001118 devices/af_packet/device.c
1119)
1120
Damjan Marion4553c952018-08-26 11:04:40 +02001121list(APPEND VNET_HEADERS
1122 devices/af_packet/af_packet.h
1123)
1124
1125list(APPEND VNET_API_FILES devices/af_packet/af_packet.api)
1126
1127##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +02001128# Driver feature graph arc support
1129##############################################################################
1130
1131list(APPEND VNET_SOURCES
1132 feature/feature.c
1133 feature/feature_api.c
1134 feature/registration.c
1135)
1136
1137list(APPEND VNET_HEADERS
1138 feature/feature.h
1139)
1140
1141list(APPEND VNET_API_FILES feature/feature.api)
1142
1143##############################################################################
1144# Unix kernel related
1145##############################################################################
1146
1147# FIXME: unix/hgshm.c
1148
1149list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +02001150 unix/gdb_funcs.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001151 unix/tuntap.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001152)
1153
Damjan Marion4553c952018-08-26 11:04:40 +02001154list(APPEND VNET_HEADERS
Damjan Marion4553c952018-08-26 11:04:40 +02001155 unix/tuntap.h
Damjan Marion612dd6a2018-07-30 12:45:07 +02001156)
1157
Damjan Marion4553c952018-08-26 11:04:40 +02001158##############################################################################
1159# FIB
1160##############################################################################
1161
1162list(APPEND VNET_SOURCES
1163 fib/fib.c
Neale Rannsd6953332021-08-10 07:39:18 +00001164 fib/ip4_fib_hash.c
Damjan Marion4553c952018-08-26 11:04:40 +02001165 fib/ip4_fib.c
Neale Rannsd6953332021-08-10 07:39:18 +00001166 fib/ip4_fib_16.c
1167 fib/ip4_fib_8.c
Damjan Marion4553c952018-08-26 11:04:40 +02001168 fib/ip6_fib.c
1169 fib/mpls_fib.c
1170 fib/fib_table.c
1171 fib/fib_walk.c
1172 fib/fib_types.c
1173 fib/fib_node.c
1174 fib/fib_node_list.c
1175 fib/fib_entry.c
1176 fib/fib_entry_src.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001177 fib/fib_entry_src_adj.c
1178 fib/fib_entry_src_api.c
1179 fib/fib_entry_src_drop.c
Damjan Marion4553c952018-08-26 11:04:40 +02001180 fib/fib_entry_src_interface.c
1181 fib/fib_entry_src_interpose.c
Damjan Marion4553c952018-08-26 11:04:40 +02001182 fib/fib_entry_src_lisp.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001183 fib/fib_entry_src_mpls.c
1184 fib/fib_entry_src_simple.c
1185 fib/fib_entry_src_rr.c
Damjan Marion4553c952018-08-26 11:04:40 +02001186 fib/fib_entry_cover.c
1187 fib/fib_entry_delegate.c
Neale Ranns1f50bf82019-07-16 15:28:52 +00001188 fib/fib_entry_track.c
Damjan Marion4553c952018-08-26 11:04:40 +02001189 fib/fib_path_list.c
1190 fib/fib_path.c
1191 fib/fib_path_ext.c
Neale Rannse2fe0972020-11-26 08:37:27 +00001192 fib/fib_sas.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001193 fib/fib_source.c
Damjan Marion4553c952018-08-26 11:04:40 +02001194 fib/fib_urpf_list.c
1195 fib/fib_attached_export.c
1196 fib/fib_api.c
1197 fib/fib_bfd.c
1198)
1199
1200list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001201 fib/fib.h
Damjan Marion4553c952018-08-26 11:04:40 +02001202 fib/fib_api.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001203 fib/ip4_fib.h
Benoît Ganned9fc7082021-10-18 11:16:01 +02001204 fib/ip4_fib_8.h
1205 fib/ip4_fib_16.h
1206 fib/ip4_fib_hash.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001207 fib/ip6_fib.h
1208 fib/fib_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001209 fib/fib_table.h
1210 fib/fib_node.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001211 fib/fib_node_list.h
Damjan Marion4553c952018-08-26 11:04:40 +02001212 fib/fib_entry.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001213 fib/fib_entry_delegate.h
Neale Rannse2fe0972020-11-26 08:37:27 +00001214 fib/fib_sas.h
Neale Ranns3bab8f92019-12-04 06:11:00 +00001215 fib/fib_source.h
Damjan Marion4553c952018-08-26 11:04:40 +02001216)
1217
Neale Ranns976b2592019-12-04 06:11:00 +00001218list(APPEND VNET_API_FILES
1219 fib/fib_types.api
1220 fib/fib.api
1221)
Benoît Ganned39495d2019-07-25 14:14:03 +02001222
Damjan Marion4553c952018-08-26 11:04:40 +02001223##############################################################################
1224# ADJ
1225##############################################################################
1226
1227list(APPEND VNET_SOURCES
1228 adj/adj_nbr.c
1229 adj/adj_glean.c
1230 adj/adj_midchain.c
Neale Rannsf339f492021-03-31 07:36:33 +00001231 adj/adj_midchain_node.c
Neale Ranns4c3ba812019-03-26 07:02:58 +00001232 adj/adj_midchain_delegate.c
Damjan Marion4553c952018-08-26 11:04:40 +02001233 adj/adj_mcast.c
1234 adj/adj_l2.c
1235 adj/adj_nsh.c
1236 adj/adj.c
1237 adj/rewrite.c
1238 adj/adj_bfd.c
1239 adj/adj_delegate.c
1240)
1241
Filip Tehlar0b2c15d2019-03-04 02:52:54 -08001242list(APPEND VNET_MULTIARCH_SOURCES
1243 adj/adj_nsh.c
1244 adj/adj_l2.c
Neale Rannsf339f492021-03-31 07:36:33 +00001245 adj/adj_midchain_node.c
Filip Tehlar0b2c15d2019-03-04 02:52:54 -08001246)
1247
Damjan Marion4553c952018-08-26 11:04:40 +02001248list(APPEND VNET_HEADERS
1249 adj/adj.h
1250 adj/adj_types.h
1251 adj/adj_glean.h
1252 adj/adj_nsh.h
1253 adj/adj_nbr.h
Alberto Compagnod8ca1e42019-08-12 11:43:19 +02001254 adj/adj_midchain.h
Damjan Marion4553c952018-08-26 11:04:40 +02001255 adj/rewrite.h
1256)
1257
1258##############################################################################
1259# Data-Plane Objects
1260##############################################################################
1261
1262list(APPEND VNET_SOURCES
1263 dpo/dpo.c
1264 dpo/drop_dpo.c
1265 dpo/ip_null_dpo.c
1266 dpo/ip6_ll_dpo.c
1267 dpo/punt_dpo.c
1268 dpo/receive_dpo.c
1269 dpo/load_balance.c
1270 dpo/load_balance_map.c
1271 dpo/lookup_dpo.c
1272 dpo/classify_dpo.c
1273 dpo/replicate_dpo.c
1274 dpo/interface_rx_dpo.c
1275 dpo/interface_tx_dpo.c
1276 dpo/mpls_disposition.c
1277 dpo/mpls_label_dpo.c
1278 dpo/l3_proxy_dpo.c
1279 dpo/dvr_dpo.c
Neale Ranns1dbcf302019-07-19 11:44:53 +00001280 dpo/pw_cw.c
Damjan Marion4553c952018-08-26 11:04:40 +02001281)
1282
Filip Tehlareb9a27f2019-03-07 01:42:11 -08001283list(APPEND VNET_MULTIARCH_SOURCES
1284 dpo/lookup_dpo.h
1285 dpo/mpls_disposition.c
1286 dpo/dvr_dpo.c
1287 dpo/mpls_label_dpo.c
1288 dpo/interface_rx_dpo.c
1289)
1290
Damjan Marion4553c952018-08-26 11:04:40 +02001291list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001292 dpo/load_balance.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001293 dpo/drop_dpo.h
Damjan Marion4553c952018-08-26 11:04:40 +02001294 dpo/lookup_dpo.h
1295 dpo/punt_dpo.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001296 dpo/classify_dpo.h
1297 dpo/receive_dpo.h
1298 dpo/ip_null_dpo.h
1299 dpo/replicate_dpo.h
Damjan Marion4553c952018-08-26 11:04:40 +02001300 dpo/dpo.h
1301)
1302
1303##############################################################################
1304# Multicast FIB
1305##############################################################################
1306
1307list(APPEND VNET_SOURCES
Damjan Marion4553c952018-08-26 11:04:40 +02001308 mfib/mfib_forward.c
1309 mfib/ip4_mfib.c
1310 mfib/ip6_mfib.c
Neale Ranns097fa662018-05-01 05:17:55 -07001311 mfib/mfib_api.c
Damjan Marion4553c952018-08-26 11:04:40 +02001312 mfib/mfib_types.c
1313 mfib/mfib_signal.c
1314 mfib/mfib_itf.c
1315 mfib/mfib_entry.c
Neale Ranns9e829a82018-12-17 05:50:32 -08001316 mfib/mfib_entry.c
1317 mfib/mfib_entry_cover.c
1318 mfib/mfib_entry_delegate.c
1319 mfib/mfib_entry_src.c
1320 mfib/mfib_entry_src_rr.c
Damjan Marion4553c952018-08-26 11:04:40 +02001321 mfib/mfib_table.c
1322)
1323
Filip Tehlar79c27eb2019-03-07 00:30:03 -08001324list(APPEND VNET_MULTIARCH_SOURCES
1325 mfib/mfib_forward.c
1326)
1327
Damjan Marion4553c952018-08-26 11:04:40 +02001328list(APPEND VNET_HEADERS
1329 mfib/ip4_mfib.h
1330 mfib/mfib_types.h
1331 mfib/mfib_table.h
1332)
1333
Benoît Ganned39495d2019-07-25 14:14:03 +02001334list(APPEND VNET_API_FILES mfib/mfib_types.api)
1335
Damjan Marion4553c952018-08-26 11:04:40 +02001336##############################################################################
1337# Utilities
1338##############################################################################
1339
1340list(APPEND VNET_SOURCES
1341 util/radix.c
1342 util/refcount.c
Neale Rannsc8352bc2018-08-29 10:23:58 -07001343 util/throttle.c
Damjan Marion4553c952018-08-26 11:04:40 +02001344)
1345
Damjan Marionac5554c2018-08-30 22:56:59 +02001346list(APPEND VNET_HEADERS
1347 util/throttle.h
1348)
1349
Damjan Marion4553c952018-08-26 11:04:40 +02001350##############################################################################
1351# QoS
1352##############################################################################
1353
1354list(APPEND VNET_SOURCES
1355 qos/qos_types.c
1356 qos/qos_api.c
1357 qos/qos_egress_map.c
1358 qos/qos_record.c
Filip Tehlar0bddf7e2019-03-04 08:14:07 -08001359 qos/qos_record_node.c
Neale Ranns83832e72019-07-31 02:48:02 -07001360 qos/qos_store.c
1361 qos/qos_store_node.c
Damjan Marion4553c952018-08-26 11:04:40 +02001362 qos/qos_mark.c
Filip Tehlar0bddf7e2019-03-04 08:14:07 -08001363 qos/qos_mark_node.c
1364)
1365
1366list(APPEND VNET_MULTIARCH_SOURCES
1367 qos/qos_record_node.c
1368 qos/qos_mark_node.c
Damjan Marion4553c952018-08-26 11:04:40 +02001369)
1370
1371list(APPEND VNET_API_FILES qos/qos.api)
1372
1373##############################################################################
1374# BIER
1375##############################################################################
1376
1377list(APPEND VNET_SOURCES
1378 bier/bier_bit_string.c
1379 bier/bier_entry.c
1380 bier/bier_fmask.c
1381 bier/bier_fmask_db.c
1382 bier/bier_input.c
1383 bier/bier_lookup.c
1384 bier/bier_output.c
1385 bier/bier_table.c
1386 bier/bier_types.c
Damjan Marion4553c952018-08-26 11:04:40 +02001387 bier/bier_api.c
1388 bier/bier_drop.c
1389 bier/bier_update.c
1390 bier/bier_imp_node.c
1391 bier/bier_imp.c
1392 bier/bier_disp_entry.c
1393 bier/bier_disp_lookup_node.c
1394 bier/bier_disp_dispatch_node.c
1395 bier/bier_disp_table.c
1396 bier/bier_bift_table.c
1397)
1398
Filip Tehlara01e0322019-03-05 03:34:52 -08001399list(APPEND VNET_MULTIARCH_SOURCES
1400 bier/bier_disp_dispatch_node.c
1401 bier/bier_disp_lookup_node.c
1402 bier/bier_imp_node.c
1403)
1404
Damjan Marion4553c952018-08-26 11:04:40 +02001405list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001406 bier/bier_types.h
1407 bier/bier_entry.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001408 bier/bier_update.h
Damjan Marion4553c952018-08-26 11:04:40 +02001409 bier/bier_table.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001410)
1411
Damjan Marion4553c952018-08-26 11:04:40 +02001412list(APPEND VNET_API_FILES bier/bier.api)
Damjan Marion612dd6a2018-07-30 12:45:07 +02001413
Florin Coras41c9e042018-09-11 00:10:41 -07001414##############################################################################
Matus Fabianb4515b42018-11-19 04:25:32 -08001415# SYSLOG
1416##############################################################################
1417
1418list (APPEND VNET_SOURCES
1419 syslog/syslog_api.c
1420 syslog/syslog_udp.c
1421 syslog/syslog.c
1422)
1423
1424list(APPEND VNET_HEADERS
1425 syslog/syslog_udp.h
1426 syslog/syslog.h
1427)
1428
1429list(APPEND VNET_API_FILES syslog/syslog.api)
1430
1431##############################################################################
Neale Ranns03ce4622020-02-03 10:55:09 +00001432# Tunnel Endpoint Information Base
Neale Ranns5f8f6172019-04-18 10:23:56 +00001433##############################################################################
1434
1435list (APPEND VNET_SOURCES
Neale Ranns03ce4622020-02-03 10:55:09 +00001436 teib/teib_api.c
1437 teib/teib_cli.c
1438 teib/teib.c
Neale Ranns5f8f6172019-04-18 10:23:56 +00001439)
1440
1441list(APPEND VNET_HEADERS
Neale Ranns03ce4622020-02-03 10:55:09 +00001442 teib/teib.h
Neale Ranns5f8f6172019-04-18 10:23:56 +00001443)
1444
Neale Ranns03ce4622020-02-03 10:55:09 +00001445list(APPEND VNET_API_FILES teib/teib.api)
Neale Ranns5f8f6172019-04-18 10:23:56 +00001446
1447##############################################################################
Neale Rannscbe25aa2019-09-30 10:53:31 +00001448# ARP/ND
1449##############################################################################
1450
1451list (APPEND VNET_SOURCES
1452 arp/arp_api.c
1453 arp/arp.c
1454 arp/arp_proxy.c
1455)
1456
1457list(APPEND VNET_HEADERS
1458 arp/arp.h
1459)
1460
1461list(APPEND VNET_API_FILES arp/arp.api)
1462
1463list (APPEND VNET_SOURCES
1464 ip6-nd/ip6_mld.c
1465 ip6-nd/ip6_nd.c
1466 ip6-nd/ip6_nd_api.c
1467 ip6-nd/ip6_nd_proxy.c
Mohsin Kazmicebb4772021-04-07 19:50:35 +02001468 ip6-nd/ip6_nd_mirror_proxy.c
Neale Rannscbe25aa2019-09-30 10:53:31 +00001469 ip6-nd/ip6_ra.c
1470 ip6-nd/rd_cp.c
1471 ip6-nd/rd_cp_api.c
1472)
1473
1474list(APPEND VNET_HEADERS
1475 ip6-nd/ip6_nd.h
1476)
1477
1478list(APPEND VNET_API_FILES
1479 ip6-nd/ip6_nd.api
1480 ip6-nd/rd_cp.api
1481)
1482
1483##############################################################################
Florin Coras41c9e042018-09-11 00:10:41 -07001484# VNET Library
1485##############################################################################
1486
Damjan Marion4553c952018-08-26 11:04:40 +02001487add_vpp_library(vnet
1488 SOURCES ${VNET_SOURCES}
1489 MULTIARCH_SOURCES ${VNET_MULTIARCH_SOURCES}
1490 INSTALL_HEADERS ${VNET_HEADERS}
1491 API_FILES ${VNET_API_FILES}
Klement Sekeraefd4d702021-04-20 19:21:36 +02001492 LINK_LIBRARIES vppinfra svm vlib
Chris Lukec171d012020-01-15 20:30:04 -05001493 DEPENDS vpp_version_h api_headers
Damjan Marion612dd6a2018-07-30 12:45:07 +02001494)
Florin Coras41c9e042018-09-11 00:10:41 -07001495
1496##############################################################################
Yulong Peidb43bb62020-01-09 01:12:43 +08001497# vpp api test client library
1498##############################################################################
1499
1500add_vpp_library (vatclient
1501 SOURCES ip/ip_types_api.c
1502 DEPENDS api_headers
1503)
1504
Florin Coras248210c2021-09-14 18:54:45 -07001505add_vat_test_library(vnet
Filip Tehlarf0e67d72021-07-23 22:03:05 +00001506 interface_test.c
Florin Coras248210c2021-09-14 18:54:45 -07001507 ip/ip_test.c
1508 arp/arp_test.c
1509 ip6-nd/ip6_nd_test.c
Filip Tehlar850024b2021-09-02 10:32:40 +00001510 srmpls/sr_mpls_test.c
Filip Tehlarea257222021-10-18 09:02:37 +00001511 session/session_test.c
Filip Tehlar1b6fb402021-07-24 18:10:39 +00001512 l2/l2_test.c
Filip Tehlar0ad06082021-07-25 14:38:45 +00001513 ipsec/ipsec_test.c
Florin Coras248210c2021-09-14 18:54:45 -07001514)
1515
Yulong Peidb43bb62020-01-09 01:12:43 +08001516##############################################################################
Ole Troandf87f802020-11-18 19:17:48 +01001517# VAT2 plugins
1518##############################################################################
1519add_vpp_test_library(vnet
1520 ${VNET_API_FILES}
1521)
1522
1523##############################################################################