1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
|
/* Copyright (c) 2016 Nicira, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <config.h>
#include "logical-fields.h"
#include "openvswitch/shash.h"
#include "ovn/expr.h"
#include "ovs-thread.h"
#include "packets.h"
static void
add_subregister(const char *name,
const char *parent_name, int parent_idx,
int width, int idx,
struct shash *symtab)
{
int lsb = width * idx;
int msb = lsb + (width - 1);
char *expansion = xasprintf("%s%d[%d..%d]",
parent_name, parent_idx, lsb, msb);
expr_symtab_add_subfield(symtab, name, NULL, expansion);
free(expansion);
}
void
ovn_init_symtab(struct shash *symtab)
{
shash_init(symtab);
/* Reserve a pair of registers for the logical inport and outport. A full
* 32-bit register each is bigger than we need, but the expression code
* doesn't yet support string fields that occupy less than a full OXM. */
expr_symtab_add_string(symtab, "inport", MFF_LOG_INPORT, NULL);
expr_symtab_add_string(symtab, "outport", MFF_LOG_OUTPORT, NULL);
/* Logical registers:
* 128-bit xxregs
* 64-bit xregs
* 32-bit regs
*
* The expression language doesn't handle overlapping fields properly
* unless they're formally defined as subfields. It's a little awkward. */
for (int xxi = 0; xxi < MFF_N_LOG_REGS / 4; xxi++) {
char *xxname = xasprintf("xxreg%d", xxi);
expr_symtab_add_field(symtab, xxname, MFF_XXREG0 + xxi, NULL, false);
free(xxname);
}
for (int xi = 0; xi < MFF_N_LOG_REGS / 2; xi++) {
char *xname = xasprintf("xreg%d", xi);
int xxi = xi / 2;
if (xxi < MFF_N_LOG_REGS / 4) {
add_subregister(xname, "xxreg", xxi, 64, 1 - xi % 2, symtab);
} else {
expr_symtab_add_field(symtab, xname, MFF_XREG0 + xi, NULL, false);
}
free(xname);
}
for (int i = 0; i < MFF_N_LOG_REGS; i++) {
char *name = xasprintf("reg%d", i);
int xxi = i / 4;
int xi = i / 2;
if (xxi < MFF_N_LOG_REGS / 4) {
add_subregister(name, "xxreg", xxi, 32, 3 - i % 4, symtab);
} else if (xi < MFF_N_LOG_REGS / 2) {
add_subregister(name, "xreg", xi, 32, 1 - i % 2, symtab);
} else {
expr_symtab_add_field(symtab, name, MFF_REG0 + i, NULL, false);
}
free(name);
}
/* Flags used in logical to physical transformation. */
expr_symtab_add_field(symtab, "flags", MFF_LOG_FLAGS, NULL, false);
char flags_str[16];
snprintf(flags_str, sizeof flags_str, "flags[%d]", MLF_ALLOW_LOOPBACK_BIT);
expr_symtab_add_subfield(symtab, "flags.loopback", NULL, flags_str);
/* Connection tracking state. */
expr_symtab_add_field(symtab, "ct_mark", MFF_CT_MARK, NULL, false);
expr_symtab_add_field(symtab, "ct_label", MFF_CT_LABEL, NULL, false);
expr_symtab_add_subfield(symtab, "ct_label.blocked", NULL, "ct_label[0]");
expr_symtab_add_field(symtab, "ct_state", MFF_CT_STATE, NULL, false);
struct ct_bit {
const char *name;
int bit;
};
static const struct ct_bit bits[] = {
{"trk", CS_TRACKED_BIT},
{"new", CS_NEW_BIT},
{"est", CS_ESTABLISHED_BIT},
{"rel", CS_RELATED_BIT},
{"rpl", CS_REPLY_DIR_BIT},
{"inv", CS_INVALID_BIT},
};
for (const struct ct_bit *b = bits; b < &bits[ARRAY_SIZE(bits)]; b++) {
char *name = xasprintf("ct.%s", b->name);
char *expansion = xasprintf("ct_state[%d]", b->bit);
const char *prereqs = b->bit == CS_TRACKED_BIT ? NULL : "ct.trk";
expr_symtab_add_subfield(symtab, name, prereqs, expansion);
free(expansion);
free(name);
}
/* Data fields. */
expr_symtab_add_field(symtab, "eth.src", MFF_ETH_SRC, NULL, false);
expr_symtab_add_field(symtab, "eth.dst", MFF_ETH_DST, NULL, false);
expr_symtab_add_field(symtab, "eth.type", MFF_ETH_TYPE, NULL, true);
expr_symtab_add_predicate(symtab, "eth.bcast",
"eth.dst == ff:ff:ff:ff:ff:ff");
expr_symtab_add_subfield(symtab, "eth.mcast", NULL, "eth.dst[40]");
expr_symtab_add_field(symtab, "vlan.tci", MFF_VLAN_TCI, NULL, false);
expr_symtab_add_predicate(symtab, "vlan.present", "vlan.tci[12]");
expr_symtab_add_subfield(symtab, "vlan.pcp", "vlan.present",
"vlan.tci[13..15]");
expr_symtab_add_subfield(symtab, "vlan.vid", "vlan.present",
"vlan.tci[0..11]");
expr_symtab_add_predicate(symtab, "ip4", "eth.type == 0x800");
expr_symtab_add_predicate(symtab, "ip6", "eth.type == 0x86dd");
expr_symtab_add_predicate(symtab, "ip", "ip4 || ip6");
expr_symtab_add_field(symtab, "ip.proto", MFF_IP_PROTO, "ip", true);
expr_symtab_add_field(symtab, "ip.dscp", MFF_IP_DSCP, "ip", false);
expr_symtab_add_field(symtab, "ip.ecn", MFF_IP_ECN, "ip", false);
expr_symtab_add_field(symtab, "ip.ttl", MFF_IP_TTL, "ip", false);
expr_symtab_add_field(symtab, "ip4.src", MFF_IPV4_SRC, "ip4", false);
expr_symtab_add_field(symtab, "ip4.dst", MFF_IPV4_DST, "ip4", false);
expr_symtab_add_predicate(symtab, "ip4.mcast", "ip4.dst[28..31] == 0xe");
expr_symtab_add_predicate(symtab, "icmp4", "ip4 && ip.proto == 1");
expr_symtab_add_field(symtab, "icmp4.type", MFF_ICMPV4_TYPE, "icmp4",
false);
expr_symtab_add_field(symtab, "icmp4.code", MFF_ICMPV4_CODE, "icmp4",
false);
expr_symtab_add_field(symtab, "ip6.src", MFF_IPV6_SRC, "ip6", false);
expr_symtab_add_field(symtab, "ip6.dst", MFF_IPV6_DST, "ip6", false);
expr_symtab_add_field(symtab, "ip6.label", MFF_IPV6_LABEL, "ip6", false);
expr_symtab_add_predicate(symtab, "icmp6", "ip6 && ip.proto == 58");
expr_symtab_add_field(symtab, "icmp6.type", MFF_ICMPV6_TYPE, "icmp6",
true);
expr_symtab_add_field(symtab, "icmp6.code", MFF_ICMPV6_CODE, "icmp6",
true);
expr_symtab_add_predicate(symtab, "icmp", "icmp4 || icmp6");
expr_symtab_add_field(symtab, "ip.frag", MFF_IP_FRAG, "ip", false);
expr_symtab_add_predicate(symtab, "ip.is_frag", "ip.frag[0]");
expr_symtab_add_predicate(symtab, "ip.later_frag", "ip.frag[1]");
expr_symtab_add_predicate(symtab, "ip.first_frag",
"ip.is_frag && !ip.later_frag");
expr_symtab_add_predicate(symtab, "arp", "eth.type == 0x806");
expr_symtab_add_field(symtab, "arp.op", MFF_ARP_OP, "arp", false);
expr_symtab_add_field(symtab, "arp.spa", MFF_ARP_SPA, "arp", false);
expr_symtab_add_field(symtab, "arp.sha", MFF_ARP_SHA, "arp", false);
expr_symtab_add_field(symtab, "arp.tpa", MFF_ARP_TPA, "arp", false);
expr_symtab_add_field(symtab, "arp.tha", MFF_ARP_THA, "arp", false);
expr_symtab_add_predicate(symtab, "nd",
"icmp6.type == {135, 136} && icmp6.code == 0 && ip.ttl == 255");
expr_symtab_add_predicate(symtab, "nd_ns",
"icmp6.type == 135 && icmp6.code == 0 && ip.ttl == 255");
expr_symtab_add_predicate(symtab, "nd_na",
"icmp6.type == 136 && icmp6.code == 0 && ip.ttl == 255");
expr_symtab_add_field(symtab, "nd.target", MFF_ND_TARGET, "nd", false);
expr_symtab_add_field(symtab, "nd.sll", MFF_ND_SLL, "nd_ns", false);
expr_symtab_add_field(symtab, "nd.tll", MFF_ND_TLL, "nd_na", false);
expr_symtab_add_predicate(symtab, "tcp", "ip.proto == 6");
expr_symtab_add_field(symtab, "tcp.src", MFF_TCP_SRC, "tcp", false);
expr_symtab_add_field(symtab, "tcp.dst", MFF_TCP_DST, "tcp", false);
expr_symtab_add_field(symtab, "tcp.flags", MFF_TCP_FLAGS, "tcp", false);
expr_symtab_add_predicate(symtab, "udp", "ip.proto == 17");
expr_symtab_add_field(symtab, "udp.src", MFF_UDP_SRC, "udp", false);
expr_symtab_add_field(symtab, "udp.dst", MFF_UDP_DST, "udp", false);
expr_symtab_add_predicate(symtab, "sctp", "ip.proto == 132");
expr_symtab_add_field(symtab, "sctp.src", MFF_SCTP_SRC, "sctp", false);
expr_symtab_add_field(symtab, "sctp.dst", MFF_SCTP_DST, "sctp", false);
}
|