ofproto-dpif: Don't wildcard fields used in special processing.
[sliver-openvswitch.git] / ofproto / ofproto-dpif.h
1 /* Copyright (c) 2009, 2010, 2011, 2012, 2013 Nicira, Inc.
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License. */
14
15 #ifndef OFPROTO_DPIF_H
16 #define OFPROTO_DPIF_H 1
17
18 #include <stdint.h>
19
20 #include "hmapx.h"
21 #include "ofproto/ofproto-provider.h"
22 #include "tag.h"
23 #include "timer.h"
24 #include "util.h"
25
26 union user_action_cookie;
27
28 #define MAX_MIRRORS 32
29 typedef uint32_t mirror_mask_t;
30 #define MIRROR_MASK_C(X) UINT32_C(X)
31 BUILD_ASSERT_DECL(sizeof(mirror_mask_t) * CHAR_BIT >= MAX_MIRRORS);
32
33 /* Number of implemented OpenFlow tables. */
34 enum { N_TABLES = 255 };
35 enum { TBL_INTERNAL = N_TABLES - 1 };    /* Used for internal hidden rules. */
36 BUILD_ASSERT_DECL(N_TABLES >= 2 && N_TABLES <= 255);
37
38 struct rule_dpif {
39     struct rule up;
40
41     /* These statistics:
42      *
43      *   - Do include packets and bytes from facets that have been deleted or
44      *     whose own statistics have been folded into the rule.
45      *
46      *   - Do include packets and bytes sent "by hand" that were accounted to
47      *     the rule without any facet being involved (this is a rare corner
48      *     case in rule_execute()).
49      *
50      *   - Do not include packet or bytes that can be obtained from any facet's
51      *     packet_count or byte_count member or that can be obtained from the
52      *     datapath by, e.g., dpif_flow_get() for any subfacet.
53      */
54     uint64_t packet_count;       /* Number of packets received. */
55     uint64_t byte_count;         /* Number of bytes received. */
56
57     tag_type tag;                /* Caches rule_calculate_tag() result. */
58
59     struct list facets;          /* List of "struct facet"s. */
60 };
61
62 /* Extra information about a classifier table.
63  * Currently used just for optimized flow revalidation. */
64 struct table_dpif {
65     /* If either of these is nonnull, then this table has a form that allows
66      * flows to be tagged to avoid revalidating most flows for the most common
67      * kinds of flow table changes. */
68     struct cls_table *catchall_table; /* Table that wildcards all fields. */
69     struct cls_table *other_table;    /* Table with any other wildcard set. */
70     uint32_t basis;                   /* Keeps each table's tags separate. */
71 };
72
73 struct ofproto_dpif {
74     struct hmap_node all_ofproto_dpifs_node; /* In 'all_ofproto_dpifs'. */
75     struct ofproto up;
76     struct dpif_backer *backer;
77
78     /* Special OpenFlow rules. */
79     struct rule_dpif *miss_rule; /* Sends flow table misses to controller. */
80     struct rule_dpif *no_packet_in_rule; /* Drops flow table misses. */
81     struct rule_dpif *drop_frags_rule; /* Used in OFPC_FRAG_DROP mode. */
82
83     /* Bridging. */
84     struct netflow *netflow;
85     struct dpif_sflow *sflow;
86     struct dpif_ipfix *ipfix;
87     struct hmap bundles;        /* Contains "struct ofbundle"s. */
88     struct mac_learning *ml;
89     struct ofmirror *mirrors[MAX_MIRRORS];
90     bool has_mirrors;
91     bool has_bonded_bundles;
92
93     /* Facets. */
94     struct classifier facets;     /* Contains 'struct facet's. */
95     long long int consistency_rl;
96
97     /* Revalidation. */
98     struct table_dpif tables[N_TABLES];
99
100     /* Support for debugging async flow mods. */
101     struct list completions;
102
103     bool has_bundle_action; /* True when the first bundle action appears. */
104     struct netdev_stats stats; /* To account packets generated and consumed in
105                                 * userspace. */
106
107     /* Spanning tree. */
108     struct stp *stp;
109     long long int stp_last_tick;
110
111     /* VLAN splinters. */
112     struct hmap realdev_vid_map; /* (realdev,vid) -> vlandev. */
113     struct hmap vlandev_map;     /* vlandev -> (realdev,vid). */
114
115     /* Ports. */
116     struct sset ports;             /* Set of standard port names. */
117     struct sset ghost_ports;       /* Ports with no datapath port. */
118     struct sset port_poll_set;     /* Queued names for port_poll() reply. */
119     int port_poll_errno;           /* Last errno for port_poll() reply. */
120
121     /* Per ofproto's dpif stats. */
122     uint64_t n_hit;
123     uint64_t n_missed;
124 };
125
126 struct ofport_dpif {
127     struct hmap_node odp_port_node; /* In dpif_backer's "odp_to_ofport_map". */
128     struct ofport up;
129
130     uint32_t odp_port;
131     struct ofbundle *bundle;    /* Bundle that contains this port, if any. */
132     struct list bundle_node;    /* In struct ofbundle's "ports" list. */
133     struct cfm *cfm;            /* Connectivity Fault Management, if any. */
134     struct bfd *bfd;            /* BFD, if any. */
135     tag_type tag;               /* Tag associated with this port. */
136     bool may_enable;            /* May be enabled in bonds. */
137     long long int carrier_seq;  /* Carrier status changes. */
138     struct tnl_port *tnl_port;  /* Tunnel handle, or null. */
139
140     /* Spanning tree. */
141     struct stp_port *stp_port;  /* Spanning Tree Protocol, if any. */
142     enum stp_state stp_state;   /* Always STP_DISABLED if STP not in use. */
143     long long int stp_state_entered;
144
145     struct hmap priorities;     /* Map of attached 'priority_to_dscp's. */
146
147     /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
148      *
149      * This is deprecated.  It is only for compatibility with broken device
150      * drivers in old versions of Linux that do not properly support VLANs when
151      * VLAN devices are not used.  When broken device drivers are no longer in
152      * widespread use, we will delete these interfaces. */
153     uint16_t realdev_ofp_port;
154     int vlandev_vid;
155 };
156
157 struct ofbundle {
158     struct hmap_node hmap_node; /* In struct ofproto's "bundles" hmap. */
159     struct ofproto_dpif *ofproto; /* Owning ofproto. */
160     void *aux;                  /* Key supplied by ofproto's client. */
161     char *name;                 /* Identifier for log messages. */
162
163     /* Configuration. */
164     struct list ports;          /* Contains "struct ofport"s. */
165     enum port_vlan_mode vlan_mode; /* VLAN mode */
166     int vlan;                   /* -1=trunk port, else a 12-bit VLAN ID. */
167     unsigned long *trunks;      /* Bitmap of trunked VLANs, if 'vlan' == -1.
168                                  * NULL if all VLANs are trunked. */
169     struct lacp *lacp;          /* LACP if LACP is enabled, otherwise NULL. */
170     struct bond *bond;          /* Nonnull iff more than one port. */
171     bool use_priority_tags;     /* Use 802.1p tag for frames in VLAN 0? */
172
173     /* Status. */
174     bool floodable;          /* True if no port has OFPUTIL_PC_NO_FLOOD set. */
175
176     /* Port mirroring info. */
177     mirror_mask_t src_mirrors;  /* Mirrors triggered when packet received. */
178     mirror_mask_t dst_mirrors;  /* Mirrors triggered when packet sent. */
179     mirror_mask_t mirror_out;   /* Mirrors that output to this bundle. */
180 };
181
182 struct ofmirror {
183     struct ofproto_dpif *ofproto; /* Owning ofproto. */
184     size_t idx;                 /* In ofproto's "mirrors" array. */
185     void *aux;                  /* Key supplied by ofproto's client. */
186     char *name;                 /* Identifier for log messages. */
187
188     /* Selection criteria. */
189     struct hmapx srcs;          /* Contains "struct ofbundle *"s. */
190     struct hmapx dsts;          /* Contains "struct ofbundle *"s. */
191     unsigned long *vlans;       /* Bitmap of chosen VLANs, NULL selects all. */
192
193     /* Output (exactly one of out == NULL and out_vlan == -1 is true). */
194     struct ofbundle *out;       /* Output port or NULL. */
195     int out_vlan;               /* Output VLAN or -1. */
196     mirror_mask_t dup_mirrors;  /* Bitmap of mirrors with the same output. */
197
198     /* Counters. */
199     int64_t packet_count;       /* Number of packets sent. */
200     int64_t byte_count;         /* Number of bytes sent. */
201 };
202
203 static inline struct rule_dpif *rule_dpif_cast(const struct rule *rule)
204 {
205     return rule ? CONTAINER_OF(rule, struct rule_dpif, up) : NULL;
206 }
207
208 static inline struct ofproto_dpif *
209 ofproto_dpif_cast(const struct ofproto *ofproto)
210 {
211     ovs_assert(ofproto->ofproto_class == &ofproto_dpif_class);
212     return CONTAINER_OF(ofproto, struct ofproto_dpif, up);
213 }
214
215 static inline struct ofport_dpif *
216 ofbundle_get_a_port(const struct ofbundle *bundle)
217 {
218     return CONTAINER_OF(list_front(&bundle->ports), struct ofport_dpif,
219                         bundle_node);
220 }
221
222 static inline int
223 mirror_mask_ffs(mirror_mask_t mask)
224 {
225     BUILD_ASSERT_DECL(sizeof(unsigned int) >= sizeof(mask));
226     return ffs(mask);
227 }
228
229 struct ofport_dpif *get_ofp_port(const struct ofproto_dpif *,
230                                  uint16_t ofp_port);
231
232 struct ofport_dpif *get_odp_port(const struct ofproto_dpif *,
233                                         uint32_t odp_port);
234
235 struct ofport_dpif *ofport_get_peer(const struct ofport_dpif *);
236
237 uint32_t ofp_port_to_odp_port(const struct ofproto_dpif *, uint16_t ofp_port);
238
239 struct rule_dpif *rule_dpif_lookup_in_table(struct ofproto_dpif *,
240                                             const struct flow *,
241                                             struct flow_wildcards *,
242                                             uint8_t table_id);
243
244 tag_type rule_calculate_tag(const struct flow *flow, const struct minimask *,
245                             uint32_t secret);
246
247 struct rule_dpif *rule_dpif_miss_rule(struct ofproto_dpif *ofproto,
248                                       const struct flow *);
249
250 void rule_credit_stats(struct rule_dpif *, const struct dpif_flow_stats *);
251
252 void ofproto_trace(struct ofproto_dpif *, const struct flow *,
253                    const struct ofpbuf *packet, struct ds *);
254
255 size_t put_userspace_action(const struct ofproto_dpif *,
256                             struct ofpbuf *odp_actions, const struct flow *,
257                             const union user_action_cookie *,
258                             const size_t cookie_size);
259
260 bool stp_should_process_flow(const struct flow *, struct flow_wildcards *);
261 void stp_process_packet(const struct ofport_dpif *,
262                         const struct ofpbuf *packet);
263
264 uint16_t vsp_realdev_to_vlandev(const struct ofproto_dpif *,
265                                 uint16_t realdev_ofp_port,
266                                 ovs_be16 vlan_tci);
267
268 bool ofproto_dpif_dscp_from_priority(const struct ofport_dpif *,
269                                      uint32_t priority, uint8_t *dscp);
270 int ofproto_dpif_queue_to_priority(const struct ofproto_dpif *,
271                                    uint32_t queue_id, uint32_t *priority);
272
273
274 #endif /* ofproto-dpif.h */