datapath: Fix nelink attribute size for flow.
[cascardo/ovs.git] / lib / odp-util.h
1 /*
2  * Copyright (c) 2009, 2010, 2011, 2012 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 "openflow/openflow.h"
27 #include "util.h"
28
29 struct ds;
30 struct flow;
31 struct nlattr;
32 struct ofpbuf;
33 struct simap;
34
35 #define OVSP_NONE UINT16_MAX
36
37 static inline uint16_t
38 ofp_port_to_odp_port(uint16_t ofp_port)
39 {
40     switch (ofp_port) {
41     case OFPP_LOCAL:
42         return OVSP_LOCAL;
43     case OFPP_NONE:
44         return OVSP_NONE;
45     default:
46         return ofp_port;
47     }
48 }
49
50 static inline uint16_t
51 odp_port_to_ofp_port(uint16_t odp_port)
52 {
53     switch (odp_port) {
54     case OVSP_LOCAL:
55         return OFPP_LOCAL;
56     case OVSP_NONE:
57         return OFPP_NONE;
58     default:
59         return odp_port;
60     }
61 }
62
63 void format_odp_actions(struct ds *, const struct nlattr *odp_actions,
64                         size_t actions_len);
65 int odp_actions_from_string(const char *, const struct simap *port_names,
66                             struct ofpbuf *odp_actions);
67
68 /* The maximum number of bytes that odp_flow_key_from_flow() appends to a
69  * buffer.  This is the upper bound on the length of a nlattr-formatted flow
70  * key that ovs-vswitchd fully understands.
71  *
72  * OVS doesn't insist that ovs-vswitchd and the datapath have exactly the same
73  * idea of a flow, so therefore this value isn't necessarily an upper bound on
74  * the length of a flow key that the datapath can pass to ovs-vswitchd.
75  *
76  * The longest nlattr-formatted flow key appended by odp_flow_key_from_flow()
77  * would be:
78  *
79  *                                     struct  pad  nl hdr  total
80  *                                     ------  ---  ------  -----
81  *  OVS_KEY_ATTR_PRIORITY                4    --     4      8
82  *  OVS_KEY_ATTR_TUN_ID                  8    --     4     12
83  *  OVS_KEY_ATTR_TUNNEL                  0    --     4      4
84  *  - OVS_TUNNEL_KEY_ATTR_ID             8    --     4     12
85  *  - OVS_TUNNEL_KEY_ATTR_IPV4_SRC       4    --     4      8
86  *  - OVS_TUNNEL_KEY_ATTR_IPV4_DST       4    --     4      8
87  *  - OVS_TUNNEL_KEY_ATTR_TOS            1    3      4      8
88  *  - OVS_TUNNEL_KEY_ATTR_TTL            1    3      4      8
89  *  - OVS_TUNNEL_KEY_ATTR_DONT_FRAGMENT  0    --     4      4
90  *  - OVS_TUNNEL_KEY_ATTR_CSUM           0    --     4      4
91  *  OVS_KEY_ATTR_IN_PORT                 4    --     4      8
92  *  OVS_KEY_ATTR_SKB_MARK                4    --     4      8
93  *  OVS_KEY_ATTR_ETHERNET               12    --     4     16
94  *  OVS_KEY_ATTR_ETHERTYPE               2     2     4      8  (outer VLAN ethertype)
95  *  OVS_KEY_ATTR_8021Q                   4    --     4      8
96  *  OVS_KEY_ATTR_ENCAP                   0    --     4      4  (VLAN encapsulation)
97  *  OVS_KEY_ATTR_ETHERTYPE               2     2     4      8  (inner VLAN ethertype)
98  *  OVS_KEY_ATTR_IPV6                   40    --     4     44
99  *  OVS_KEY_ATTR_ICMPV6                  2     2     4      8
100  *  OVS_KEY_ATTR_ND                     28    --     4     32
101  *  ----------------------------------------------------------
102  *  total                                                 220
103  *
104  * We include some slack space in case the calculation isn't quite right or we
105  * add another field and forget to adjust this value.
106  */
107 #define ODPUTIL_FLOW_KEY_BYTES 256
108
109 /* A buffer with sufficient size and alignment to hold an nlattr-formatted flow
110  * key.  An array of "struct nlattr" might not, in theory, be sufficiently
111  * aligned because it only contains 16-bit types. */
112 struct odputil_keybuf {
113     uint32_t keybuf[DIV_ROUND_UP(ODPUTIL_FLOW_KEY_BYTES, 4)];
114 };
115
116 void odp_flow_key_format(const struct nlattr *, size_t, struct ds *);
117 int odp_flow_key_from_string(const char *s, const struct simap *port_names,
118                              struct ofpbuf *);
119
120 void odp_flow_key_from_flow(struct ofpbuf *, const struct flow *);
121
122 uint32_t odp_flow_key_hash(const struct nlattr *, size_t);
123
124 /* How well a kernel-provided flow key (a sequence of OVS_KEY_ATTR_*
125  * attributes) matches OVS userspace expectations.
126  *
127  * These values are arranged so that greater values are "more important" than
128  * lesser ones.  In particular, a single flow key can fit the descriptions for
129  * both ODP_FIT_TOO_LITTLE and ODP_FIT_TOO_MUCH.  Such a key is treated as
130  * ODP_FIT_TOO_LITTLE. */
131 enum odp_key_fitness {
132     ODP_FIT_PERFECT,            /* The key had exactly the fields we expect. */
133     ODP_FIT_TOO_MUCH,           /* The key had fields we don't understand. */
134     ODP_FIT_TOO_LITTLE,         /* The key lacked fields we expected to see. */
135     ODP_FIT_ERROR,              /* The key was invalid. */
136 };
137 enum odp_key_fitness odp_flow_key_to_flow(const struct nlattr *, size_t,
138                                           struct flow *);
139 const char *odp_key_fitness_to_string(enum odp_key_fitness);
140
141 void commit_odp_actions(const struct flow *, struct flow *base,
142                         struct ofpbuf *odp_actions);
143 \f
144 /* ofproto-dpif interface.
145  *
146  * The following types and functions are logically part of ofproto-dpif.
147  * ofproto-dpif puts values of these types into the flows that it installs in
148  * the kernel datapath, though, so ovs-dpctl needs to interpret them so that
149  * it can print flows in a more human-readable manner. */
150
151 enum user_action_cookie_type {
152     USER_ACTION_COOKIE_UNSPEC,
153     USER_ACTION_COOKIE_SFLOW,        /* Packet for sFlow sampling. */
154     USER_ACTION_COOKIE_SLOW_PATH     /* Userspace must process this flow. */
155 };
156
157 /* user_action_cookie is passed as argument to OVS_ACTION_ATTR_USERSPACE.
158  * Since it is passed to kernel as u64, its size has to be 8 bytes. */
159 union user_action_cookie {
160     uint16_t type;              /* enum user_action_cookie_type. */
161
162     struct {
163         uint16_t type;          /* USER_ACTION_COOKIE_SFLOW. */
164         ovs_be16 vlan_tci;      /* Destination VLAN TCI. */
165         uint32_t output;        /* SFL_FLOW_SAMPLE_TYPE 'output' value. */
166     } sflow;
167
168     struct {
169         uint16_t type;          /* USER_ACTION_COOKIE_SLOW_PATH. */
170         uint16_t unused;
171         uint32_t reason;        /* enum slow_path_reason. */
172     } slow_path;
173 };
174 BUILD_ASSERT_DECL(sizeof(union user_action_cookie) == 8);
175
176 size_t odp_put_userspace_action(uint32_t pid,
177                                 const union user_action_cookie *,
178                                 struct ofpbuf *odp_actions);
179
180 /* Reasons why a subfacet might not be fast-pathable. */
181 enum slow_path_reason {
182     /* These reasons are mutually exclusive. */
183     SLOW_CFM = 1 << 0,          /* CFM packets need per-packet processing. */
184     SLOW_LACP = 1 << 1,         /* LACP packets need per-packet processing. */
185     SLOW_STP = 1 << 2,          /* STP packets need per-packet processing. */
186     SLOW_IN_BAND = 1 << 3,      /* In-band control needs every packet. */
187
188     /* Mutually exclusive with SLOW_CFM, SLOW_LACP, SLOW_STP.
189      * Could possibly appear with SLOW_IN_BAND. */
190     SLOW_CONTROLLER = 1 << 4,   /* Packets must go to OpenFlow controller. */
191
192     /* This can appear on its own, or, theoretically at least, along with any
193      * other combination of reasons. */
194     SLOW_MATCH = 1 << 5,        /* Datapath can't match specifically enough. */
195 };
196
197 #endif /* odp-util.h */