blob: 0bc55f9580bf97056d859f2ac6657c5c89bbdc6f [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
14add_definitions (-DWITH_LIBSSL=1)
Damjan Mariond16004d2018-08-26 10:14:52 +020015include_directories(${OPENSSL_INCLUDE_DIR})
16
Damjan Marion4553c952018-08-26 11:04:40 +020017unset(VNET_SOURCES)
18unset(VNET_HEADERS)
19unset(VNET_API_FILES)
20unset(VNET_MULTIARCH_SOURCES)
21
22##############################################################################
23# Generic stuff
24##############################################################################
25list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +020026 buffer.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020027 config.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020028 devices/devices.c
29 devices/netlink.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020030 flow/flow.c
31 flow/flow_cli.c
Chenmin Sund0236f72020-07-27 17:54:40 +080032 flow/flow_api.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020033 handoff.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020034 interface.c
Damjan Marion4553c952018-08-26 11:04:40 +020035 interface_api.c
Damjan Marion612dd6a2018-07-30 12:45:07 +020036 interface_cli.c
37 interface_format.c
38 interface_output.c
39 interface_stats.c
Damjan Marion4553c952018-08-26 11:04:40 +020040 misc.c
Damjan Marion4553c952018-08-26 11:04:40 +020041)
42
Filip Tehlar62668772019-03-04 03:33:32 -080043list(APPEND VNET_MULTIARCH_SOURCES
44 interface_output.c
45 interface_stats.c
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -070046 handoff.c
Filip Tehlar62668772019-03-04 03:33:32 -080047)
48
Damjan Marion4553c952018-08-26 11:04:40 +020049list(APPEND VNET_HEADERS
50 api_errno.h
51 buffer.h
52 config.h
53 devices/devices.h
54 devices/netlink.h
55 flow/flow.h
56 global_funcs.h
57 handoff.h
58 interface.h
59 interface_funcs.h
Dave Barach1bd2c012020-04-12 08:31:39 -040060 interface_output.h
Damjan Marion4553c952018-08-26 11:04:40 +020061 ip/ip4_to_ip6.h
62 ip/ip6_to_ip4.h
Benoît Ganne09267f72019-05-17 14:24:17 +020063 ip/ip_types_api.h
Damjan Marion4553c952018-08-26 11:04:40 +020064 l3_types.h
65 plugin/plugin.h
66 pipeline.h
Damjan Marion4553c952018-08-26 11:04:40 +020067 vnet.h
68 vnet_all_api_h.h
69 vnet_msg_enum.h
70 util/radix.h
71 util/refcount.h
IJsbrand Wijnands724c8052020-03-05 11:29:23 -080072 format_fns.h
73 ip/ip_format_fns.h
74 ethernet/ethernet_format_fns.h
Damjan Marion4553c952018-08-26 11:04:40 +020075)
76
Benoît Ganne09267f72019-05-17 14:24:17 +020077list(APPEND VNET_API_FILES
78 interface.api
Benoît Ganned39495d2019-07-25 14:14:03 +020079 interface_types.api
Benoît Ganne09267f72019-05-17 14:24:17 +020080 ip/ip_types.api
Chenmin Sund0236f72020-07-27 17:54:40 +080081 flow/flow_types.api
82 flow/flow.api
Benoît Ganne09267f72019-05-17 14:24:17 +020083)
Damjan Marion4553c952018-08-26 11:04:40 +020084
85##############################################################################
86# Policer infra
87##############################################################################
88list(APPEND VNET_SOURCES
89 policer/node_funcs.c
90 policer/policer.c
91 policer/xlate.c
92 policer/policer_api.c
93)
94
Filip Tehlar30d93482019-03-06 04:28:32 -080095list(APPEND VNET_MULTIARCH_SOURCES
96 policer/node_funcs.c
97)
98
Damjan Marion4553c952018-08-26 11:04:40 +020099list(APPEND VNET_HEADERS
100 policer/police.h
101 policer/policer.h
102 policer/xlate.h
103)
104
Jakub Grajciarcd01fb42020-03-02 13:16:53 +0100105list(APPEND VNET_API_FILES
106 policer/policer.api
107 policer/policer_types.api
108)
Damjan Marion4553c952018-08-26 11:04:40 +0200109
110##############################################################################
Dave Barachac0326f2020-07-14 18:30:05 -0400111# Binary API compatibility until vpp 20.12, see the ADL plugin...
Damjan Marion4553c952018-08-26 11:04:40 +0200112##############################################################################
Dave Barachac0326f2020-07-14 18:30:05 -0400113
Damjan Marion4553c952018-08-26 11:04:40 +0200114list(APPEND VNET_SOURCES
Damjan Marion4553c952018-08-26 11:04:40 +0200115 cop/cop_api.c
116)
117
Damjan Marion4553c952018-08-26 11:04:40 +0200118list(APPEND VNET_API_FILES cop/cop.api)
119
120##############################################################################
121# Layer 2 protocols go here
122##############################################################################
123
124##############################################################################
125# Layer 2 protocol: Ethernet
126##############################################################################
127list(APPEND VNET_SOURCES
Neale Rannscbe25aa2019-09-30 10:53:31 +0000128 ethernet/arp_packet.c
Neale Rannsde5b08f2018-08-29 06:37:18 -0700129 ethernet/ethernet_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200130 ethernet/format.c
131 ethernet/init.c
132 ethernet/interface.c
Neale Rannsde5b08f2018-08-29 06:37:18 -0700133 ethernet/mac_address.c
Damjan Marion4553c952018-08-26 11:04:40 +0200134 ethernet/node.c
135 ethernet/pg.c
136 ethernet/sfp.c
137 ethernet/p2p_ethernet.c
138 ethernet/p2p_ethernet_input.c
139 ethernet/p2p_ethernet_api.c
140)
141
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -0700142list(APPEND VNET_MULTIARCH_SOURCES
143 ethernet/node.c
144 ethernet/p2p_ethernet_input.c
145)
Damjan Marion4553c952018-08-26 11:04:40 +0200146
147list(APPEND VNET_HEADERS
148 ethernet/error.def
149 ethernet/ethernet.h
Jon Loeliger330bf932018-11-28 13:51:42 -0600150 ethernet/mac_address.h
Damjan Marion4553c952018-08-26 11:04:40 +0200151 ethernet/packet.h
152 ethernet/types.def
153 ethernet/sfp.h
154 ethernet/p2p_ethernet.h
Neale Rannscbe25aa2019-09-30 10:53:31 +0000155 ethernet/arp_packet.h
Damjan Marion4553c952018-08-26 11:04:40 +0200156)
157
Benoît Ganned39495d2019-07-25 14:14:03 +0200158list(APPEND VNET_API_FILES
159 ethernet/p2p_ethernet.api
160 ethernet/ethernet_types.api)
Damjan Marion4553c952018-08-26 11:04:40 +0200161
162##############################################################################
163# Layer 2 protocol: Ethernet bridging
164##############################################################################
165list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200166 l2/feat_bitmap.c
167 l2/l2_api.c
Neale Rannscbe25aa2019-09-30 10:53:31 +0000168 l2/l2_arp_term.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200169 l2/l2_bd.c
170 l2/l2_bvi.c
Neale Ranns192b13f2019-03-15 02:16:20 -0700171 l2/l2_bvi_node.c
Damjan Marion4553c952018-08-26 11:04:40 +0200172 l2/l2_input_classify.c
173 l2/l2_output_classify.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200174 l2/l2_efp_filter.c
175 l2/l2_fib.c
176 l2/l2_flood.c
177 l2/l2_fwd.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200178 l2/l2_input.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200179 l2/l2_input_vtr.c
180 l2/l2_learn.c
181 l2/l2_output.c
Damjan Marion4553c952018-08-26 11:04:40 +0200182 l2/l2_in_out_acl.c
Andrew Yourtchenkoa23cade2018-10-06 09:18:00 +0200183 l2/l2_in_out_feat_arc.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200184 l2/l2_patch.c
185 l2/l2_rw.c
Neale Rannsb4743802018-09-05 09:13:57 -0700186 l2/l2_uu_fwd.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200187 l2/l2_vtr.c
188 l2/l2_xcrw.c
Damjan Marion4553c952018-08-26 11:04:40 +0200189)
190
Neale Rannsc25eb452018-09-12 06:53:03 -0400191list(APPEND VNET_MULTIARCH_SOURCES
Neale Ranns192b13f2019-03-15 02:16:20 -0700192 l2/l2_bvi_node.c
Neale Rannsc25eb452018-09-12 06:53:03 -0400193 l2/l2_fwd.c
194 l2/l2_learn.c
195 l2/l2_output.c
Damjan Marionc3baf622018-11-06 13:33:27 +0100196 l2/l2_patch.c
Filip Tehlar44f0f712019-03-11 04:26:37 -0700197 l2/l2_in_out_feat_arc.c
198 l2/l2_input_classify.c
199 l2/l2_input.c
200 l2/l2_output_classify.c
201 l2/l2_flood.c
202 l2/l2_uu_fwd.c
203 l2/l2_efp_filter.c
204 l2/l2_rw.c
205 l2/l2_xcrw.c
206 l2/l2_in_out_acl.c
207 l2/l2_input_vtr.c
Neale Rannsc25eb452018-09-12 06:53:03 -0400208)
Neale Rannseb1525f2018-09-09 04:41:02 -0400209
Damjan Marion4553c952018-08-26 11:04:40 +0200210list(APPEND VNET_HEADERS
211 l2/feat_bitmap.h
212 l2/l2_input.h
213 l2/l2_output.h
214 l2/l2_vtr.h
215 l2/l2_input_vtr.h
216 l2/l2_efp_filter.h
217 l2/l2_fwd.h
218 l2/l2_bd.h
219 l2/l2_bvi.h
220 l2/l2_flood.h
221 l2/l2_fib.h
222 l2/l2_rw.h
223 l2/l2_xcrw.h
224 l2/l2_classify.h
225)
226
227list(APPEND VNET_API_FILES l2/l2.api)
228
229##############################################################################
230# Layer 2 protocol: SRP
231##############################################################################
232list(APPEND VNET_SOURCES
233 srp/format.c
234 srp/interface.c
235 srp/node.c
236 srp/pg.c
237)
238
239list(APPEND VNET_HEADERS
240 srp/packet.h
241 srp/srp.h
242)
243
244##############################################################################
245# Layer 2 protocol: PPP
246##############################################################################
247list(APPEND VNET_SOURCES
248 ppp/node.c
249 ppp/pg.c
250 ppp/ppp.c
251)
252
253list(APPEND VNET_HEADERS
254 ppp/error.def
255 ppp/ppp.h
256 ppp/packet.h
257)
258
259##############################################################################
260# Layer 2 protocol: HDLC
261##############################################################################
262list(APPEND VNET_SOURCES
263 hdlc/node.c
264 hdlc/pg.c
265 hdlc/hdlc.c
266)
267
268list(APPEND VNET_HEADERS
269 hdlc/error.def
270 hdlc/hdlc.h
271 hdlc/packet.h
272)
273
274##############################################################################
275# Layer 2 protocol: LLC
276##############################################################################
277list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200278 llc/llc.c
279 llc/node.c
280 llc/pg.c
Damjan Marion4553c952018-08-26 11:04:40 +0200281)
282
283list(APPEND VNET_HEADERS
284 llc/llc.h
285)
286
287##############################################################################
288# Layer 2 protocol: SNAP
289##############################################################################
290list(APPEND VNET_SOURCES
291 snap/snap.c
292 snap/node.c
293 snap/pg.c
294)
295
296list(APPEND VNET_HEADERS
297 snap/snap.h
298)
299
300##############################################################################
301# Layer 2 / vxlan
302##############################################################################
303list(APPEND VNET_SOURCES
304 vxlan/vxlan.c
305 vxlan/encap.c
306 vxlan/decap.c
307 vxlan/vxlan_api.c
308)
309
Filip Tehlare1714d32019-03-05 03:01:43 -0800310list(APPEND VNET_MULTIARCH_SOURCES
311 vxlan/encap.c
312)
313
Damjan Marion4553c952018-08-26 11:04:40 +0200314list(APPEND VNET_HEADERS
315 vxlan/vxlan.h
316 vxlan/vxlan_packet.h
317 vxlan/vxlan_error.def
318)
319
Eyal Baria5679e82018-08-26 15:20:07 +0300320list(APPEND VNET_MULTIARCH_SOURCES vxlan/decap.c)
321
Damjan Marion4553c952018-08-26 11:04:40 +0200322list(APPEND VNET_API_FILES vxlan/vxlan.api)
323
324##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200325# Layer 2 / Bonding
326##############################################################################
327list(APPEND VNET_SOURCES
328 bonding/cli.c
329 bonding/node.c
330 bonding/device.c
331 bonding/bond_api.c
332)
333
334list(APPEND VNET_HEADERS
335 bonding/node.h
336)
337
Damjan Marioncefe1342018-09-21 18:11:33 +0200338list(APPEND VNET_MULTIARCH_SOURCES bonding/node.c bonding/device.c)
Damjan Marion4553c952018-08-26 11:04:40 +0200339list(APPEND VNET_API_FILES bonding/bond.api)
340
341##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200342# Layer 2/3 "classify"
343##############################################################################
344list(APPEND VNET_SOURCES
345 classify/vnet_classify.c
Dave Barach9137e542019-09-13 17:47:50 -0400346 classify/trace_classify.h
Damjan Marion4553c952018-08-26 11:04:40 +0200347 classify/ip_classify.c
348 classify/in_out_acl.c
349 classify/policer_classify.c
350 classify/flow_classify.c
351 classify/flow_classify_node.c
352 classify/vnet_classify.h
353 classify/classify_api.c
354)
355
Filip Tehlare8cb5212019-03-06 04:50:34 -0800356list(APPEND VNET_MULTIARCH_SOURCES
357 classify/ip_classify.c
358 classify/flow_classify_node.c
359)
360
Damjan Marion4553c952018-08-26 11:04:40 +0200361list(APPEND VNET_HEADERS
362 classify/vnet_classify.h
Dave Barach9137e542019-09-13 17:47:50 -0400363 classify/trace_classify.h
Damjan Marion4553c952018-08-26 11:04:40 +0200364 classify/in_out_acl.h
365 classify/policer_classify.h
366 classify/flow_classify.h
367)
368
369list(APPEND VNET_API_FILES classify/classify.api)
370
371##############################################################################
372# Layer 3 protocols go here
373##############################################################################
374
375##############################################################################
376# Layer 3 protocol: IP v4/v6
377##############################################################################
378list(APPEND VNET_SOURCES
379 ip/format.c
380 ip/icmp4.c
381 ip/icmp6.c
382 ip/ip46_cli.c
383 ip/ip_types_api.c
Neale Rannscbe25aa2019-09-30 10:53:31 +0000384 ip/ip46_address.c
Damjan Marion4553c952018-08-26 11:04:40 +0200385 ip/ip4_format.c
386 ip/ip4_forward.c
387 ip/ip4_punt_drop.c
388 ip/ip4_input.c
389 ip/ip4_options.c
390 ip/ip4_mtrie.c
391 ip/ip4_pg.c
392 ip/ip4_source_and_port_range_check.c
Klement Sekera896c8962019-06-24 11:52:49 +0000393 ip/reass/ip4_full_reass.c
Klement Sekerade34c352019-06-25 11:19:22 +0000394 ip/reass/ip4_sv_reass.c
Damjan Marion4553c952018-08-26 11:04:40 +0200395 ip/ip6_format.c
396 ip/ip6_forward.c
397 ip/ip6_ll_table.c
398 ip/ip6_ll_types.c
399 ip/ip6_punt_drop.c
400 ip/ip6_hop_by_hop.c
401 ip/ip6_input.c
Neale Rannscbe25aa2019-09-30 10:53:31 +0000402 ip/ip6_link.c
Damjan Marion4553c952018-08-26 11:04:40 +0200403 ip/ip6_pg.c
Klement Sekera896c8962019-06-24 11:52:49 +0000404 ip/reass/ip6_full_reass.c
Klement Sekerade34c352019-06-25 11:19:22 +0000405 ip/reass/ip6_sv_reass.c
Damjan Marion4553c952018-08-26 11:04:40 +0200406 ip/ip_api.c
407 ip/ip_checksum.c
408 ip/ip_frag.c
409 ip/ip.c
Neale Ranns59f71132020-04-08 12:19:38 +0000410 ip/ip_interface.c
Damjan Marion4553c952018-08-26 11:04:40 +0200411 ip/ip_init.c
412 ip/ip_in_out_acl.c
Neale Ranns92207752019-06-03 13:21:40 +0000413 ip/ip_punt_drop.c
Neale Rannsea93e482019-11-12 17:16:47 +0000414 ip/ip_types.c
Damjan Marion4553c952018-08-26 11:04:40 +0200415 ip/lookup.c
Damjan Marion4553c952018-08-26 11:04:40 +0200416 ip/punt_api.c
417 ip/punt.c
Neale Ranns50f0ac02019-05-15 02:13:37 -0700418 ip/punt_node.c
Nick Zavaritsky27518c22020-02-27 15:54:58 +0000419 ip/vtep.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
435)
436
Damjan Marion4553c952018-08-26 11:04:40 +0200437list(APPEND VNET_HEADERS
438 ip/format.h
439 ip/icmp46_packet.h
440 ip/icmp4.h
441 ip/icmp6.h
442 ip/igmp_packet.h
443 ip/ip4_error.h
444 ip/ip4.h
445 ip/ip4_mtrie.h
446 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
452 ip/ip6_packet.h
Damjan Marion4553c952018-08-26 11:04:40 +0200453 ip/ip.h
Steven Luongc3ed1c92020-07-27 10:06:58 -0700454 ip/ip_table.h
Neale Ranns59f71132020-04-08 12:19:38 +0000455 ip/ip_interface.h
Damjan Marion4553c952018-08-26 11:04:40 +0200456 ip/ip_packet.h
457 ip/ip_source_and_port_range_check.h
Neale Rannsea93e482019-11-12 17:16:47 +0000458 ip/ip_types.h
Damjan Marion4553c952018-08-26 11:04:40 +0200459 ip/lookup.h
460 ip/ports.def
461 ip/protocols.def
462 ip/punt_error.def
463 ip/punt.h
464)
465
466list(APPEND VNET_API_FILES
467 ip/ip.api
Damjan Marion4553c952018-08-26 11:04:40 +0200468 ip/punt.api
469)
470
Damjan Marion38173502019-02-13 19:30:09 +0100471list(APPEND VNET_MULTIARCH_SOURCES
472 ip/ip4_forward.c
473 ip/ip6_forward.c
474 ip/ip4_input.c
475)
Damjan Marion4553c952018-08-26 11:04:40 +0200476
477##############################################################################
Neale Rannscbe25aa2019-09-30 10:53:31 +0000478# Layer 3 neighbours
Damjan Marion4553c952018-08-26 11:04:40 +0200479##############################################################################
480list(APPEND VNET_SOURCES
Neale Rannscbe25aa2019-09-30 10:53:31 +0000481 ip-neighbor/ip_neighbor.c
482 ip-neighbor/ip_neighbor_api.c
483 ip-neighbor/ip_neighbor_dp.c
484 ip-neighbor/ip_neighbor_types.c
485 ip-neighbor/ip_neighbor_watch.c
486 ip-neighbor/ip4_neighbor.c
487 ip-neighbor/ip6_neighbor.c
Damjan Marion4553c952018-08-26 11:04:40 +0200488)
489
490list(APPEND VNET_HEADERS
Neale Rannscbe25aa2019-09-30 10:53:31 +0000491 ip-neighbor/ip_neighbor.h
492 ip-neighbor/ip_neighbor_types.h
493)
494
495list(APPEND VNET_API_FILES
496 ip-neighbor/ip_neighbor.api
Damjan Marion4553c952018-08-26 11:04:40 +0200497)
498
499##############################################################################
500# Bidirectional Forwarding Detection
501##############################################################################
502
503list(APPEND VNET_HEADERS
504 bfd/bfd_protocol.h
505 bfd/bfd_main.h
506 bfd/bfd_api.h
507 bfd/bfd_udp.h
508)
509
510list(APPEND VNET_SOURCES
511 bfd/bfd_api.h
512 bfd/bfd_udp.c
513 bfd/bfd_main.c
514 bfd/bfd_protocol.c
515 bfd/bfd_cli.c
516 bfd/bfd_api.c
517)
518
519list(APPEND VNET_API_FILES bfd/bfd.api)
520
521##############################################################################
Damjan Marion91f17dc2019-03-18 18:59:25 +0100522# Crypto
523##############################################################################
524
525list(APPEND VNET_SOURCES
526 crypto/cli.c
527 crypto/crypto.c
528 crypto/format.c
Fan Zhangf5395782020-04-29 14:00:03 +0100529 crypto/node.c
Nathan Skrzypczak0c936b12020-08-31 15:33:57 +0200530 crypto/crypto_api.c
Damjan Marion91f17dc2019-03-18 18:59:25 +0100531)
532
533list(APPEND VNET_HEADERS
534 crypto/crypto.h
535)
536
Fan Zhangf5395782020-04-29 14:00:03 +0100537list(APPEND VNET_MULTIARCH_SOURCES crypto/node.c)
538
Nathan Skrzypczak0c936b12020-08-31 15:33:57 +0200539list(APPEND VNET_API_FILES crypto/crypto.api)
540
Damjan Marion91f17dc2019-03-18 18:59:25 +0100541##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200542# Layer 3 protocol: IPSec
543##############################################################################
544list(APPEND VNET_SOURCES
545 ipsec/ipsec.c
546 ipsec/ipsec_cli.c
547 ipsec/ipsec_format.c
Neale Rannsf62a8c02019-04-02 08:13:33 +0000548 ipsec/ipsec_handoff.c
Damjan Marion4553c952018-08-26 11:04:40 +0200549 ipsec/ipsec_input.c
Neale Rannsdd4ccf22020-06-30 07:47:14 +0000550 ipsec/ipsec_itf.c
Neale Rannsb71fa752019-04-04 12:43:36 +0000551 ipsec/ipsec_punt.c
Neale Ranns999c8ee2019-02-01 03:31:24 -0800552 ipsec/ipsec_sa.c
553 ipsec/ipsec_spd.c
554 ipsec/ipsec_spd_policy.c
Neale Rannsc87b66c2019-02-07 07:26:12 -0800555 ipsec/ipsec_tun.c
556 ipsec/ipsec_tun_in.c
Damjan Marion4553c952018-08-26 11:04:40 +0200557 ipsec/esp_format.c
558 ipsec/esp_encrypt.c
559 ipsec/esp_decrypt.c
560 ipsec/ah_decrypt.c
561 ipsec/ah_encrypt.c
Damjan Marion4553c952018-08-26 11:04:40 +0200562 ipsec/ipsec_api.c
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +0530563 ipsec/ipsec_types_api.c
Damjan Marion4553c952018-08-26 11:04:40 +0200564)
565
Klement Sekerab8f35442018-10-29 13:38:19 +0100566list(APPEND VNET_MULTIARCH_SOURCES
567 ipsec/esp_encrypt.c
568 ipsec/esp_decrypt.c
569 ipsec/ah_decrypt.c
570 ipsec/ah_encrypt.c
Neale Rannsf62a8c02019-04-02 08:13:33 +0000571 ipsec/ipsec_handoff.c
Kingwel Xiec69ac312019-02-04 01:49:29 -0800572 ipsec/ipsec_output.c
573 ipsec/ipsec_input.c
Neale Rannsc87b66c2019-02-07 07:26:12 -0800574 ipsec/ipsec_tun_in.c
Klement Sekerab8f35442018-10-29 13:38:19 +0100575)
576
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +0530577list(APPEND VNET_API_FILES ipsec/ipsec_types.api)
Damjan Marion4553c952018-08-26 11:04:40 +0200578list(APPEND VNET_API_FILES ipsec/ipsec.api)
579
580list(APPEND VNET_SOURCES
581 ipsec/ipsec_output.c
582)
583
584list(APPEND VNET_HEADERS
585 ipsec/ipsec.h
Neale Ranns918c1612019-02-21 23:34:59 -0800586 ipsec/ipsec_spd.h
587 ipsec/ipsec_spd_policy.h
588 ipsec/ipsec_sa.h
Neale Ranns12989b52019-09-26 16:20:19 +0000589 ipsec/ipsec_tun.h
Prashant Maheshwaridbf68c92019-11-14 12:42:59 +0530590 ipsec/ipsec_types_api.h
Neale Rannsba05e5d2019-06-07 05:17:07 -0700591 ipsec/ipsec_punt.h
Damjan Marion4553c952018-08-26 11:04:40 +0200592 ipsec/esp.h
593 ipsec/ah.h
Damjan Marion4553c952018-08-26 11:04:40 +0200594)
595
596##############################################################################
597# Layer 3 protocol: osi
598##############################################################################
599list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200600 osi/node.c
601 osi/osi.c
602 osi/pg.c
Damjan Marion4553c952018-08-26 11:04:40 +0200603)
604
605list(APPEND VNET_HEADERS
606 osi/osi.h
607)
608
609##############################################################################
610# Layer 4 protocol: tcp
611##############################################################################
612list(APPEND VNET_SOURCES
613 tcp/tcp_api.c
614 tcp/tcp_format.c
615 tcp/tcp_pg.c
616 tcp/tcp_syn_filter4.c
617 tcp/tcp_output.c
618 tcp/tcp_input.c
619 tcp/tcp_newreno.c
Florin Coras52814732019-06-12 15:38:19 -0700620 tcp/tcp_bt.c
Florin Coras999840c2020-03-18 20:31:34 +0000621 tcp/tcp_cli.c
622 tcp/tcp_cubic.c
Florin Corasa436a422019-08-20 07:09:31 -0700623 tcp/tcp_debug.c
Florin Coras999840c2020-03-18 20:31:34 +0000624 tcp/tcp_sack.c
Damjan Marion4553c952018-08-26 11:04:40 +0200625 tcp/tcp.c
626)
627
Filip Tehlare275bed2019-03-06 00:06:56 -0800628list(APPEND VNET_MULTIARCH_SOURCES
629 tcp/tcp_input.c
630 tcp/tcp_output.c
631 tcp/tcp_syn_filter4.c
632)
633
Damjan Marion4553c952018-08-26 11:04:40 +0200634list(APPEND VNET_HEADERS
635 tcp/tcp_packet.h
636 tcp/tcp_timer.h
Florin Coras999840c2020-03-18 20:31:34 +0000637 tcp/tcp_bt.h
638 tcp/tcp_cc.h
Damjan Marion4553c952018-08-26 11:04:40 +0200639 tcp/tcp_debug.h
Florin Coras999840c2020-03-18 20:31:34 +0000640 tcp/tcp_inlines.h
641 tcp/tcp_sack.h
642 tcp/tcp_types.h
Damjan Marion4553c952018-08-26 11:04:40 +0200643 tcp/tcp.h
644 tcp/tcp_error.def
645)
646
647list(APPEND VNET_API_FILES tcp/tcp.api)
648
649##############################################################################
650# Layer 4 protocol: udp
651##############################################################################
652list(APPEND VNET_SOURCES
653 udp/udp.c
Florin Corasc98ef752020-04-07 17:30:13 +0000654 udp/udp_cli.c
Damjan Marion4553c952018-08-26 11:04:40 +0200655 udp/udp_input.c
656 udp/udp_format.c
657 udp/udp_local.c
658 udp/udp_pg.c
659 udp/udp_encap_node.c
660 udp/udp_encap.c
661 udp/udp_api.c
662)
663
Filip Tehlar2c49ffe2019-03-06 07:16:08 -0800664list(APPEND VNET_MULTIARCH_SOURCES
665 udp/udp_local.c
666 udp/udp_encap_node.c
667)
668
Damjan Marion4553c952018-08-26 11:04:40 +0200669list(APPEND VNET_HEADERS
670 udp/udp_error.def
671 udp/udp.h
672 udp/udp_packet.h
673)
674
675list(APPEND VNET_API_FILES udp/udp.api)
676
677##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200678# Tunnel protocol: gre
679##############################################################################
680list(APPEND VNET_SOURCES
681 gre/gre.c
682 gre/node.c
683 gre/interface.c
684 gre/pg.c
685 gre/gre_api.c
686)
687
Filip Tehlar0fce11f2019-03-04 09:21:59 -0800688list(APPEND VNET_MULTIARCH_SOURCES
689 gre/node.c
690 gre/gre.c
691)
692
Damjan Marion4553c952018-08-26 11:04:40 +0200693list(APPEND VNET_HEADERS
694 gre/gre.h
695 gre/packet.h
696 gre/error.def
697)
698
699list(APPEND VNET_API_FILES gre/gre.api)
700
701##############################################################################
702# Tunnel protocol: ipip
703##############################################################################
704list(APPEND VNET_SOURCES
705 ipip/ipip.c
706 ipip/node.c
707 ipip/sixrd.c
708 ipip/ipip_api.c
709 ipip/ipip_cli.c
710)
711
Filip Tehlar7a542f42019-03-05 04:50:23 -0800712list(APPEND VNET_MULTIARCH_SOURCES
713 ipip/node.c
714)
715
Damjan Marion4553c952018-08-26 11:04:40 +0200716list(APPEND VNET_HEADERS
717 ipip/ipip.h
718)
719
Neale Ranns95346962019-11-25 13:04:44 +0000720list(APPEND VNET_API_FILES
Neale Ranns95346962019-11-25 13:04:44 +0000721 ipip/ipip.api
722)
Damjan Marion4553c952018-08-26 11:04:40 +0200723
724##############################################################################
Neale Ranns59ff9182019-12-29 23:55:18 +0000725# Tunnel infra
726##############################################################################
727list(APPEND VNET_SOURCES
728 tunnel/tunnel.c
729 tunnel/tunnel_types_api.c
730)
731
732list(APPEND VNET_API_FILES
733 tunnel/tunnel_types.api
734)
735
736list(APPEND VNET_HEADERS
737 tunnel/tunnel.h
Neale Rannse5b94dd2019-12-31 05:13:14 +0000738 tunnel/tunnel_dp.h
Neale Ranns59ff9182019-12-29 23:55:18 +0000739)
740
741##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200742# Tunnel protocol: gre+mpls
743##############################################################################
744list(APPEND VNET_SOURCES
745 mpls/mpls.c
746 mpls/mpls_lookup.c
747 mpls/mpls_output.c
748 mpls/mpls_features.c
749 mpls/mpls_input.c
750 mpls/interface.c
751 mpls/mpls_tunnel.c
752 mpls/pg.c
753 mpls/mpls_api.c
754)
755
Filip Tehlar17fcd982019-03-05 04:32:11 -0800756list(APPEND VNET_MULTIARCH_SOURCES
757 mpls/mpls_output.c
758 mpls/mpls_input.c
759 mpls/mpls_lookup.c
760 mpls/mpls_features.c
761)
762
Damjan Marion4553c952018-08-26 11:04:40 +0200763list(APPEND VNET_HEADERS
764 mpls/mpls.h
765 mpls/mpls_types.h
766 mpls/mpls_tunnel.h
767 mpls/packet.h
768 mpls/error.def
769)
770
771list(APPEND VNET_API_FILES mpls/mpls.api)
772
773##############################################################################
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200774# Tunnel protocol: vxlan-gbp
775##############################################################################
776list(APPEND VNET_SOURCES
777 vxlan-gbp/decap.c
778 vxlan-gbp/encap.c
779 vxlan-gbp/vxlan_gbp_api.c
780 vxlan-gbp/vxlan_gbp.c
Neale Ranns93cc3ee2018-10-10 07:22:51 -0700781 vxlan-gbp/vxlan_gbp_packet.c
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200782)
783
Filip Tehlare1714d32019-03-05 03:01:43 -0800784list (APPEND VNET_MULTIARCH_SOURCES
785 vxlan-gbp/decap.c
786 vxlan-gbp/encap.c
787)
788
Mohsin Kazmi61b94c62018-08-20 18:32:39 +0200789list(APPEND VNET_HEADERS
790 vxlan-gbp/vxlan_gbp.h
791 vxlan-gbp/vxlan_gbp_packet.h
792 vxlan-gbp/vxlan_gbp_error.def
793)
794
795list(APPEND VNET_API_FILES vxlan-gbp/vxlan_gbp.api)
796
797##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200798# Tunnel protocol: vxlan-gpe
799##############################################################################
800
801list(APPEND VNET_SOURCES
802 vxlan-gpe/vxlan_gpe.c
803 vxlan-gpe/encap.c
804 vxlan-gpe/decap.c
805 vxlan-gpe/vxlan_gpe_api.c
806)
807
Filip Tehlare1714d32019-03-05 03:01:43 -0800808list (APPEND VNET_MULTIARCH_SOURCES
809 vxlan-gpe/decap.c
810)
811
Damjan Marion4553c952018-08-26 11:04:40 +0200812list(APPEND VNET_HEADERS
813 vxlan-gpe/vxlan_gpe.h
814 vxlan-gpe/vxlan_gpe_packet.h
815 vxlan-gpe/vxlan_gpe_error.def
816)
817
818list(APPEND VNET_API_FILES vxlan-gpe/vxlan_gpe.api)
819
820##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200821# ipv6 segment routing
822##############################################################################
823
824list(APPEND VNET_SOURCES
825 srv6/sr.c
826 srv6/sr_localsid.c
827 srv6/sr_policy_rewrite.c
828 srv6/sr_steering.c
829 srv6/sr_api.c
830)
831
832list(APPEND VNET_HEADERS
833 srv6/sr_packet.h
834 srv6/sr.h
835)
836
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100837list(APPEND VNET_API_FILES
838 srv6/sr.api
839 srv6/sr_types.api
840)
Damjan Marion4553c952018-08-26 11:04:40 +0200841
842##############################################################################
843# mpls segment routing
844##############################################################################
845
846list(APPEND VNET_SOURCES
847 srmpls/sr_mpls_policy.c
848 srmpls/sr_mpls_steering.c
849 srmpls/sr_mpls_api.c
850)
851
852list(APPEND VNET_HEADERS
853 srmpls/sr_mpls.h
854)
855
Jakub Grajciar0938eba2020-03-04 13:08:27 +0100856list(APPEND VNET_API_FILES
857 srmpls/sr_mpls.api
858 srv6/sr_types.api
859)
Damjan Marion4553c952018-08-26 11:04:40 +0200860
861##############################################################################
862# IPFIX / netflow v10
863##############################################################################
864list(APPEND VNET_SOURCES
865 ipfix-export/flow_report.c
866 ipfix-export/flow_api.c
867)
868
869list(APPEND VNET_HEADERS
870 ipfix-export/flow_report.h
871 ipfix-export/ipfix_info_elements.h
872 ipfix-export/ipfix_packet.h
873)
874
875list(APPEND VNET_API_FILES ipfix-export/ipfix_export.api)
876
877##############################################################################
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200878# GSO
879##############################################################################
880list(APPEND VNET_SOURCES
881 gso/cli.c
882 gso/gso.c
883 gso/gso_api.c
884 gso/node.c
885)
886
887list(APPEND VNET_HEADERS
Mohsin Kazmif382b062020-08-11 15:00:44 +0200888 gso/gro.h
889 gso/gro_func.h
Mohsin Kazmi0b042092020-04-17 16:50:56 +0000890 gso/hdr_offset_parser.h
Mohsin Kazmi29467b52019-10-08 19:42:38 +0200891 gso/gso.h
892)
893
894list(APPEND VNET_API_FILES
895 gso/gso.api
896)
897
898##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200899# IPFIX classify code
900##############################################################################
901
902list(APPEND VNET_SOURCES
903 ipfix-export/flow_report_classify.c
904)
905
906list(APPEND VNET_HEADERS
907 ipfix-export/flow_report_classify.h
908)
909
910##############################################################################
911# lawful intercept
912##############################################################################
913
914list(APPEND VNET_SOURCES
915 lawful-intercept/lawful_intercept.c
916 lawful-intercept/node.c
917)
918
Filip Tehlarc3a0e8d2019-03-11 05:53:35 -0700919list(APPEND VNET_MULTIARCH_SOURCES
920 lawful-intercept/node.c
921)
922
Damjan Marion4553c952018-08-26 11:04:40 +0200923list(APPEND VNET_HEADERS
924 lawful-intercept/lawful_intercept.h
925)
926
927##############################################################################
928# SPAN (port mirroring)
929##############################################################################
930
931list(APPEND VNET_SOURCES
932 span/span_api.c
933 span/span.c
934 span/node.c
935)
936
Filip Tehlara79271f2019-03-05 03:46:40 -0800937list(APPEND VNET_MULTIARCH_SOURCES
938 span/node.c
939)
940
Damjan Marion4553c952018-08-26 11:04:40 +0200941list(APPEND VNET_HEADERS
942 span/span.h
943)
944
945list(APPEND VNET_API_FILES span/span.api)
946
947##############################################################################
Damjan Marion4553c952018-08-26 11:04:40 +0200948# Packet generator
949##############################################################################
950
951list(APPEND VNET_SOURCES
Damjan Marion612dd6a2018-07-30 12:45:07 +0200952 pg/cli.c
953 pg/edit.c
954 pg/init.c
955 pg/input.c
956 pg/output.c
Damjan Marion612dd6a2018-07-30 12:45:07 +0200957 pg/stream.c
Damjan Marion4553c952018-08-26 11:04:40 +0200958 pg/pg_api.c
959)
960
961list(APPEND VNET_HEADERS
962 pg/pg.h
963 pg/edit.h
964)
965
966list(APPEND VNET_API_FILES pg/pg.api)
967
968##############################################################################
969# virtio
970##############################################################################
971
972list(APPEND VNET_SOURCES
Damjan Marionf41244f2019-11-08 17:41:06 +0100973 devices/virtio/cli.c
Damjan Marion4553c952018-08-26 11:04:40 +0200974 devices/virtio/device.c
Damjan Marionf41244f2019-11-08 17:41:06 +0100975 devices/virtio/format.c
Damjan Marion4553c952018-08-26 11:04:40 +0200976 devices/virtio/node.c
Damjan Marionf41244f2019-11-08 17:41:06 +0100977 devices/virtio/pci.c
Damjan Marion4553c952018-08-26 11:04:40 +0200978 devices/virtio/vhost_user.c
979 devices/virtio/vhost_user_input.c
980 devices/virtio/vhost_user_output.c
981 devices/virtio/vhost_user_api.c
982 devices/virtio/virtio.c
Mohsin Kazmid6c15af2018-10-23 18:00:47 +0200983 devices/virtio/virtio_api.c
Mohsin Kazmia0a68332020-07-16 12:55:42 +0000984 devices/virtio/virtio_pci_legacy.c
Mohsin Kazmi379aac32020-08-20 10:25:12 +0200985 devices/virtio/virtio_pci_modern.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
Damjan Marion4553c952018-08-26 11:04:40 +02001164 fib/ip4_fib.c
1165 fib/ip6_fib.c
1166 fib/mpls_fib.c
1167 fib/fib_table.c
1168 fib/fib_walk.c
1169 fib/fib_types.c
1170 fib/fib_node.c
1171 fib/fib_node_list.c
1172 fib/fib_entry.c
1173 fib/fib_entry_src.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001174 fib/fib_entry_src_adj.c
1175 fib/fib_entry_src_api.c
1176 fib/fib_entry_src_drop.c
Damjan Marion4553c952018-08-26 11:04:40 +02001177 fib/fib_entry_src_interface.c
1178 fib/fib_entry_src_interpose.c
Damjan Marion4553c952018-08-26 11:04:40 +02001179 fib/fib_entry_src_lisp.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001180 fib/fib_entry_src_mpls.c
1181 fib/fib_entry_src_simple.c
1182 fib/fib_entry_src_rr.c
Damjan Marion4553c952018-08-26 11:04:40 +02001183 fib/fib_entry_cover.c
1184 fib/fib_entry_delegate.c
Neale Ranns1f50bf82019-07-16 15:28:52 +00001185 fib/fib_entry_track.c
Damjan Marion4553c952018-08-26 11:04:40 +02001186 fib/fib_path_list.c
1187 fib/fib_path.c
1188 fib/fib_path_ext.c
Neale Ranns3bab8f92019-12-04 06:11:00 +00001189 fib/fib_source.c
Damjan Marion4553c952018-08-26 11:04:40 +02001190 fib/fib_urpf_list.c
1191 fib/fib_attached_export.c
1192 fib/fib_api.c
1193 fib/fib_bfd.c
1194)
1195
1196list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001197 fib/fib.h
Damjan Marion4553c952018-08-26 11:04:40 +02001198 fib/fib_api.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001199 fib/ip4_fib.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001200 fib/ip6_fib.h
1201 fib/fib_types.h
Damjan Marion4553c952018-08-26 11:04:40 +02001202 fib/fib_table.h
1203 fib/fib_node.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001204 fib/fib_node_list.h
Damjan Marion4553c952018-08-26 11:04:40 +02001205 fib/fib_entry.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001206 fib/fib_entry_delegate.h
Neale Ranns3bab8f92019-12-04 06:11:00 +00001207 fib/fib_source.h
Damjan Marion4553c952018-08-26 11:04:40 +02001208)
1209
Benoît Ganned39495d2019-07-25 14:14:03 +02001210list(APPEND VNET_API_FILES fib/fib_types.api)
1211
Damjan Marion4553c952018-08-26 11:04:40 +02001212##############################################################################
1213# ADJ
1214##############################################################################
1215
1216list(APPEND VNET_SOURCES
1217 adj/adj_nbr.c
1218 adj/adj_glean.c
1219 adj/adj_midchain.c
Neale Ranns4c3ba812019-03-26 07:02:58 +00001220 adj/adj_midchain_delegate.c
Damjan Marion4553c952018-08-26 11:04:40 +02001221 adj/adj_mcast.c
1222 adj/adj_l2.c
1223 adj/adj_nsh.c
1224 adj/adj.c
1225 adj/rewrite.c
1226 adj/adj_bfd.c
1227 adj/adj_delegate.c
1228)
1229
Filip Tehlar0b2c15d2019-03-04 02:52:54 -08001230list(APPEND VNET_MULTIARCH_SOURCES
1231 adj/adj_nsh.c
1232 adj/adj_l2.c
Neale Ranns4ec36c52020-03-31 09:21:29 -04001233 adj/adj_midchain.c
Filip Tehlar0b2c15d2019-03-04 02:52:54 -08001234)
1235
Damjan Marion4553c952018-08-26 11:04:40 +02001236list(APPEND VNET_HEADERS
1237 adj/adj.h
1238 adj/adj_types.h
1239 adj/adj_glean.h
1240 adj/adj_nsh.h
1241 adj/adj_nbr.h
Alberto Compagnod8ca1e42019-08-12 11:43:19 +02001242 adj/adj_midchain.h
Damjan Marion4553c952018-08-26 11:04:40 +02001243 adj/rewrite.h
1244)
1245
1246##############################################################################
1247# Data-Plane Objects
1248##############################################################################
1249
1250list(APPEND VNET_SOURCES
1251 dpo/dpo.c
1252 dpo/drop_dpo.c
1253 dpo/ip_null_dpo.c
1254 dpo/ip6_ll_dpo.c
1255 dpo/punt_dpo.c
1256 dpo/receive_dpo.c
1257 dpo/load_balance.c
1258 dpo/load_balance_map.c
1259 dpo/lookup_dpo.c
1260 dpo/classify_dpo.c
1261 dpo/replicate_dpo.c
1262 dpo/interface_rx_dpo.c
1263 dpo/interface_tx_dpo.c
1264 dpo/mpls_disposition.c
1265 dpo/mpls_label_dpo.c
1266 dpo/l3_proxy_dpo.c
1267 dpo/dvr_dpo.c
Neale Ranns1dbcf302019-07-19 11:44:53 +00001268 dpo/pw_cw.c
Damjan Marion4553c952018-08-26 11:04:40 +02001269)
1270
Filip Tehlareb9a27f2019-03-07 01:42:11 -08001271list(APPEND VNET_MULTIARCH_SOURCES
1272 dpo/lookup_dpo.h
1273 dpo/mpls_disposition.c
1274 dpo/dvr_dpo.c
1275 dpo/mpls_label_dpo.c
1276 dpo/interface_rx_dpo.c
1277)
1278
Damjan Marion4553c952018-08-26 11:04:40 +02001279list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001280 dpo/load_balance.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001281 dpo/drop_dpo.h
Damjan Marion4553c952018-08-26 11:04:40 +02001282 dpo/lookup_dpo.h
1283 dpo/punt_dpo.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001284 dpo/classify_dpo.h
1285 dpo/receive_dpo.h
1286 dpo/ip_null_dpo.h
1287 dpo/replicate_dpo.h
Damjan Marion4553c952018-08-26 11:04:40 +02001288 dpo/dpo.h
1289)
1290
1291##############################################################################
1292# Multicast FIB
1293##############################################################################
1294
1295list(APPEND VNET_SOURCES
Damjan Marion4553c952018-08-26 11:04:40 +02001296 mfib/mfib_forward.c
1297 mfib/ip4_mfib.c
1298 mfib/ip6_mfib.c
Neale Ranns097fa662018-05-01 05:17:55 -07001299 mfib/mfib_api.c
Damjan Marion4553c952018-08-26 11:04:40 +02001300 mfib/mfib_types.c
1301 mfib/mfib_signal.c
1302 mfib/mfib_itf.c
1303 mfib/mfib_entry.c
Neale Ranns9e829a82018-12-17 05:50:32 -08001304 mfib/mfib_entry.c
1305 mfib/mfib_entry_cover.c
1306 mfib/mfib_entry_delegate.c
1307 mfib/mfib_entry_src.c
1308 mfib/mfib_entry_src_rr.c
Damjan Marion4553c952018-08-26 11:04:40 +02001309 mfib/mfib_table.c
1310)
1311
Filip Tehlar79c27eb2019-03-07 00:30:03 -08001312list(APPEND VNET_MULTIARCH_SOURCES
1313 mfib/mfib_forward.c
1314)
1315
Damjan Marion4553c952018-08-26 11:04:40 +02001316list(APPEND VNET_HEADERS
1317 mfib/ip4_mfib.h
1318 mfib/mfib_types.h
1319 mfib/mfib_table.h
1320)
1321
Benoît Ganned39495d2019-07-25 14:14:03 +02001322list(APPEND VNET_API_FILES mfib/mfib_types.api)
1323
Damjan Marion4553c952018-08-26 11:04:40 +02001324##############################################################################
1325# Utilities
1326##############################################################################
1327
1328list(APPEND VNET_SOURCES
1329 util/radix.c
1330 util/refcount.c
Neale Rannsc8352bc2018-08-29 10:23:58 -07001331 util/throttle.c
Damjan Marion4553c952018-08-26 11:04:40 +02001332 util/trajectory.c
1333)
1334
Damjan Marionac5554c2018-08-30 22:56:59 +02001335list(APPEND VNET_HEADERS
1336 util/throttle.h
1337)
1338
Damjan Marion4553c952018-08-26 11:04:40 +02001339##############################################################################
1340# QoS
1341##############################################################################
1342
1343list(APPEND VNET_SOURCES
1344 qos/qos_types.c
1345 qos/qos_api.c
1346 qos/qos_egress_map.c
1347 qos/qos_record.c
Filip Tehlar0bddf7e2019-03-04 08:14:07 -08001348 qos/qos_record_node.c
Neale Ranns83832e72019-07-31 02:48:02 -07001349 qos/qos_store.c
1350 qos/qos_store_node.c
Damjan Marion4553c952018-08-26 11:04:40 +02001351 qos/qos_mark.c
Filip Tehlar0bddf7e2019-03-04 08:14:07 -08001352 qos/qos_mark_node.c
1353)
1354
1355list(APPEND VNET_MULTIARCH_SOURCES
1356 qos/qos_record_node.c
1357 qos/qos_mark_node.c
Damjan Marion4553c952018-08-26 11:04:40 +02001358)
1359
1360list(APPEND VNET_API_FILES qos/qos.api)
1361
1362##############################################################################
1363# BIER
1364##############################################################################
1365
1366list(APPEND VNET_SOURCES
1367 bier/bier_bit_string.c
1368 bier/bier_entry.c
1369 bier/bier_fmask.c
1370 bier/bier_fmask_db.c
1371 bier/bier_input.c
1372 bier/bier_lookup.c
1373 bier/bier_output.c
1374 bier/bier_table.c
1375 bier/bier_types.c
Damjan Marion4553c952018-08-26 11:04:40 +02001376 bier/bier_api.c
1377 bier/bier_drop.c
1378 bier/bier_update.c
1379 bier/bier_imp_node.c
1380 bier/bier_imp.c
1381 bier/bier_disp_entry.c
1382 bier/bier_disp_lookup_node.c
1383 bier/bier_disp_dispatch_node.c
1384 bier/bier_disp_table.c
1385 bier/bier_bift_table.c
1386)
1387
Filip Tehlara01e0322019-03-05 03:34:52 -08001388list(APPEND VNET_MULTIARCH_SOURCES
1389 bier/bier_disp_dispatch_node.c
1390 bier/bier_disp_lookup_node.c
1391 bier/bier_imp_node.c
1392)
1393
Damjan Marion4553c952018-08-26 11:04:40 +02001394list(APPEND VNET_HEADERS
Damjan Marion2bfdda72018-08-24 21:36:42 +02001395 bier/bier_types.h
1396 bier/bier_entry.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001397 bier/bier_update.h
Damjan Marion4553c952018-08-26 11:04:40 +02001398 bier/bier_table.h
Damjan Marion2bfdda72018-08-24 21:36:42 +02001399)
1400
Damjan Marion4553c952018-08-26 11:04:40 +02001401list(APPEND VNET_API_FILES bier/bier.api)
Damjan Marion612dd6a2018-07-30 12:45:07 +02001402
Florin Coras41c9e042018-09-11 00:10:41 -07001403##############################################################################
Matus Fabianb4515b42018-11-19 04:25:32 -08001404# SYSLOG
1405##############################################################################
1406
1407list (APPEND VNET_SOURCES
1408 syslog/syslog_api.c
1409 syslog/syslog_udp.c
1410 syslog/syslog.c
1411)
1412
1413list(APPEND VNET_HEADERS
1414 syslog/syslog_udp.h
1415 syslog/syslog.h
1416)
1417
1418list(APPEND VNET_API_FILES syslog/syslog.api)
1419
1420##############################################################################
Neale Ranns03ce4622020-02-03 10:55:09 +00001421# Tunnel Endpoint Information Base
Neale Ranns5f8f6172019-04-18 10:23:56 +00001422##############################################################################
1423
1424list (APPEND VNET_SOURCES
Neale Ranns03ce4622020-02-03 10:55:09 +00001425 teib/teib_api.c
1426 teib/teib_cli.c
1427 teib/teib.c
Neale Ranns5f8f6172019-04-18 10:23:56 +00001428)
1429
1430list(APPEND VNET_HEADERS
Neale Ranns03ce4622020-02-03 10:55:09 +00001431 teib/teib.h
Neale Ranns5f8f6172019-04-18 10:23:56 +00001432)
1433
Neale Ranns03ce4622020-02-03 10:55:09 +00001434list(APPEND VNET_API_FILES teib/teib.api)
Neale Ranns5f8f6172019-04-18 10:23:56 +00001435
1436##############################################################################
Neale Rannscbe25aa2019-09-30 10:53:31 +00001437# ARP/ND
1438##############################################################################
1439
1440list (APPEND VNET_SOURCES
1441 arp/arp_api.c
1442 arp/arp.c
1443 arp/arp_proxy.c
1444)
1445
1446list(APPEND VNET_HEADERS
1447 arp/arp.h
1448)
1449
1450list(APPEND VNET_API_FILES arp/arp.api)
1451
1452list (APPEND VNET_SOURCES
1453 ip6-nd/ip6_mld.c
1454 ip6-nd/ip6_nd.c
1455 ip6-nd/ip6_nd_api.c
1456 ip6-nd/ip6_nd_proxy.c
1457 ip6-nd/ip6_ra.c
1458 ip6-nd/rd_cp.c
1459 ip6-nd/rd_cp_api.c
1460)
1461
1462list(APPEND VNET_HEADERS
1463 ip6-nd/ip6_nd.h
1464)
1465
1466list(APPEND VNET_API_FILES
1467 ip6-nd/ip6_nd.api
1468 ip6-nd/rd_cp.api
1469)
1470
1471##############################################################################
Florin Coras41c9e042018-09-11 00:10:41 -07001472# VNET Library
1473##############################################################################
1474
Damjan Marion4553c952018-08-26 11:04:40 +02001475add_vpp_library(vnet
1476 SOURCES ${VNET_SOURCES}
1477 MULTIARCH_SOURCES ${VNET_MULTIARCH_SOURCES}
1478 INSTALL_HEADERS ${VNET_HEADERS}
1479 API_FILES ${VNET_API_FILES}
1480 LINK_LIBRARIES vppinfra svm vlib ${OPENSSL_LIBRARIES}
Chris Lukec171d012020-01-15 20:30:04 -05001481 DEPENDS vpp_version_h api_headers
Damjan Marion612dd6a2018-07-30 12:45:07 +02001482)
Florin Coras41c9e042018-09-11 00:10:41 -07001483
1484##############################################################################
Yulong Peidb43bb62020-01-09 01:12:43 +08001485# vpp api test client library
1486##############################################################################
1487
1488add_vpp_library (vatclient
1489 SOURCES ip/ip_types_api.c
1490 DEPENDS api_headers
1491)
1492
1493##############################################################################