ofproto-dpif-xlate: Make flows that match ICMP fields revalidate correctly.
[cascardo/ovs.git] / lib / odp-util.h
1 /*
2  * Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef ODP_UTIL_H
18 #define ODP_UTIL_H 1
19
20 #include <stdbool.h>
21 #include <stddef.h>
22 #include <stdint.h>
23 #include <string.h>
24 #include <linux/openvswitch.h>
25 #include "hash.h"
26 #include "hmap.h"
27 #include "openflow/openflow.h"
28 #include "util.h"
29
30 struct ds;
31 struct flow;
32 struct flow_tnl;
33 struct flow_wildcards;
34 struct nlattr;
35 struct ofpbuf;
36 struct simap;
37
38 #define SLOW_PATH_REASONS                                               \
39     /* These reasons are mutually exclusive. */                         \
40     SPR(SLOW_CFM,        "cfm",        "Consists of CFM packets")       \
41     SPR(SLOW_BFD,        "bfd",        "Consists of BFD packets")       \
42     SPR(SLOW_LACP,       "lacp",       "Consists of LACP packets")      \
43     SPR(SLOW_STP,        "stp",        "Consists of STP packets")       \
44     SPR(SLOW_CONTROLLER, "controller",                                  \
45         "Sends \"packet-in\" messages to the OpenFlow controller")      \
46     SPR(SLOW_ACTION,     "action",                                      \
47         "Uses action(s) not supported by datapath")
48
49 /* Indexes for slow-path reasons.  Client code uses "enum slow_path_reason"
50  * values instead of these, these are just a way to construct those. */
51 enum {
52 #define SPR(ENUM, STRING, EXPLANATION) ENUM##_INDEX,
53     SLOW_PATH_REASONS
54 #undef SPR
55 };
56
57 /* Reasons why a subfacet might not be fast-pathable.
58  *
59  * Each reason is a separate bit to allow reasons to be combined. */
60 enum slow_path_reason {
61 #define SPR(ENUM, STRING, EXPLANATION) ENUM = 1 << ENUM##_INDEX,
62     SLOW_PATH_REASONS
63 #undef SPR
64 };
65
66 const char *slow_path_reason_to_explanation(enum slow_path_reason);
67
68 #define ODPP_LOCAL ODP_PORT_C(OVSP_LOCAL)
69 #define ODPP_NONE  ODP_PORT_C(UINT32_MAX)
70
71 void format_odp_actions(struct ds *, const struct nlattr *odp_actions,
72                         size_t actions_len);
73 int odp_actions_from_string(const char *, const struct simap *port_names,
74                             struct ofpbuf *odp_actions);
75
76 /* A map from odp port number to its name. */
77 struct odp_portno_names {
78     struct hmap_node hmap_node; /* A node in a port number to name hmap. */
79     odp_port_t port_no;         /* Port number in the datapath. */
80     char *name;                 /* Name associated with the above 'port_no'. */
81 };
82
83 void odp_portno_names_set(struct hmap *portno_names, odp_port_t port_no,
84                           char *port_name);
85 void odp_portno_names_destroy(struct hmap *portno_names);
86 /* The maximum number of bytes that odp_flow_key_from_flow() appends to a
87  * buffer.  This is the upper bound on the length of a nlattr-formatted flow
88  * key that ovs-vswitchd fully understands.
89  *
90  * OVS doesn't insist that ovs-vswitchd and the datapath have exactly the same
91  * idea of a flow, so therefore this value isn't necessarily an upper bound on
92  * the length of a flow key that the datapath can pass to ovs-vswitchd.
93  *
94  * The longest nlattr-formatted flow key appended by odp_flow_key_from_flow()
95  * would be:
96  *
97  *                                     struct  pad  nl hdr  total
98  *                                     ------  ---  ------  -----
99  *  OVS_KEY_ATTR_PRIORITY                4    --     4      8
100  *  OVS_KEY_ATTR_TUNNEL                  0    --     4      4
101  *  - OVS_TUNNEL_KEY_ATTR_ID             8    --     4     12
102  *  - OVS_TUNNEL_KEY_ATTR_IPV4_SRC       4    --     4      8
103  *  - OVS_TUNNEL_KEY_ATTR_IPV4_DST       4    --     4      8
104  *  - OVS_TUNNEL_KEY_ATTR_TOS            1    3      4      8
105  *  - OVS_TUNNEL_KEY_ATTR_TTL            1    3      4      8
106  *  - OVS_TUNNEL_KEY_ATTR_DONT_FRAGMENT  0    --     4      4
107  *  - OVS_TUNNEL_KEY_ATTR_CSUM           0    --     4      4
108  *  OVS_KEY_ATTR_IN_PORT                 4    --     4      8
109  *  OVS_KEY_ATTR_SKB_MARK                4    --     4      8
110  *  OVS_KEY_ATTR_ETHERNET               12    --     4     16
111  *  OVS_KEY_ATTR_ETHERTYPE               2     2     4      8  (outer VLAN ethertype)
112  *  OVS_KEY_ATTR_8021Q                   4    --     4      8
113  *  OVS_KEY_ATTR_ENCAP                   0    --     4      4  (VLAN encapsulation)
114  *  OVS_KEY_ATTR_ETHERTYPE               2     2     4      8  (inner VLAN ethertype)
115  *  OVS_KEY_ATTR_IPV6                   40    --     4     44
116  *  OVS_KEY_ATTR_ICMPV6                  2     2     4      8
117  *  OVS_KEY_ATTR_ND                     28    --     4     32
118  *  ----------------------------------------------------------
119  *  total                                                 208
120  *
121  * We include some slack space in case the calculation isn't quite right or we
122  * add another field and forget to adjust this value.
123  */
124 #define ODPUTIL_FLOW_KEY_BYTES 256
125
126 /* A buffer with sufficient size and alignment to hold an nlattr-formatted flow
127  * key.  An array of "struct nlattr" might not, in theory, be sufficiently
128  * aligned because it only contains 16-bit types. */
129 struct odputil_keybuf {
130     uint32_t keybuf[DIV_ROUND_UP(ODPUTIL_FLOW_KEY_BYTES, 4)];
131 };
132
133 enum odp_key_fitness odp_tun_key_from_attr(const struct nlattr *,
134                                            struct flow_tnl *);
135
136 void odp_flow_format(const struct nlattr *key, size_t key_len,
137                      const struct nlattr *mask, size_t mask_len,
138                      const struct hmap *portno_names, struct ds *,
139                      bool verbose);
140 void odp_flow_key_format(const struct nlattr *, size_t, struct ds *);
141 int odp_flow_from_string(const char *s,
142                          const struct simap *port_names,
143                          struct ofpbuf *, struct ofpbuf *);
144
145 void odp_flow_key_from_flow(struct ofpbuf *, const struct flow *,
146                             odp_port_t odp_in_port);
147 void odp_flow_key_from_mask(struct ofpbuf *, const struct flow *mask,
148                             const struct flow *flow, uint32_t odp_in_port);
149
150 uint32_t odp_flow_key_hash(const struct nlattr *, size_t);
151
152 /* How well a kernel-provided flow key (a sequence of OVS_KEY_ATTR_*
153  * attributes) matches OVS userspace expectations.
154  *
155  * These values are arranged so that greater values are "more important" than
156  * lesser ones.  In particular, a single flow key can fit the descriptions for
157  * both ODP_FIT_TOO_LITTLE and ODP_FIT_TOO_MUCH.  Such a key is treated as
158  * ODP_FIT_TOO_LITTLE. */
159 enum odp_key_fitness {
160     ODP_FIT_PERFECT,            /* The key had exactly the fields we expect. */
161     ODP_FIT_TOO_MUCH,           /* The key had fields we don't understand. */
162     ODP_FIT_TOO_LITTLE,         /* The key lacked fields we expected to see. */
163     ODP_FIT_ERROR,              /* The key was invalid. */
164 };
165 enum odp_key_fitness odp_flow_key_to_flow(const struct nlattr *, size_t,
166                                           struct flow *);
167 enum odp_key_fitness odp_flow_key_to_mask(const struct nlattr *key, size_t len,
168                                           struct flow *mask,
169                                           const struct flow *flow);
170 const char *odp_key_fitness_to_string(enum odp_key_fitness);
171
172 void commit_odp_tunnel_action(const struct flow *, struct flow *base,
173                               struct ofpbuf *odp_actions);
174 enum slow_path_reason commit_odp_actions(const struct flow *,
175                                          struct flow *base,
176                                          struct ofpbuf *odp_actions,
177                                          struct flow_wildcards *wc,
178                                          int *mpls_depth_delta);
179 \f
180 /* ofproto-dpif interface.
181  *
182  * The following types and functions are logically part of ofproto-dpif.
183  * ofproto-dpif puts values of these types into the flows that it installs in
184  * the kernel datapath, though, so ovs-dpctl needs to interpret them so that
185  * it can print flows in a more human-readable manner. */
186
187 enum user_action_cookie_type {
188     USER_ACTION_COOKIE_UNSPEC,
189     USER_ACTION_COOKIE_SFLOW,        /* Packet for per-bridge sFlow sampling. */
190     USER_ACTION_COOKIE_SLOW_PATH,    /* Userspace must process this flow. */
191     USER_ACTION_COOKIE_FLOW_SAMPLE,  /* Packet for per-flow sampling. */
192     USER_ACTION_COOKIE_IPFIX,        /* Packet for per-bridge IPFIX sampling. */
193 };
194
195 /* user_action_cookie is passed as argument to OVS_ACTION_ATTR_USERSPACE.
196  * Since it is passed to kernel as u64, its size has to be 8 bytes. */
197 union user_action_cookie {
198     uint16_t type;              /* enum user_action_cookie_type. */
199
200     struct {
201         uint16_t type;          /* USER_ACTION_COOKIE_SFLOW. */
202         ovs_be16 vlan_tci;      /* Destination VLAN TCI. */
203         uint32_t output;        /* SFL_FLOW_SAMPLE_TYPE 'output' value. */
204     } sflow;
205
206     struct {
207         uint16_t type;          /* USER_ACTION_COOKIE_SLOW_PATH. */
208         uint16_t unused;
209         uint32_t reason;        /* enum slow_path_reason. */
210     } slow_path;
211
212     struct {
213         uint16_t type;          /* USER_ACTION_COOKIE_FLOW_SAMPLE. */
214         uint16_t probability;   /* Sampling probability. */
215         uint32_t collector_set_id; /* ID of IPFIX collector set. */
216         uint32_t obs_domain_id; /* Observation Domain ID. */
217         uint32_t obs_point_id;  /* Observation Point ID. */
218     } flow_sample;
219
220     struct {
221         uint16_t type;          /* USER_ACTION_COOKIE_IPFIX. */
222     } ipfix;
223 };
224 BUILD_ASSERT_DECL(sizeof(union user_action_cookie) == 16);
225
226 size_t odp_put_userspace_action(uint32_t pid,
227                                 const void *userdata, size_t userdata_size,
228                                 struct ofpbuf *odp_actions);
229 void odp_put_tunnel_action(const struct flow_tnl *tunnel,
230                            struct ofpbuf *odp_actions);
231 void odp_put_pkt_mark_action(const uint32_t pkt_mark,
232                              struct ofpbuf *odp_actions);
233
234 #endif /* odp-util.h */