Dave Barach | ac0326f | 2020-07-14 18:30:05 -0400 | [diff] [blame] | 1 | # Copyright (c) 2018-2020 Cisco and/or its affiliates. |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 2 | # 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 | |
| 14 | add_definitions (-DWITH_LIBSSL=1) |
Damjan Marion | d16004d | 2018-08-26 10:14:52 +0200 | [diff] [blame] | 15 | include_directories(${OPENSSL_INCLUDE_DIR}) |
| 16 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 17 | unset(VNET_SOURCES) |
| 18 | unset(VNET_HEADERS) |
| 19 | unset(VNET_API_FILES) |
| 20 | unset(VNET_MULTIARCH_SOURCES) |
| 21 | |
| 22 | ############################################################################## |
| 23 | # Generic stuff |
| 24 | ############################################################################## |
| 25 | list(APPEND VNET_SOURCES |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 26 | buffer.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 27 | config.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 28 | devices/devices.c |
| 29 | devices/netlink.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 30 | flow/flow.c |
| 31 | flow/flow_cli.c |
Chenmin Sun | d0236f7 | 2020-07-27 17:54:40 +0800 | [diff] [blame] | 32 | flow/flow_api.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 33 | handoff.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 34 | interface.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 35 | interface_api.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 36 | interface_cli.c |
| 37 | interface_format.c |
| 38 | interface_output.c |
| 39 | interface_stats.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 40 | misc.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 41 | ) |
| 42 | |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 43 | list(APPEND VNET_MULTIARCH_SOURCES |
| 44 | interface_output.c |
| 45 | interface_stats.c |
Filip Tehlar | c3a0e8d | 2019-03-11 05:53:35 -0700 | [diff] [blame] | 46 | handoff.c |
Filip Tehlar | 6266877 | 2019-03-04 03:33:32 -0800 | [diff] [blame] | 47 | ) |
| 48 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 49 | list(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 Barach | 1bd2c01 | 2020-04-12 08:31:39 -0400 | [diff] [blame] | 60 | interface_output.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 61 | ip/ip4_to_ip6.h |
| 62 | ip/ip6_to_ip4.h |
Benoît Ganne | 09267f7 | 2019-05-17 14:24:17 +0200 | [diff] [blame] | 63 | ip/ip_types_api.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 64 | l3_types.h |
| 65 | plugin/plugin.h |
| 66 | pipeline.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 67 | vnet.h |
| 68 | vnet_all_api_h.h |
| 69 | vnet_msg_enum.h |
| 70 | util/radix.h |
| 71 | util/refcount.h |
IJsbrand Wijnands | 724c805 | 2020-03-05 11:29:23 -0800 | [diff] [blame] | 72 | format_fns.h |
| 73 | ip/ip_format_fns.h |
| 74 | ethernet/ethernet_format_fns.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 75 | ) |
| 76 | |
Benoît Ganne | 09267f7 | 2019-05-17 14:24:17 +0200 | [diff] [blame] | 77 | list(APPEND VNET_API_FILES |
| 78 | interface.api |
Benoît Ganne | d39495d | 2019-07-25 14:14:03 +0200 | [diff] [blame] | 79 | interface_types.api |
Benoît Ganne | 09267f7 | 2019-05-17 14:24:17 +0200 | [diff] [blame] | 80 | ip/ip_types.api |
Chenmin Sun | d0236f7 | 2020-07-27 17:54:40 +0800 | [diff] [blame] | 81 | flow/flow_types.api |
| 82 | flow/flow.api |
Benoît Ganne | 09267f7 | 2019-05-17 14:24:17 +0200 | [diff] [blame] | 83 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 84 | |
| 85 | ############################################################################## |
| 86 | # Policer infra |
| 87 | ############################################################################## |
| 88 | list(APPEND VNET_SOURCES |
| 89 | policer/node_funcs.c |
| 90 | policer/policer.c |
| 91 | policer/xlate.c |
| 92 | policer/policer_api.c |
| 93 | ) |
| 94 | |
Filip Tehlar | 30d9348 | 2019-03-06 04:28:32 -0800 | [diff] [blame] | 95 | list(APPEND VNET_MULTIARCH_SOURCES |
| 96 | policer/node_funcs.c |
| 97 | ) |
| 98 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 99 | list(APPEND VNET_HEADERS |
| 100 | policer/police.h |
| 101 | policer/policer.h |
| 102 | policer/xlate.h |
| 103 | ) |
| 104 | |
Jakub Grajciar | cd01fb4 | 2020-03-02 13:16:53 +0100 | [diff] [blame] | 105 | list(APPEND VNET_API_FILES |
| 106 | policer/policer.api |
| 107 | policer/policer_types.api |
| 108 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 109 | |
| 110 | ############################################################################## |
Dave Barach | ac0326f | 2020-07-14 18:30:05 -0400 | [diff] [blame] | 111 | # Binary API compatibility until vpp 20.12, see the ADL plugin... |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 112 | ############################################################################## |
Dave Barach | ac0326f | 2020-07-14 18:30:05 -0400 | [diff] [blame] | 113 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 114 | list(APPEND VNET_SOURCES |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 115 | cop/cop_api.c |
| 116 | ) |
| 117 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 118 | list(APPEND VNET_API_FILES cop/cop.api) |
| 119 | |
| 120 | ############################################################################## |
| 121 | # Layer 2 protocols go here |
| 122 | ############################################################################## |
| 123 | |
| 124 | ############################################################################## |
| 125 | # Layer 2 protocol: Ethernet |
| 126 | ############################################################################## |
| 127 | list(APPEND VNET_SOURCES |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 128 | ethernet/arp_packet.c |
Neale Ranns | de5b08f | 2018-08-29 06:37:18 -0700 | [diff] [blame] | 129 | ethernet/ethernet_types_api.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 130 | ethernet/format.c |
| 131 | ethernet/init.c |
| 132 | ethernet/interface.c |
Neale Ranns | de5b08f | 2018-08-29 06:37:18 -0700 | [diff] [blame] | 133 | ethernet/mac_address.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 134 | 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 Tehlar | c3a0e8d | 2019-03-11 05:53:35 -0700 | [diff] [blame] | 142 | list(APPEND VNET_MULTIARCH_SOURCES |
| 143 | ethernet/node.c |
| 144 | ethernet/p2p_ethernet_input.c |
| 145 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 146 | |
| 147 | list(APPEND VNET_HEADERS |
| 148 | ethernet/error.def |
| 149 | ethernet/ethernet.h |
Jon Loeliger | 330bf93 | 2018-11-28 13:51:42 -0600 | [diff] [blame] | 150 | ethernet/mac_address.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 151 | ethernet/packet.h |
| 152 | ethernet/types.def |
| 153 | ethernet/sfp.h |
| 154 | ethernet/p2p_ethernet.h |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 155 | ethernet/arp_packet.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 156 | ) |
| 157 | |
Benoît Ganne | d39495d | 2019-07-25 14:14:03 +0200 | [diff] [blame] | 158 | list(APPEND VNET_API_FILES |
| 159 | ethernet/p2p_ethernet.api |
| 160 | ethernet/ethernet_types.api) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 161 | |
| 162 | ############################################################################## |
| 163 | # Layer 2 protocol: Ethernet bridging |
| 164 | ############################################################################## |
| 165 | list(APPEND VNET_SOURCES |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 166 | l2/feat_bitmap.c |
| 167 | l2/l2_api.c |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 168 | l2/l2_arp_term.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 169 | l2/l2_bd.c |
| 170 | l2/l2_bvi.c |
Neale Ranns | 192b13f | 2019-03-15 02:16:20 -0700 | [diff] [blame] | 171 | l2/l2_bvi_node.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 172 | l2/l2_input_classify.c |
| 173 | l2/l2_output_classify.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 174 | l2/l2_efp_filter.c |
| 175 | l2/l2_fib.c |
| 176 | l2/l2_flood.c |
| 177 | l2/l2_fwd.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 178 | l2/l2_input.c |
Neale Ranns | 47a3d99 | 2020-09-29 15:38:51 +0000 | [diff] [blame^] | 179 | l2/l2_input_node.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 180 | l2/l2_input_vtr.c |
| 181 | l2/l2_learn.c |
| 182 | l2/l2_output.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 183 | l2/l2_in_out_acl.c |
Andrew Yourtchenko | a23cade | 2018-10-06 09:18:00 +0200 | [diff] [blame] | 184 | l2/l2_in_out_feat_arc.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 185 | l2/l2_patch.c |
| 186 | l2/l2_rw.c |
Neale Ranns | b474380 | 2018-09-05 09:13:57 -0700 | [diff] [blame] | 187 | l2/l2_uu_fwd.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 188 | l2/l2_vtr.c |
| 189 | l2/l2_xcrw.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 190 | ) |
| 191 | |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 192 | list(APPEND VNET_MULTIARCH_SOURCES |
Neale Ranns | 192b13f | 2019-03-15 02:16:20 -0700 | [diff] [blame] | 193 | l2/l2_bvi_node.c |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 194 | l2/l2_fwd.c |
| 195 | l2/l2_learn.c |
| 196 | l2/l2_output.c |
Damjan Marion | c3baf62 | 2018-11-06 13:33:27 +0100 | [diff] [blame] | 197 | l2/l2_patch.c |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 198 | l2/l2_in_out_feat_arc.c |
| 199 | l2/l2_input_classify.c |
Neale Ranns | 47a3d99 | 2020-09-29 15:38:51 +0000 | [diff] [blame^] | 200 | l2/l2_input_node.c |
Filip Tehlar | 44f0f71 | 2019-03-11 04:26:37 -0700 | [diff] [blame] | 201 | l2/l2_output_classify.c |
| 202 | l2/l2_flood.c |
| 203 | l2/l2_uu_fwd.c |
| 204 | l2/l2_efp_filter.c |
| 205 | l2/l2_rw.c |
| 206 | l2/l2_xcrw.c |
| 207 | l2/l2_in_out_acl.c |
| 208 | l2/l2_input_vtr.c |
Neale Ranns | c25eb45 | 2018-09-12 06:53:03 -0400 | [diff] [blame] | 209 | ) |
Neale Ranns | eb1525f | 2018-09-09 04:41:02 -0400 | [diff] [blame] | 210 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 211 | list(APPEND VNET_HEADERS |
| 212 | l2/feat_bitmap.h |
| 213 | l2/l2_input.h |
| 214 | l2/l2_output.h |
| 215 | l2/l2_vtr.h |
| 216 | l2/l2_input_vtr.h |
| 217 | l2/l2_efp_filter.h |
| 218 | l2/l2_fwd.h |
| 219 | l2/l2_bd.h |
| 220 | l2/l2_bvi.h |
| 221 | l2/l2_flood.h |
| 222 | l2/l2_fib.h |
| 223 | l2/l2_rw.h |
| 224 | l2/l2_xcrw.h |
| 225 | l2/l2_classify.h |
| 226 | ) |
| 227 | |
| 228 | list(APPEND VNET_API_FILES l2/l2.api) |
| 229 | |
| 230 | ############################################################################## |
| 231 | # Layer 2 protocol: SRP |
| 232 | ############################################################################## |
| 233 | list(APPEND VNET_SOURCES |
| 234 | srp/format.c |
| 235 | srp/interface.c |
| 236 | srp/node.c |
| 237 | srp/pg.c |
| 238 | ) |
| 239 | |
| 240 | list(APPEND VNET_HEADERS |
| 241 | srp/packet.h |
| 242 | srp/srp.h |
| 243 | ) |
| 244 | |
| 245 | ############################################################################## |
| 246 | # Layer 2 protocol: PPP |
| 247 | ############################################################################## |
| 248 | list(APPEND VNET_SOURCES |
| 249 | ppp/node.c |
| 250 | ppp/pg.c |
| 251 | ppp/ppp.c |
| 252 | ) |
| 253 | |
| 254 | list(APPEND VNET_HEADERS |
| 255 | ppp/error.def |
| 256 | ppp/ppp.h |
| 257 | ppp/packet.h |
| 258 | ) |
| 259 | |
| 260 | ############################################################################## |
| 261 | # Layer 2 protocol: HDLC |
| 262 | ############################################################################## |
| 263 | list(APPEND VNET_SOURCES |
| 264 | hdlc/node.c |
| 265 | hdlc/pg.c |
| 266 | hdlc/hdlc.c |
| 267 | ) |
| 268 | |
| 269 | list(APPEND VNET_HEADERS |
| 270 | hdlc/error.def |
| 271 | hdlc/hdlc.h |
| 272 | hdlc/packet.h |
| 273 | ) |
| 274 | |
| 275 | ############################################################################## |
| 276 | # Layer 2 protocol: LLC |
| 277 | ############################################################################## |
| 278 | list(APPEND VNET_SOURCES |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 279 | llc/llc.c |
| 280 | llc/node.c |
| 281 | llc/pg.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 282 | ) |
| 283 | |
| 284 | list(APPEND VNET_HEADERS |
| 285 | llc/llc.h |
| 286 | ) |
| 287 | |
| 288 | ############################################################################## |
| 289 | # Layer 2 protocol: SNAP |
| 290 | ############################################################################## |
| 291 | list(APPEND VNET_SOURCES |
| 292 | snap/snap.c |
| 293 | snap/node.c |
| 294 | snap/pg.c |
| 295 | ) |
| 296 | |
| 297 | list(APPEND VNET_HEADERS |
| 298 | snap/snap.h |
| 299 | ) |
| 300 | |
| 301 | ############################################################################## |
| 302 | # Layer 2 / vxlan |
| 303 | ############################################################################## |
| 304 | list(APPEND VNET_SOURCES |
| 305 | vxlan/vxlan.c |
| 306 | vxlan/encap.c |
| 307 | vxlan/decap.c |
| 308 | vxlan/vxlan_api.c |
| 309 | ) |
| 310 | |
Filip Tehlar | e1714d3 | 2019-03-05 03:01:43 -0800 | [diff] [blame] | 311 | list(APPEND VNET_MULTIARCH_SOURCES |
| 312 | vxlan/encap.c |
| 313 | ) |
| 314 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 315 | list(APPEND VNET_HEADERS |
| 316 | vxlan/vxlan.h |
| 317 | vxlan/vxlan_packet.h |
| 318 | vxlan/vxlan_error.def |
| 319 | ) |
| 320 | |
Eyal Bari | a5679e8 | 2018-08-26 15:20:07 +0300 | [diff] [blame] | 321 | list(APPEND VNET_MULTIARCH_SOURCES vxlan/decap.c) |
| 322 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 323 | list(APPEND VNET_API_FILES vxlan/vxlan.api) |
| 324 | |
| 325 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 326 | # Layer 2 / Bonding |
| 327 | ############################################################################## |
| 328 | list(APPEND VNET_SOURCES |
| 329 | bonding/cli.c |
| 330 | bonding/node.c |
| 331 | bonding/device.c |
| 332 | bonding/bond_api.c |
| 333 | ) |
| 334 | |
| 335 | list(APPEND VNET_HEADERS |
| 336 | bonding/node.h |
| 337 | ) |
| 338 | |
Damjan Marion | cefe134 | 2018-09-21 18:11:33 +0200 | [diff] [blame] | 339 | list(APPEND VNET_MULTIARCH_SOURCES bonding/node.c bonding/device.c) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 340 | list(APPEND VNET_API_FILES bonding/bond.api) |
| 341 | |
| 342 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 343 | # Layer 2/3 "classify" |
| 344 | ############################################################################## |
| 345 | list(APPEND VNET_SOURCES |
| 346 | classify/vnet_classify.c |
Dave Barach | 9137e54 | 2019-09-13 17:47:50 -0400 | [diff] [blame] | 347 | classify/trace_classify.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 348 | classify/ip_classify.c |
| 349 | classify/in_out_acl.c |
| 350 | classify/policer_classify.c |
| 351 | classify/flow_classify.c |
| 352 | classify/flow_classify_node.c |
| 353 | classify/vnet_classify.h |
| 354 | classify/classify_api.c |
| 355 | ) |
| 356 | |
Filip Tehlar | e8cb521 | 2019-03-06 04:50:34 -0800 | [diff] [blame] | 357 | list(APPEND VNET_MULTIARCH_SOURCES |
| 358 | classify/ip_classify.c |
| 359 | classify/flow_classify_node.c |
| 360 | ) |
| 361 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 362 | list(APPEND VNET_HEADERS |
| 363 | classify/vnet_classify.h |
Dave Barach | 9137e54 | 2019-09-13 17:47:50 -0400 | [diff] [blame] | 364 | classify/trace_classify.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 365 | classify/in_out_acl.h |
| 366 | classify/policer_classify.h |
| 367 | classify/flow_classify.h |
| 368 | ) |
| 369 | |
| 370 | list(APPEND VNET_API_FILES classify/classify.api) |
| 371 | |
| 372 | ############################################################################## |
| 373 | # Layer 3 protocols go here |
| 374 | ############################################################################## |
| 375 | |
| 376 | ############################################################################## |
| 377 | # Layer 3 protocol: IP v4/v6 |
| 378 | ############################################################################## |
| 379 | list(APPEND VNET_SOURCES |
| 380 | ip/format.c |
| 381 | ip/icmp4.c |
| 382 | ip/icmp6.c |
| 383 | ip/ip46_cli.c |
| 384 | ip/ip_types_api.c |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 385 | ip/ip46_address.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 386 | ip/ip4_format.c |
| 387 | ip/ip4_forward.c |
| 388 | ip/ip4_punt_drop.c |
| 389 | ip/ip4_input.c |
| 390 | ip/ip4_options.c |
| 391 | ip/ip4_mtrie.c |
| 392 | ip/ip4_pg.c |
| 393 | ip/ip4_source_and_port_range_check.c |
Klement Sekera | 896c896 | 2019-06-24 11:52:49 +0000 | [diff] [blame] | 394 | ip/reass/ip4_full_reass.c |
Klement Sekera | de34c35 | 2019-06-25 11:19:22 +0000 | [diff] [blame] | 395 | ip/reass/ip4_sv_reass.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 396 | ip/ip6_format.c |
| 397 | ip/ip6_forward.c |
| 398 | ip/ip6_ll_table.c |
| 399 | ip/ip6_ll_types.c |
| 400 | ip/ip6_punt_drop.c |
| 401 | ip/ip6_hop_by_hop.c |
| 402 | ip/ip6_input.c |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 403 | ip/ip6_link.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 404 | ip/ip6_pg.c |
Klement Sekera | 896c896 | 2019-06-24 11:52:49 +0000 | [diff] [blame] | 405 | ip/reass/ip6_full_reass.c |
Klement Sekera | de34c35 | 2019-06-25 11:19:22 +0000 | [diff] [blame] | 406 | ip/reass/ip6_sv_reass.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 407 | ip/ip_api.c |
| 408 | ip/ip_checksum.c |
| 409 | ip/ip_frag.c |
| 410 | ip/ip.c |
Neale Ranns | 59f7113 | 2020-04-08 12:19:38 +0000 | [diff] [blame] | 411 | ip/ip_interface.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 412 | ip/ip_init.c |
| 413 | ip/ip_in_out_acl.c |
Neale Ranns | 9220775 | 2019-06-03 13:21:40 +0000 | [diff] [blame] | 414 | ip/ip_punt_drop.c |
Neale Ranns | ea93e48 | 2019-11-12 17:16:47 +0000 | [diff] [blame] | 415 | ip/ip_types.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 416 | ip/lookup.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 417 | ip/punt_api.c |
| 418 | ip/punt.c |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 419 | ip/punt_node.c |
Nick Zavaritsky | 27518c2 | 2020-02-27 15:54:58 +0000 | [diff] [blame] | 420 | ip/vtep.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 421 | ) |
| 422 | |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 423 | list(APPEND VNET_MULTIARCH_SOURCES |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 424 | ip/ip4_punt_drop.c |
Klement Sekera | 896c896 | 2019-06-24 11:52:49 +0000 | [diff] [blame] | 425 | ip/reass/ip4_full_reass.c |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 426 | ip/ip6_hop_by_hop.c |
Klement Sekera | 896c896 | 2019-06-24 11:52:49 +0000 | [diff] [blame] | 427 | ip/reass/ip6_full_reass.c |
Klement Sekera | de34c35 | 2019-06-25 11:19:22 +0000 | [diff] [blame] | 428 | ip/reass/ip4_sv_reass.c |
| 429 | ip/ip6_hop_by_hop.c |
| 430 | ip/reass/ip6_full_reass.c |
| 431 | ip/reass/ip6_sv_reass.c |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 432 | ip/ip6_input.c |
| 433 | ip/ip6_punt_drop.c |
Neale Ranns | 50f0ac0 | 2019-05-15 02:13:37 -0700 | [diff] [blame] | 434 | ip/punt_node.c |
Filip Tehlar | 26ea14e | 2019-03-11 05:30:21 -0700 | [diff] [blame] | 435 | ip/ip_in_out_acl.c |
| 436 | ) |
| 437 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 438 | list(APPEND VNET_HEADERS |
| 439 | ip/format.h |
| 440 | ip/icmp46_packet.h |
| 441 | ip/icmp4.h |
| 442 | ip/icmp6.h |
| 443 | ip/igmp_packet.h |
| 444 | ip/ip4_error.h |
| 445 | ip/ip4.h |
| 446 | ip/ip4_mtrie.h |
| 447 | ip/ip4_packet.h |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 448 | ip/ip46_address.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 449 | ip/ip6_error.h |
| 450 | ip/ip6.h |
| 451 | ip/ip6_hop_by_hop.h |
| 452 | ip/ip6_hop_by_hop_packet.h |
| 453 | ip/ip6_packet.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 454 | ip/ip.h |
Steven Luong | c3ed1c9 | 2020-07-27 10:06:58 -0700 | [diff] [blame] | 455 | ip/ip_table.h |
Neale Ranns | 59f7113 | 2020-04-08 12:19:38 +0000 | [diff] [blame] | 456 | ip/ip_interface.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 457 | ip/ip_packet.h |
| 458 | ip/ip_source_and_port_range_check.h |
Neale Ranns | ea93e48 | 2019-11-12 17:16:47 +0000 | [diff] [blame] | 459 | ip/ip_types.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 460 | ip/lookup.h |
| 461 | ip/ports.def |
| 462 | ip/protocols.def |
| 463 | ip/punt_error.def |
| 464 | ip/punt.h |
| 465 | ) |
| 466 | |
| 467 | list(APPEND VNET_API_FILES |
| 468 | ip/ip.api |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 469 | ip/punt.api |
| 470 | ) |
| 471 | |
Damjan Marion | 3817350 | 2019-02-13 19:30:09 +0100 | [diff] [blame] | 472 | list(APPEND VNET_MULTIARCH_SOURCES |
| 473 | ip/ip4_forward.c |
| 474 | ip/ip6_forward.c |
| 475 | ip/ip4_input.c |
| 476 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 477 | |
| 478 | ############################################################################## |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 479 | # Layer 3 neighbours |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 480 | ############################################################################## |
| 481 | list(APPEND VNET_SOURCES |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 482 | ip-neighbor/ip_neighbor.c |
| 483 | ip-neighbor/ip_neighbor_api.c |
| 484 | ip-neighbor/ip_neighbor_dp.c |
| 485 | ip-neighbor/ip_neighbor_types.c |
| 486 | ip-neighbor/ip_neighbor_watch.c |
| 487 | ip-neighbor/ip4_neighbor.c |
| 488 | ip-neighbor/ip6_neighbor.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 489 | ) |
| 490 | |
| 491 | list(APPEND VNET_HEADERS |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 492 | ip-neighbor/ip_neighbor.h |
| 493 | ip-neighbor/ip_neighbor_types.h |
| 494 | ) |
| 495 | |
| 496 | list(APPEND VNET_API_FILES |
| 497 | ip-neighbor/ip_neighbor.api |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 498 | ) |
| 499 | |
| 500 | ############################################################################## |
| 501 | # Bidirectional Forwarding Detection |
| 502 | ############################################################################## |
| 503 | |
| 504 | list(APPEND VNET_HEADERS |
| 505 | bfd/bfd_protocol.h |
| 506 | bfd/bfd_main.h |
| 507 | bfd/bfd_api.h |
| 508 | bfd/bfd_udp.h |
| 509 | ) |
| 510 | |
| 511 | list(APPEND VNET_SOURCES |
| 512 | bfd/bfd_api.h |
| 513 | bfd/bfd_udp.c |
| 514 | bfd/bfd_main.c |
| 515 | bfd/bfd_protocol.c |
| 516 | bfd/bfd_cli.c |
| 517 | bfd/bfd_api.c |
| 518 | ) |
| 519 | |
| 520 | list(APPEND VNET_API_FILES bfd/bfd.api) |
| 521 | |
| 522 | ############################################################################## |
Damjan Marion | 91f17dc | 2019-03-18 18:59:25 +0100 | [diff] [blame] | 523 | # Crypto |
| 524 | ############################################################################## |
| 525 | |
| 526 | list(APPEND VNET_SOURCES |
| 527 | crypto/cli.c |
| 528 | crypto/crypto.c |
| 529 | crypto/format.c |
Fan Zhang | f539578 | 2020-04-29 14:00:03 +0100 | [diff] [blame] | 530 | crypto/node.c |
Nathan Skrzypczak | 0c936b1 | 2020-08-31 15:33:57 +0200 | [diff] [blame] | 531 | crypto/crypto_api.c |
Damjan Marion | 91f17dc | 2019-03-18 18:59:25 +0100 | [diff] [blame] | 532 | ) |
| 533 | |
| 534 | list(APPEND VNET_HEADERS |
| 535 | crypto/crypto.h |
| 536 | ) |
| 537 | |
Fan Zhang | f539578 | 2020-04-29 14:00:03 +0100 | [diff] [blame] | 538 | list(APPEND VNET_MULTIARCH_SOURCES crypto/node.c) |
| 539 | |
Nathan Skrzypczak | 0c936b1 | 2020-08-31 15:33:57 +0200 | [diff] [blame] | 540 | list(APPEND VNET_API_FILES crypto/crypto.api) |
| 541 | |
Damjan Marion | 91f17dc | 2019-03-18 18:59:25 +0100 | [diff] [blame] | 542 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 543 | # Layer 3 protocol: IPSec |
| 544 | ############################################################################## |
| 545 | list(APPEND VNET_SOURCES |
| 546 | ipsec/ipsec.c |
| 547 | ipsec/ipsec_cli.c |
| 548 | ipsec/ipsec_format.c |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 549 | ipsec/ipsec_handoff.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 550 | ipsec/ipsec_input.c |
Neale Ranns | dd4ccf2 | 2020-06-30 07:47:14 +0000 | [diff] [blame] | 551 | ipsec/ipsec_itf.c |
Neale Ranns | b71fa75 | 2019-04-04 12:43:36 +0000 | [diff] [blame] | 552 | ipsec/ipsec_punt.c |
Neale Ranns | 999c8ee | 2019-02-01 03:31:24 -0800 | [diff] [blame] | 553 | ipsec/ipsec_sa.c |
| 554 | ipsec/ipsec_spd.c |
| 555 | ipsec/ipsec_spd_policy.c |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 556 | ipsec/ipsec_tun.c |
| 557 | ipsec/ipsec_tun_in.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 558 | ipsec/esp_format.c |
| 559 | ipsec/esp_encrypt.c |
| 560 | ipsec/esp_decrypt.c |
| 561 | ipsec/ah_decrypt.c |
| 562 | ipsec/ah_encrypt.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 563 | ipsec/ipsec_api.c |
Prashant Maheshwari | dbf68c9 | 2019-11-14 12:42:59 +0530 | [diff] [blame] | 564 | ipsec/ipsec_types_api.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 565 | ) |
| 566 | |
Klement Sekera | b8f3544 | 2018-10-29 13:38:19 +0100 | [diff] [blame] | 567 | list(APPEND VNET_MULTIARCH_SOURCES |
| 568 | ipsec/esp_encrypt.c |
| 569 | ipsec/esp_decrypt.c |
| 570 | ipsec/ah_decrypt.c |
| 571 | ipsec/ah_encrypt.c |
Neale Ranns | f62a8c0 | 2019-04-02 08:13:33 +0000 | [diff] [blame] | 572 | ipsec/ipsec_handoff.c |
Kingwel Xie | c69ac31 | 2019-02-04 01:49:29 -0800 | [diff] [blame] | 573 | ipsec/ipsec_output.c |
| 574 | ipsec/ipsec_input.c |
Neale Ranns | c87b66c | 2019-02-07 07:26:12 -0800 | [diff] [blame] | 575 | ipsec/ipsec_tun_in.c |
Klement Sekera | b8f3544 | 2018-10-29 13:38:19 +0100 | [diff] [blame] | 576 | ) |
| 577 | |
Prashant Maheshwari | dbf68c9 | 2019-11-14 12:42:59 +0530 | [diff] [blame] | 578 | list(APPEND VNET_API_FILES ipsec/ipsec_types.api) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 579 | list(APPEND VNET_API_FILES ipsec/ipsec.api) |
| 580 | |
| 581 | list(APPEND VNET_SOURCES |
| 582 | ipsec/ipsec_output.c |
| 583 | ) |
| 584 | |
| 585 | list(APPEND VNET_HEADERS |
| 586 | ipsec/ipsec.h |
Neale Ranns | 918c161 | 2019-02-21 23:34:59 -0800 | [diff] [blame] | 587 | ipsec/ipsec_spd.h |
| 588 | ipsec/ipsec_spd_policy.h |
| 589 | ipsec/ipsec_sa.h |
Neale Ranns | 12989b5 | 2019-09-26 16:20:19 +0000 | [diff] [blame] | 590 | ipsec/ipsec_tun.h |
Prashant Maheshwari | dbf68c9 | 2019-11-14 12:42:59 +0530 | [diff] [blame] | 591 | ipsec/ipsec_types_api.h |
Neale Ranns | ba05e5d | 2019-06-07 05:17:07 -0700 | [diff] [blame] | 592 | ipsec/ipsec_punt.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 593 | ipsec/esp.h |
| 594 | ipsec/ah.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 595 | ) |
| 596 | |
| 597 | ############################################################################## |
| 598 | # Layer 3 protocol: osi |
| 599 | ############################################################################## |
| 600 | list(APPEND VNET_SOURCES |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 601 | osi/node.c |
| 602 | osi/osi.c |
| 603 | osi/pg.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 604 | ) |
| 605 | |
| 606 | list(APPEND VNET_HEADERS |
| 607 | osi/osi.h |
| 608 | ) |
| 609 | |
| 610 | ############################################################################## |
| 611 | # Layer 4 protocol: tcp |
| 612 | ############################################################################## |
| 613 | list(APPEND VNET_SOURCES |
| 614 | tcp/tcp_api.c |
| 615 | tcp/tcp_format.c |
| 616 | tcp/tcp_pg.c |
| 617 | tcp/tcp_syn_filter4.c |
| 618 | tcp/tcp_output.c |
| 619 | tcp/tcp_input.c |
| 620 | tcp/tcp_newreno.c |
Florin Coras | 5281473 | 2019-06-12 15:38:19 -0700 | [diff] [blame] | 621 | tcp/tcp_bt.c |
Florin Coras | 999840c | 2020-03-18 20:31:34 +0000 | [diff] [blame] | 622 | tcp/tcp_cli.c |
| 623 | tcp/tcp_cubic.c |
Florin Coras | a436a42 | 2019-08-20 07:09:31 -0700 | [diff] [blame] | 624 | tcp/tcp_debug.c |
Florin Coras | 999840c | 2020-03-18 20:31:34 +0000 | [diff] [blame] | 625 | tcp/tcp_sack.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 626 | tcp/tcp.c |
| 627 | ) |
| 628 | |
Filip Tehlar | e275bed | 2019-03-06 00:06:56 -0800 | [diff] [blame] | 629 | list(APPEND VNET_MULTIARCH_SOURCES |
| 630 | tcp/tcp_input.c |
| 631 | tcp/tcp_output.c |
| 632 | tcp/tcp_syn_filter4.c |
| 633 | ) |
| 634 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 635 | list(APPEND VNET_HEADERS |
| 636 | tcp/tcp_packet.h |
| 637 | tcp/tcp_timer.h |
Florin Coras | 999840c | 2020-03-18 20:31:34 +0000 | [diff] [blame] | 638 | tcp/tcp_bt.h |
| 639 | tcp/tcp_cc.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 640 | tcp/tcp_debug.h |
Florin Coras | 999840c | 2020-03-18 20:31:34 +0000 | [diff] [blame] | 641 | tcp/tcp_inlines.h |
| 642 | tcp/tcp_sack.h |
| 643 | tcp/tcp_types.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 644 | tcp/tcp.h |
| 645 | tcp/tcp_error.def |
| 646 | ) |
| 647 | |
| 648 | list(APPEND VNET_API_FILES tcp/tcp.api) |
| 649 | |
| 650 | ############################################################################## |
| 651 | # Layer 4 protocol: udp |
| 652 | ############################################################################## |
| 653 | list(APPEND VNET_SOURCES |
| 654 | udp/udp.c |
Florin Coras | c98ef75 | 2020-04-07 17:30:13 +0000 | [diff] [blame] | 655 | udp/udp_cli.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 656 | udp/udp_input.c |
| 657 | udp/udp_format.c |
| 658 | udp/udp_local.c |
| 659 | udp/udp_pg.c |
| 660 | udp/udp_encap_node.c |
| 661 | udp/udp_encap.c |
| 662 | udp/udp_api.c |
| 663 | ) |
| 664 | |
Filip Tehlar | 2c49ffe | 2019-03-06 07:16:08 -0800 | [diff] [blame] | 665 | list(APPEND VNET_MULTIARCH_SOURCES |
| 666 | udp/udp_local.c |
| 667 | udp/udp_encap_node.c |
| 668 | ) |
| 669 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 670 | list(APPEND VNET_HEADERS |
| 671 | udp/udp_error.def |
| 672 | udp/udp.h |
| 673 | udp/udp_packet.h |
| 674 | ) |
| 675 | |
| 676 | list(APPEND VNET_API_FILES udp/udp.api) |
| 677 | |
| 678 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 679 | # Tunnel protocol: gre |
| 680 | ############################################################################## |
| 681 | list(APPEND VNET_SOURCES |
| 682 | gre/gre.c |
| 683 | gre/node.c |
| 684 | gre/interface.c |
| 685 | gre/pg.c |
| 686 | gre/gre_api.c |
| 687 | ) |
| 688 | |
Filip Tehlar | 0fce11f | 2019-03-04 09:21:59 -0800 | [diff] [blame] | 689 | list(APPEND VNET_MULTIARCH_SOURCES |
| 690 | gre/node.c |
| 691 | gre/gre.c |
| 692 | ) |
| 693 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 694 | list(APPEND VNET_HEADERS |
| 695 | gre/gre.h |
| 696 | gre/packet.h |
| 697 | gre/error.def |
| 698 | ) |
| 699 | |
| 700 | list(APPEND VNET_API_FILES gre/gre.api) |
| 701 | |
| 702 | ############################################################################## |
| 703 | # Tunnel protocol: ipip |
| 704 | ############################################################################## |
| 705 | list(APPEND VNET_SOURCES |
| 706 | ipip/ipip.c |
| 707 | ipip/node.c |
| 708 | ipip/sixrd.c |
| 709 | ipip/ipip_api.c |
| 710 | ipip/ipip_cli.c |
| 711 | ) |
| 712 | |
Filip Tehlar | 7a542f4 | 2019-03-05 04:50:23 -0800 | [diff] [blame] | 713 | list(APPEND VNET_MULTIARCH_SOURCES |
| 714 | ipip/node.c |
| 715 | ) |
| 716 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 717 | list(APPEND VNET_HEADERS |
| 718 | ipip/ipip.h |
| 719 | ) |
| 720 | |
Neale Ranns | 9534696 | 2019-11-25 13:04:44 +0000 | [diff] [blame] | 721 | list(APPEND VNET_API_FILES |
Neale Ranns | 9534696 | 2019-11-25 13:04:44 +0000 | [diff] [blame] | 722 | ipip/ipip.api |
| 723 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 724 | |
| 725 | ############################################################################## |
Neale Ranns | 59ff918 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 726 | # Tunnel infra |
| 727 | ############################################################################## |
| 728 | list(APPEND VNET_SOURCES |
| 729 | tunnel/tunnel.c |
| 730 | tunnel/tunnel_types_api.c |
| 731 | ) |
| 732 | |
| 733 | list(APPEND VNET_API_FILES |
| 734 | tunnel/tunnel_types.api |
| 735 | ) |
| 736 | |
| 737 | list(APPEND VNET_HEADERS |
| 738 | tunnel/tunnel.h |
Neale Ranns | e5b94dd | 2019-12-31 05:13:14 +0000 | [diff] [blame] | 739 | tunnel/tunnel_dp.h |
Neale Ranns | 59ff918 | 2019-12-29 23:55:18 +0000 | [diff] [blame] | 740 | ) |
| 741 | |
| 742 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 743 | # Tunnel protocol: gre+mpls |
| 744 | ############################################################################## |
| 745 | list(APPEND VNET_SOURCES |
| 746 | mpls/mpls.c |
| 747 | mpls/mpls_lookup.c |
| 748 | mpls/mpls_output.c |
| 749 | mpls/mpls_features.c |
| 750 | mpls/mpls_input.c |
| 751 | mpls/interface.c |
| 752 | mpls/mpls_tunnel.c |
| 753 | mpls/pg.c |
| 754 | mpls/mpls_api.c |
| 755 | ) |
| 756 | |
Filip Tehlar | 17fcd98 | 2019-03-05 04:32:11 -0800 | [diff] [blame] | 757 | list(APPEND VNET_MULTIARCH_SOURCES |
| 758 | mpls/mpls_output.c |
| 759 | mpls/mpls_input.c |
| 760 | mpls/mpls_lookup.c |
| 761 | mpls/mpls_features.c |
| 762 | ) |
| 763 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 764 | list(APPEND VNET_HEADERS |
| 765 | mpls/mpls.h |
| 766 | mpls/mpls_types.h |
| 767 | mpls/mpls_tunnel.h |
| 768 | mpls/packet.h |
| 769 | mpls/error.def |
| 770 | ) |
| 771 | |
| 772 | list(APPEND VNET_API_FILES mpls/mpls.api) |
| 773 | |
| 774 | ############################################################################## |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 775 | # Tunnel protocol: vxlan-gbp |
| 776 | ############################################################################## |
| 777 | list(APPEND VNET_SOURCES |
| 778 | vxlan-gbp/decap.c |
| 779 | vxlan-gbp/encap.c |
| 780 | vxlan-gbp/vxlan_gbp_api.c |
| 781 | vxlan-gbp/vxlan_gbp.c |
Neale Ranns | 93cc3ee | 2018-10-10 07:22:51 -0700 | [diff] [blame] | 782 | vxlan-gbp/vxlan_gbp_packet.c |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 783 | ) |
| 784 | |
Filip Tehlar | e1714d3 | 2019-03-05 03:01:43 -0800 | [diff] [blame] | 785 | list (APPEND VNET_MULTIARCH_SOURCES |
| 786 | vxlan-gbp/decap.c |
| 787 | vxlan-gbp/encap.c |
| 788 | ) |
| 789 | |
Mohsin Kazmi | 61b94c6 | 2018-08-20 18:32:39 +0200 | [diff] [blame] | 790 | list(APPEND VNET_HEADERS |
| 791 | vxlan-gbp/vxlan_gbp.h |
| 792 | vxlan-gbp/vxlan_gbp_packet.h |
| 793 | vxlan-gbp/vxlan_gbp_error.def |
| 794 | ) |
| 795 | |
| 796 | list(APPEND VNET_API_FILES vxlan-gbp/vxlan_gbp.api) |
| 797 | |
| 798 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 799 | # Tunnel protocol: vxlan-gpe |
| 800 | ############################################################################## |
| 801 | |
| 802 | list(APPEND VNET_SOURCES |
| 803 | vxlan-gpe/vxlan_gpe.c |
| 804 | vxlan-gpe/encap.c |
| 805 | vxlan-gpe/decap.c |
| 806 | vxlan-gpe/vxlan_gpe_api.c |
| 807 | ) |
| 808 | |
Filip Tehlar | e1714d3 | 2019-03-05 03:01:43 -0800 | [diff] [blame] | 809 | list (APPEND VNET_MULTIARCH_SOURCES |
| 810 | vxlan-gpe/decap.c |
| 811 | ) |
| 812 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 813 | list(APPEND VNET_HEADERS |
| 814 | vxlan-gpe/vxlan_gpe.h |
| 815 | vxlan-gpe/vxlan_gpe_packet.h |
| 816 | vxlan-gpe/vxlan_gpe_error.def |
| 817 | ) |
| 818 | |
| 819 | list(APPEND VNET_API_FILES vxlan-gpe/vxlan_gpe.api) |
| 820 | |
| 821 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 822 | # ipv6 segment routing |
| 823 | ############################################################################## |
| 824 | |
| 825 | list(APPEND VNET_SOURCES |
| 826 | srv6/sr.c |
| 827 | srv6/sr_localsid.c |
| 828 | srv6/sr_policy_rewrite.c |
| 829 | srv6/sr_steering.c |
| 830 | srv6/sr_api.c |
| 831 | ) |
| 832 | |
| 833 | list(APPEND VNET_HEADERS |
| 834 | srv6/sr_packet.h |
| 835 | srv6/sr.h |
| 836 | ) |
| 837 | |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 838 | list(APPEND VNET_API_FILES |
| 839 | srv6/sr.api |
| 840 | srv6/sr_types.api |
| 841 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 842 | |
| 843 | ############################################################################## |
| 844 | # mpls segment routing |
| 845 | ############################################################################## |
| 846 | |
| 847 | list(APPEND VNET_SOURCES |
| 848 | srmpls/sr_mpls_policy.c |
| 849 | srmpls/sr_mpls_steering.c |
| 850 | srmpls/sr_mpls_api.c |
| 851 | ) |
| 852 | |
| 853 | list(APPEND VNET_HEADERS |
| 854 | srmpls/sr_mpls.h |
| 855 | ) |
| 856 | |
Jakub Grajciar | 0938eba | 2020-03-04 13:08:27 +0100 | [diff] [blame] | 857 | list(APPEND VNET_API_FILES |
| 858 | srmpls/sr_mpls.api |
| 859 | srv6/sr_types.api |
| 860 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 861 | |
| 862 | ############################################################################## |
| 863 | # IPFIX / netflow v10 |
| 864 | ############################################################################## |
| 865 | list(APPEND VNET_SOURCES |
| 866 | ipfix-export/flow_report.c |
| 867 | ipfix-export/flow_api.c |
| 868 | ) |
| 869 | |
| 870 | list(APPEND VNET_HEADERS |
| 871 | ipfix-export/flow_report.h |
| 872 | ipfix-export/ipfix_info_elements.h |
| 873 | ipfix-export/ipfix_packet.h |
| 874 | ) |
| 875 | |
| 876 | list(APPEND VNET_API_FILES ipfix-export/ipfix_export.api) |
| 877 | |
| 878 | ############################################################################## |
Mohsin Kazmi | 29467b5 | 2019-10-08 19:42:38 +0200 | [diff] [blame] | 879 | # GSO |
| 880 | ############################################################################## |
| 881 | list(APPEND VNET_SOURCES |
| 882 | gso/cli.c |
| 883 | gso/gso.c |
| 884 | gso/gso_api.c |
| 885 | gso/node.c |
| 886 | ) |
| 887 | |
| 888 | list(APPEND VNET_HEADERS |
Mohsin Kazmi | f382b06 | 2020-08-11 15:00:44 +0200 | [diff] [blame] | 889 | gso/gro.h |
| 890 | gso/gro_func.h |
Mohsin Kazmi | 0b04209 | 2020-04-17 16:50:56 +0000 | [diff] [blame] | 891 | gso/hdr_offset_parser.h |
Mohsin Kazmi | 29467b5 | 2019-10-08 19:42:38 +0200 | [diff] [blame] | 892 | gso/gso.h |
| 893 | ) |
| 894 | |
| 895 | list(APPEND VNET_API_FILES |
| 896 | gso/gso.api |
| 897 | ) |
| 898 | |
| 899 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 900 | # IPFIX classify code |
| 901 | ############################################################################## |
| 902 | |
| 903 | list(APPEND VNET_SOURCES |
| 904 | ipfix-export/flow_report_classify.c |
| 905 | ) |
| 906 | |
| 907 | list(APPEND VNET_HEADERS |
| 908 | ipfix-export/flow_report_classify.h |
| 909 | ) |
| 910 | |
| 911 | ############################################################################## |
| 912 | # lawful intercept |
| 913 | ############################################################################## |
| 914 | |
| 915 | list(APPEND VNET_SOURCES |
| 916 | lawful-intercept/lawful_intercept.c |
| 917 | lawful-intercept/node.c |
| 918 | ) |
| 919 | |
Filip Tehlar | c3a0e8d | 2019-03-11 05:53:35 -0700 | [diff] [blame] | 920 | list(APPEND VNET_MULTIARCH_SOURCES |
| 921 | lawful-intercept/node.c |
| 922 | ) |
| 923 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 924 | list(APPEND VNET_HEADERS |
| 925 | lawful-intercept/lawful_intercept.h |
| 926 | ) |
| 927 | |
| 928 | ############################################################################## |
| 929 | # SPAN (port mirroring) |
| 930 | ############################################################################## |
| 931 | |
| 932 | list(APPEND VNET_SOURCES |
| 933 | span/span_api.c |
| 934 | span/span.c |
| 935 | span/node.c |
| 936 | ) |
| 937 | |
Filip Tehlar | a79271f | 2019-03-05 03:46:40 -0800 | [diff] [blame] | 938 | list(APPEND VNET_MULTIARCH_SOURCES |
| 939 | span/node.c |
| 940 | ) |
| 941 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 942 | list(APPEND VNET_HEADERS |
| 943 | span/span.h |
| 944 | ) |
| 945 | |
| 946 | list(APPEND VNET_API_FILES span/span.api) |
| 947 | |
| 948 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 949 | # Packet generator |
| 950 | ############################################################################## |
| 951 | |
| 952 | list(APPEND VNET_SOURCES |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 953 | pg/cli.c |
| 954 | pg/edit.c |
| 955 | pg/init.c |
| 956 | pg/input.c |
| 957 | pg/output.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 958 | pg/stream.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 959 | pg/pg_api.c |
| 960 | ) |
| 961 | |
| 962 | list(APPEND VNET_HEADERS |
| 963 | pg/pg.h |
| 964 | pg/edit.h |
| 965 | ) |
| 966 | |
| 967 | list(APPEND VNET_API_FILES pg/pg.api) |
| 968 | |
| 969 | ############################################################################## |
| 970 | # virtio |
| 971 | ############################################################################## |
| 972 | |
| 973 | list(APPEND VNET_SOURCES |
Damjan Marion | f41244f | 2019-11-08 17:41:06 +0100 | [diff] [blame] | 974 | devices/virtio/cli.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 975 | devices/virtio/device.c |
Damjan Marion | f41244f | 2019-11-08 17:41:06 +0100 | [diff] [blame] | 976 | devices/virtio/format.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 977 | devices/virtio/node.c |
Damjan Marion | f41244f | 2019-11-08 17:41:06 +0100 | [diff] [blame] | 978 | devices/virtio/pci.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 979 | devices/virtio/vhost_user.c |
| 980 | devices/virtio/vhost_user_input.c |
| 981 | devices/virtio/vhost_user_output.c |
| 982 | devices/virtio/vhost_user_api.c |
| 983 | devices/virtio/virtio.c |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 984 | devices/virtio/virtio_api.c |
Mohsin Kazmi | a0a6833 | 2020-07-16 12:55:42 +0000 | [diff] [blame] | 985 | devices/virtio/virtio_pci_legacy.c |
Mohsin Kazmi | 379aac3 | 2020-08-20 10:25:12 +0200 | [diff] [blame] | 986 | devices/virtio/virtio_pci_modern.c |
Jakub Grajciar | 5d4c99f | 2019-09-26 10:21:59 +0200 | [diff] [blame] | 987 | devices/virtio/virtio_types_api.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 988 | ) |
| 989 | |
| 990 | list(APPEND VNET_HEADERS |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 991 | devices/virtio/pci.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 992 | devices/virtio/virtio.h |
Mohsin Kazmi | e347acb | 2020-09-28 10:26:33 +0000 | [diff] [blame] | 993 | devices/virtio/virtio_buffering.h |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 994 | devices/virtio/virtio_std.h |
Mohsin Kazmi | a0a6833 | 2020-07-16 12:55:42 +0000 | [diff] [blame] | 995 | devices/virtio/virtio_pci_legacy.h |
Mohsin Kazmi | 379aac3 | 2020-08-20 10:25:12 +0200 | [diff] [blame] | 996 | devices/virtio/virtio_pci_modern.h |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 997 | devices/virtio/vhost_std.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 998 | devices/virtio/vhost_user.h |
Jakub Grajciar | 5d4c99f | 2019-09-26 10:21:59 +0200 | [diff] [blame] | 999 | devices/virtio/virtio_types_api.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1000 | ) |
| 1001 | |
| 1002 | list(APPEND VNET_MULTIARCH_SOURCES |
| 1003 | devices/virtio/vhost_user_input.c |
| 1004 | devices/virtio/vhost_user_output.c |
Filip Tehlar | 608996d | 2019-03-04 03:03:13 -0800 | [diff] [blame] | 1005 | devices/virtio/node.c |
| 1006 | devices/af_packet/node.c |
Filip Tehlar | aee7364 | 2019-03-13 05:50:44 -0700 | [diff] [blame] | 1007 | devices/virtio/device.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1008 | ) |
| 1009 | |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 1010 | list(APPEND VNET_API_FILES |
| 1011 | devices/virtio/vhost_user.api |
| 1012 | devices/virtio/virtio.api |
Jakub Grajciar | 5d4c99f | 2019-09-26 10:21:59 +0200 | [diff] [blame] | 1013 | devices/virtio/virtio_types.api |
Mohsin Kazmi | d6c15af | 2018-10-23 18:00:47 +0200 | [diff] [blame] | 1014 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1015 | |
| 1016 | ############################################################################## |
| 1017 | # tap interface (with virtio backend) |
| 1018 | ############################################################################## |
| 1019 | |
| 1020 | list(APPEND VNET_SOURCES |
| 1021 | devices/tap/cli.c |
| 1022 | devices/tap/tap.c |
| 1023 | devices/tap/tapv2_api.c |
| 1024 | ) |
| 1025 | |
| 1026 | list(APPEND VNET_HEADERS |
| 1027 | devices/tap/tap.h |
| 1028 | ) |
| 1029 | |
Mohsin Kazmi | a7a2281 | 2020-08-31 17:17:16 +0200 | [diff] [blame] | 1030 | list(APPEND VNET_API_FILES |
| 1031 | devices/tap/tapv2.api |
| 1032 | ) |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1033 | |
| 1034 | ############################################################################## |
| 1035 | # tap interface (with virtio backend) |
| 1036 | ############################################################################## |
| 1037 | |
| 1038 | list(APPEND VNET_SOURCES |
| 1039 | devices/pipe/pipe_api.c |
| 1040 | devices/pipe/pipe.c |
| 1041 | ) |
| 1042 | |
| 1043 | list(APPEND VNET_HEADERS |
| 1044 | devices/pipe/pipe.h |
| 1045 | ) |
| 1046 | |
| 1047 | list(APPEND VNET_API_FILES devices/pipe/pipe.api) |
| 1048 | |
| 1049 | ############################################################################## |
| 1050 | # session managmeent |
| 1051 | ############################################################################## |
| 1052 | |
| 1053 | list(APPEND VNET_SOURCES |
| 1054 | session/session.c |
Florin Coras | 1116667 | 2020-04-13 01:20:25 +0000 | [diff] [blame] | 1055 | session/session_debug.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1056 | session/session_table.c |
| 1057 | session/session_rules_table.c |
| 1058 | session/session_lookup.c |
| 1059 | session/session_node.c |
| 1060 | session/transport.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1061 | session/application.c |
Florin Coras | 623eb56 | 2019-02-03 19:28:34 -0800 | [diff] [blame] | 1062 | session/application_worker.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1063 | session/session_cli.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1064 | session/application_interface.c |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1065 | session/application_local.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1066 | session/application_namespace.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1067 | session/segment_manager.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1068 | session/session_api.c |
| 1069 | ) |
| 1070 | |
| 1071 | list(APPEND VNET_HEADERS |
| 1072 | session/session.h |
| 1073 | session/session_table.h |
| 1074 | session/session_rules_table.h |
Florin Coras | 288eaab | 2019-02-03 15:26:14 -0800 | [diff] [blame] | 1075 | session/session_types.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1076 | session/session_lookup.h |
| 1077 | session/application.h |
| 1078 | session/transport.h |
Florin Coras | 1ee7830 | 2019-02-05 15:51:15 -0800 | [diff] [blame] | 1079 | session/transport_types.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1080 | session/application_interface.h |
Florin Coras | ba7d8f5 | 2019-02-22 13:11:38 -0800 | [diff] [blame] | 1081 | session/application_local.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1082 | session/application_namespace.h |
| 1083 | session/session_debug.h |
| 1084 | session/segment_manager.h |
| 1085 | session/mma_template.h |
| 1086 | session/mma_template.c |
| 1087 | session/mma_16.h |
| 1088 | session/mma_40.h |
| 1089 | ) |
| 1090 | |
| 1091 | list(APPEND VNET_API_FILES session/session.api) |
| 1092 | |
| 1093 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1094 | # TLS protocol |
| 1095 | ############################################################################## |
| 1096 | |
| 1097 | list(APPEND VNET_SOURCES |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1098 | tls/tls.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1099 | ) |
| 1100 | |
| 1101 | list(APPEND VNET_HEADERS |
| 1102 | tls/tls.h |
Florin Coras | 54a51fd | 2019-02-07 15:34:52 -0800 | [diff] [blame] | 1103 | tls/tls_test.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1104 | ) |
| 1105 | |
| 1106 | ############################################################################## |
| 1107 | # Linux packet interface |
| 1108 | ############################################################################## |
| 1109 | |
| 1110 | list(APPEND VNET_SOURCES |
| 1111 | devices/af_packet/af_packet.c |
| 1112 | devices/af_packet/device.c |
| 1113 | devices/af_packet/node.c |
| 1114 | devices/af_packet/cli.c |
| 1115 | devices/af_packet/af_packet_api.c |
| 1116 | ) |
| 1117 | |
Filip Tehlar | aee7364 | 2019-03-13 05:50:44 -0700 | [diff] [blame] | 1118 | list(APPEND VNET_MULTIARCH_SOURCES |
Filip Tehlar | aee7364 | 2019-03-13 05:50:44 -0700 | [diff] [blame] | 1119 | devices/af_packet/device.c |
| 1120 | ) |
| 1121 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1122 | list(APPEND VNET_HEADERS |
| 1123 | devices/af_packet/af_packet.h |
| 1124 | ) |
| 1125 | |
| 1126 | list(APPEND VNET_API_FILES devices/af_packet/af_packet.api) |
| 1127 | |
| 1128 | ############################################################################## |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1129 | # Driver feature graph arc support |
| 1130 | ############################################################################## |
| 1131 | |
| 1132 | list(APPEND VNET_SOURCES |
| 1133 | feature/feature.c |
| 1134 | feature/feature_api.c |
| 1135 | feature/registration.c |
| 1136 | ) |
| 1137 | |
| 1138 | list(APPEND VNET_HEADERS |
| 1139 | feature/feature.h |
| 1140 | ) |
| 1141 | |
| 1142 | list(APPEND VNET_API_FILES feature/feature.api) |
| 1143 | |
| 1144 | ############################################################################## |
| 1145 | # Unix kernel related |
| 1146 | ############################################################################## |
| 1147 | |
| 1148 | # FIXME: unix/hgshm.c |
| 1149 | |
| 1150 | list(APPEND VNET_SOURCES |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1151 | unix/gdb_funcs.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1152 | unix/tuntap.c |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1153 | ) |
| 1154 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1155 | list(APPEND VNET_HEADERS |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1156 | unix/tuntap.h |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1157 | ) |
| 1158 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1159 | ############################################################################## |
| 1160 | # FIB |
| 1161 | ############################################################################## |
| 1162 | |
| 1163 | list(APPEND VNET_SOURCES |
| 1164 | fib/fib.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1165 | fib/ip4_fib.c |
| 1166 | 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 Ranns | 3bab8f9 | 2019-12-04 06:11:00 +0000 | [diff] [blame] | 1175 | fib/fib_entry_src_adj.c |
| 1176 | fib/fib_entry_src_api.c |
| 1177 | fib/fib_entry_src_drop.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1178 | fib/fib_entry_src_interface.c |
| 1179 | fib/fib_entry_src_interpose.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1180 | fib/fib_entry_src_lisp.c |
Neale Ranns | 3bab8f9 | 2019-12-04 06:11:00 +0000 | [diff] [blame] | 1181 | fib/fib_entry_src_mpls.c |
| 1182 | fib/fib_entry_src_simple.c |
| 1183 | fib/fib_entry_src_rr.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1184 | fib/fib_entry_cover.c |
| 1185 | fib/fib_entry_delegate.c |
Neale Ranns | 1f50bf8 | 2019-07-16 15:28:52 +0000 | [diff] [blame] | 1186 | fib/fib_entry_track.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1187 | fib/fib_path_list.c |
| 1188 | fib/fib_path.c |
| 1189 | fib/fib_path_ext.c |
Neale Ranns | 3bab8f9 | 2019-12-04 06:11:00 +0000 | [diff] [blame] | 1190 | fib/fib_source.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1191 | fib/fib_urpf_list.c |
| 1192 | fib/fib_attached_export.c |
| 1193 | fib/fib_api.c |
| 1194 | fib/fib_bfd.c |
| 1195 | ) |
| 1196 | |
| 1197 | list(APPEND VNET_HEADERS |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1198 | fib/fib.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1199 | fib/fib_api.h |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1200 | fib/ip4_fib.h |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1201 | fib/ip6_fib.h |
| 1202 | fib/fib_types.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1203 | fib/fib_table.h |
| 1204 | fib/fib_node.h |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1205 | fib/fib_node_list.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1206 | fib/fib_entry.h |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1207 | fib/fib_entry_delegate.h |
Neale Ranns | 3bab8f9 | 2019-12-04 06:11:00 +0000 | [diff] [blame] | 1208 | fib/fib_source.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1209 | ) |
| 1210 | |
Benoît Ganne | d39495d | 2019-07-25 14:14:03 +0200 | [diff] [blame] | 1211 | list(APPEND VNET_API_FILES fib/fib_types.api) |
| 1212 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1213 | ############################################################################## |
| 1214 | # ADJ |
| 1215 | ############################################################################## |
| 1216 | |
| 1217 | list(APPEND VNET_SOURCES |
| 1218 | adj/adj_nbr.c |
| 1219 | adj/adj_glean.c |
| 1220 | adj/adj_midchain.c |
Neale Ranns | 4c3ba81 | 2019-03-26 07:02:58 +0000 | [diff] [blame] | 1221 | adj/adj_midchain_delegate.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1222 | adj/adj_mcast.c |
| 1223 | adj/adj_l2.c |
| 1224 | adj/adj_nsh.c |
| 1225 | adj/adj.c |
| 1226 | adj/rewrite.c |
| 1227 | adj/adj_bfd.c |
| 1228 | adj/adj_delegate.c |
| 1229 | ) |
| 1230 | |
Filip Tehlar | 0b2c15d | 2019-03-04 02:52:54 -0800 | [diff] [blame] | 1231 | list(APPEND VNET_MULTIARCH_SOURCES |
| 1232 | adj/adj_nsh.c |
| 1233 | adj/adj_l2.c |
Neale Ranns | 4ec36c5 | 2020-03-31 09:21:29 -0400 | [diff] [blame] | 1234 | adj/adj_midchain.c |
Filip Tehlar | 0b2c15d | 2019-03-04 02:52:54 -0800 | [diff] [blame] | 1235 | ) |
| 1236 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1237 | list(APPEND VNET_HEADERS |
| 1238 | adj/adj.h |
| 1239 | adj/adj_types.h |
| 1240 | adj/adj_glean.h |
| 1241 | adj/adj_nsh.h |
| 1242 | adj/adj_nbr.h |
Alberto Compagno | d8ca1e4 | 2019-08-12 11:43:19 +0200 | [diff] [blame] | 1243 | adj/adj_midchain.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1244 | adj/rewrite.h |
| 1245 | ) |
| 1246 | |
| 1247 | ############################################################################## |
| 1248 | # Data-Plane Objects |
| 1249 | ############################################################################## |
| 1250 | |
| 1251 | list(APPEND VNET_SOURCES |
| 1252 | dpo/dpo.c |
| 1253 | dpo/drop_dpo.c |
| 1254 | dpo/ip_null_dpo.c |
| 1255 | dpo/ip6_ll_dpo.c |
| 1256 | dpo/punt_dpo.c |
| 1257 | dpo/receive_dpo.c |
| 1258 | dpo/load_balance.c |
| 1259 | dpo/load_balance_map.c |
| 1260 | dpo/lookup_dpo.c |
| 1261 | dpo/classify_dpo.c |
| 1262 | dpo/replicate_dpo.c |
| 1263 | dpo/interface_rx_dpo.c |
| 1264 | dpo/interface_tx_dpo.c |
| 1265 | dpo/mpls_disposition.c |
| 1266 | dpo/mpls_label_dpo.c |
| 1267 | dpo/l3_proxy_dpo.c |
| 1268 | dpo/dvr_dpo.c |
Neale Ranns | 1dbcf30 | 2019-07-19 11:44:53 +0000 | [diff] [blame] | 1269 | dpo/pw_cw.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1270 | ) |
| 1271 | |
Filip Tehlar | eb9a27f | 2019-03-07 01:42:11 -0800 | [diff] [blame] | 1272 | list(APPEND VNET_MULTIARCH_SOURCES |
| 1273 | dpo/lookup_dpo.h |
| 1274 | dpo/mpls_disposition.c |
| 1275 | dpo/dvr_dpo.c |
| 1276 | dpo/mpls_label_dpo.c |
| 1277 | dpo/interface_rx_dpo.c |
| 1278 | ) |
| 1279 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1280 | list(APPEND VNET_HEADERS |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1281 | dpo/load_balance.h |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1282 | dpo/drop_dpo.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1283 | dpo/lookup_dpo.h |
| 1284 | dpo/punt_dpo.h |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1285 | dpo/classify_dpo.h |
| 1286 | dpo/receive_dpo.h |
| 1287 | dpo/ip_null_dpo.h |
| 1288 | dpo/replicate_dpo.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1289 | dpo/dpo.h |
| 1290 | ) |
| 1291 | |
| 1292 | ############################################################################## |
| 1293 | # Multicast FIB |
| 1294 | ############################################################################## |
| 1295 | |
| 1296 | list(APPEND VNET_SOURCES |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1297 | mfib/mfib_forward.c |
| 1298 | mfib/ip4_mfib.c |
| 1299 | mfib/ip6_mfib.c |
Neale Ranns | 097fa66 | 2018-05-01 05:17:55 -0700 | [diff] [blame] | 1300 | mfib/mfib_api.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1301 | mfib/mfib_types.c |
| 1302 | mfib/mfib_signal.c |
| 1303 | mfib/mfib_itf.c |
| 1304 | mfib/mfib_entry.c |
Neale Ranns | 9e829a8 | 2018-12-17 05:50:32 -0800 | [diff] [blame] | 1305 | mfib/mfib_entry.c |
| 1306 | mfib/mfib_entry_cover.c |
| 1307 | mfib/mfib_entry_delegate.c |
| 1308 | mfib/mfib_entry_src.c |
| 1309 | mfib/mfib_entry_src_rr.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1310 | mfib/mfib_table.c |
| 1311 | ) |
| 1312 | |
Filip Tehlar | 79c27eb | 2019-03-07 00:30:03 -0800 | [diff] [blame] | 1313 | list(APPEND VNET_MULTIARCH_SOURCES |
| 1314 | mfib/mfib_forward.c |
| 1315 | ) |
| 1316 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1317 | list(APPEND VNET_HEADERS |
| 1318 | mfib/ip4_mfib.h |
| 1319 | mfib/mfib_types.h |
| 1320 | mfib/mfib_table.h |
| 1321 | ) |
| 1322 | |
Benoît Ganne | d39495d | 2019-07-25 14:14:03 +0200 | [diff] [blame] | 1323 | list(APPEND VNET_API_FILES mfib/mfib_types.api) |
| 1324 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1325 | ############################################################################## |
| 1326 | # Utilities |
| 1327 | ############################################################################## |
| 1328 | |
| 1329 | list(APPEND VNET_SOURCES |
| 1330 | util/radix.c |
| 1331 | util/refcount.c |
Neale Ranns | c8352bc | 2018-08-29 10:23:58 -0700 | [diff] [blame] | 1332 | util/throttle.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1333 | util/trajectory.c |
| 1334 | ) |
| 1335 | |
Damjan Marion | ac5554c | 2018-08-30 22:56:59 +0200 | [diff] [blame] | 1336 | list(APPEND VNET_HEADERS |
| 1337 | util/throttle.h |
| 1338 | ) |
| 1339 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1340 | ############################################################################## |
| 1341 | # QoS |
| 1342 | ############################################################################## |
| 1343 | |
| 1344 | list(APPEND VNET_SOURCES |
| 1345 | qos/qos_types.c |
| 1346 | qos/qos_api.c |
| 1347 | qos/qos_egress_map.c |
| 1348 | qos/qos_record.c |
Filip Tehlar | 0bddf7e | 2019-03-04 08:14:07 -0800 | [diff] [blame] | 1349 | qos/qos_record_node.c |
Neale Ranns | 83832e7 | 2019-07-31 02:48:02 -0700 | [diff] [blame] | 1350 | qos/qos_store.c |
| 1351 | qos/qos_store_node.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1352 | qos/qos_mark.c |
Filip Tehlar | 0bddf7e | 2019-03-04 08:14:07 -0800 | [diff] [blame] | 1353 | qos/qos_mark_node.c |
| 1354 | ) |
| 1355 | |
| 1356 | list(APPEND VNET_MULTIARCH_SOURCES |
| 1357 | qos/qos_record_node.c |
| 1358 | qos/qos_mark_node.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1359 | ) |
| 1360 | |
| 1361 | list(APPEND VNET_API_FILES qos/qos.api) |
| 1362 | |
| 1363 | ############################################################################## |
| 1364 | # BIER |
| 1365 | ############################################################################## |
| 1366 | |
| 1367 | list(APPEND VNET_SOURCES |
| 1368 | bier/bier_bit_string.c |
| 1369 | bier/bier_entry.c |
| 1370 | bier/bier_fmask.c |
| 1371 | bier/bier_fmask_db.c |
| 1372 | bier/bier_input.c |
| 1373 | bier/bier_lookup.c |
| 1374 | bier/bier_output.c |
| 1375 | bier/bier_table.c |
| 1376 | bier/bier_types.c |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1377 | bier/bier_api.c |
| 1378 | bier/bier_drop.c |
| 1379 | bier/bier_update.c |
| 1380 | bier/bier_imp_node.c |
| 1381 | bier/bier_imp.c |
| 1382 | bier/bier_disp_entry.c |
| 1383 | bier/bier_disp_lookup_node.c |
| 1384 | bier/bier_disp_dispatch_node.c |
| 1385 | bier/bier_disp_table.c |
| 1386 | bier/bier_bift_table.c |
| 1387 | ) |
| 1388 | |
Filip Tehlar | a01e032 | 2019-03-05 03:34:52 -0800 | [diff] [blame] | 1389 | list(APPEND VNET_MULTIARCH_SOURCES |
| 1390 | bier/bier_disp_dispatch_node.c |
| 1391 | bier/bier_disp_lookup_node.c |
| 1392 | bier/bier_imp_node.c |
| 1393 | ) |
| 1394 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1395 | list(APPEND VNET_HEADERS |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1396 | bier/bier_types.h |
| 1397 | bier/bier_entry.h |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1398 | bier/bier_update.h |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1399 | bier/bier_table.h |
Damjan Marion | 2bfdda7 | 2018-08-24 21:36:42 +0200 | [diff] [blame] | 1400 | ) |
| 1401 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1402 | list(APPEND VNET_API_FILES bier/bier.api) |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1403 | |
Florin Coras | 41c9e04 | 2018-09-11 00:10:41 -0700 | [diff] [blame] | 1404 | ############################################################################## |
Matus Fabian | b4515b4 | 2018-11-19 04:25:32 -0800 | [diff] [blame] | 1405 | # SYSLOG |
| 1406 | ############################################################################## |
| 1407 | |
| 1408 | list (APPEND VNET_SOURCES |
| 1409 | syslog/syslog_api.c |
| 1410 | syslog/syslog_udp.c |
| 1411 | syslog/syslog.c |
| 1412 | ) |
| 1413 | |
| 1414 | list(APPEND VNET_HEADERS |
| 1415 | syslog/syslog_udp.h |
| 1416 | syslog/syslog.h |
| 1417 | ) |
| 1418 | |
| 1419 | list(APPEND VNET_API_FILES syslog/syslog.api) |
| 1420 | |
| 1421 | ############################################################################## |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 1422 | # Tunnel Endpoint Information Base |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 1423 | ############################################################################## |
| 1424 | |
| 1425 | list (APPEND VNET_SOURCES |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 1426 | teib/teib_api.c |
| 1427 | teib/teib_cli.c |
| 1428 | teib/teib.c |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 1429 | ) |
| 1430 | |
| 1431 | list(APPEND VNET_HEADERS |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 1432 | teib/teib.h |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 1433 | ) |
| 1434 | |
Neale Ranns | 03ce462 | 2020-02-03 10:55:09 +0000 | [diff] [blame] | 1435 | list(APPEND VNET_API_FILES teib/teib.api) |
Neale Ranns | 5f8f617 | 2019-04-18 10:23:56 +0000 | [diff] [blame] | 1436 | |
| 1437 | ############################################################################## |
Neale Ranns | cbe25aa | 2019-09-30 10:53:31 +0000 | [diff] [blame] | 1438 | # ARP/ND |
| 1439 | ############################################################################## |
| 1440 | |
| 1441 | list (APPEND VNET_SOURCES |
| 1442 | arp/arp_api.c |
| 1443 | arp/arp.c |
| 1444 | arp/arp_proxy.c |
| 1445 | ) |
| 1446 | |
| 1447 | list(APPEND VNET_HEADERS |
| 1448 | arp/arp.h |
| 1449 | ) |
| 1450 | |
| 1451 | list(APPEND VNET_API_FILES arp/arp.api) |
| 1452 | |
| 1453 | list (APPEND VNET_SOURCES |
| 1454 | ip6-nd/ip6_mld.c |
| 1455 | ip6-nd/ip6_nd.c |
| 1456 | ip6-nd/ip6_nd_api.c |
| 1457 | ip6-nd/ip6_nd_proxy.c |
| 1458 | ip6-nd/ip6_ra.c |
| 1459 | ip6-nd/rd_cp.c |
| 1460 | ip6-nd/rd_cp_api.c |
| 1461 | ) |
| 1462 | |
| 1463 | list(APPEND VNET_HEADERS |
| 1464 | ip6-nd/ip6_nd.h |
| 1465 | ) |
| 1466 | |
| 1467 | list(APPEND VNET_API_FILES |
| 1468 | ip6-nd/ip6_nd.api |
| 1469 | ip6-nd/rd_cp.api |
| 1470 | ) |
| 1471 | |
| 1472 | ############################################################################## |
Florin Coras | 41c9e04 | 2018-09-11 00:10:41 -0700 | [diff] [blame] | 1473 | # VNET Library |
| 1474 | ############################################################################## |
| 1475 | |
Damjan Marion | 4553c95 | 2018-08-26 11:04:40 +0200 | [diff] [blame] | 1476 | add_vpp_library(vnet |
| 1477 | SOURCES ${VNET_SOURCES} |
| 1478 | MULTIARCH_SOURCES ${VNET_MULTIARCH_SOURCES} |
| 1479 | INSTALL_HEADERS ${VNET_HEADERS} |
| 1480 | API_FILES ${VNET_API_FILES} |
| 1481 | LINK_LIBRARIES vppinfra svm vlib ${OPENSSL_LIBRARIES} |
Chris Luke | c171d01 | 2020-01-15 20:30:04 -0500 | [diff] [blame] | 1482 | DEPENDS vpp_version_h api_headers |
Damjan Marion | 612dd6a | 2018-07-30 12:45:07 +0200 | [diff] [blame] | 1483 | ) |
Florin Coras | 41c9e04 | 2018-09-11 00:10:41 -0700 | [diff] [blame] | 1484 | |
| 1485 | ############################################################################## |
Yulong Pei | db43bb6 | 2020-01-09 01:12:43 +0800 | [diff] [blame] | 1486 | # vpp api test client library |
| 1487 | ############################################################################## |
| 1488 | |
| 1489 | add_vpp_library (vatclient |
| 1490 | SOURCES ip/ip_types_api.c |
| 1491 | DEPENDS api_headers |
| 1492 | ) |
| 1493 | |
| 1494 | ############################################################################## |