Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 1 | # Copyright 2013, Big Switch Networks, Inc. |
| 2 | # |
| 3 | # LoxiGen is licensed under the Eclipse Public License, version 1.0 (EPL), with |
| 4 | # the following special exception: |
| 5 | # |
| 6 | # LOXI Exception |
| 7 | # |
| 8 | # As a special exception to the terms of the EPL, you may distribute libraries |
| 9 | # generated by LoxiGen (LoxiGen Libraries) under the terms of your choice, provided |
| 10 | # that copyright and licensing notices generated by LoxiGen are not altered or removed |
| 11 | # from the LoxiGen Libraries and the notice provided below is (i) included in |
| 12 | # the LoxiGen Libraries, if distributed in source code form and (ii) included in any |
| 13 | # documentation for the LoxiGen Libraries, if distributed in binary form. |
| 14 | # |
| 15 | # Notice: "Copyright 2013, Big Switch Networks, Inc. This library was generated by the LoxiGen Compiler." |
| 16 | # |
| 17 | # You may not use this file except in compliance with the EPL or LOXI Exception. You may obtain |
| 18 | # a copy of the EPL at: |
| 19 | # |
| 20 | # http://www.eclipse.org/legal/epl-v10.html |
| 21 | # |
| 22 | # Unless required by applicable law or agreed to in writing, software |
| 23 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 24 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 25 | # EPL for the specific language governing permissions and limitations |
| 26 | # under the EPL. |
| 27 | |
| 28 | # @brief Generate wire to generic match conversion functions |
| 29 | # |
| 30 | # @fixme This has lots of C specific code that should be moved into c_gen |
| 31 | |
| 32 | # of_match_to_wire_match(match, wire_match) |
| 33 | # of_wire_match_to_match(wire_match, match) |
| 34 | # Version is taken from the source in each case |
| 35 | # |
| 36 | # name |
| 37 | # type |
| 38 | # conditions |
| 39 | # v3 ident |
| 40 | # takes mask |
| 41 | |
| 42 | import sys |
Andreas Wundsam | 542a13c | 2013-11-15 13:28:55 -0800 | [diff] [blame] | 43 | import c_gen.of_g_legacy as of_g |
| 44 | import c_gen.match as match |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 45 | import c_code_gen |
| 46 | |
| 47 | def match_c_top_matter(out, name): |
| 48 | """ |
| 49 | Generate top matter for match C file |
| 50 | |
| 51 | @param name The name of the output file |
| 52 | @param out The output file object |
| 53 | """ |
| 54 | c_code_gen.common_top_matter(out, name) |
| 55 | out.write("#include \"loci_log.h\"\n") |
| 56 | out.write("#include <loci/loci.h>\n") |
| 57 | |
| 58 | def match_h_top_matter(out, name): |
| 59 | """ |
| 60 | Generate top matter for the C file |
| 61 | |
| 62 | @param name The name of the output file |
| 63 | @param ih_name The name of the internal header file |
| 64 | @param out The output file object |
| 65 | """ |
| 66 | c_code_gen.common_top_matter(out, name) |
| 67 | out.write(""" |
| 68 | #include <loci/loci_base.h> |
| 69 | """) |
| 70 | |
| 71 | def gen_declarations(out): |
| 72 | out.write(""" |
| 73 | /* |
| 74 | * Match serialize/deserialize declarations |
| 75 | * Wire match conversion function declarations |
| 76 | */ |
| 77 | extern int of_match_serialize(of_version_t version, of_match_t *match, |
| 78 | of_octets_t *octets); |
| 79 | extern int of_match_deserialize(of_version_t version, of_match_t *match, |
| 80 | of_octets_t *octets); |
| 81 | extern int of_match_v1_to_match(of_match_v1_t *src, of_match_t *dst); |
| 82 | extern int of_match_v2_to_match(of_match_v2_t *src, of_match_t *dst); |
| 83 | extern int of_match_v3_to_match(of_match_v3_t *src, of_match_t *dst); |
| 84 | extern int of_match_to_wire_match_v1(of_match_t *src, of_match_v1_t *dst); |
| 85 | extern int of_match_to_wire_match_v2(of_match_t *src, of_match_v2_t *dst); |
| 86 | extern int of_match_to_wire_match_v3(of_match_t *src, of_match_v3_t *dst); |
| 87 | """) |
| 88 | |
| 89 | def gen_v4_match_compat(out): |
| 90 | """ |
| 91 | Code for coercing version 1.3 matches to 1.2 matches |
| 92 | |
| 93 | @FIXME This is a stopgap and needs to get cleaned up. |
| 94 | """ |
| 95 | out.write(""" |
| 96 | /** |
| 97 | * Definitions to coerce v4 match (version 1.3) to v3 matches |
| 98 | * (version 1.2). |
| 99 | * @FIXME This is a stopgap and needs to get cleaned up. |
| 100 | */ |
| 101 | #define of_match_v4_t of_match_v3_t |
| 102 | #define of_match_v4_init of_match_v3_init |
| 103 | #define of_match_v4_new of_match_v3_new |
| 104 | #define of_match_v4_to_match of_match_v3_to_match |
| 105 | #define of_match_to_wire_match_v4 of_match_to_wire_match_v3 |
| 106 | #define of_match_v4_delete of_match_v3_delete |
| 107 | """) |
| 108 | |
| 109 | def gen_match_macros(out): |
| 110 | out.write(""" |
| 111 | |
| 112 | /** |
| 113 | * Definitions for wildcard macros for OF_VERSION_1_0 |
| 114 | */ |
| 115 | |
| 116 | """) |
| 117 | for key in match.of_v1_keys: |
| 118 | entry = match.of_match_members[key] |
| 119 | if "v1_wc_shift" in entry: |
| 120 | if key in ["ipv4_src", "ipv4_dst"]: |
| 121 | out.write(""" |
| 122 | #define OF_MATCH_V1_WC_%(ku)s_SHIFT %(val)d |
| 123 | #define OF_MATCH_V1_WC_%(ku)s_MASK (0x3f << %(val)d) |
| 124 | #define OF_MATCH_V1_WC_%(ku)s_CLEAR(wc) ((wc) &= ~(0x3f << %(val)d)) |
| 125 | #define OF_MATCH_V1_WC_%(ku)s_SET(wc, value) do { \\ |
| 126 | OF_MATCH_V1_WC_%(ku)s_CLEAR(wc); \\ |
| 127 | ((wc) |= (((value) & 0x3f) << %(val)d)); \\ |
| 128 | } while (0) |
| 129 | #define OF_MATCH_V1_WC_%(ku)s_TEST(wc) ((wc) & (0x3f << %(val)d)) |
| 130 | #define OF_MATCH_V1_WC_%(ku)s_GET(wc) (((wc) >> %(val)d) & 0x3f) |
| 131 | """ % dict(ku=key.upper(), val=entry["v1_wc_shift"])) |
| 132 | else: |
| 133 | out.write(""" |
| 134 | #define OF_MATCH_V1_WC_%(ku)s_SHIFT %(val)d |
| 135 | #define OF_MATCH_V1_WC_%(ku)s_MASK (1 << %(val)d) |
| 136 | #define OF_MATCH_V1_WC_%(ku)s_SET(wc) ((wc) |= (1 << %(val)d)) |
| 137 | #define OF_MATCH_V1_WC_%(ku)s_CLEAR(wc) ((wc) &= ~(1 << %(val)d)) |
| 138 | #define OF_MATCH_V1_WC_%(ku)s_TEST(wc) ((wc) & (1 << %(val)d)) |
| 139 | """ % dict(ku=key.upper(), val=entry["v1_wc_shift"])) |
| 140 | |
| 141 | out.write(""" |
| 142 | |
| 143 | /** |
| 144 | * Definitions for wildcard macros for OF_VERSION_1_1 |
| 145 | */ |
| 146 | """) |
| 147 | |
| 148 | for key in sorted(match.of_v2_keys): |
| 149 | entry = match.of_match_members[key] |
| 150 | if "v2_wc_shift" in entry: |
| 151 | out.write(""" |
| 152 | #define OF_MATCH_V2_WC_%(ku)s_SHIFT %(val)d |
| 153 | #define OF_MATCH_V2_WC_%(ku)s_MASK (1 << %(val)d) |
| 154 | #define OF_MATCH_V2_WC_%(ku)s_SET(wc) ((wc) |= (1 << %(val)d)) |
| 155 | #define OF_MATCH_V2_WC_%(ku)s_CLEAR(wc) ((wc) &= ~(1 << %(val)d)) |
| 156 | #define OF_MATCH_V2_WC_%(ku)s_TEST(wc) ((wc) & (1 << %(val)d)) |
| 157 | """ % dict(ku=key.upper(), val=entry["v2_wc_shift"])) |
| 158 | |
| 159 | |
| 160 | def gen_match_struct(out=sys.stdout): |
| 161 | out.write("/* Unified, flat OpenFlow match structure based on OF 1.2 */\n") |
| 162 | out.write("typedef struct of_match_fields_s {\n") |
| 163 | out.write(" /* Version 1.2 is used for field names */\n") |
| 164 | for name in match.match_keys_sorted: |
| 165 | entry = match.of_match_members[name] |
| 166 | out.write(" %-20s %s;\n" % (entry["m_type"], entry["name"])) |
| 167 | out.write(""" |
| 168 | } of_match_fields_t; |
| 169 | |
| 170 | /** |
| 171 | * @brief The LOCI match structure. |
| 172 | */ |
| 173 | |
| 174 | typedef struct of_match_s { |
| 175 | of_version_t version; |
| 176 | of_match_fields_t fields; |
| 177 | of_match_fields_t masks; |
| 178 | } of_match_t; |
| 179 | |
| 180 | /** |
Dan Talayco | fb50d38 | 2013-08-05 16:00:17 -0700 | [diff] [blame] | 181 | * Mask the values in the match structure according to its fields |
| 182 | */ |
| 183 | static inline void of_match_values_mask(of_match_t *match) |
| 184 | { |
| 185 | int idx; |
| 186 | |
| 187 | for (idx = 0; idx < sizeof(of_match_fields_t); idx++) { |
| 188 | ((uint8_t *)&match->fields)[idx] &= ((uint8_t *)&match->masks)[idx]; |
| 189 | } |
| 190 | } |
| 191 | |
Rich Lane | d5f2345 | 2014-04-03 01:16:37 -0700 | [diff] [blame^] | 192 | static inline void |
| 193 | of_memmask(void *_fields, void *_masks, size_t len) |
| 194 | { |
| 195 | int idx; |
| 196 | uint8_t *fields = _fields; |
| 197 | uint8_t *masks = _masks; |
| 198 | |
| 199 | for (idx = 0; idx < len; idx++) { |
| 200 | fields[idx] &= masks[idx]; |
| 201 | } |
| 202 | } |
| 203 | |
Dan Talayco | fb50d38 | 2013-08-05 16:00:17 -0700 | [diff] [blame] | 204 | /** |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 205 | * IP Mask map. IP maks wildcards from OF 1.0 are interpretted as |
| 206 | * indices into the map below. |
| 207 | * |
| 208 | * of_ip_mask_map: Array mapping index to mask |
| 209 | * of_ip_mask_use_map: Boolean indication set when map is initialized |
| 210 | * of_ip_mask_map_init: Initialize to default values; set "use map". |
| 211 | */ |
| 212 | #define OF_IP_MASK_MAP_COUNT 64 |
| 213 | extern uint32_t of_ip_mask_map[OF_IP_MASK_MAP_COUNT]; |
| 214 | extern int of_ip_mask_map_init_done; |
| 215 | |
| 216 | #define OF_IP_MASK_INIT_CHECK \ |
| 217 | if (!of_ip_mask_map_init_done) of_ip_mask_map_init() |
| 218 | |
| 219 | /** |
| 220 | * Initialize map |
| 221 | */ |
| 222 | extern void of_ip_mask_map_init(void); |
| 223 | |
| 224 | extern int of_ip_mask_map_set(int index, uint32_t mask); |
| 225 | extern int of_ip_mask_map_get(int index, uint32_t *mask); |
| 226 | |
| 227 | /** |
| 228 | * @brief Map from mask to index |
| 229 | */ |
| 230 | |
| 231 | extern int of_ip_mask_to_index(uint32_t mask); |
| 232 | |
| 233 | /** |
| 234 | * @brief Map from index to mask |
| 235 | */ |
| 236 | |
| 237 | extern uint32_t of_ip_index_to_mask(int index); |
| 238 | |
| 239 | /** |
| 240 | * The signalling of an untagged packet varies by OF version. |
| 241 | * Use this macro to set the field value. |
| 242 | */ |
| 243 | #define OF_MATCH_UNTAGGED_VLAN_ID(version) \\ |
| 244 | ((version) == OF_VERSION_1_0 ? 0xffff : \\ |
| 245 | ((version) == OF_VERSION_1_1 ? 0xffff : 0)) |
| 246 | |
| 247 | /** |
| 248 | * Version 1.1 had the notion of "any" vlan but must be set |
| 249 | */ |
| 250 | #define OF_MATCH_VLAN_TAG_PRESENT_ANY_ID(version) \\ |
| 251 | ((version) == OF_VERSION_1_0 ? 0 /* @fixme */ : \\ |
| 252 | ((version) == OF_VERSION_1_1 ? 0xfffe : 0x1000)) |
| 253 | """) |
| 254 | |
| 255 | def gen_oxm_defines(out): |
| 256 | """ |
| 257 | Generate verbatim definitions for OXM |
| 258 | """ |
| 259 | out.write(""" |
| 260 | |
| 261 | /* These are from the OpenFlow 1.2 header file */ |
| 262 | |
| 263 | /* OXM index values for bitmaps and parsing */ |
| 264 | enum of_oxm_index_e { |
| 265 | OF_OXM_INDEX_IN_PORT = 0, /* Switch input port. */ |
| 266 | OF_OXM_INDEX_IN_PHY_PORT = 1, /* Switch physical input port. */ |
| 267 | OF_OXM_INDEX_METADATA = 2, /* Metadata passed between tables. */ |
| 268 | OF_OXM_INDEX_ETH_DST = 3, /* Ethernet destination address. */ |
| 269 | OF_OXM_INDEX_ETH_SRC = 4, /* Ethernet source address. */ |
| 270 | OF_OXM_INDEX_ETH_TYPE = 5, /* Ethernet frame type. */ |
| 271 | OF_OXM_INDEX_VLAN_VID = 6, /* VLAN id. */ |
| 272 | OF_OXM_INDEX_VLAN_PCP = 7, /* VLAN priority. */ |
| 273 | OF_OXM_INDEX_IP_DSCP = 8, /* IP DSCP (6 bits in ToS field). */ |
| 274 | OF_OXM_INDEX_IP_ECN = 9, /* IP ECN (2 bits in ToS field). */ |
| 275 | OF_OXM_INDEX_IP_PROTO = 10, /* IP protocol. */ |
| 276 | OF_OXM_INDEX_IPV4_SRC = 11, /* IPv4 source address. */ |
| 277 | OF_OXM_INDEX_IPV4_DST = 12, /* IPv4 destination address. */ |
| 278 | OF_OXM_INDEX_TCP_SRC = 13, /* TCP source port. */ |
| 279 | OF_OXM_INDEX_TCP_DST = 14, /* TCP destination port. */ |
| 280 | OF_OXM_INDEX_UDP_SRC = 15, /* UDP source port. */ |
| 281 | OF_OXM_INDEX_UDP_DST = 16, /* UDP destination port. */ |
| 282 | OF_OXM_INDEX_SCTP_SRC = 17, /* SCTP source port. */ |
| 283 | OF_OXM_INDEX_SCTP_DST = 18, /* SCTP destination port. */ |
| 284 | OF_OXM_INDEX_ICMPV4_TYPE = 19, /* ICMP type. */ |
| 285 | OF_OXM_INDEX_ICMPV4_CODE = 20, /* ICMP code. */ |
| 286 | OF_OXM_INDEX_ARP_OP = 21, /* ARP opcode. */ |
| 287 | OF_OXM_INDEX_ARP_SPA = 22, /* ARP source IPv4 address. */ |
| 288 | OF_OXM_INDEX_ARP_TPA = 23, /* ARP target IPv4 address. */ |
| 289 | OF_OXM_INDEX_ARP_SHA = 24, /* ARP source hardware address. */ |
| 290 | OF_OXM_INDEX_ARP_THA = 25, /* ARP target hardware address. */ |
| 291 | OF_OXM_INDEX_IPV6_SRC = 26, /* IPv6 source address. */ |
| 292 | OF_OXM_INDEX_IPV6_DST = 27, /* IPv6 destination address. */ |
| 293 | OF_OXM_INDEX_IPV6_FLABEL = 28, /* IPv6 Flow Label */ |
| 294 | OF_OXM_INDEX_ICMPV6_TYPE = 29, /* ICMPv6 type. */ |
| 295 | OF_OXM_INDEX_ICMPV6_CODE = 30, /* ICMPv6 code. */ |
| 296 | OF_OXM_INDEX_IPV6_ND_TARGET = 31, /* Target address for ND. */ |
| 297 | OF_OXM_INDEX_IPV6_ND_SLL = 32, /* Source link-layer for ND. */ |
| 298 | OF_OXM_INDEX_IPV6_ND_TLL = 33, /* Target link-layer for ND. */ |
| 299 | OF_OXM_INDEX_MPLS_LABEL = 34, /* MPLS label. */ |
| 300 | OF_OXM_INDEX_MPLS_TC = 35, /* MPLS TC. */ |
Rich Lane | d8d29c9 | 2013-09-24 13:46:42 -0700 | [diff] [blame] | 301 | |
| 302 | OF_OXM_INDEX_BSN_IN_PORTS_128 = 36, |
Rich Lane | 6171836 | 2013-10-24 16:59:42 -0700 | [diff] [blame] | 303 | OF_OXM_INDEX_BSN_LAG_ID = 37, |
Rich Lane | eb21c4f | 2013-10-28 17:34:41 -0700 | [diff] [blame] | 304 | OF_OXM_INDEX_BSN_VRF = 38, |
| 305 | OF_OXM_INDEX_BSN_GLOBAL_VRF_ALLOWED = 39, |
| 306 | OF_OXM_INDEX_BSN_L3_INTERFACE_CLASS_ID = 40, |
| 307 | OF_OXM_INDEX_BSN_L3_SRC_CLASS_ID = 41, |
| 308 | OF_OXM_INDEX_BSN_L3_DST_CLASS_ID = 42, |
Rich Lane | adb9481 | 2014-03-11 17:13:07 -0700 | [diff] [blame] | 309 | OF_OXM_INDEX_BSN_EGR_PORT_GROUP_ID = 43, |
Rich Lane | 53ddf5c | 2014-03-20 15:24:08 -0700 | [diff] [blame] | 310 | OF_OXM_INDEX_BSN_UDF0 = 44, |
| 311 | OF_OXM_INDEX_BSN_UDF1 = 45, |
| 312 | OF_OXM_INDEX_BSN_UDF2 = 46, |
| 313 | OF_OXM_INDEX_BSN_UDF3 = 47, |
| 314 | OF_OXM_INDEX_BSN_UDF4 = 48, |
| 315 | OF_OXM_INDEX_BSN_UDF5 = 49, |
| 316 | OF_OXM_INDEX_BSN_UDF6 = 50, |
| 317 | OF_OXM_INDEX_BSN_UDF7 = 51, |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 318 | }; |
| 319 | |
| 320 | #define OF_OXM_BIT(index) (((uint64_t) 1) << (index)) |
| 321 | |
| 322 | /* |
| 323 | * The generic match structure uses the OXM bit indices for it's |
| 324 | * bitmasks for active and masked values |
| 325 | */ |
| 326 | """) |
| 327 | for key, entry in match.of_match_members.items(): |
| 328 | out.write(""" |
| 329 | /* Mask/value check/set macros for %(key)s */ |
| 330 | |
| 331 | /** |
| 332 | * Set the mask for an exact match of %(key)s |
| 333 | */ |
| 334 | #define OF_MATCH_MASK_%(ku)s_EXACT_SET(_match) \\ |
| 335 | MEMSET(&(_match)->masks.%(key)s, 0xff, \\ |
| 336 | sizeof(((_match)->masks).%(key)s)) |
| 337 | |
| 338 | /** |
| 339 | * Clear the mask for %(key)s making that field inactive for the match |
| 340 | */ |
| 341 | #define OF_MATCH_MASK_%(ku)s_CLEAR(_match) \\ |
| 342 | MEMSET(&(_match)->masks.%(key)s, 0, \\ |
| 343 | sizeof(((_match)->masks).%(key)s)) |
| 344 | |
| 345 | /** |
| 346 | * Test whether the match is exact for %(key)s |
| 347 | */ |
| 348 | #define OF_MATCH_MASK_%(ku)s_EXACT_TEST(_match) \\ |
| 349 | OF_VARIABLE_IS_ALL_ONES(&(((_match)->masks).%(key)s)) |
| 350 | |
| 351 | /** |
| 352 | * Test whether key %(key)s is being checked in the match |
| 353 | */ |
| 354 | #define OF_MATCH_MASK_%(ku)s_ACTIVE_TEST(_match) \\ |
| 355 | OF_VARIABLE_IS_NON_ZERO(&(((_match)->masks).%(key)s)) |
| 356 | |
| 357 | """ % dict(key=key, bit=match.oxm_index(key), ku=key.upper())) |
| 358 | |
| 359 | def gen_incompat_members(out=sys.stdout): |
| 360 | """ |
| 361 | Generate a macro that lists all the unified fields which are |
| 362 | incompatible with v1 matches |
| 363 | """ |
| 364 | out.write(""" |
| 365 | /* Identify bits in unified match that are incompatible with V1, V2 matches */ |
| 366 | #define OF_MATCH_V1_INCOMPAT ( (uint64_t)0 """) |
| 367 | for key in match.of_match_members: |
| 368 | if key in match.of_v1_keys: |
| 369 | continue |
| 370 | out.write("\\\n | ((uint64_t)1 << %s)" % match.oxm_index(key)) |
| 371 | out.write(")\n\n") |
| 372 | |
| 373 | out.write("#define OF_MATCH_V2_INCOMPAT ( (uint64_t)0 ") |
| 374 | for key in match.of_match_members: |
| 375 | if key in match.of_v2_keys: |
| 376 | continue |
| 377 | out.write("\\\n | ((uint64_t)1 << %s)" % match.oxm_index(key)) |
| 378 | out.write(""") |
| 379 | |
| 380 | /* Indexed by version number */ |
Rich Lane | b157b0f | 2013-03-27 13:55:28 -0700 | [diff] [blame] | 381 | extern const uint64_t of_match_incompat[4]; |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 382 | """) |
| 383 | |
| 384 | |
| 385 | # # FIXME: Make these version specific |
| 386 | # def name_to_index(a, name, key="name"): |
| 387 | # """ |
| 388 | # Given an array, a, with each entry a dict, and a name, |
| 389 | # find the entry with key matching name and return the index |
| 390 | # """ |
| 391 | # count = 0 |
| 392 | # for e in a: |
| 393 | # if e[key] == name: |
| 394 | # return count |
| 395 | # count += 1 |
| 396 | # return -1 |
| 397 | |
| 398 | def gen_wc_convert_literal(out): |
| 399 | """ |
| 400 | A bunch of literal C code that's associated with match conversions |
| 401 | @param out The output file handle |
| 402 | """ |
| 403 | out.write(""" |
| 404 | |
| 405 | /* Some internal macros and utility functions */ |
| 406 | |
| 407 | /* For counting bits in a uint32 */ |
| 408 | #define _VAL_AND_5s(v) ((v) & 0x55555555) |
| 409 | #define _VAL_EVERY_OTHER(v) (_VAL_AND_5s(v) + _VAL_AND_5s(v >> 1)) |
| 410 | #define _VAL_AND_3s(v) ((v) & 0x33333333) |
| 411 | #define _VAL_PAIRS(v) (_VAL_AND_3s(v) + _VAL_AND_3s(v >> 2)) |
| 412 | #define _VAL_QUADS(v) (((val) + ((val) >> 4)) & 0x0F0F0F0F) |
| 413 | #define _VAL_BYTES(v) ((val) + ((val) >> 8)) |
| 414 | |
| 415 | /** |
| 416 | * Counts the number of bits set in an integer |
| 417 | */ |
| 418 | static inline int |
| 419 | _COUNT_BITS(unsigned int val) |
| 420 | { |
| 421 | val = _VAL_EVERY_OTHER(val); |
| 422 | val = _VAL_PAIRS(val); |
| 423 | val = _VAL_QUADS(val); |
| 424 | val = _VAL_BYTES(val); |
| 425 | |
| 426 | return (val & 0XFF) + ((val >> 16) & 0xFF); |
| 427 | } |
| 428 | |
| 429 | /* Indexed by version number */ |
Rich Lane | b157b0f | 2013-03-27 13:55:28 -0700 | [diff] [blame] | 430 | const uint64_t of_match_incompat[4] = { |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 431 | -1, |
| 432 | OF_MATCH_V1_INCOMPAT, |
| 433 | OF_MATCH_V2_INCOMPAT, |
| 434 | 0 |
| 435 | }; |
| 436 | |
| 437 | """) |
| 438 | |
| 439 | |
| 440 | def gen_unified_match_to_v1(out): |
| 441 | """ |
| 442 | Generate C code to convert a unified match structure to a V1 match struct |
| 443 | @param out The output file handle |
| 444 | """ |
| 445 | |
| 446 | out.write(""" |
| 447 | /** |
| 448 | * Check if match is compatible with OF 1.0 |
| 449 | * @param match The match being checked |
| 450 | */ |
| 451 | static inline int |
| 452 | of_match_v1_compat_check(of_match_t *match) |
| 453 | { |
| 454 | """) |
| 455 | for key in match.of_match_members: |
| 456 | if key in match.of_v1_keys: |
| 457 | continue |
| 458 | out.write(""" |
| 459 | if (OF_MATCH_MASK_%(ku)s_ACTIVE_TEST(match)) { |
| 460 | return 0; |
| 461 | } |
| 462 | """ % dict(ku=key.upper())) |
| 463 | |
| 464 | out.write(""" |
| 465 | return 1; |
| 466 | } |
| 467 | """) |
| 468 | |
| 469 | out.write(""" |
| 470 | /** |
| 471 | * Convert a generic match object to an OF_VERSION_1_0 object |
| 472 | * @param src Pointer to the generic match object source |
| 473 | * @param dst Pointer to the OF 1.0 wire structure |
| 474 | * |
| 475 | * The wire structure is initialized by this function if it doesn't |
| 476 | * not have the proper object ID. |
| 477 | */ |
| 478 | |
| 479 | int |
| 480 | of_match_to_wire_match_v1(of_match_t *src, of_match_v1_t *dst) |
| 481 | { |
| 482 | of_wc_bmap_t wildcards = 0; |
| 483 | int ip_mask_index; |
| 484 | |
| 485 | if ((src == NULL) || (dst == NULL)) { |
| 486 | return OF_ERROR_PARAM; |
| 487 | } |
| 488 | if (!of_match_v1_compat_check(src)) { |
| 489 | return OF_ERROR_COMPAT; |
| 490 | } |
| 491 | if (dst->object_id != OF_MATCH_V1) { |
| 492 | of_match_v1_init(dst, OF_VERSION_1_0, 0, 0); |
| 493 | } |
| 494 | """) |
| 495 | for key in sorted(match.of_v1_keys): |
| 496 | if key in ["ipv4_src", "ipv4_dst"]: # Special cases for masks here |
| 497 | out.write(""" |
| 498 | if (OF_MATCH_MASK_%(ku)s_ACTIVE_TEST(src)) { |
| 499 | ip_mask_index = of_ip_mask_to_index(src->masks.%(key)s); |
| 500 | of_match_v1_%(key)s_set(dst, src->fields.%(key)s); |
| 501 | } else { /* Wildcarded, look for 0 mask */ |
| 502 | ip_mask_index = of_ip_mask_to_index(0); |
| 503 | } |
| 504 | OF_MATCH_V1_WC_%(ku)s_SET(wildcards, ip_mask_index); |
| 505 | """ % dict(key=key, ku=key.upper())) |
| 506 | else: |
| 507 | out.write(""" |
| 508 | if (OF_MATCH_MASK_%(ku)s_ACTIVE_TEST(src)) { |
| 509 | of_match_v1_%(key)s_set(dst, src->fields.%(key)s); |
| 510 | } else { |
| 511 | OF_MATCH_V1_WC_%(ku)s_SET(wildcards); |
| 512 | } |
| 513 | """ % dict(key=key, ku=key.upper())) |
| 514 | |
| 515 | out.write(""" |
| 516 | of_match_v1_wildcards_set(dst, wildcards); |
| 517 | |
| 518 | return OF_ERROR_NONE; |
| 519 | } |
| 520 | """) |
| 521 | |
| 522 | def all_ones_mask(d_type): |
| 523 | if d_type == "of_mac_addr_t": |
| 524 | return "of_mac_addr_all_ones" |
| 525 | else: |
| 526 | return "((%s) -1)" % d_type |
| 527 | |
| 528 | def gen_unified_match_to_v2(out): |
| 529 | """ |
| 530 | Generate C code to convert a unified match structure to a V2 match struct |
| 531 | @param out The output file handle |
| 532 | """ |
| 533 | |
| 534 | out.write(""" |
| 535 | /** |
| 536 | * Check if match is compatible with OF 1.0 |
| 537 | * @param match The match being checked |
| 538 | */ |
| 539 | static inline int |
| 540 | of_match_v2_compat_check(of_match_t *match) |
| 541 | { |
| 542 | """) |
| 543 | for key in match.of_match_members: |
| 544 | if key in match.of_v2_keys: |
| 545 | continue |
| 546 | out.write(""" |
| 547 | if (OF_MATCH_MASK_%(ku)s_ACTIVE_TEST(match)) { |
| 548 | return 0; |
| 549 | } |
| 550 | """ % dict(ku=key.upper())) |
| 551 | |
| 552 | out.write(""" |
| 553 | return 1; |
| 554 | } |
| 555 | """) |
| 556 | |
| 557 | out.write(""" |
| 558 | /** |
| 559 | * Convert a generic match object to an OF_VERSION_1_1 object |
| 560 | * @param src Pointer to the generic match object source |
| 561 | * @param dst Pointer to the OF 1.1 wire structure |
| 562 | * |
| 563 | * The wire structure is initialized by this function. |
| 564 | */ |
| 565 | |
| 566 | int |
| 567 | of_match_to_wire_match_v2(of_match_t *src, of_match_v2_t *dst) |
| 568 | { |
| 569 | of_wc_bmap_t wildcards = 0; |
| 570 | |
| 571 | if ((src == NULL) || (dst == NULL)) { |
| 572 | return OF_ERROR_PARAM; |
| 573 | } |
| 574 | if (!of_match_v2_compat_check(src)) { |
| 575 | return OF_ERROR_COMPAT; |
| 576 | } |
| 577 | if (dst->object_id != OF_MATCH_V2) { |
| 578 | of_match_v2_init(dst, OF_VERSION_1_1, 0, 0); |
| 579 | } |
| 580 | """) |
| 581 | for key in match.of_v2_keys: |
| 582 | if key in match.of_v2_full_mask: |
| 583 | ones_mask = all_ones_mask(match.of_match_members[key]["m_type"]) |
| 584 | out.write(""" |
| 585 | if (OF_MATCH_MASK_%(ku)s_ACTIVE_TEST(src)) { |
| 586 | if (!OF_MATCH_MASK_%(ku)s_EXACT_TEST(src)) { |
| 587 | of_match_v2_%(key)s_mask_set(dst, |
| 588 | src->masks.%(key)s); |
| 589 | } else { /* Exact match; use all ones mask */ |
| 590 | of_match_v2_%(key)s_mask_set(dst, |
| 591 | %(ones_mask)s); |
| 592 | } |
| 593 | of_match_v2_%(key)s_set(dst, src->fields.%(key)s); |
| 594 | } |
| 595 | |
| 596 | """ % dict(key=key, ku=key.upper(), ones_mask=ones_mask)) |
| 597 | else: |
| 598 | out.write(""" |
| 599 | if (!OF_MATCH_MASK_%(ku)s_EXACT_TEST(src)) { |
| 600 | return OF_ERROR_COMPAT; |
| 601 | } |
| 602 | if (OF_MATCH_MASK_%(ku)s_ACTIVE_TEST(src)) { |
| 603 | of_match_v2_%(key)s_set(dst, src->fields.%(key)s); |
| 604 | } else { |
| 605 | OF_MATCH_V2_WC_%(ku)s_SET(wildcards); |
| 606 | } |
| 607 | """ % dict(key=key, ku=key.upper(), |
| 608 | wc_bit="OF_MATCH_WC_V2_%s" % key.upper())) |
| 609 | |
| 610 | out.write(""" |
| 611 | of_match_v2_wildcards_set(dst, wildcards); |
| 612 | |
| 613 | return OF_ERROR_NONE; |
| 614 | } |
| 615 | """) |
| 616 | |
| 617 | def gen_unified_match_to_v3(out): |
| 618 | """ |
| 619 | Generate C code to convert a unified match structure to a V3 match |
| 620 | |
| 621 | This is much easier as the unified struct is based on V3 |
| 622 | @param out The output file handle |
| 623 | """ |
| 624 | out.write(""" |
| 625 | static int |
| 626 | populate_oxm_list(of_match_t *src, of_list_oxm_t *oxm_list) |
| 627 | { |
| 628 | of_oxm_t oxm_entry; |
| 629 | |
| 630 | /* For each active member, add an OXM entry to the list */ |
| 631 | """) |
Rich Lane | 4964d54 | 2013-10-14 18:13:47 -0700 | [diff] [blame] | 632 | for key in match.match_keys_sorted: |
| 633 | entry = match.of_match_members[key] |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 634 | out.write("""\ |
| 635 | if (OF_MATCH_MASK_%(ku)s_ACTIVE_TEST(src)) { |
| 636 | if (!OF_MATCH_MASK_%(ku)s_EXACT_TEST(src)) { |
| 637 | of_oxm_%(key)s_masked_t *elt; |
| 638 | elt = &oxm_entry.%(key)s_masked; |
| 639 | |
| 640 | of_oxm_%(key)s_masked_init(elt, |
Rich Lane | cfd4ce0 | 2013-07-12 16:37:14 -0700 | [diff] [blame] | 641 | oxm_list->version, -1, 1); |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 642 | of_list_oxm_append_bind(oxm_list, &oxm_entry); |
Andreas Wundsam | 5325616 | 2013-05-02 14:05:53 -0700 | [diff] [blame] | 643 | of_oxm_%(key)s_masked_value_set(elt, |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 644 | src->fields.%(key)s); |
Andreas Wundsam | 5325616 | 2013-05-02 14:05:53 -0700 | [diff] [blame] | 645 | of_oxm_%(key)s_masked_value_mask_set(elt, |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 646 | src->masks.%(key)s); |
| 647 | } else { /* Active, but not masked */ |
| 648 | of_oxm_%(key)s_t *elt; |
| 649 | elt = &oxm_entry.%(key)s; |
| 650 | of_oxm_%(key)s_init(elt, |
Rich Lane | cfd4ce0 | 2013-07-12 16:37:14 -0700 | [diff] [blame] | 651 | oxm_list->version, -1, 1); |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 652 | of_list_oxm_append_bind(oxm_list, &oxm_entry); |
| 653 | of_oxm_%(key)s_value_set(elt, src->fields.%(key)s); |
| 654 | } |
| 655 | } |
| 656 | """ % dict(key=key, ku=key.upper())) |
| 657 | out.write(""" |
| 658 | return OF_ERROR_NONE; |
| 659 | } |
| 660 | |
| 661 | /** |
| 662 | * Convert a generic match object to an OF_VERSION_1_2 object |
| 663 | * @param src Pointer to the generic match object source |
| 664 | * @param dst Pointer to the OF 1.2 wire structure |
| 665 | * |
| 666 | * The wire structure is initialized by this function if the object |
| 667 | * id is not correct in the object |
| 668 | */ |
| 669 | |
| 670 | int |
| 671 | of_match_to_wire_match_v3(of_match_t *src, of_match_v3_t *dst) |
| 672 | { |
| 673 | int rv = OF_ERROR_NONE; |
| 674 | of_list_oxm_t *oxm_list; |
| 675 | |
| 676 | if ((src == NULL) || (dst == NULL)) { |
| 677 | return OF_ERROR_PARAM; |
| 678 | } |
| 679 | if (dst->object_id != OF_MATCH_V3) { |
Rich Lane | cfd4ce0 | 2013-07-12 16:37:14 -0700 | [diff] [blame] | 680 | of_match_v3_init(dst, OF_VERSION_1_2, 0, 0); |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 681 | } |
Rich Lane | cfd4ce0 | 2013-07-12 16:37:14 -0700 | [diff] [blame] | 682 | if ((oxm_list = of_list_oxm_new(dst->version)) == NULL) { |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 683 | return OF_ERROR_RESOURCE; |
| 684 | } |
| 685 | |
| 686 | rv = populate_oxm_list(src, oxm_list); |
| 687 | |
| 688 | if (rv == OF_ERROR_NONE) { |
| 689 | rv = of_match_v3_oxm_list_set(dst, oxm_list); |
| 690 | } |
| 691 | |
| 692 | of_list_oxm_delete(oxm_list); |
| 693 | |
| 694 | return rv; |
| 695 | } |
| 696 | """) |
| 697 | |
| 698 | def gen_v1_to_unified_match(out): |
| 699 | """ |
| 700 | Generate the code that maps a v1 wire format match object |
| 701 | to a unified match object |
| 702 | """ |
| 703 | # for each v1 member, if not in wildcards |
| 704 | # translate to unified. Treat nw_src/dst specially |
| 705 | out.write(""" |
| 706 | |
| 707 | /** |
| 708 | * Convert an OF_VERSION_1_0 object to a generic match object |
| 709 | * @param src Pointer to the OF 1.0 wire structure source |
| 710 | * @param dst Pointer to the generic match object destination |
| 711 | * |
| 712 | * The wire structure is initialized by this function. |
| 713 | */ |
| 714 | |
| 715 | int |
| 716 | of_match_v1_to_match(of_match_v1_t *src, of_match_t *dst) |
| 717 | { |
| 718 | of_wc_bmap_t wc; |
| 719 | int count; |
| 720 | |
| 721 | MEMSET(dst, 0, sizeof(*dst)); |
| 722 | dst->version = src->version; |
| 723 | |
| 724 | of_match_v1_wildcards_get(src, &wc); |
| 725 | """) |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 726 | for key in sorted(match.of_v1_keys): |
| 727 | if key in ["ipv4_src", "ipv4_dst"]: # Special cases for masks here |
| 728 | out.write(""" |
| 729 | count = OF_MATCH_V1_WC_%(ku)s_GET(wc); |
| 730 | dst->masks.%(key)s = of_ip_index_to_mask(count); |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 731 | of_match_v1_%(key)s_get(src, &dst->fields.%(key)s); |
Dan Talayco | fb50d38 | 2013-08-05 16:00:17 -0700 | [diff] [blame] | 732 | /* Clear the bits not indicated by mask; IP addrs are special for 1.0 */ |
| 733 | dst->fields.%(key)s &= dst->masks.%(key)s; |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 734 | """ % dict(ku=key.upper(), key=key)) |
| 735 | else: |
| 736 | out.write(""" |
| 737 | if (!(OF_MATCH_V1_WC_%(ku)s_TEST(wc))) { |
| 738 | of_match_v1_%(key)s_get(src, &dst->fields.%(key)s); |
| 739 | OF_MATCH_MASK_%(ku)s_EXACT_SET(dst); |
| 740 | } |
| 741 | """ % dict(ku=key.upper(), key=key)) |
| 742 | |
| 743 | out.write(""" |
| 744 | return OF_ERROR_NONE; |
| 745 | } |
| 746 | """) |
| 747 | |
| 748 | def gen_v2_to_unified_match(out): |
| 749 | """ |
| 750 | Generate the code that maps a v2 wire format match object |
| 751 | to a unified match object |
| 752 | """ |
| 753 | out.write(""" |
| 754 | int |
| 755 | of_match_v2_to_match(of_match_v2_t *src, of_match_t *dst) |
| 756 | { |
| 757 | of_wc_bmap_t wc; |
| 758 | |
| 759 | MEMSET(dst, 0, sizeof(*dst)); |
| 760 | dst->version = src->version; |
| 761 | |
| 762 | of_match_v2_wildcards_get(src, &wc); |
| 763 | """) |
| 764 | for key in match.of_v2_keys: |
| 765 | if key in match.of_v2_full_mask: |
| 766 | out.write(""" |
| 767 | of_match_v2_%(key)s_mask_get(src, &dst->masks.%(key)s); |
| 768 | if (OF_VARIABLE_IS_NON_ZERO(&dst->masks.%(key)s)) { /* Matching something */ |
| 769 | of_match_v2_%(key)s_get(src, &dst->fields.%(key)s); |
| 770 | } |
| 771 | """ % dict(ku=key.upper(), key=key)) |
| 772 | else: |
| 773 | out.write(""" |
| 774 | if (!(OF_MATCH_V2_WC_%(ku)s_TEST(wc))) { |
| 775 | of_match_v2_%(key)s_get(src, &dst->fields.%(key)s); |
| 776 | OF_MATCH_MASK_%(ku)s_EXACT_SET(dst); |
| 777 | } |
| 778 | """ % dict(ku=key.upper(), key=key)) |
| 779 | |
| 780 | out.write(""" |
Dan Talayco | fb50d38 | 2013-08-05 16:00:17 -0700 | [diff] [blame] | 781 | /* Clear values outside of masks */ |
| 782 | of_match_values_mask(dst); |
| 783 | |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 784 | return OF_ERROR_NONE; |
| 785 | } |
| 786 | """) |
| 787 | |
| 788 | |
| 789 | def gen_v3_to_unified_match(out): |
| 790 | """ |
| 791 | Generate the code that maps a v3 wire format match object |
| 792 | to a unified match object |
| 793 | """ |
| 794 | # Iterate thru the OXM list members |
| 795 | out.write(""" |
| 796 | int |
| 797 | of_match_v3_to_match(of_match_v3_t *src, of_match_t *dst) |
| 798 | { |
| 799 | int rv; |
| 800 | of_list_oxm_t oxm_list; |
| 801 | of_oxm_t oxm_entry; |
| 802 | """) |
| 803 | # for key in match.of_match_members: |
| 804 | # out.write(" of_oxm_%s_t *%s;\n" % (key, key)) |
| 805 | # out.write(" of_oxm_%s_masked_t *%s_masked;\n" % (key, key)) |
| 806 | |
| 807 | out.write(""" |
| 808 | MEMSET(dst, 0, sizeof(*dst)); |
| 809 | dst->version = src->version; |
| 810 | |
| 811 | of_match_v3_oxm_list_bind(src, &oxm_list); |
| 812 | rv = of_list_oxm_first(&oxm_list, &oxm_entry); |
| 813 | |
| 814 | while (rv == OF_ERROR_NONE) { |
| 815 | switch (oxm_entry.header.object_id) { /* What kind of entry is this */ |
| 816 | """) |
| 817 | for key in match.of_match_members: |
| 818 | out.write(""" |
| 819 | case OF_OXM_%(ku)s_MASKED: |
| 820 | of_oxm_%(key)s_masked_value_mask_get( |
| 821 | &oxm_entry.%(key)s_masked, |
| 822 | &dst->masks.%(key)s); |
| 823 | of_oxm_%(key)s_masked_value_get( |
| 824 | &oxm_entry.%(key)s, |
| 825 | &dst->fields.%(key)s); |
Rich Lane | d5f2345 | 2014-04-03 01:16:37 -0700 | [diff] [blame^] | 826 | of_memmask(&dst->fields.%(key)s, &dst->masks.%(key)s, sizeof(&dst->fields.%(key)s)); |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 827 | break; |
| 828 | case OF_OXM_%(ku)s: |
| 829 | OF_MATCH_MASK_%(ku)s_EXACT_SET(dst); |
| 830 | of_oxm_%(key)s_value_get( |
| 831 | &oxm_entry.%(key)s, |
| 832 | &dst->fields.%(key)s); |
| 833 | break; |
| 834 | """ % (dict(ku=key.upper(), key=key))) |
| 835 | |
| 836 | out.write(""" |
| 837 | default: |
| 838 | /* @fixme Add debug statement */ |
| 839 | return OF_ERROR_PARSE; |
| 840 | } /* end switch */ |
| 841 | rv = of_list_oxm_next(&oxm_list, &oxm_entry); |
| 842 | } /* end OXM iteration */ |
| 843 | |
| 844 | return OF_ERROR_NONE; |
| 845 | } |
| 846 | """) |
| 847 | |
| 848 | def gen_serialize(out): |
| 849 | out.write(""" |
| 850 | /** |
| 851 | * Serialize a match structure according to the version passed |
| 852 | * @param version The version to use for serialization protocol |
| 853 | * @param match Pointer to the structure to serialize |
| 854 | * @param octets Pointer to an octets object to fill out |
| 855 | * |
| 856 | * A buffer is allocated using normal internal ALLOC/FREE semantics |
| 857 | * and pointed to by the octets object. The length of the resulting |
| 858 | * serialization is in octets->bytes. |
| 859 | * |
| 860 | * For 1.2 matches, returns the padded serialized structure |
| 861 | * |
| 862 | * Note that FREE must be called on octets->data when processing of |
| 863 | * the object is complete. |
| 864 | */ |
| 865 | |
| 866 | int |
| 867 | of_match_serialize(of_version_t version, of_match_t *match, of_octets_t *octets) |
| 868 | { |
| 869 | int rv; |
| 870 | |
| 871 | switch (version) { |
| 872 | """) |
| 873 | for version in of_g.of_version_range: |
| 874 | out.write(""" |
| 875 | case %(ver_name)s: |
| 876 | { |
| 877 | of_match_v%(version)s_t *wire_match; |
| 878 | wire_match = of_match_v%(version)s_new(version); |
| 879 | if (wire_match == NULL) { |
| 880 | return OF_ERROR_RESOURCE; |
| 881 | } |
| 882 | if ((rv = of_match_to_wire_match_v%(version)s(match, wire_match)) < 0) { |
| 883 | of_match_v%(version)s_delete(wire_match); |
| 884 | return rv; |
| 885 | } |
| 886 | octets->bytes = OF_MATCH_BYTES(wire_match->length); |
| 887 | of_object_wire_buffer_steal((of_object_t *)wire_match, |
| 888 | &octets->data); |
| 889 | of_match_v%(version)s_delete(wire_match); |
| 890 | } |
| 891 | break; |
| 892 | """ % dict(version=version, ver_name=of_g.of_version_wire2name[version])) |
| 893 | out.write(""" |
| 894 | default: |
| 895 | return OF_ERROR_COMPAT; |
| 896 | } |
| 897 | |
| 898 | return OF_ERROR_NONE; |
| 899 | } |
| 900 | """) |
| 901 | |
| 902 | |
| 903 | def gen_deserialize(out): |
| 904 | out.write(""" |
| 905 | /** |
| 906 | * Deserialize a match structure according to the version passed |
| 907 | * @param version The version to use for deserialization protocol |
| 908 | * @param match Pointer to the structure to fill out |
| 909 | * @param octets Pointer to an octets object holding serial buffer |
| 910 | * |
| 911 | * Normally the octets object will point to a part of a wire buffer. |
| 912 | */ |
| 913 | |
| 914 | int |
| 915 | of_match_deserialize(of_version_t version, of_match_t *match, |
| 916 | of_octets_t *octets) |
| 917 | { |
| 918 | if (octets->bytes == 0) { /* No match specified means all wildcards */ |
| 919 | MEMSET(match, 0, sizeof(*match)); |
| 920 | match->version = version; |
| 921 | |
| 922 | return OF_ERROR_NONE; |
| 923 | } |
| 924 | |
| 925 | switch (version) { |
| 926 | """) |
| 927 | for version in of_g.of_version_range: |
| 928 | out.write(""" |
| 929 | case %(ver_name)s: |
| 930 | { /* FIXME: check init bytes */ |
| 931 | uint8_t *tmp; |
| 932 | of_match_v%(version)d_t wire_match; |
| 933 | of_match_v%(version)d_init(&wire_match, |
| 934 | %(ver_name)s, -1, 1); |
Andreas Wundsam | 5325616 | 2013-05-02 14:05:53 -0700 | [diff] [blame] | 935 | of_object_buffer_bind((of_object_t *)&wire_match, |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 936 | octets->data, octets->bytes, NULL); |
| 937 | OF_TRY(of_match_v%(version)d_to_match(&wire_match, match)); |
| 938 | |
| 939 | /* Free the wire buffer control block without freeing |
| 940 | * octets->bytes. */ |
| 941 | of_wire_buffer_steal(wire_match.wire_object.wbuf, &tmp); |
| 942 | } |
| 943 | break; |
| 944 | """ % dict(version=version, ver_name=of_g.of_version_wire2name[version])) |
| 945 | |
| 946 | out.write(""" |
| 947 | default: |
| 948 | return OF_ERROR_COMPAT; |
| 949 | } |
| 950 | |
| 951 | return OF_ERROR_NONE; |
| 952 | } |
| 953 | """) |
| 954 | |
| 955 | def gen_match_comp(out=sys.stdout): |
| 956 | """ |
| 957 | Generate match comparison functions |
| 958 | """ |
| 959 | out.write(""" |
| 960 | /** |
| 961 | * Determine "more specific" relationship between mac addrs |
| 962 | * @return true if v1 is equal to or more specific than v2 |
| 963 | * |
| 964 | * @todo Could be optimized |
| 965 | * |
| 966 | * Check: Every bit in v2 is set in v1; v1 may have add'l bits set. |
| 967 | * That is, return false if there is a bit set in v2 and not in v1. |
| 968 | */ |
| 969 | |
| 970 | static inline int |
| 971 | of_more_specific_ipv6(of_ipv6_t *v1, of_ipv6_t *v2) { |
| 972 | int idx; |
| 973 | |
| 974 | for (idx = 0; idx < OF_IPV6_BYTES; idx++) { |
| 975 | /* If there's a bit set in v2 that is clear in v1, return false */ |
| 976 | if (~v1->addr[idx] & v2->addr[idx]) { |
| 977 | return 0; |
| 978 | } |
| 979 | } |
| 980 | |
| 981 | return 1; |
| 982 | } |
| 983 | |
| 984 | /** |
| 985 | * Boolean test if two values agree when restricted to a mask |
| 986 | */ |
| 987 | |
| 988 | static inline int |
| 989 | of_restricted_match_ipv6(of_ipv6_t *v1, of_ipv6_t *v2, of_ipv6_t *mask) { |
| 990 | int idx; |
| 991 | |
| 992 | for (idx = 0; idx < OF_IPV6_BYTES; idx++) { |
Andreas Wundsam | 5325616 | 2013-05-02 14:05:53 -0700 | [diff] [blame] | 993 | if ((v1->addr[idx] & mask->addr[idx]) != |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 994 | (v2->addr[idx] & mask->addr[idx])) { |
| 995 | return 0; |
| 996 | } |
| 997 | } |
| 998 | |
| 999 | return 1; |
| 1000 | } |
| 1001 | |
| 1002 | /** |
| 1003 | * Boolean test if two values "overlap" (agree on common masks) |
| 1004 | */ |
| 1005 | |
| 1006 | static inline int |
| 1007 | of_overlap_ipv6(of_ipv6_t *v1, of_ipv6_t *v2, |
| 1008 | of_ipv6_t *m1, of_ipv6_t *m2) { |
| 1009 | int idx; |
| 1010 | |
| 1011 | for (idx = 0; idx < OF_IPV6_BYTES; idx++) { |
Andreas Wundsam | 5325616 | 2013-05-02 14:05:53 -0700 | [diff] [blame] | 1012 | if (((v1->addr[idx] & m1->addr[idx]) & m2->addr[idx]) != |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 1013 | ((v2->addr[idx] & m1->addr[idx]) & m2->addr[idx])) { |
| 1014 | return 0; |
| 1015 | } |
| 1016 | } |
| 1017 | |
| 1018 | return 1; |
| 1019 | } |
| 1020 | |
| 1021 | #define OF_MORE_SPECIFIC_IPV6(v1, v2) of_more_specific_ipv6((v1), (v2)) |
| 1022 | |
| 1023 | #define OF_RESTRICTED_MATCH_IPV6(v1, v2, mask) \\ |
| 1024 | of_restricted_match_ipv6((v1), (v2), (mask)) |
| 1025 | |
| 1026 | #define OF_OVERLAP_IPV6(v1, v2, m1, m2) of_overlap_ipv6((v1), (v2), (m1), (m2)) |
| 1027 | |
| 1028 | /** |
| 1029 | * Determine "more specific" relationship between mac addrs |
| 1030 | * @return true if v1 is equal to or more specific than v2 |
| 1031 | * |
| 1032 | * @todo Could be optimized |
| 1033 | * |
| 1034 | * Check: Every bit in v2 is set in v1; v1 may have add'l bits set. |
| 1035 | * That is, return false if there is a bit set in v2 and not in v1. |
| 1036 | */ |
| 1037 | static inline int |
| 1038 | of_more_specific_mac_addr(of_mac_addr_t *v1, of_mac_addr_t *v2) { |
| 1039 | int idx; |
| 1040 | |
| 1041 | for (idx = 0; idx < OF_MAC_ADDR_BYTES; idx++) { |
| 1042 | /* If there's a bit set in v2 that is clear in v1, return false */ |
| 1043 | if (~v1->addr[idx] & v2->addr[idx]) { |
| 1044 | return 0; |
| 1045 | } |
| 1046 | } |
| 1047 | |
| 1048 | return 1; |
| 1049 | } |
| 1050 | |
| 1051 | /** |
| 1052 | * Boolean test if two values agree when restricted to a mask |
| 1053 | */ |
| 1054 | static inline int |
Andreas Wundsam | 5325616 | 2013-05-02 14:05:53 -0700 | [diff] [blame] | 1055 | of_restricted_match_mac_addr(of_mac_addr_t *v1, of_mac_addr_t *v2, |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 1056 | of_mac_addr_t *mask) { |
| 1057 | int idx; |
| 1058 | |
| 1059 | for (idx = 0; idx < OF_MAC_ADDR_BYTES; idx++) { |
Andreas Wundsam | 5325616 | 2013-05-02 14:05:53 -0700 | [diff] [blame] | 1060 | if ((v1->addr[idx] & mask->addr[idx]) != |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 1061 | (v2->addr[idx] & mask->addr[idx])) { |
| 1062 | return 0; |
| 1063 | } |
| 1064 | } |
| 1065 | |
| 1066 | return 1; |
| 1067 | } |
| 1068 | |
| 1069 | /** |
| 1070 | * Boolean test if two values "overlap" (agree on common masks) |
| 1071 | */ |
| 1072 | |
| 1073 | static inline int |
| 1074 | of_overlap_mac_addr(of_mac_addr_t *v1, of_mac_addr_t *v2, |
| 1075 | of_mac_addr_t *m1, of_mac_addr_t *m2) { |
| 1076 | int idx; |
| 1077 | |
| 1078 | for (idx = 0; idx < OF_MAC_ADDR_BYTES; idx++) { |
Andreas Wundsam | 5325616 | 2013-05-02 14:05:53 -0700 | [diff] [blame] | 1079 | if (((v1->addr[idx] & m1->addr[idx]) & m2->addr[idx]) != |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 1080 | ((v2->addr[idx] & m1->addr[idx]) & m2->addr[idx])) { |
| 1081 | return 0; |
| 1082 | } |
| 1083 | } |
| 1084 | |
| 1085 | return 1; |
| 1086 | } |
| 1087 | |
| 1088 | #define OF_MORE_SPECIFIC_MAC_ADDR(v1, v2) of_more_specific_mac_addr((v1), (v2)) |
| 1089 | |
| 1090 | #define OF_RESTRICTED_MATCH_MAC_ADDR(v1, v2, mask) \\ |
| 1091 | of_restricted_match_mac_addr((v1), (v2), (mask)) |
| 1092 | |
| 1093 | #define OF_OVERLAP_MAC_ADDR(v1, v2, m1, m2) \\ |
| 1094 | of_overlap_mac_addr((v1), (v2), (m1), (m2)) |
| 1095 | |
Rich Lane | 3b2fd83 | 2013-09-24 13:44:08 -0700 | [diff] [blame] | 1096 | #define OF_MORE_SPECIFIC_BITMAP_128(v1, v2) \\ |
| 1097 | (OF_MORE_SPECIFIC_INT((v1)->lo, (v2)->lo) && OF_MORE_SPECIFIC_INT((v1)->hi, (v2)->hi)) |
| 1098 | |
| 1099 | #define OF_RESTRICTED_MATCH_BITMAP_128(v1, v2, mask) \\ |
| 1100 | (OF_RESTRICTED_MATCH_INT((v1)->lo, (v2)->lo, (mask)->lo) && OF_RESTRICTED_MATCH_INT((v1)->hi, (v2)->hi, (mask)->hi)) |
| 1101 | |
| 1102 | #define OF_OVERLAP_BITMAP_128(v1, v2, m1, m2) \\ |
| 1103 | (OF_OVERLAP_INT((v1)->lo, (v2)->lo, (m1)->lo, (m2)->lo) && OF_OVERLAP_INT((v1)->hi, (v2)->hi, (m1)->hi, (m2)->hi)) |
| 1104 | |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 1105 | /** |
| 1106 | * More-specific-than macro for integer types; see above |
| 1107 | * @return true if v1 is equal to or more specific than v2 |
| 1108 | * |
| 1109 | * If there is a bit that is set in v2 and not in v1, return false. |
| 1110 | */ |
| 1111 | #define OF_MORE_SPECIFIC_INT(v1, v2) (!(~(v1) & (v2))) |
| 1112 | |
| 1113 | /** |
| 1114 | * Boolean test if two values agree when restricted to a mask |
| 1115 | */ |
| 1116 | #define OF_RESTRICTED_MATCH_INT(v1, v2, mask) \\ |
| 1117 | (((v1) & (mask)) == ((v2) & (mask))) |
| 1118 | |
| 1119 | |
| 1120 | #define OF_OVERLAP_INT(v1, v2, m1, m2) \\ |
| 1121 | ((((v1) & (m1)) & (m2)) == (((v2) & (m1)) & (m2))) |
| 1122 | """) |
| 1123 | |
| 1124 | out.write(""" |
| 1125 | /** |
| 1126 | * Compare two match structures for exact equality |
| 1127 | * |
| 1128 | * We just do memcmp assuming structs were memset to 0 on init |
| 1129 | */ |
| 1130 | static inline int |
| 1131 | of_match_eq(of_match_t *match1, of_match_t *match2) |
| 1132 | { |
| 1133 | return (MEMCMP(match1, match2, sizeof(of_match_t)) == 0); |
| 1134 | } |
| 1135 | |
| 1136 | /** |
| 1137 | * Is the entry match more specific than (or equal to) the query match? |
| 1138 | * @param entry Match expected to be more specific (subset of query) |
| 1139 | * @param query Match expected to be less specific (superset of entry) |
| 1140 | * @returns Boolean, see below |
| 1141 | * |
| 1142 | * The assumption is that a query is being done for a non-strict |
| 1143 | * match against an entry in a table. The result is true if the |
| 1144 | * entry match indicates a more specific (but compatible) flow space |
| 1145 | * specification than that in the query match. This means that the |
| 1146 | * values agree between the two where they overlap, and that each mask |
| 1147 | * for the entry is more specific than that of the query. |
| 1148 | * |
| 1149 | * The query has the less specific mask (fewer mask bits) so it is |
| 1150 | * used for the mask when checking values. |
| 1151 | */ |
| 1152 | |
| 1153 | static inline int |
| 1154 | of_match_more_specific(of_match_t *entry, of_match_t *query) |
| 1155 | { |
| 1156 | of_match_fields_t *q_m, *e_m; /* Short hand for masks, fields */ |
| 1157 | of_match_fields_t *q_f, *e_f; |
| 1158 | |
| 1159 | q_m = &query->masks; |
| 1160 | e_m = &entry->masks; |
| 1161 | q_f = &query->fields; |
| 1162 | e_f = &entry->fields; |
| 1163 | """) |
| 1164 | for key, entry in match.of_match_members.items(): |
| 1165 | q_m = "&q_m->%s" % key |
| 1166 | e_m = "&e_m->%s" % key |
| 1167 | q_f = "&q_f->%s" % key |
| 1168 | e_f = "&e_f->%s" % key |
| 1169 | if entry["m_type"] == "of_ipv6_t": |
| 1170 | comp = "OF_MORE_SPECIFIC_IPV6" |
| 1171 | match_type = "OF_RESTRICTED_MATCH_IPV6" |
| 1172 | elif entry["m_type"] == "of_mac_addr_t": |
| 1173 | comp = "OF_MORE_SPECIFIC_MAC_ADDR" |
| 1174 | match_type = "OF_RESTRICTED_MATCH_MAC_ADDR" |
Rich Lane | 3b2fd83 | 2013-09-24 13:44:08 -0700 | [diff] [blame] | 1175 | elif entry["m_type"] == "of_bitmap_128_t": |
| 1176 | comp = "OF_MORE_SPECIFIC_BITMAP_128" |
| 1177 | match_type = "OF_RESTRICTED_MATCH_BITMAP_128" |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 1178 | else: # Integer |
| 1179 | comp = "OF_MORE_SPECIFIC_INT" |
| 1180 | match_type = "OF_RESTRICTED_MATCH_INT" |
| 1181 | q_m = "q_m->%s" % key |
| 1182 | e_m = "e_m->%s" % key |
| 1183 | q_f = "q_f->%s" % key |
| 1184 | e_f = "e_f->%s" % key |
| 1185 | out.write(""" |
| 1186 | /* Mask and values for %(key)s */ |
| 1187 | if (!%(comp)s(%(e_m)s, %(q_m)s)) { |
| 1188 | return 0; |
| 1189 | } |
| 1190 | if (!%(match_type)s(%(e_f)s, %(q_f)s, |
| 1191 | %(q_m)s)) { |
| 1192 | return 0; |
| 1193 | } |
Andreas Wundsam | 5325616 | 2013-05-02 14:05:53 -0700 | [diff] [blame] | 1194 | """ % dict(match_type=match_type, comp=comp, q_f=q_f, e_f=e_f, |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 1195 | q_m=q_m, e_m=e_m, key=key)) |
| 1196 | |
| 1197 | out.write(""" |
| 1198 | return 1; |
| 1199 | } |
| 1200 | """) |
| 1201 | |
| 1202 | out.write(""" |
| 1203 | |
| 1204 | /** |
| 1205 | * Do two entries overlap? |
| 1206 | * @param match1 One match struct |
| 1207 | * @param match2 Another match struct |
| 1208 | * @returns Boolean: true if there is a packet that would match both |
| 1209 | * |
| 1210 | */ |
| 1211 | |
| 1212 | static inline int |
| 1213 | of_match_overlap(of_match_t *match1, of_match_t *match2) |
| 1214 | { |
| 1215 | of_match_fields_t *m1, *m2; /* Short hand for masks, fields */ |
| 1216 | of_match_fields_t *f1, *f2; |
| 1217 | |
| 1218 | m1 = &match1->masks; |
| 1219 | m2 = &match2->masks; |
| 1220 | f1 = &match1->fields; |
| 1221 | f2 = &match2->fields; |
| 1222 | """) |
| 1223 | for key, entry in match.of_match_members.items(): |
| 1224 | m1 = "&m1->%s" % key |
| 1225 | m2 = "&m2->%s" % key |
| 1226 | f1 = "&f1->%s" % key |
| 1227 | f2 = "&f2->%s" % key |
| 1228 | if entry["m_type"] == "of_ipv6_t": |
| 1229 | check = "OF_OVERLAP_IPV6" |
| 1230 | elif entry["m_type"] == "of_mac_addr_t": |
| 1231 | check = "OF_OVERLAP_MAC_ADDR" |
Rich Lane | 3b2fd83 | 2013-09-24 13:44:08 -0700 | [diff] [blame] | 1232 | elif entry["m_type"] == "of_bitmap_128_t": |
| 1233 | check = "OF_OVERLAP_BITMAP_128" |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 1234 | else: # Integer |
| 1235 | check = "OF_OVERLAP_INT" |
| 1236 | m1 = "m1->%s" % key |
| 1237 | m2 = "m2->%s" % key |
| 1238 | f1 = "f1->%s" % key |
| 1239 | f2 = "f2->%s" % key |
| 1240 | out.write(""" |
| 1241 | /* Check overlap for %(key)s */ |
Andreas Wundsam | 5325616 | 2013-05-02 14:05:53 -0700 | [diff] [blame] | 1242 | if (!%(check)s(%(f1)s, %(f2)s, |
Rich Lane | a06d0c3 | 2013-03-25 08:52:03 -0700 | [diff] [blame] | 1243 | %(m2)s, %(m1)s)) { |
| 1244 | return 0; /* This field differentiates; all done */ |
| 1245 | } |
| 1246 | """ % dict(check=check, f1=f1, f2=f2, m1=m1, m2=m2, key=key)) |
| 1247 | |
| 1248 | out.write(""" |
| 1249 | return 1; /* No field differentiates matches */ |
| 1250 | } |
| 1251 | """) |
| 1252 | |
| 1253 | def gen_match_conversions(out=sys.stdout): |
| 1254 | match.match_sanity_check() |
| 1255 | gen_wc_convert_literal(out) |
| 1256 | out.write(""" |
| 1257 | /** |
| 1258 | * IP Mask map. IP maks wildcards from OF 1.0 are interpretted as |
| 1259 | * indices into the map below. |
| 1260 | */ |
| 1261 | |
| 1262 | int of_ip_mask_map_init_done = 0; |
| 1263 | uint32_t of_ip_mask_map[OF_IP_MASK_MAP_COUNT]; |
| 1264 | void |
| 1265 | of_ip_mask_map_init(void) |
| 1266 | { |
| 1267 | int idx; |
| 1268 | |
| 1269 | MEMSET(of_ip_mask_map, 0, sizeof(of_ip_mask_map)); |
| 1270 | for (idx = 0; idx < 32; idx++) { |
| 1271 | of_ip_mask_map[idx] = ~((1U << idx) - 1); |
| 1272 | } |
| 1273 | |
| 1274 | of_ip_mask_map_init_done = 1; |
| 1275 | } |
| 1276 | |
| 1277 | /** |
| 1278 | * @brief Set non-default IP mask for given index |
| 1279 | */ |
| 1280 | int |
| 1281 | of_ip_mask_map_set(int index, uint32_t mask) |
| 1282 | { |
| 1283 | OF_IP_MASK_INIT_CHECK; |
| 1284 | |
| 1285 | if ((index < 0) || (index >= OF_IP_MASK_MAP_COUNT)) { |
| 1286 | return OF_ERROR_RANGE; |
| 1287 | } |
| 1288 | of_ip_mask_map[index] = mask; |
| 1289 | |
| 1290 | return OF_ERROR_NONE; |
| 1291 | } |
| 1292 | |
| 1293 | /** |
| 1294 | * @brief Get a non-default IP mask for given index |
| 1295 | */ |
| 1296 | int |
| 1297 | of_ip_mask_map_get(int index, uint32_t *mask) |
| 1298 | { |
| 1299 | OF_IP_MASK_INIT_CHECK; |
| 1300 | |
| 1301 | if ((mask == NULL) || (index < 0) || (index >= OF_IP_MASK_MAP_COUNT)) { |
| 1302 | return OF_ERROR_RANGE; |
| 1303 | } |
| 1304 | *mask = of_ip_mask_map[index]; |
| 1305 | |
| 1306 | return OF_ERROR_NONE; |
| 1307 | } |
| 1308 | |
| 1309 | /** |
| 1310 | * @brief Return the index (used as the WC field in 1.0 match) given the mask |
| 1311 | */ |
| 1312 | |
| 1313 | int |
| 1314 | of_ip_mask_to_index(uint32_t mask) |
| 1315 | { |
| 1316 | int idx; |
| 1317 | |
| 1318 | OF_IP_MASK_INIT_CHECK; |
| 1319 | |
| 1320 | /* Handle most common cases directly */ |
| 1321 | if ((mask == 0) && (of_ip_mask_map[63] == 0)) { |
| 1322 | return 63; |
| 1323 | } |
| 1324 | if ((mask == 0xffffffff) && (of_ip_mask_map[0] == 0xffffffff)) { |
| 1325 | return 0; |
| 1326 | } |
| 1327 | |
| 1328 | for (idx = 0; idx < OF_IP_MASK_MAP_COUNT; idx++) { |
| 1329 | if (mask == of_ip_mask_map[idx]) { |
| 1330 | return idx; |
| 1331 | } |
| 1332 | } |
| 1333 | |
| 1334 | LOCI_LOG_INFO("OF 1.0: Could not map IP addr mask 0x%x", mask); |
| 1335 | return 0x3f; |
| 1336 | } |
| 1337 | |
| 1338 | /** |
| 1339 | * @brief Return the mask for the given index |
| 1340 | */ |
| 1341 | |
| 1342 | uint32_t |
| 1343 | of_ip_index_to_mask(int index) |
| 1344 | { |
| 1345 | OF_IP_MASK_INIT_CHECK; |
| 1346 | |
| 1347 | if (index >= OF_IP_MASK_MAP_COUNT) { |
| 1348 | LOCI_LOG_INFO("IP index to map: bad index %d", index); |
| 1349 | return 0; |
| 1350 | } |
| 1351 | |
| 1352 | return of_ip_mask_map[index]; |
| 1353 | } |
| 1354 | |
| 1355 | """) |
| 1356 | |
| 1357 | gen_unified_match_to_v1(out) |
| 1358 | gen_unified_match_to_v2(out) |
| 1359 | gen_unified_match_to_v3(out) |
| 1360 | gen_v1_to_unified_match(out) |
| 1361 | gen_v2_to_unified_match(out) |
| 1362 | gen_v3_to_unified_match(out) |
| 1363 | return |