ofproto-dpif: Store patch port peer in struct ofport_dpif.
[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     struct ofport_dpif *peer;   /* Peer if patch port. */
140
141     /* Spanning tree. */
142     struct stp_port *stp_port;  /* Spanning Tree Protocol, if any. */
143     enum stp_state stp_state;   /* Always STP_DISABLED if STP not in use. */
144     long long int stp_state_entered;
145
146     struct hmap priorities;     /* Map of attached 'priority_to_dscp's. */
147
148     /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
149      *
150      * This is deprecated.  It is only for compatibility with broken device
151      * drivers in old versions of Linux that do not properly support VLANs when
152      * VLAN devices are not used.  When broken device drivers are no longer in
153      * widespread use, we will delete these interfaces. */
154     uint16_t realdev_ofp_port;
155     int vlandev_vid;
156 };
157
158 struct ofbundle {
159     struct hmap_node hmap_node; /* In struct ofproto's "bundles" hmap. */
160     struct ofproto_dpif *ofproto; /* Owning ofproto. */
161     void *aux;                  /* Key supplied by ofproto's client. */
162     char *name;                 /* Identifier for log messages. */
163
164     /* Configuration. */
165     struct list ports;          /* Contains "struct ofport"s. */
166     enum port_vlan_mode vlan_mode; /* VLAN mode */
167     int vlan;                   /* -1=trunk port, else a 12-bit VLAN ID. */
168     unsigned long *trunks;      /* Bitmap of trunked VLANs, if 'vlan' == -1.
169                                  * NULL if all VLANs are trunked. */
170     struct lacp *lacp;          /* LACP if LACP is enabled, otherwise NULL. */
171     struct bond *bond;          /* Nonnull iff more than one port. */
172     bool use_priority_tags;     /* Use 802.1p tag for frames in VLAN 0? */
173
174     /* Status. */
175     bool floodable;          /* True if no port has OFPUTIL_PC_NO_FLOOD set. */
176
177     /* Port mirroring info. */
178     mirror_mask_t src_mirrors;  /* Mirrors triggered when packet received. */
179     mirror_mask_t dst_mirrors;  /* Mirrors triggered when packet sent. */
180     mirror_mask_t mirror_out;   /* Mirrors that output to this bundle. */
181 };
182
183 struct ofmirror {
184     struct ofproto_dpif *ofproto; /* Owning ofproto. */
185     size_t idx;                 /* In ofproto's "mirrors" array. */
186     void *aux;                  /* Key supplied by ofproto's client. */
187     char *name;                 /* Identifier for log messages. */
188
189     /* Selection criteria. */
190     struct hmapx srcs;          /* Contains "struct ofbundle *"s. */
191     struct hmapx dsts;          /* Contains "struct ofbundle *"s. */
192     unsigned long *vlans;       /* Bitmap of chosen VLANs, NULL selects all. */
193
194     /* Output (exactly one of out == NULL and out_vlan == -1 is true). */
195     struct ofbundle *out;       /* Output port or NULL. */
196     int out_vlan;               /* Output VLAN or -1. */
197     mirror_mask_t dup_mirrors;  /* Bitmap of mirrors with the same output. */
198
199     /* Counters. */
200     int64_t packet_count;       /* Number of packets sent. */
201     int64_t byte_count;         /* Number of bytes sent. */
202 };
203
204 static inline struct rule_dpif *rule_dpif_cast(const struct rule *rule)
205 {
206     return rule ? CONTAINER_OF(rule, struct rule_dpif, up) : NULL;
207 }
208
209 static inline struct ofproto_dpif *
210 ofproto_dpif_cast(const struct ofproto *ofproto)
211 {
212     ovs_assert(ofproto->ofproto_class == &ofproto_dpif_class);
213     return CONTAINER_OF(ofproto, struct ofproto_dpif, up);
214 }
215
216 static inline struct ofport_dpif *
217 ofbundle_get_a_port(const struct ofbundle *bundle)
218 {
219     return CONTAINER_OF(list_front(&bundle->ports), struct ofport_dpif,
220                         bundle_node);
221 }
222
223 static inline int
224 mirror_mask_ffs(mirror_mask_t mask)
225 {
226     BUILD_ASSERT_DECL(sizeof(unsigned int) >= sizeof(mask));
227     return ffs(mask);
228 }
229
230 struct ofport_dpif *get_ofp_port(const struct ofproto_dpif *,
231                                  uint16_t ofp_port);
232
233 struct ofport_dpif *get_odp_port(const struct ofproto_dpif *,
234                                         uint32_t odp_port);
235
236 uint32_t ofp_port_to_odp_port(const struct ofproto_dpif *, uint16_t ofp_port);
237
238 struct rule_dpif *rule_dpif_lookup_in_table(struct ofproto_dpif *,
239                                             const struct flow *,
240                                             struct flow_wildcards *,
241                                             uint8_t table_id);
242
243 tag_type rule_calculate_tag(const struct flow *flow, const struct minimask *,
244                             uint32_t secret);
245
246 struct rule_dpif *rule_dpif_miss_rule(struct ofproto_dpif *ofproto,
247                                       const struct flow *);
248
249 void rule_credit_stats(struct rule_dpif *, const struct dpif_flow_stats *);
250
251 void ofproto_trace(struct ofproto_dpif *, const struct flow *,
252                    const struct ofpbuf *packet, struct ds *);
253
254 size_t put_userspace_action(const struct ofproto_dpif *,
255                             struct ofpbuf *odp_actions, const struct flow *,
256                             const union user_action_cookie *,
257                             const size_t cookie_size);
258
259 bool stp_should_process_flow(const struct flow *, struct flow_wildcards *);
260 void stp_process_packet(const struct ofport_dpif *,
261                         const struct ofpbuf *packet);
262
263 uint16_t vsp_realdev_to_vlandev(const struct ofproto_dpif *,
264                                 uint16_t realdev_ofp_port,
265                                 ovs_be16 vlan_tci);
266
267 bool ofproto_dpif_dscp_from_priority(const struct ofport_dpif *,
268                                      uint32_t priority, uint8_t *dscp);
269 int ofproto_dpif_queue_to_priority(const struct ofproto_dpif *,
270                                    uint32_t queue_id, uint32_t *priority);
271
272
273 #endif /* ofproto-dpif.h */