blob: 5dd7cdb24ab4c2a14fc1fe658613e07862907c50 [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 Marion94100532020-11-06 23:25:57 +010038 interface/rx_queue.c
Damjan Marion1bd6cbb2021-04-15 13:12:51 +020039 interface/tx_queue.c
Damjan Marion94100532020-11-06 23:25:57 +010040 interface/runtime.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020041 interface_stats.c
Damjan Marion4553c952018-08-26 11:04:40 +020042 misc.c
Damjan Marion4553c952018-08-26 11:04:40 +020043)
44
Filip Tehlar62668772019-03-04 03:33:32 -080045list(APPEND VNET_MULTIARCH_SOURCES
46 interface_output.c
47 interface_stats.c
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -070048 handoff.c
Filip Tehlar62668772019-03-04 03:33:32 -080049)
50
Damjan Marion4553c952018-08-26 11:04:40 +020051list(APPEND VNET_HEADERS
52 api_errno.h
53 buffer.h
54 config.h
55 devices/devices.h
56 devices/netlink.h
57 flow/flow.h
58 global_funcs.h
Damjan Marion94100532020-11-06 23:25:57 +010059 interface/rx_queue_funcs.h
Damjan Marion1bd6cbb2021-04-15 13:12:51 +020060 interface/tx_queue_funcs.h
Damjan Marion4553c952018-08-26 11:04:40 +020061 interface.h
62 interface_funcs.h
Dave Barach1bd2c012020-04-12 08:31:39 -040063 interface_output.h
Damjan Marion4553c952018-08-26 11:04:40 +020064 ip/ip4_to_ip6.h
65 ip/ip6_to_ip4.h
Benoît Ganne09267f72019-05-17 14:24:17 +020066 ip/ip_types_api.h
Damjan Marion4553c952018-08-26 11:04:40 +020067 l3_types.h
68 plugin/plugin.h
69 pipeline.h
Damjan Marion4553c952018-08-26 11:04:40 +020070 vnet.h
Damjan Marion4553c952018-08-26 11:04:40 +020071 util/radix.h
72 util/refcount.h
IJsbrand Wijnands724c8052020-03-05 11:29:23 -080073 format_fns.h
74 ip/ip_format_fns.h
Ole Troan8034a362021-08-11 13:54:14 +020075 ip/ip_sas.h
IJsbrand Wijnands724c8052020-03-05 11:29:23 -080076 ethernet/ethernet_format_fns.h
Mohammed Hawari6da37692021-08-16 14:37:21 +020077 ethernet/ethernet_types_api.h
Damjan Marion4553c952018-08-26 11:04:40 +020078)
79
Benoît Ganne09267f72019-05-17 14:24:17 +020080list(APPEND VNET_API_FILES
81 interface.api
Benoît Ganned39495d2019-07-25 14:14:03 +020082 interface_types.api
Benoît Ganne09267f72019-05-17 14:24:17 +020083 ip/ip_types.api
Chenmin Sund0236f72020-07-27 17:54:40 +080084 flow/flow_types.api
85 flow/flow.api
Benoît Ganne09267f72019-05-17 14:24:17 +020086)
Damjan Marion4553c952018-08-26 11:04:40 +020087
88##############################################################################
89# Policer infra
90##############################################################################
91list(APPEND VNET_SOURCES
92 policer/node_funcs.c
93 policer/policer.c
94 policer/xlate.c
95 policer/policer_api.c
96)
97
Filip Tehlar30d93482019-03-06 04:28:32 -080098list(APPEND VNET_MULTIARCH_SOURCES
99 policer/node_funcs.c
100)
101
Damjan Marion4553c952018-08-26 11:04:40 +0200102list(APPEND VNET_HEADERS
103 policer/police.h
104 policer/policer.h
105 policer/xlate.h
106)
107
Jakub Grajciarcd01fb42020-03-02 13:16:53 +0100108list(APPEND VNET_API_FILES
109 policer/policer.api
110 policer/policer_types.api
111)
Damjan Marion4553c952018-08-26 11:04:40 +0200112
113##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200114# Layer 2 protocols go here
115##############################################################################
116
117##############################################################################
118# Layer 2 protocol: Ethernet
119##############################################################################
120list(APPEND VNET_SOURCES
Neale Rannscbe25aa2019-09-30 10:53:31 +0000121 ethernet/arp_packet.c
Neale Rannsde5b08f2018-08-29 06:37:18 -0700122 ethernet/ethernet_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200123 ethernet/format.c
124 ethernet/init.c
125 ethernet/interface.c
Neale Rannsde5b08f2018-08-29 06:37:18 -0700126 ethernet/mac_address.c
Damjan Marion4553c952018-08-26 11:04:40 +0200127 ethernet/node.c
128 ethernet/pg.c
129 ethernet/sfp.c
130 ethernet/p2p_ethernet.c
131 ethernet/p2p_ethernet_input.c
132 ethernet/p2p_ethernet_api.c
133)
134
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -0700135list(APPEND VNET_MULTIARCH_SOURCES
136 ethernet/node.c
137 ethernet/p2p_ethernet_input.c
138)
Damjan Marion4553c952018-08-26 11:04:40 +0200139
140list(APPEND VNET_HEADERS
141 ethernet/error.def
142 ethernet/ethernet.h
Jon Loeliger330bf932018-11-28 13:51:42 -0600143 ethernet/mac_address.h
Damjan Marion4553c952018-08-26 11:04:40 +0200144 ethernet/packet.h
145 ethernet/types.def
146 ethernet/sfp.h
147 ethernet/p2p_ethernet.h
Neale Rannscbe25aa2019-09-30 10:53:31 +0000148 ethernet/arp_packet.h
Damjan Marion4553c952018-08-26 11:04:40 +0200149)
150
Benoît Ganned39495d2019-07-25 14:14:03 +0200151list(APPEND VNET_API_FILES
152 ethernet/p2p_ethernet.api
153 ethernet/ethernet_types.api)
Damjan Marion4553c952018-08-26 11:04:40 +0200154
155##############################################################################
156# Layer 2 protocol: Ethernet bridging
157##############################################################################
158list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200159 l2/feat_bitmap.c
160 l2/l2_api.c
Neale Rannscbe25aa2019-09-30 10:53:31 +0000161 l2/l2_arp_term.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200162 l2/l2_bd.c
163 l2/l2_bvi.c
Neale Ranns192b13f2019-03-15 02:16:20 -0700164 l2/l2_bvi_node.c
Damjan Marion4553c952018-08-26 11:04:40 +0200165 l2/l2_input_classify.c
166 l2/l2_output_classify.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200167 l2/l2_efp_filter.c
168 l2/l2_fib.c
169 l2/l2_flood.c
170 l2/l2_fwd.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200171 l2/l2_input.c
Neale Ranns47a3d992020-09-29 15:38:51 +0000172 l2/l2_input_node.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200173 l2/l2_input_vtr.c
174 l2/l2_learn.c
175 l2/l2_output.c
Damjan Marion4553c952018-08-26 11:04:40 +0200176 l2/l2_in_out_acl.c
Andrew Yourtchenkoa23cade2018-10-06 09:18:00 +0200177 l2/l2_in_out_feat_arc.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200178 l2/l2_patch.c
179 l2/l2_rw.c
Neale Rannsb4743802018-09-05 09:13:57 -0700180 l2/l2_uu_fwd.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200181 l2/l2_vtr.c
182 l2/l2_xcrw.c
Damjan Marion4553c952018-08-26 11:04:40 +0200183)
184
Neale Rannsc25eb452018-09-12 06:53:03 -0400185list(APPEND VNET_MULTIARCH_SOURCES
Neale Ranns192b13f2019-03-15 02:16:20 -0700186 l2/l2_bvi_node.c
Neale Rannsc25eb452018-09-12 06:53:03 -0400187 l2/l2_fwd.c
188 l2/l2_learn.c
189 l2/l2_output.c
Damjan Marionc3baf622018-11-06 13:33:27 +0100190 l2/l2_patch.c
Filip Tehlar44f0f712019-03-11 04:26:37 -0700191 l2/l2_in_out_feat_arc.c
192 l2/l2_input_classify.c
Neale Ranns47a3d992020-09-29 15:38:51 +0000193 l2/l2_input_node.c
Filip Tehlar44f0f712019-03-11 04:26:37 -0700194 l2/l2_output_classify.c
195 l2/l2_flood.c
196 l2/l2_uu_fwd.c
197 l2/l2_efp_filter.c
198 l2/l2_rw.c
199 l2/l2_xcrw.c
200 l2/l2_in_out_acl.c
201 l2/l2_input_vtr.c
Neale Rannsc25eb452018-09-12 06:53:03 -0400202)
Neale Rannseb1525f2018-09-09 04:41:02 -0400203
Damjan Marion4553c952018-08-26 11:04:40 +0200204list(APPEND VNET_HEADERS
205 l2/feat_bitmap.h
206 l2/l2_input.h
207 l2/l2_output.h
208 l2/l2_vtr.h
209 l2/l2_input_vtr.h
210 l2/l2_efp_filter.h
211 l2/l2_fwd.h
212 l2/l2_bd.h
213 l2/l2_bvi.h
214 l2/l2_flood.h
215 l2/l2_fib.h
216 l2/l2_rw.h
217 l2/l2_xcrw.h
218 l2/l2_classify.h
219)
220
221list(APPEND VNET_API_FILES l2/l2.api)
222
223##############################################################################
224# Layer 2 protocol: SRP
225##############################################################################
226list(APPEND VNET_SOURCES
227 srp/format.c
228 srp/interface.c
229 srp/node.c
230 srp/pg.c
231)
232
233list(APPEND VNET_HEADERS
234 srp/packet.h
235 srp/srp.h
236)
237
238##############################################################################
239# Layer 2 protocol: PPP
240##############################################################################
241list(APPEND VNET_SOURCES
242 ppp/node.c
243 ppp/pg.c
244 ppp/ppp.c
245)
246
247list(APPEND VNET_HEADERS
248 ppp/error.def
249 ppp/ppp.h
250 ppp/packet.h
251)
252
253##############################################################################
254# Layer 2 protocol: HDLC
255##############################################################################
256list(APPEND VNET_SOURCES
257 hdlc/node.c
258 hdlc/pg.c
259 hdlc/hdlc.c
260)
261
262list(APPEND VNET_HEADERS
263 hdlc/error.def
264 hdlc/hdlc.h
265 hdlc/packet.h
266)
267
268##############################################################################
269# Layer 2 protocol: LLC
270##############################################################################
271list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200272 llc/llc.c
273 llc/node.c
274 llc/pg.c
Damjan Marion4553c952018-08-26 11:04:40 +0200275)
276
277list(APPEND VNET_HEADERS
278 llc/llc.h
279)
280
281##############################################################################
282# Layer 2 protocol: SNAP
283##############################################################################
284list(APPEND VNET_SOURCES
285 snap/snap.c
286 snap/node.c
287 snap/pg.c
288)
289
290list(APPEND VNET_HEADERS
291 snap/snap.h
292)
293
294##############################################################################
295# Layer 2 / vxlan
296##############################################################################
297list(APPEND VNET_SOURCES
298 vxlan/vxlan.c
299 vxlan/encap.c
300 vxlan/decap.c
301 vxlan/vxlan_api.c
302)
303
Filip Tehlare1714d32019-03-05 03:01:43 -0800304list(APPEND VNET_MULTIARCH_SOURCES
305 vxlan/encap.c
306)
307
Damjan Marion4553c952018-08-26 11:04:40 +0200308list(APPEND VNET_HEADERS
309 vxlan/vxlan.h
310 vxlan/vxlan_packet.h
311 vxlan/vxlan_error.def
312)
313
Eyal Baria5679e82018-08-26 15:20:07 +0300314list(APPEND VNET_MULTIARCH_SOURCES vxlan/decap.c)
315
Damjan Marion4553c952018-08-26 11:04:40 +0200316list(APPEND VNET_API_FILES vxlan/vxlan.api)
317
318##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200319# Layer 2 / Bonding
320##############################################################################
321list(APPEND VNET_SOURCES
322 bonding/cli.c
323 bonding/node.c
324 bonding/device.c
325 bonding/bond_api.c
326)
327
328list(APPEND VNET_HEADERS
329 bonding/node.h
330)
331
Damjan Marioncefe1342018-09-21 18:11:33 +0200332list(APPEND VNET_MULTIARCH_SOURCES bonding/node.c bonding/device.c)
Damjan Marion4553c952018-08-26 11:04:40 +0200333list(APPEND VNET_API_FILES bonding/bond.api)
334
335##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200336# Layer 2/3 "classify"
337##############################################################################
338list(APPEND VNET_SOURCES
339 classify/vnet_classify.c
Dave Barach9137e542019-09-13 17:47:50 -0400340 classify/trace_classify.h
Damjan Marion4553c952018-08-26 11:04:40 +0200341 classify/ip_classify.c
342 classify/in_out_acl.c
343 classify/policer_classify.c
344 classify/flow_classify.c
345 classify/flow_classify_node.c
346 classify/vnet_classify.h
347 classify/classify_api.c
348)
349
Filip Tehlare8cb5212019-03-06 04:50:34 -0800350list(APPEND VNET_MULTIARCH_SOURCES
351 classify/ip_classify.c
352 classify/flow_classify_node.c
353)
354
Damjan Marion4553c952018-08-26 11:04:40 +0200355list(APPEND VNET_HEADERS
356 classify/vnet_classify.h
Dave Barach9137e542019-09-13 17:47:50 -0400357 classify/trace_classify.h
Damjan Marion4553c952018-08-26 11:04:40 +0200358 classify/in_out_acl.h
359 classify/policer_classify.h
360 classify/flow_classify.h
361)
362
363list(APPEND VNET_API_FILES classify/classify.api)
364
365##############################################################################
366# Layer 3 protocols go here
367##############################################################################
368
369##############################################################################
370# Layer 3 protocol: IP v4/v6
371##############################################################################
372list(APPEND VNET_SOURCES
373 ip/format.c
374 ip/icmp4.c
375 ip/icmp6.c
376 ip/ip46_cli.c
377 ip/ip_types_api.c
Neale Rannscbe25aa2019-09-30 10:53:31 +0000378 ip/ip46_address.c
Damjan Marion4553c952018-08-26 11:04:40 +0200379 ip/ip4_format.c
380 ip/ip4_forward.c
381 ip/ip4_punt_drop.c
382 ip/ip4_input.c
383 ip/ip4_options.c
384 ip/ip4_mtrie.c
385 ip/ip4_pg.c
386 ip/ip4_source_and_port_range_check.c
Klement Sekera896c8962019-06-24 11:52:49 +0000387 ip/reass/ip4_full_reass.c
Klement Sekerade34c352019-06-25 11:19:22 +0000388 ip/reass/ip4_sv_reass.c
Damjan Marion4553c952018-08-26 11:04:40 +0200389 ip/ip6_format.c
390 ip/ip6_forward.c
391 ip/ip6_ll_table.c
392 ip/ip6_ll_types.c
393 ip/ip6_punt_drop.c
394 ip/ip6_hop_by_hop.c
395 ip/ip6_input.c
Neale Rannscbe25aa2019-09-30 10:53:31 +0000396 ip/ip6_link.c
Damjan Marion4553c952018-08-26 11:04:40 +0200397 ip/ip6_pg.c
Klement Sekera896c8962019-06-24 11:52:49 +0000398 ip/reass/ip6_full_reass.c
Klement Sekerade34c352019-06-25 11:19:22 +0000399 ip/reass/ip6_sv_reass.c
Damjan Marion4553c952018-08-26 11:04:40 +0200400 ip/ip_api.c
401 ip/ip_checksum.c
Neale Rannse4031132020-10-26 13:00:06 +0000402 ip/ip_container_proxy.c
Damjan Marion4553c952018-08-26 11:04:40 +0200403 ip/ip_frag.c
404 ip/ip.c
Neale Ranns59f71132020-04-08 12:19:38 +0000405 ip/ip_interface.c
Damjan Marion4553c952018-08-26 11:04:40 +0200406 ip/ip_init.c
407 ip/ip_in_out_acl.c
Neale Ranns8f5fef22020-12-21 08:29:34 +0000408 ip/ip_path_mtu.c
409 ip/ip_path_mtu_node.c
Neale Ranns92207752019-06-03 13:21:40 +0000410 ip/ip_punt_drop.c
Neale Rannsea93e482019-11-12 17:16:47 +0000411 ip/ip_types.c
Damjan Marion4553c952018-08-26 11:04:40 +0200412 ip/lookup.c
Damjan Marion4553c952018-08-26 11:04:40 +0200413 ip/punt_api.c
414 ip/punt.c
Neale Ranns50f0ac02019-05-15 02:13:37 -0700415 ip/punt_node.c
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000416 ip/vtep.c
Ole Troan8034a362021-08-11 13:54:14 +0200417 ip/ip_sas.c
Damjan Marion4553c952018-08-26 11:04:40 +0200418)
419
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700420list(APPEND VNET_MULTIARCH_SOURCES
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700421 ip/ip4_punt_drop.c
Klement Sekera896c8962019-06-24 11:52:49 +0000422 ip/reass/ip4_full_reass.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700423 ip/ip6_hop_by_hop.c
Klement Sekera896c8962019-06-24 11:52:49 +0000424 ip/reass/ip6_full_reass.c
Klement Sekerade34c352019-06-25 11:19:22 +0000425 ip/reass/ip4_sv_reass.c
426 ip/ip6_hop_by_hop.c
427 ip/reass/ip6_full_reass.c
428 ip/reass/ip6_sv_reass.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700429 ip/ip6_input.c
430 ip/ip6_punt_drop.c
Neale Ranns50f0ac02019-05-15 02:13:37 -0700431 ip/punt_node.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700432 ip/ip_in_out_acl.c
Neale Ranns8f5fef22020-12-21 08:29:34 +0000433 ip/ip_path_mtu_node.c
Filip Tehlar26ea14e2019-03-11 05:30:21 -0700434)
435
Damjan Marion4553c952018-08-26 11:04:40 +0200436list(APPEND VNET_HEADERS
437 ip/format.h
438 ip/icmp46_packet.h
439 ip/icmp4.h
440 ip/icmp6.h
441 ip/igmp_packet.h
442 ip/ip4_error.h
443 ip/ip4.h
444 ip/ip4_mtrie.h
Neale Rannse4031132020-10-26 13:00:06 +0000445 ip/ip4_inlines.h
Damjan Marion4553c952018-08-26 11:04:40 +0200446 ip/ip4_packet.h
Neale Rannscbe25aa2019-09-30 10:53:31 +0000447 ip/ip46_address.h
Damjan Marion4553c952018-08-26 11:04:40 +0200448 ip/ip6_error.h
449 ip/ip6.h
450 ip/ip6_hop_by_hop.h
451 ip/ip6_hop_by_hop_packet.h
Neale Rannse4031132020-10-26 13:00:06 +0000452 ip/ip6_inlines.h
Damjan Marion4553c952018-08-26 11:04:40 +0200453 ip/ip6_packet.h
Damjan Marion4553c952018-08-26 11:04:40 +0200454 ip/ip.h
Neale Rannse4031132020-10-26 13:00:06 +0000455 ip/ip_container_proxy.h
456 ip/ip_flow_hash.h
Steven Luongc3ed1c92020-07-27 10:06:58 -0700457 ip/ip_table.h
Neale Ranns59f71132020-04-08 12:19:38 +0000458 ip/ip_interface.h
Damjan Marion4553c952018-08-26 11:04:40 +0200459 ip/ip_packet.h
Mohsin Kazmif5462362021-02-23 15:55:04 +0100460 ip/ip_psh_cksum.h
Damjan Marion4553c952018-08-26 11:04:40 +0200461 ip/ip_source_and_port_range_check.h
Neale Rannsea93e482019-11-12 17:16:47 +0000462 ip/ip_types.h
Damjan Marion4553c952018-08-26 11:04:40 +0200463 ip/lookup.h
464 ip/ports.def
465 ip/protocols.def
466 ip/punt_error.def
467 ip/punt.h
468)
469
470list(APPEND VNET_API_FILES
471 ip/ip.api
Damjan Marion4553c952018-08-26 11:04:40 +0200472 ip/punt.api
473)
474
Damjan Marion38173502019-02-13 19:30:09 +0100475list(APPEND VNET_MULTIARCH_SOURCES
476 ip/ip4_forward.c
477 ip/ip6_forward.c
478 ip/ip4_input.c
479)
Damjan Marion4553c952018-08-26 11:04:40 +0200480
481##############################################################################
Neale Rannscbe25aa2019-09-30 10:53:31 +0000482# Layer 3 neighbours
Damjan Marion4553c952018-08-26 11:04:40 +0200483##############################################################################
484list(APPEND VNET_SOURCES
Neale Rannscbe25aa2019-09-30 10:53:31 +0000485 ip-neighbor/ip_neighbor.c
486 ip-neighbor/ip_neighbor_api.c
487 ip-neighbor/ip_neighbor_dp.c
488 ip-neighbor/ip_neighbor_types.c
489 ip-neighbor/ip_neighbor_watch.c
490 ip-neighbor/ip4_neighbor.c
491 ip-neighbor/ip6_neighbor.c
Damjan Marion4553c952018-08-26 11:04:40 +0200492)
493
494list(APPEND VNET_HEADERS
Neale Rannscbe25aa2019-09-30 10:53:31 +0000495 ip-neighbor/ip_neighbor.h
496 ip-neighbor/ip_neighbor_types.h
497)
498
499list(APPEND VNET_API_FILES
500 ip-neighbor/ip_neighbor.api
Damjan Marion4553c952018-08-26 11:04:40 +0200501)
502
503##############################################################################
504# Bidirectional Forwarding Detection
505##############################################################################
506
507list(APPEND VNET_HEADERS
508 bfd/bfd_protocol.h
509 bfd/bfd_main.h
510 bfd/bfd_api.h
511 bfd/bfd_udp.h
512)
513
514list(APPEND VNET_SOURCES
515 bfd/bfd_api.h
516 bfd/bfd_udp.c
517 bfd/bfd_main.c
518 bfd/bfd_protocol.c
519 bfd/bfd_cli.c
520 bfd/bfd_api.c
521)
522
523list(APPEND VNET_API_FILES bfd/bfd.api)
524
525##############################################################################
Damjan Marion91f17dc2019-03-18 18:59:25 +0100526# Crypto
527##############################################################################
528
529list(APPEND VNET_SOURCES
530 crypto/cli.c
531 crypto/crypto.c
532 crypto/format.c
Fan Zhangf5395782020-04-29 14:00:03 +0100533 crypto/node.c
Nathan Skrzypczak0c936b12020-08-31 15:33:57 +0200534 crypto/crypto_api.c
Damjan Marion91f17dc2019-03-18 18:59:25 +0100535)
536
537list(APPEND VNET_HEADERS
538 crypto/crypto.h
539)
540
Fan Zhangf5395782020-04-29 14:00:03 +0100541list(APPEND VNET_MULTIARCH_SOURCES crypto/node.c)
542
Nathan Skrzypczak0c936b12020-08-31 15:33:57 +0200543list(APPEND VNET_API_FILES crypto/crypto.api)
544
Damjan Marion91f17dc2019-03-18 18:59:25 +0100545##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200546# Layer 3 protocol: IPSec
547##############################################################################
548list(APPEND VNET_SOURCES
549 ipsec/ipsec.c
550 ipsec/ipsec_cli.c
551 ipsec/ipsec_format.c
Neale Rannsf62a8c02019-04-02 08:13:33 +0000552 ipsec/ipsec_handoff.c
Damjan Marion4553c952018-08-26 11:04:40 +0200553 ipsec/ipsec_input.c
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000554 ipsec/ipsec_itf.c
Neale Rannsb71fa752019-04-04 12:43:36 +0000555 ipsec/ipsec_punt.c
Neale Ranns999c8ee2019-02-01 03:31:24 -0800556 ipsec/ipsec_sa.c
557 ipsec/ipsec_spd.c
558 ipsec/ipsec_spd_policy.c
Neale Rannsc87b66c2019-02-07 07:26:12 -0800559 ipsec/ipsec_tun.c
560 ipsec/ipsec_tun_in.c
Damjan Marion4553c952018-08-26 11:04:40 +0200561 ipsec/esp_format.c
562 ipsec/esp_encrypt.c
563 ipsec/esp_decrypt.c
564 ipsec/ah_decrypt.c
565 ipsec/ah_encrypt.c
Damjan Marion4553c952018-08-26 11:04:40 +0200566 ipsec/ipsec_api.c
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +0530567 ipsec/ipsec_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200568)
569
Klement Sekerab8f35442018-10-29 13:38:19 +0100570list(APPEND VNET_MULTIARCH_SOURCES
571 ipsec/esp_encrypt.c
572 ipsec/esp_decrypt.c
573 ipsec/ah_decrypt.c
574 ipsec/ah_encrypt.c
Neale Rannsf62a8c02019-04-02 08:13:33 +0000575 ipsec/ipsec_handoff.c
Kingwel Xiec69ac312019-02-04 01:49:29 -0800576 ipsec/ipsec_output.c
577 ipsec/ipsec_input.c
Neale Rannsc87b66c2019-02-07 07:26:12 -0800578 ipsec/ipsec_tun_in.c
Klement Sekerab8f35442018-10-29 13:38:19 +0100579)
580
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +0530581list(APPEND VNET_API_FILES ipsec/ipsec_types.api)
Damjan Marion4553c952018-08-26 11:04:40 +0200582list(APPEND VNET_API_FILES ipsec/ipsec.api)
583
584list(APPEND VNET_SOURCES
585 ipsec/ipsec_output.c
586)
587
588list(APPEND VNET_HEADERS
589 ipsec/ipsec.h
Neale Ranns918c1612019-02-21 23:34:59 -0800590 ipsec/ipsec_spd.h
591 ipsec/ipsec_spd_policy.h
592 ipsec/ipsec_sa.h
Neale Ranns12989b52019-09-26 16:20:19 +0000593 ipsec/ipsec_tun.h
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +0530594 ipsec/ipsec_types_api.h
Neale Rannsba05e5d2019-06-07 05:17:07 -0700595 ipsec/ipsec_punt.h
Damjan Marion4553c952018-08-26 11:04:40 +0200596 ipsec/esp.h
597 ipsec/ah.h
Damjan Marion4553c952018-08-26 11:04:40 +0200598)
599
600##############################################################################
601# Layer 3 protocol: osi
602##############################################################################
603list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200604 osi/node.c
605 osi/osi.c
606 osi/pg.c
Damjan Marion4553c952018-08-26 11:04:40 +0200607)
608
609list(APPEND VNET_HEADERS
610 osi/osi.h
611)
612
613##############################################################################
614# Layer 4 protocol: tcp
615##############################################################################
616list(APPEND VNET_SOURCES
617 tcp/tcp_api.c
618 tcp/tcp_format.c
619 tcp/tcp_pg.c
620 tcp/tcp_syn_filter4.c
621 tcp/tcp_output.c
622 tcp/tcp_input.c
623 tcp/tcp_newreno.c
Florin Coras52814732019-06-12 15:38:19 -0700624 tcp/tcp_bt.c
Florin Coras999840c2020-03-18 20:31:34 +0000625 tcp/tcp_cli.c
626 tcp/tcp_cubic.c
Florin Corasa436a422019-08-20 07:09:31 -0700627 tcp/tcp_debug.c
Florin Coras999840c2020-03-18 20:31:34 +0000628 tcp/tcp_sack.c
Florin Coras49036a52020-10-08 09:28:32 -0700629 tcp/tcp_timer.c
Damjan Marion4553c952018-08-26 11:04:40 +0200630 tcp/tcp.c
631)
632
Filip Tehlare275bed2019-03-06 00:06:56 -0800633list(APPEND VNET_MULTIARCH_SOURCES
634 tcp/tcp_input.c
635 tcp/tcp_output.c
636 tcp/tcp_syn_filter4.c
637)
638
Damjan Marion4553c952018-08-26 11:04:40 +0200639list(APPEND VNET_HEADERS
640 tcp/tcp_packet.h
641 tcp/tcp_timer.h
Florin Coras999840c2020-03-18 20:31:34 +0000642 tcp/tcp_bt.h
643 tcp/tcp_cc.h
Damjan Marion4553c952018-08-26 11:04:40 +0200644 tcp/tcp_debug.h
Florin Coras999840c2020-03-18 20:31:34 +0000645 tcp/tcp_inlines.h
646 tcp/tcp_sack.h
647 tcp/tcp_types.h
Damjan Marion4553c952018-08-26 11:04:40 +0200648 tcp/tcp.h
649 tcp/tcp_error.def
650)
651
652list(APPEND VNET_API_FILES tcp/tcp.api)
653
654##############################################################################
655# Layer 4 protocol: udp
656##############################################################################
657list(APPEND VNET_SOURCES
658 udp/udp.c
Florin Corasc98ef752020-04-07 17:30:13 +0000659 udp/udp_cli.c
Damjan Marion4553c952018-08-26 11:04:40 +0200660 udp/udp_input.c
661 udp/udp_format.c
662 udp/udp_local.c
663 udp/udp_pg.c
664 udp/udp_encap_node.c
665 udp/udp_encap.c
Arthur de Kerhor8a6f5d32021-05-20 11:48:00 +0200666 udp/udp_decap.c
Damjan Marion4553c952018-08-26 11:04:40 +0200667 udp/udp_api.c
668)
669
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800670list(APPEND VNET_MULTIARCH_SOURCES
671 udp/udp_local.c
672 udp/udp_encap_node.c
673)
674
Damjan Marion4553c952018-08-26 11:04:40 +0200675list(APPEND VNET_HEADERS
676 udp/udp_error.def
677 udp/udp.h
678 udp/udp_packet.h
Florin Corasb040f982020-10-20 14:59:43 -0700679 udp/udp_inlines.h
680 udp/udp_local.h
Damjan Marion4553c952018-08-26 11:04:40 +0200681)
682
683list(APPEND VNET_API_FILES udp/udp.api)
684
685##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200686# Tunnel protocol: gre
687##############################################################################
688list(APPEND VNET_SOURCES
689 gre/gre.c
690 gre/node.c
691 gre/interface.c
692 gre/pg.c
693 gre/gre_api.c
694)
695
Filip Tehlar0fce11f2019-03-04 09:21:59 -0800696list(APPEND VNET_MULTIARCH_SOURCES
697 gre/node.c
698 gre/gre.c
699)
700
Damjan Marion4553c952018-08-26 11:04:40 +0200701list(APPEND VNET_HEADERS
702 gre/gre.h
703 gre/packet.h
704 gre/error.def
705)
706
707list(APPEND VNET_API_FILES gre/gre.api)
708
709##############################################################################
710# Tunnel protocol: ipip
711##############################################################################
712list(APPEND VNET_SOURCES
713 ipip/ipip.c
714 ipip/node.c
715 ipip/sixrd.c
716 ipip/ipip_api.c
717 ipip/ipip_cli.c
718)
719
Filip Tehlar7a542f42019-03-05 04:50:23 -0800720list(APPEND VNET_MULTIARCH_SOURCES
721 ipip/node.c
722)
723
Damjan Marion4553c952018-08-26 11:04:40 +0200724list(APPEND VNET_HEADERS
725 ipip/ipip.h
726)
727
Neale Ranns95346962019-11-25 13:04:44 +0000728list(APPEND VNET_API_FILES
Neale Ranns95346962019-11-25 13:04:44 +0000729 ipip/ipip.api
730)
Damjan Marion4553c952018-08-26 11:04:40 +0200731
732##############################################################################
Neale Ranns59ff9182019-12-29 23:55:18 +0000733# Tunnel infra
734##############################################################################
735list(APPEND VNET_SOURCES
736 tunnel/tunnel.c
737 tunnel/tunnel_types_api.c
738)
739
740list(APPEND VNET_API_FILES
741 tunnel/tunnel_types.api
742)
743
744list(APPEND VNET_HEADERS
745 tunnel/tunnel.h
Neale Rannse5b94dd2019-12-31 05:13:14 +0000746 tunnel/tunnel_dp.h
Neale Ranns59ff9182019-12-29 23:55:18 +0000747)
748
749##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200750# Tunnel protocol: gre+mpls
751##############################################################################
752list(APPEND VNET_SOURCES
753 mpls/mpls.c
754 mpls/mpls_lookup.c
755 mpls/mpls_output.c
756 mpls/mpls_features.c
757 mpls/mpls_input.c
758 mpls/interface.c
759 mpls/mpls_tunnel.c
760 mpls/pg.c
761 mpls/mpls_api.c
762)
763
Filip Tehlar17fcd982019-03-05 04:32:11 -0800764list(APPEND VNET_MULTIARCH_SOURCES
765 mpls/mpls_output.c
766 mpls/mpls_input.c
767 mpls/mpls_lookup.c
768 mpls/mpls_features.c
769)
770
Damjan Marion4553c952018-08-26 11:04:40 +0200771list(APPEND VNET_HEADERS
772 mpls/mpls.h
773 mpls/mpls_types.h
774 mpls/mpls_tunnel.h
775 mpls/packet.h
776 mpls/error.def
777)
778
779list(APPEND VNET_API_FILES mpls/mpls.api)
780
781##############################################################################
782# Tunnel protocol: vxlan-gpe
783##############################################################################
784
785list(APPEND VNET_SOURCES
786 vxlan-gpe/vxlan_gpe.c
787 vxlan-gpe/encap.c
788 vxlan-gpe/decap.c
789 vxlan-gpe/vxlan_gpe_api.c
790)
791
Filip Tehlare1714d32019-03-05 03:01:43 -0800792list (APPEND VNET_MULTIARCH_SOURCES
793 vxlan-gpe/decap.c
794)
795
Damjan Marion4553c952018-08-26 11:04:40 +0200796list(APPEND VNET_HEADERS
797 vxlan-gpe/vxlan_gpe.h
798 vxlan-gpe/vxlan_gpe_packet.h
799 vxlan-gpe/vxlan_gpe_error.def
800)
801
802list(APPEND VNET_API_FILES vxlan-gpe/vxlan_gpe.api)
803
804##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200805# ipv6 segment routing
806##############################################################################
807
808list(APPEND VNET_SOURCES
809 srv6/sr.c
810 srv6/sr_localsid.c
811 srv6/sr_policy_rewrite.c
812 srv6/sr_steering.c
813 srv6/sr_api.c
814)
815
816list(APPEND VNET_HEADERS
817 srv6/sr_packet.h
818 srv6/sr.h
819)
820
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100821list(APPEND VNET_API_FILES
822 srv6/sr.api
823 srv6/sr_types.api
824)
Damjan Marion4553c952018-08-26 11:04:40 +0200825
826##############################################################################
827# mpls segment routing
828##############################################################################
829
830list(APPEND VNET_SOURCES
831 srmpls/sr_mpls_policy.c
832 srmpls/sr_mpls_steering.c
833 srmpls/sr_mpls_api.c
834)
835
836list(APPEND VNET_HEADERS
837 srmpls/sr_mpls.h
838)
839
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100840list(APPEND VNET_API_FILES
841 srmpls/sr_mpls.api
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100842)
Damjan Marion4553c952018-08-26 11:04:40 +0200843
844##############################################################################
845# IPFIX / netflow v10
846##############################################################################
847list(APPEND VNET_SOURCES
848 ipfix-export/flow_report.c
849 ipfix-export/flow_api.c
850)
851
852list(APPEND VNET_HEADERS
853 ipfix-export/flow_report.h
854 ipfix-export/ipfix_info_elements.h
855 ipfix-export/ipfix_packet.h
856)
857
858list(APPEND VNET_API_FILES ipfix-export/ipfix_export.api)
859
860##############################################################################
Mohsin Kazmi41b23bc2021-06-30 18:26:25 +0000861# HASH
862##############################################################################
863list(APPEND VNET_SOURCES
864 hash/hash.c
865 hash/cli.c
866 hash/crc32_5tuple.c
Florin Coras1e6d30b2021-11-02 10:32:19 -0700867 hash/handoff_eth.c
Mohsin Kazmi41b23bc2021-06-30 18:26:25 +0000868)
869
870list(APPEND VNET_HEADERS
871 hash/hash.h
872)
873
874##############################################################################
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200875# GSO
876##############################################################################
877list(APPEND VNET_SOURCES
878 gso/cli.c
879 gso/gso.c
880 gso/gso_api.c
881 gso/node.c
882)
883
884list(APPEND VNET_HEADERS
Mohsin Kazmif382b062020-08-11 15:00:44 +0200885 gso/gro.h
886 gso/gro_func.h
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000887 gso/hdr_offset_parser.h
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200888 gso/gso.h
889)
890
891list(APPEND VNET_API_FILES
892 gso/gso.api
893)
894
895##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200896# IPFIX classify code
897##############################################################################
898
899list(APPEND VNET_SOURCES
900 ipfix-export/flow_report_classify.c
901)
902
903list(APPEND VNET_HEADERS
904 ipfix-export/flow_report_classify.h
905)
906
907##############################################################################
908# lawful intercept
909##############################################################################
910
911list(APPEND VNET_SOURCES
912 lawful-intercept/lawful_intercept.c
913 lawful-intercept/node.c
914)
915
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -0700916list(APPEND VNET_MULTIARCH_SOURCES
917 lawful-intercept/node.c
918)
919
Damjan Marion4553c952018-08-26 11:04:40 +0200920list(APPEND VNET_HEADERS
921 lawful-intercept/lawful_intercept.h
922)
923
924##############################################################################
925# SPAN (port mirroring)
926##############################################################################
927
928list(APPEND VNET_SOURCES
929 span/span_api.c
930 span/span.c
931 span/node.c
932)
933
Filip Tehlara79271f2019-03-05 03:46:40 -0800934list(APPEND VNET_MULTIARCH_SOURCES
935 span/node.c
936)
937
Damjan Marion4553c952018-08-26 11:04:40 +0200938list(APPEND VNET_HEADERS
939 span/span.h
940)
941
942list(APPEND VNET_API_FILES span/span.api)
943
944##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200945# Packet generator
946##############################################################################
947
948list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200949 pg/cli.c
950 pg/edit.c
951 pg/init.c
952 pg/input.c
953 pg/output.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200954 pg/stream.c
Damjan Marion4553c952018-08-26 11:04:40 +0200955 pg/pg_api.c
956)
957
958list(APPEND VNET_HEADERS
959 pg/pg.h
960 pg/edit.h
961)
962
963list(APPEND VNET_API_FILES pg/pg.api)
964
965##############################################################################
966# virtio
967##############################################################################
968
969list(APPEND VNET_SOURCES
Damjan Marionf41244f2019-11-08 17:41:06 +0100970 devices/virtio/cli.c
Damjan Marion4553c952018-08-26 11:04:40 +0200971 devices/virtio/device.c
Damjan Marionf41244f2019-11-08 17:41:06 +0100972 devices/virtio/format.c
Damjan Marion4553c952018-08-26 11:04:40 +0200973 devices/virtio/node.c
Damjan Marionf41244f2019-11-08 17:41:06 +0100974 devices/virtio/pci.c
Damjan Marion4553c952018-08-26 11:04:40 +0200975 devices/virtio/vhost_user.c
976 devices/virtio/vhost_user_input.c
977 devices/virtio/vhost_user_output.c
978 devices/virtio/vhost_user_api.c
979 devices/virtio/virtio.c
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200980 devices/virtio/virtio_api.c
Mohsin Kazmia0a68332020-07-16 12:55:42 +0000981 devices/virtio/virtio_pci_legacy.c
Mohsin Kazmi379aac32020-08-20 10:25:12 +0200982 devices/virtio/virtio_pci_modern.c
Mohsin Kazmia5203b52020-10-12 13:01:24 +0200983 devices/virtio/virtio_process.c
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200984 devices/virtio/virtio_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200985)
986
987list(APPEND VNET_HEADERS
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200988 devices/virtio/pci.h
Damjan Marion4553c952018-08-26 11:04:40 +0200989 devices/virtio/virtio.h
Mohsin Kazmie347acb2020-09-28 10:26:33 +0000990 devices/virtio/virtio_buffering.h
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200991 devices/virtio/virtio_std.h
Mohsin Kazmia0a68332020-07-16 12:55:42 +0000992 devices/virtio/virtio_pci_legacy.h
Mohsin Kazmi379aac32020-08-20 10:25:12 +0200993 devices/virtio/virtio_pci_modern.h
Mohsin Kazmia7a22812020-08-31 17:17:16 +0200994 devices/virtio/vhost_std.h
Damjan Marion4553c952018-08-26 11:04:40 +0200995 devices/virtio/vhost_user.h
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +0200996 devices/virtio/virtio_types_api.h
Damjan Marion4553c952018-08-26 11:04:40 +0200997)
998
999list(APPEND VNET_MULTIARCH_SOURCES
1000 devices/virtio/vhost_user_input.c
1001 devices/virtio/vhost_user_output.c
Filip Tehlar608996d2019-03-04 03:03:13 -08001002 devices/virtio/node.c
1003 devices/af_packet/node.c
Filip Tehlaraee73642019-03-13 05:50:44 -07001004 devices/virtio/device.c
Damjan Marion4553c952018-08-26 11:04:40 +02001005)
1006
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001007list(APPEND VNET_API_FILES
1008 devices/virtio/vhost_user.api
1009 devices/virtio/virtio.api
Jakub Grajciar5d4c99f2019-09-26 10:21:59 +02001010 devices/virtio/virtio_types.api
Mohsin Kazmid6c15af2018-10-23 18:00:47 +02001011)
Damjan Marion4553c952018-08-26 11:04:40 +02001012
1013##############################################################################
1014# tap interface (with virtio backend)
1015##############################################################################
1016
1017list(APPEND VNET_SOURCES
1018 devices/tap/cli.c
1019 devices/tap/tap.c
1020 devices/tap/tapv2_api.c
1021)
1022
1023list(APPEND VNET_HEADERS
1024 devices/tap/tap.h
1025)
1026
Mohsin Kazmia7a22812020-08-31 17:17:16 +02001027list(APPEND VNET_API_FILES
1028 devices/tap/tapv2.api
1029)
Damjan Marion4553c952018-08-26 11:04:40 +02001030
1031##############################################################################
1032# tap interface (with virtio backend)
1033##############################################################################
1034
1035list(APPEND VNET_SOURCES
1036 devices/pipe/pipe_api.c
1037 devices/pipe/pipe.c
1038)
1039
1040list(APPEND VNET_HEADERS
1041 devices/pipe/pipe.h
1042)
1043
1044list(APPEND VNET_API_FILES devices/pipe/pipe.api)
1045
1046##############################################################################
1047# session managmeent
1048##############################################################################
1049
1050list(APPEND VNET_SOURCES
1051 session/session.c
Florin Coras11166672020-04-13 01:20:25 +00001052 session/session_debug.c
Damjan Marion4553c952018-08-26 11:04:40 +02001053 session/session_table.c
1054 session/session_rules_table.c
1055 session/session_lookup.c
1056 session/session_node.c
1057 session/transport.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001058 session/application.c
Florin Coras623eb562019-02-03 19:28:34 -08001059 session/application_worker.c
Damjan Marion4553c952018-08-26 11:04:40 +02001060 session/session_cli.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001061 session/application_interface.c
Florin Corasba7d8f52019-02-22 13:11:38 -08001062 session/application_local.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001063 session/application_namespace.c
Damjan Marion4553c952018-08-26 11:04:40 +02001064 session/segment_manager.c
Damjan Marion4553c952018-08-26 11:04:40 +02001065 session/session_api.c
1066)
1067
1068list(APPEND VNET_HEADERS
1069 session/session.h
1070 session/session_table.h
1071 session/session_rules_table.h
Florin Coras288eaab2019-02-03 15:26:14 -08001072 session/session_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001073 session/session_lookup.h
1074 session/application.h
1075 session/transport.h
Florin Coras1ee78302019-02-05 15:51:15 -08001076 session/transport_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001077 session/application_interface.h
Florin Corasba7d8f52019-02-22 13:11:38 -08001078 session/application_local.h
Damjan Marion4553c952018-08-26 11:04:40 +02001079 session/application_namespace.h
1080 session/session_debug.h
1081 session/segment_manager.h
1082 session/mma_template.h
1083 session/mma_template.c
1084 session/mma_16.h
1085 session/mma_40.h
1086)
1087
1088list(APPEND VNET_API_FILES session/session.api)
1089
1090##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +02001091# TLS protocol
1092##############################################################################
1093
1094list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +02001095 tls/tls.c
Damjan Marion4553c952018-08-26 11:04:40 +02001096)
1097
1098list(APPEND VNET_HEADERS
1099 tls/tls.h
Florin Coras54a51fd2019-02-07 15:34:52 -08001100 tls/tls_test.h
Damjan Marion4553c952018-08-26 11:04:40 +02001101)
1102
1103##############################################################################
1104# Linux packet interface
1105##############################################################################
1106
1107list(APPEND VNET_SOURCES
1108 devices/af_packet/af_packet.c
1109 devices/af_packet/device.c
1110 devices/af_packet/node.c
1111 devices/af_packet/cli.c
1112 devices/af_packet/af_packet_api.c
1113)
1114
Filip Tehlaraee73642019-03-13 05:50:44 -07001115list(APPEND VNET_MULTIARCH_SOURCES
Filip Tehlaraee73642019-03-13 05:50:44 -07001116 devices/af_packet/device.c
1117)
1118
Damjan Marion4553c952018-08-26 11:04:40 +02001119list(APPEND VNET_HEADERS
1120 devices/af_packet/af_packet.h
1121)
1122
1123list(APPEND VNET_API_FILES devices/af_packet/af_packet.api)
1124
1125##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +02001126# Driver feature graph arc support
1127##############################################################################
1128
1129list(APPEND VNET_SOURCES
1130 feature/feature.c
1131 feature/feature_api.c
1132 feature/registration.c
1133)
1134
1135list(APPEND VNET_HEADERS
1136 feature/feature.h
1137)
1138
1139list(APPEND VNET_API_FILES feature/feature.api)
1140
1141##############################################################################
1142# Unix kernel related
1143##############################################################################
1144
1145# FIXME: unix/hgshm.c
1146
1147list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +02001148 unix/gdb_funcs.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001149 unix/tuntap.c
Damjan Marion612dd6a2018-07-30 12:45:07 +02001150)
1151
Damjan Marion4553c952018-08-26 11:04:40 +02001152list(APPEND VNET_HEADERS
Damjan Marion4553c952018-08-26 11:04:40 +02001153 unix/tuntap.h
Damjan Marion612dd6a2018-07-30 12:45:07 +02001154)
1155
Damjan Marion4553c952018-08-26 11:04:40 +02001156##############################################################################
1157# FIB
1158##############################################################################
1159
1160list(APPEND VNET_SOURCES
1161 fib/fib.c
Neale Rannsd6953332021-08-10 07:39:18 +00001162 fib/ip4_fib_hash.c
Damjan Marion4553c952018-08-26 11:04:40 +02001163 fib/ip4_fib.c
Neale Rannsd6953332021-08-10 07:39:18 +00001164 fib/ip4_fib_16.c
1165 fib/ip4_fib_8.c
Damjan Marion4553c952018-08-26 11:04:40 +02001166 fib/ip6_fib.c
1167 fib/mpls_fib.c
1168 fib/fib_table.c
1169 fib/fib_walk.c
1170 fib/fib_types.c
1171 fib/fib_node.c
1172 fib/fib_node_list.c
1173 fib/fib_entry.c
1174 fib/fib_entry_src.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001175 fib/fib_entry_src_adj.c
1176 fib/fib_entry_src_api.c
1177 fib/fib_entry_src_drop.c
Damjan Marion4553c952018-08-26 11:04:40 +02001178 fib/fib_entry_src_interface.c
1179 fib/fib_entry_src_interpose.c
Damjan Marion4553c952018-08-26 11:04:40 +02001180 fib/fib_entry_src_lisp.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001181 fib/fib_entry_src_mpls.c
1182 fib/fib_entry_src_simple.c
1183 fib/fib_entry_src_rr.c
Damjan Marion4553c952018-08-26 11:04:40 +02001184 fib/fib_entry_cover.c
1185 fib/fib_entry_delegate.c
Neale Ranns1f50bf82019-07-16 15:28:52 +00001186 fib/fib_entry_track.c
Damjan Marion4553c952018-08-26 11:04:40 +02001187 fib/fib_path_list.c
1188 fib/fib_path.c
1189 fib/fib_path_ext.c
Neale Rannse2fe0972020-11-26 08:37:27 +00001190 fib/fib_sas.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001191 fib/fib_source.c
Damjan Marion4553c952018-08-26 11:04:40 +02001192 fib/fib_urpf_list.c
1193 fib/fib_attached_export.c
1194 fib/fib_api.c
1195 fib/fib_bfd.c
1196)
1197
1198list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001199 fib/fib.h
Damjan Marion4553c952018-08-26 11:04:40 +02001200 fib/fib_api.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001201 fib/ip4_fib.h
Benoît Ganned9fc7082021-10-18 11:16:01 +02001202 fib/ip4_fib_8.h
1203 fib/ip4_fib_16.h
1204 fib/ip4_fib_hash.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001205 fib/ip6_fib.h
1206 fib/fib_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001207 fib/fib_table.h
1208 fib/fib_node.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001209 fib/fib_node_list.h
Damjan Marion4553c952018-08-26 11:04:40 +02001210 fib/fib_entry.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001211 fib/fib_entry_delegate.h
Neale Rannse2fe0972020-11-26 08:37:27 +00001212 fib/fib_sas.h
Neale Ranns3bab8f92019-12-04 06:11:00 +00001213 fib/fib_source.h
Damjan Marion4553c952018-08-26 11:04:40 +02001214)
1215
Neale Ranns976b2592019-12-04 06:11:00 +00001216list(APPEND VNET_API_FILES
1217 fib/fib_types.api
1218 fib/fib.api
1219)
Benoît Ganned39495d2019-07-25 14:14:03 +02001220
Damjan Marion4553c952018-08-26 11:04:40 +02001221##############################################################################
1222# ADJ
1223##############################################################################
1224
1225list(APPEND VNET_SOURCES
1226 adj/adj_nbr.c
1227 adj/adj_glean.c
1228 adj/adj_midchain.c
Neale Rannsf339f492021-03-31 07:36:33 +00001229 adj/adj_midchain_node.c
Neale Ranns4c3ba812019-03-26 07:02:58 +00001230 adj/adj_midchain_delegate.c
Damjan Marion4553c952018-08-26 11:04:40 +02001231 adj/adj_mcast.c
1232 adj/adj_l2.c
1233 adj/adj_nsh.c
1234 adj/adj.c
1235 adj/rewrite.c
1236 adj/adj_bfd.c
1237 adj/adj_delegate.c
1238)
1239
Filip Tehlar0b2c15d2019-03-04 02:52:54 -08001240list(APPEND VNET_MULTIARCH_SOURCES
1241 adj/adj_nsh.c
1242 adj/adj_l2.c
Neale Rannsf339f492021-03-31 07:36:33 +00001243 adj/adj_midchain_node.c
Filip Tehlar0b2c15d2019-03-04 02:52:54 -08001244)
1245
Damjan Marion4553c952018-08-26 11:04:40 +02001246list(APPEND VNET_HEADERS
1247 adj/adj.h
1248 adj/adj_types.h
1249 adj/adj_glean.h
1250 adj/adj_nsh.h
1251 adj/adj_nbr.h
Alberto Compagnod8ca1e42019-08-12 11:43:19 +02001252 adj/adj_midchain.h
Damjan Marion4553c952018-08-26 11:04:40 +02001253 adj/rewrite.h
1254)
1255
1256##############################################################################
1257# Data-Plane Objects
1258##############################################################################
1259
1260list(APPEND VNET_SOURCES
1261 dpo/dpo.c
1262 dpo/drop_dpo.c
1263 dpo/ip_null_dpo.c
1264 dpo/ip6_ll_dpo.c
1265 dpo/punt_dpo.c
1266 dpo/receive_dpo.c
1267 dpo/load_balance.c
1268 dpo/load_balance_map.c
1269 dpo/lookup_dpo.c
1270 dpo/classify_dpo.c
1271 dpo/replicate_dpo.c
1272 dpo/interface_rx_dpo.c
1273 dpo/interface_tx_dpo.c
1274 dpo/mpls_disposition.c
1275 dpo/mpls_label_dpo.c
1276 dpo/l3_proxy_dpo.c
1277 dpo/dvr_dpo.c
Neale Ranns1dbcf302019-07-19 11:44:53 +00001278 dpo/pw_cw.c
Damjan Marion4553c952018-08-26 11:04:40 +02001279)
1280
Filip Tehlareb9a27f2019-03-07 01:42:11 -08001281list(APPEND VNET_MULTIARCH_SOURCES
1282 dpo/lookup_dpo.h
1283 dpo/mpls_disposition.c
1284 dpo/dvr_dpo.c
1285 dpo/mpls_label_dpo.c
1286 dpo/interface_rx_dpo.c
1287)
1288
Damjan Marion4553c952018-08-26 11:04:40 +02001289list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001290 dpo/load_balance.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001291 dpo/drop_dpo.h
Damjan Marion4553c952018-08-26 11:04:40 +02001292 dpo/lookup_dpo.h
1293 dpo/punt_dpo.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001294 dpo/classify_dpo.h
1295 dpo/receive_dpo.h
1296 dpo/ip_null_dpo.h
1297 dpo/replicate_dpo.h
Damjan Marion4553c952018-08-26 11:04:40 +02001298 dpo/dpo.h
1299)
1300
1301##############################################################################
1302# Multicast FIB
1303##############################################################################
1304
1305list(APPEND VNET_SOURCES
Damjan Marion4553c952018-08-26 11:04:40 +02001306 mfib/mfib_forward.c
1307 mfib/ip4_mfib.c
1308 mfib/ip6_mfib.c
Neale Ranns097fa662018-05-01 05:17:55 -07001309 mfib/mfib_api.c
Damjan Marion4553c952018-08-26 11:04:40 +02001310 mfib/mfib_types.c
1311 mfib/mfib_signal.c
1312 mfib/mfib_itf.c
1313 mfib/mfib_entry.c
Neale Ranns9e829a82018-12-17 05:50:32 -08001314 mfib/mfib_entry.c
1315 mfib/mfib_entry_cover.c
1316 mfib/mfib_entry_delegate.c
1317 mfib/mfib_entry_src.c
1318 mfib/mfib_entry_src_rr.c
Damjan Marion4553c952018-08-26 11:04:40 +02001319 mfib/mfib_table.c
1320)
1321
Filip Tehlar79c27eb2019-03-07 00:30:03 -08001322list(APPEND VNET_MULTIARCH_SOURCES
1323 mfib/mfib_forward.c
1324)
1325
Damjan Marion4553c952018-08-26 11:04:40 +02001326list(APPEND VNET_HEADERS
1327 mfib/ip4_mfib.h
1328 mfib/mfib_types.h
1329 mfib/mfib_table.h
1330)
1331
Benoît Ganned39495d2019-07-25 14:14:03 +02001332list(APPEND VNET_API_FILES mfib/mfib_types.api)
1333
Damjan Marion4553c952018-08-26 11:04:40 +02001334##############################################################################
1335# Utilities
1336##############################################################################
1337
1338list(APPEND VNET_SOURCES
1339 util/radix.c
1340 util/refcount.c
Neale Rannsc8352bc2018-08-29 10:23:58 -07001341 util/throttle.c
Damjan Marion4553c952018-08-26 11:04:40 +02001342)
1343
Damjan Marionac5554c2018-08-30 22:56:59 +02001344list(APPEND VNET_HEADERS
1345 util/throttle.h
1346)
1347
Damjan Marion4553c952018-08-26 11:04:40 +02001348##############################################################################
1349# QoS
1350##############################################################################
1351
1352list(APPEND VNET_SOURCES
1353 qos/qos_types.c
1354 qos/qos_api.c
1355 qos/qos_egress_map.c
1356 qos/qos_record.c
Filip Tehlar0bddf7e2019-03-04 08:14:07 -08001357 qos/qos_record_node.c
Neale Ranns83832e72019-07-31 02:48:02 -07001358 qos/qos_store.c
1359 qos/qos_store_node.c
Damjan Marion4553c952018-08-26 11:04:40 +02001360 qos/qos_mark.c
Filip Tehlar0bddf7e2019-03-04 08:14:07 -08001361 qos/qos_mark_node.c
1362)
1363
1364list(APPEND VNET_MULTIARCH_SOURCES
1365 qos/qos_record_node.c
1366 qos/qos_mark_node.c
Damjan Marion4553c952018-08-26 11:04:40 +02001367)
1368
1369list(APPEND VNET_API_FILES qos/qos.api)
1370
1371##############################################################################
1372# BIER
1373##############################################################################
1374
1375list(APPEND VNET_SOURCES
1376 bier/bier_bit_string.c
1377 bier/bier_entry.c
1378 bier/bier_fmask.c
1379 bier/bier_fmask_db.c
1380 bier/bier_input.c
1381 bier/bier_lookup.c
1382 bier/bier_output.c
1383 bier/bier_table.c
1384 bier/bier_types.c
Damjan Marion4553c952018-08-26 11:04:40 +02001385 bier/bier_api.c
1386 bier/bier_drop.c
1387 bier/bier_update.c
1388 bier/bier_imp_node.c
1389 bier/bier_imp.c
1390 bier/bier_disp_entry.c
1391 bier/bier_disp_lookup_node.c
1392 bier/bier_disp_dispatch_node.c
1393 bier/bier_disp_table.c
1394 bier/bier_bift_table.c
1395)
1396
Filip Tehlara01e0322019-03-05 03:34:52 -08001397list(APPEND VNET_MULTIARCH_SOURCES
1398 bier/bier_disp_dispatch_node.c
1399 bier/bier_disp_lookup_node.c
1400 bier/bier_imp_node.c
1401)
1402
Damjan Marion4553c952018-08-26 11:04:40 +02001403list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001404 bier/bier_types.h
1405 bier/bier_entry.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001406 bier/bier_update.h
Damjan Marion4553c952018-08-26 11:04:40 +02001407 bier/bier_table.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001408)
1409
Damjan Marion4553c952018-08-26 11:04:40 +02001410list(APPEND VNET_API_FILES bier/bier.api)
Damjan Marion612dd6a2018-07-30 12:45:07 +02001411
Florin Coras41c9e042018-09-11 00:10:41 -07001412##############################################################################
Matus Fabianb4515b42018-11-19 04:25:32 -08001413# SYSLOG
1414##############################################################################
1415
1416list (APPEND VNET_SOURCES
1417 syslog/syslog_api.c
1418 syslog/syslog_udp.c
1419 syslog/syslog.c
1420)
1421
1422list(APPEND VNET_HEADERS
1423 syslog/syslog_udp.h
1424 syslog/syslog.h
1425)
1426
1427list(APPEND VNET_API_FILES syslog/syslog.api)
1428
1429##############################################################################
Neale Ranns03ce4622020-02-03 10:55:09 +00001430# Tunnel Endpoint Information Base
Neale Ranns5f8f6172019-04-18 10:23:56 +00001431##############################################################################
1432
1433list (APPEND VNET_SOURCES
Neale Ranns03ce4622020-02-03 10:55:09 +00001434 teib/teib_api.c
1435 teib/teib_cli.c
1436 teib/teib.c
Neale Ranns5f8f6172019-04-18 10:23:56 +00001437)
1438
1439list(APPEND VNET_HEADERS
Neale Ranns03ce4622020-02-03 10:55:09 +00001440 teib/teib.h
Neale Ranns5f8f6172019-04-18 10:23:56 +00001441)
1442
Neale Ranns03ce4622020-02-03 10:55:09 +00001443list(APPEND VNET_API_FILES teib/teib.api)
Neale Ranns5f8f6172019-04-18 10:23:56 +00001444
1445##############################################################################
Neale Rannscbe25aa2019-09-30 10:53:31 +00001446# ARP/ND
1447##############################################################################
1448
1449list (APPEND VNET_SOURCES
1450 arp/arp_api.c
1451 arp/arp.c
1452 arp/arp_proxy.c
1453)
1454
1455list(APPEND VNET_HEADERS
1456 arp/arp.h
1457)
1458
1459list(APPEND VNET_API_FILES arp/arp.api)
1460
1461list (APPEND VNET_SOURCES
1462 ip6-nd/ip6_mld.c
1463 ip6-nd/ip6_nd.c
1464 ip6-nd/ip6_nd_api.c
1465 ip6-nd/ip6_nd_proxy.c
Mohsin Kazmicebb4772021-04-07 19:50:35 +02001466 ip6-nd/ip6_nd_mirror_proxy.c
Neale Rannscbe25aa2019-09-30 10:53:31 +00001467 ip6-nd/ip6_ra.c
1468 ip6-nd/rd_cp.c
1469 ip6-nd/rd_cp_api.c
1470)
1471
1472list(APPEND VNET_HEADERS
1473 ip6-nd/ip6_nd.h
1474)
1475
1476list(APPEND VNET_API_FILES
1477 ip6-nd/ip6_nd.api
1478 ip6-nd/rd_cp.api
1479)
1480
1481##############################################################################
Florin Coras41c9e042018-09-11 00:10:41 -07001482# VNET Library
1483##############################################################################
1484
Damjan Marion4553c952018-08-26 11:04:40 +02001485add_vpp_library(vnet
1486 SOURCES ${VNET_SOURCES}
1487 MULTIARCH_SOURCES ${VNET_MULTIARCH_SOURCES}
1488 INSTALL_HEADERS ${VNET_HEADERS}
1489 API_FILES ${VNET_API_FILES}
Klement Sekeraefd4d702021-04-20 19:21:36 +02001490 LINK_LIBRARIES vppinfra svm vlib
Chris Lukec171d012020-01-15 20:30:04 -05001491 DEPENDS vpp_version_h api_headers
Damjan Marion612dd6a2018-07-30 12:45:07 +02001492)
Florin Coras41c9e042018-09-11 00:10:41 -07001493
1494##############################################################################
Yulong Peidb43bb62020-01-09 01:12:43 +08001495# vpp api test client library
1496##############################################################################
1497
1498add_vpp_library (vatclient
1499 SOURCES ip/ip_types_api.c
1500 DEPENDS api_headers
1501)
1502
Florin Coras248210c2021-09-14 18:54:45 -07001503add_vat_test_library(vnet
Filip Tehlarf0e67d72021-07-23 22:03:05 +00001504 interface_test.c
Florin Coras248210c2021-09-14 18:54:45 -07001505 ip/ip_test.c
1506 arp/arp_test.c
1507 ip6-nd/ip6_nd_test.c
Filip Tehlar850024b2021-09-02 10:32:40 +00001508 srmpls/sr_mpls_test.c
Filip Tehlarea257222021-10-18 09:02:37 +00001509 session/session_test.c
Filip Tehlar1b6fb402021-07-24 18:10:39 +00001510 l2/l2_test.c
Filip Tehlar0ad06082021-07-25 14:38:45 +00001511 ipsec/ipsec_test.c
Florin Coras248210c2021-09-14 18:54:45 -07001512)
1513
Yulong Peidb43bb62020-01-09 01:12:43 +08001514##############################################################################
Ole Troandf87f802020-11-18 19:17:48 +01001515# VAT2 plugins
1516##############################################################################
1517add_vpp_test_library(vnet
1518 ${VNET_API_FILES}
1519)
1520
1521##############################################################################