ofproto: Simplify rule_insert().
[sliver-openvswitch.git] / ofproto / ofproto.c
1 /*
2  * Copyright (c) 2009, 2010 Nicira Networks.
3  * Copyright (c) 2010 Jean Tourrilhes - HP-Labs.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at:
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  */
17
18 #include <config.h>
19 #include "ofproto.h"
20 #include <errno.h>
21 #include <inttypes.h>
22 #include <sys/socket.h>
23 #include <net/if.h>
24 #include <netinet/in.h>
25 #include <stdbool.h>
26 #include <stdlib.h>
27 #include "byte-order.h"
28 #include "classifier.h"
29 #include "coverage.h"
30 #include "discovery.h"
31 #include "dpif.h"
32 #include "dynamic-string.h"
33 #include "fail-open.h"
34 #include "hash.h"
35 #include "hmap.h"
36 #include "in-band.h"
37 #include "mac-learning.h"
38 #include "netdev.h"
39 #include "netflow.h"
40 #include "nx-match.h"
41 #include "odp-util.h"
42 #include "ofp-print.h"
43 #include "ofp-util.h"
44 #include "ofproto-sflow.h"
45 #include "ofpbuf.h"
46 #include "openflow/nicira-ext.h"
47 #include "openflow/openflow.h"
48 #include "openvswitch/datapath-protocol.h"
49 #include "packets.h"
50 #include "pinsched.h"
51 #include "pktbuf.h"
52 #include "poll-loop.h"
53 #include "rconn.h"
54 #include "shash.h"
55 #include "status.h"
56 #include "stream-ssl.h"
57 #include "svec.h"
58 #include "tag.h"
59 #include "timeval.h"
60 #include "unixctl.h"
61 #include "vconn.h"
62 #include "vlog.h"
63
64 VLOG_DEFINE_THIS_MODULE(ofproto);
65
66 #include "sflow_api.h"
67
68 struct ofport {
69     struct hmap_node hmap_node; /* In struct ofproto's "ports" hmap. */
70     struct netdev *netdev;
71     struct ofp_phy_port opp;    /* In host byte order. */
72     uint16_t odp_port;
73 };
74
75 static void ofport_free(struct ofport *);
76 static void hton_ofp_phy_port(struct ofp_phy_port *);
77
78 static int xlate_actions(const union ofp_action *in, size_t n_in,
79                          const struct flow *, struct ofproto *,
80                          const struct ofpbuf *packet,
81                          struct odp_actions *out, tag_type *tags,
82                          bool *may_set_up_flow, uint16_t *nf_output_iface);
83
84 /* An OpenFlow flow. */
85 struct rule {
86     long long int used;         /* Time last used; time created if not used. */
87     long long int created;      /* Creation time. */
88
89     /* These statistics:
90      *
91      *   - Do include packets and bytes from facets that have been deleted or
92      *     whose own statistics have been folded into the rule.
93      *
94      *   - Do include packets and bytes sent "by hand" that were accounted to
95      *     the rule without any facet being involved (this is a rare corner
96      *     case in rule_execute()).
97      *
98      *   - Do not include packet or bytes that can be obtained from any facet's
99      *     packet_count or byte_count member or that can be obtained from the
100      *     datapath by, e.g., dpif_flow_get() for any facet.
101      */
102     uint64_t packet_count;       /* Number of packets received. */
103     uint64_t byte_count;         /* Number of bytes received. */
104
105     ovs_be64 flow_cookie;        /* Controller-issued identifier. */
106
107     struct cls_rule cr;          /* In owning ofproto's classifier. */
108     uint16_t idle_timeout;       /* In seconds from time of last use. */
109     uint16_t hard_timeout;       /* In seconds from time of creation. */
110     bool send_flow_removed;      /* Send a flow removed message? */
111     int n_actions;               /* Number of elements in actions[]. */
112     union ofp_action *actions;   /* OpenFlow actions. */
113     struct list facets;          /* List of "struct facet"s. */
114 };
115
116 static struct rule *rule_from_cls_rule(const struct cls_rule *);
117 static bool rule_is_hidden(const struct rule *);
118
119 static struct rule *rule_create(const struct cls_rule *,
120                                 const union ofp_action *, size_t n_actions,
121                                 uint16_t idle_timeout, uint16_t hard_timeout,
122                                 ovs_be64 flow_cookie, bool send_flow_removed);
123 static void rule_destroy(struct ofproto *, struct rule *);
124 static void rule_free(struct rule *);
125
126 static struct rule *rule_lookup(struct ofproto *, const struct flow *);
127 static void rule_insert(struct ofproto *, struct rule *);
128 static void rule_remove(struct ofproto *, struct rule *);
129
130 static void rule_send_removed(struct ofproto *, struct rule *, uint8_t reason);
131
132 /* An exact-match instantiation of an OpenFlow flow. */
133 struct facet {
134     long long int used;         /* Time last used; time created if not used. */
135
136     /* These statistics:
137      *
138      *   - Do include packets and bytes sent "by hand", e.g. with
139      *     dpif_execute().
140      *
141      *   - Do include packets and bytes that were obtained from the datapath
142      *     when a flow was deleted (e.g. dpif_flow_del()) or when its
143      *     statistics were reset (e.g. dpif_flow_put() with ODPPF_ZERO_STATS).
144      *
145      *   - Do not include any packets or bytes that can currently be obtained
146      *     from the datapath by, e.g., dpif_flow_get().
147      */
148     uint64_t packet_count;       /* Number of packets received. */
149     uint64_t byte_count;         /* Number of bytes received. */
150
151     /* Number of bytes passed to account_cb.  This may include bytes that can
152      * currently obtained from the datapath (thus, it can be greater than
153      * byte_count). */
154     uint64_t accounted_bytes;
155
156     struct hmap_node hmap_node;  /* In owning ofproto's 'facets' hmap. */
157     struct list list_node;       /* In owning rule's 'facets' list. */
158     struct rule *rule;           /* Owning rule. */
159     struct flow flow;            /* Exact-match flow. */
160     bool installed;              /* Installed in datapath? */
161     bool may_install;            /* True ordinarily; false if actions must
162                                   * be reassessed for every packet. */
163     int n_actions;               /* Number of elements in actions[]. */
164     union odp_action *actions;   /* Datapath actions. */
165     tag_type tags;               /* Tags (set only by hooks). */
166     struct netflow_flow nf_flow; /* Per-flow NetFlow tracking data. */
167 };
168
169 static struct facet *facet_create(struct ofproto *, struct rule *,
170                                   const struct flow *,
171                                   const struct ofpbuf *packet);
172 static void facet_remove(struct ofproto *, struct facet *);
173 static void facet_free(struct facet *);
174
175 static struct facet *facet_lookup_valid(struct ofproto *, const struct flow *);
176 static bool facet_revalidate(struct ofproto *, struct facet *);
177
178 static void facet_install(struct ofproto *, struct facet *, bool zero_stats);
179 static void facet_uninstall(struct ofproto *, struct facet *);
180 static void facet_flush_stats(struct ofproto *, struct facet *);
181
182 static void facet_make_actions(struct ofproto *, struct facet *,
183                                const struct ofpbuf *packet);
184 static void facet_update_stats(struct ofproto *, struct facet *,
185                                const struct odp_flow_stats *);
186
187 /* ofproto supports two kinds of OpenFlow connections:
188  *
189  *   - "Primary" connections to ordinary OpenFlow controllers.  ofproto
190  *     maintains persistent connections to these controllers and by default
191  *     sends them asynchronous messages such as packet-ins.
192  *
193  *   - "Service" connections, e.g. from ovs-ofctl.  When these connections
194  *     drop, it is the other side's responsibility to reconnect them if
195  *     necessary.  ofproto does not send them asynchronous messages by default.
196  *
197  * Currently, active (tcp, ssl, unix) connections are always "primary"
198  * connections and passive (ptcp, pssl, punix) connections are always "service"
199  * connections.  There is no inherent reason for this, but it reflects the
200  * common case.
201  */
202 enum ofconn_type {
203     OFCONN_PRIMARY,             /* An ordinary OpenFlow controller. */
204     OFCONN_SERVICE              /* A service connection, e.g. "ovs-ofctl". */
205 };
206
207 /* A listener for incoming OpenFlow "service" connections. */
208 struct ofservice {
209     struct hmap_node node;      /* In struct ofproto's "services" hmap. */
210     struct pvconn *pvconn;      /* OpenFlow connection listener. */
211
212     /* These are not used by ofservice directly.  They are settings for
213      * accepted "struct ofconn"s from the pvconn. */
214     int probe_interval;         /* Max idle time before probing, in seconds. */
215     int rate_limit;             /* Max packet-in rate in packets per second. */
216     int burst_limit;            /* Limit on accumulating packet credits. */
217 };
218
219 static struct ofservice *ofservice_lookup(struct ofproto *,
220                                           const char *target);
221 static int ofservice_create(struct ofproto *,
222                             const struct ofproto_controller *);
223 static void ofservice_reconfigure(struct ofservice *,
224                                   const struct ofproto_controller *);
225 static void ofservice_destroy(struct ofproto *, struct ofservice *);
226
227 /* An OpenFlow connection. */
228 struct ofconn {
229     struct ofproto *ofproto;    /* The ofproto that owns this connection. */
230     struct list node;           /* In struct ofproto's "all_conns" list. */
231     struct rconn *rconn;        /* OpenFlow connection. */
232     enum ofconn_type type;      /* Type. */
233     int flow_format;            /* One of NXFF_*. */
234
235     /* OFPT_PACKET_IN related data. */
236     struct rconn_packet_counter *packet_in_counter; /* # queued on 'rconn'. */
237     struct pinsched *schedulers[2]; /* Indexed by reason code; see below. */
238     struct pktbuf *pktbuf;         /* OpenFlow packet buffers. */
239     int miss_send_len;             /* Bytes to send of buffered packets. */
240
241     /* Number of OpenFlow messages queued on 'rconn' as replies to OpenFlow
242      * requests, and the maximum number before we stop reading OpenFlow
243      * requests.  */
244 #define OFCONN_REPLY_MAX 100
245     struct rconn_packet_counter *reply_counter;
246
247     /* type == OFCONN_PRIMARY only. */
248     enum nx_role role;           /* Role. */
249     struct hmap_node hmap_node;  /* In struct ofproto's "controllers" map. */
250     struct discovery *discovery; /* Controller discovery object, if enabled. */
251     struct status_category *ss;  /* Switch status category. */
252     enum ofproto_band band;      /* In-band or out-of-band? */
253 };
254
255 /* We use OFPR_NO_MATCH and OFPR_ACTION as indexes into struct ofconn's
256  * "schedulers" array.  Their values are 0 and 1, and their meanings and values
257  * coincide with _ODPL_MISS_NR and _ODPL_ACTION_NR, so this is convenient.  In
258  * case anything ever changes, check their values here.  */
259 #define N_SCHEDULERS 2
260 BUILD_ASSERT_DECL(OFPR_NO_MATCH == 0);
261 BUILD_ASSERT_DECL(OFPR_NO_MATCH == _ODPL_MISS_NR);
262 BUILD_ASSERT_DECL(OFPR_ACTION == 1);
263 BUILD_ASSERT_DECL(OFPR_ACTION == _ODPL_ACTION_NR);
264
265 static struct ofconn *ofconn_create(struct ofproto *, struct rconn *,
266                                     enum ofconn_type);
267 static void ofconn_destroy(struct ofconn *);
268 static void ofconn_run(struct ofconn *);
269 static void ofconn_wait(struct ofconn *);
270 static bool ofconn_receives_async_msgs(const struct ofconn *);
271 static char *ofconn_make_name(const struct ofproto *, const char *target);
272 static void ofconn_set_rate_limit(struct ofconn *, int rate, int burst);
273
274 static void queue_tx(struct ofpbuf *msg, const struct ofconn *ofconn,
275                      struct rconn_packet_counter *counter);
276
277 static void send_packet_in(struct ofproto *, struct ofpbuf *odp_msg);
278 static void do_send_packet_in(struct ofpbuf *odp_msg, void *ofconn);
279
280 struct ofproto {
281     /* Settings. */
282     uint64_t datapath_id;       /* Datapath ID. */
283     uint64_t fallback_dpid;     /* Datapath ID if no better choice found. */
284     char *mfr_desc;             /* Manufacturer. */
285     char *hw_desc;              /* Hardware. */
286     char *sw_desc;              /* Software version. */
287     char *serial_desc;          /* Serial number. */
288     char *dp_desc;              /* Datapath description. */
289
290     /* Datapath. */
291     struct dpif *dpif;
292     struct netdev_monitor *netdev_monitor;
293     struct hmap ports;          /* Contains "struct ofport"s. */
294     struct shash port_by_name;
295     uint32_t max_ports;
296
297     /* Configuration. */
298     struct switch_status *switch_status;
299     struct fail_open *fail_open;
300     struct netflow *netflow;
301     struct ofproto_sflow *sflow;
302
303     /* In-band control. */
304     struct in_band *in_band;
305     long long int next_in_band_update;
306     struct sockaddr_in *extra_in_band_remotes;
307     size_t n_extra_remotes;
308
309     /* Flow table. */
310     struct classifier cls;
311     long long int next_expiration;
312
313     /* Facets. */
314     struct hmap facets;
315     bool need_revalidate;
316     struct tag_set revalidate_set;
317
318     /* OpenFlow connections. */
319     struct hmap controllers;   /* Controller "struct ofconn"s. */
320     struct list all_conns;     /* Contains "struct ofconn"s. */
321     enum ofproto_fail_mode fail_mode;
322
323     /* OpenFlow listeners. */
324     struct hmap services;       /* Contains "struct ofservice"s. */
325     struct pvconn **snoops;
326     size_t n_snoops;
327
328     /* Hooks for ovs-vswitchd. */
329     const struct ofhooks *ofhooks;
330     void *aux;
331
332     /* Used by default ofhooks. */
333     struct mac_learning *ml;
334 };
335
336 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
337
338 static const struct ofhooks default_ofhooks;
339
340 static uint64_t pick_datapath_id(const struct ofproto *);
341 static uint64_t pick_fallback_dpid(void);
342
343 static int ofproto_expire(struct ofproto *);
344
345 static void handle_odp_msg(struct ofproto *, struct ofpbuf *);
346
347 static void handle_openflow(struct ofconn *, struct ofpbuf *);
348
349 static struct ofport *get_port(const struct ofproto *, uint16_t odp_port);
350 static void update_port(struct ofproto *, const char *devname);
351 static int init_ports(struct ofproto *);
352 static void reinit_ports(struct ofproto *);
353
354 int
355 ofproto_create(const char *datapath, const char *datapath_type,
356                const struct ofhooks *ofhooks, void *aux,
357                struct ofproto **ofprotop)
358 {
359     struct odp_stats stats;
360     struct ofproto *p;
361     struct dpif *dpif;
362     int error;
363
364     *ofprotop = NULL;
365
366     /* Connect to datapath and start listening for messages. */
367     error = dpif_open(datapath, datapath_type, &dpif);
368     if (error) {
369         VLOG_ERR("failed to open datapath %s: %s", datapath, strerror(error));
370         return error;
371     }
372     error = dpif_get_dp_stats(dpif, &stats);
373     if (error) {
374         VLOG_ERR("failed to obtain stats for datapath %s: %s",
375                  datapath, strerror(error));
376         dpif_close(dpif);
377         return error;
378     }
379     error = dpif_recv_set_mask(dpif, ODPL_MISS | ODPL_ACTION | ODPL_SFLOW);
380     if (error) {
381         VLOG_ERR("failed to listen on datapath %s: %s",
382                  datapath, strerror(error));
383         dpif_close(dpif);
384         return error;
385     }
386     dpif_flow_flush(dpif);
387     dpif_recv_purge(dpif);
388
389     /* Initialize settings. */
390     p = xzalloc(sizeof *p);
391     p->fallback_dpid = pick_fallback_dpid();
392     p->datapath_id = p->fallback_dpid;
393     p->mfr_desc = xstrdup(DEFAULT_MFR_DESC);
394     p->hw_desc = xstrdup(DEFAULT_HW_DESC);
395     p->sw_desc = xstrdup(DEFAULT_SW_DESC);
396     p->serial_desc = xstrdup(DEFAULT_SERIAL_DESC);
397     p->dp_desc = xstrdup(DEFAULT_DP_DESC);
398
399     /* Initialize datapath. */
400     p->dpif = dpif;
401     p->netdev_monitor = netdev_monitor_create();
402     hmap_init(&p->ports);
403     shash_init(&p->port_by_name);
404     p->max_ports = stats.max_ports;
405
406     /* Initialize submodules. */
407     p->switch_status = switch_status_create(p);
408     p->in_band = NULL;
409     p->fail_open = NULL;
410     p->netflow = NULL;
411     p->sflow = NULL;
412
413     /* Initialize flow table. */
414     classifier_init(&p->cls);
415     p->next_expiration = time_msec() + 1000;
416
417     /* Initialize facet table. */
418     hmap_init(&p->facets);
419     p->need_revalidate = false;
420     tag_set_init(&p->revalidate_set);
421
422     /* Initialize OpenFlow connections. */
423     list_init(&p->all_conns);
424     hmap_init(&p->controllers);
425     hmap_init(&p->services);
426     p->snoops = NULL;
427     p->n_snoops = 0;
428
429     /* Initialize hooks. */
430     if (ofhooks) {
431         p->ofhooks = ofhooks;
432         p->aux = aux;
433         p->ml = NULL;
434     } else {
435         p->ofhooks = &default_ofhooks;
436         p->aux = p;
437         p->ml = mac_learning_create();
438     }
439
440     /* Pick final datapath ID. */
441     p->datapath_id = pick_datapath_id(p);
442     VLOG_INFO("using datapath ID %016"PRIx64, p->datapath_id);
443
444     *ofprotop = p;
445     return 0;
446 }
447
448 void
449 ofproto_set_datapath_id(struct ofproto *p, uint64_t datapath_id)
450 {
451     uint64_t old_dpid = p->datapath_id;
452     p->datapath_id = datapath_id ? datapath_id : pick_datapath_id(p);
453     if (p->datapath_id != old_dpid) {
454         VLOG_INFO("datapath ID changed to %016"PRIx64, p->datapath_id);
455
456         /* Force all active connections to reconnect, since there is no way to
457          * notify a controller that the datapath ID has changed. */
458         ofproto_reconnect_controllers(p);
459     }
460 }
461
462 static bool
463 is_discovery_controller(const struct ofproto_controller *c)
464 {
465     return !strcmp(c->target, "discover");
466 }
467
468 static bool
469 is_in_band_controller(const struct ofproto_controller *c)
470 {
471     return is_discovery_controller(c) || c->band == OFPROTO_IN_BAND;
472 }
473
474 /* Creates a new controller in 'ofproto'.  Some of the settings are initially
475  * drawn from 'c', but update_controller() needs to be called later to finish
476  * the new ofconn's configuration. */
477 static void
478 add_controller(struct ofproto *ofproto, const struct ofproto_controller *c)
479 {
480     struct discovery *discovery;
481     struct ofconn *ofconn;
482
483     if (is_discovery_controller(c)) {
484         int error = discovery_create(c->accept_re, c->update_resolv_conf,
485                                      ofproto->dpif, ofproto->switch_status,
486                                      &discovery);
487         if (error) {
488             return;
489         }
490     } else {
491         discovery = NULL;
492     }
493
494     ofconn = ofconn_create(ofproto, rconn_create(5, 8), OFCONN_PRIMARY);
495     ofconn->pktbuf = pktbuf_create();
496     ofconn->miss_send_len = OFP_DEFAULT_MISS_SEND_LEN;
497     if (discovery) {
498         ofconn->discovery = discovery;
499     } else {
500         char *name = ofconn_make_name(ofproto, c->target);
501         rconn_connect(ofconn->rconn, c->target, name);
502         free(name);
503     }
504     hmap_insert(&ofproto->controllers, &ofconn->hmap_node,
505                 hash_string(c->target, 0));
506 }
507
508 /* Reconfigures 'ofconn' to match 'c'.  This function cannot update an ofconn's
509  * target or turn discovery on or off (these are done by creating new ofconns
510  * and deleting old ones), but it can update the rest of an ofconn's
511  * settings. */
512 static void
513 update_controller(struct ofconn *ofconn, const struct ofproto_controller *c)
514 {
515     int probe_interval;
516
517     ofconn->band = (is_in_band_controller(c)
518                     ? OFPROTO_IN_BAND : OFPROTO_OUT_OF_BAND);
519
520     rconn_set_max_backoff(ofconn->rconn, c->max_backoff);
521
522     probe_interval = c->probe_interval ? MAX(c->probe_interval, 5) : 0;
523     rconn_set_probe_interval(ofconn->rconn, probe_interval);
524
525     if (ofconn->discovery) {
526         discovery_set_update_resolv_conf(ofconn->discovery,
527                                          c->update_resolv_conf);
528         discovery_set_accept_controller_re(ofconn->discovery, c->accept_re);
529     }
530
531     ofconn_set_rate_limit(ofconn, c->rate_limit, c->burst_limit);
532 }
533
534 static const char *
535 ofconn_get_target(const struct ofconn *ofconn)
536 {
537     return ofconn->discovery ? "discover" : rconn_get_target(ofconn->rconn);
538 }
539
540 static struct ofconn *
541 find_controller_by_target(struct ofproto *ofproto, const char *target)
542 {
543     struct ofconn *ofconn;
544
545     HMAP_FOR_EACH_WITH_HASH (ofconn, hmap_node,
546                              hash_string(target, 0), &ofproto->controllers) {
547         if (!strcmp(ofconn_get_target(ofconn), target)) {
548             return ofconn;
549         }
550     }
551     return NULL;
552 }
553
554 static void
555 update_in_band_remotes(struct ofproto *ofproto)
556 {
557     const struct ofconn *ofconn;
558     struct sockaddr_in *addrs;
559     size_t max_addrs, n_addrs;
560     bool discovery;
561     size_t i;
562
563     /* Allocate enough memory for as many remotes as we could possibly have. */
564     max_addrs = ofproto->n_extra_remotes + hmap_count(&ofproto->controllers);
565     addrs = xmalloc(max_addrs * sizeof *addrs);
566     n_addrs = 0;
567
568     /* Add all the remotes. */
569     discovery = false;
570     HMAP_FOR_EACH (ofconn, hmap_node, &ofproto->controllers) {
571         struct sockaddr_in *sin = &addrs[n_addrs];
572
573         if (ofconn->band == OFPROTO_OUT_OF_BAND) {
574             continue;
575         }
576
577         sin->sin_addr.s_addr = rconn_get_remote_ip(ofconn->rconn);
578         if (sin->sin_addr.s_addr) {
579             sin->sin_port = rconn_get_remote_port(ofconn->rconn);
580             n_addrs++;
581         }
582         if (ofconn->discovery) {
583             discovery = true;
584         }
585     }
586     for (i = 0; i < ofproto->n_extra_remotes; i++) {
587         addrs[n_addrs++] = ofproto->extra_in_band_remotes[i];
588     }
589
590     /* Create or update or destroy in-band.
591      *
592      * Ordinarily we only enable in-band if there's at least one remote
593      * address, but discovery needs the in-band rules for DHCP to be installed
594      * even before we know any remote addresses. */
595     if (n_addrs || discovery) {
596         if (!ofproto->in_band) {
597             in_band_create(ofproto, ofproto->dpif, ofproto->switch_status,
598                            &ofproto->in_band);
599         }
600         if (ofproto->in_band) {
601             in_band_set_remotes(ofproto->in_band, addrs, n_addrs);
602         }
603         ofproto->next_in_band_update = time_msec() + 1000;
604     } else {
605         in_band_destroy(ofproto->in_band);
606         ofproto->in_band = NULL;
607     }
608
609     /* Clean up. */
610     free(addrs);
611 }
612
613 static void
614 update_fail_open(struct ofproto *p)
615 {
616     struct ofconn *ofconn;
617
618     if (!hmap_is_empty(&p->controllers)
619             && p->fail_mode == OFPROTO_FAIL_STANDALONE) {
620         struct rconn **rconns;
621         size_t n;
622
623         if (!p->fail_open) {
624             p->fail_open = fail_open_create(p, p->switch_status);
625         }
626
627         n = 0;
628         rconns = xmalloc(hmap_count(&p->controllers) * sizeof *rconns);
629         HMAP_FOR_EACH (ofconn, hmap_node, &p->controllers) {
630             rconns[n++] = ofconn->rconn;
631         }
632
633         fail_open_set_controllers(p->fail_open, rconns, n);
634         /* p->fail_open takes ownership of 'rconns'. */
635     } else {
636         fail_open_destroy(p->fail_open);
637         p->fail_open = NULL;
638     }
639 }
640
641 void
642 ofproto_set_controllers(struct ofproto *p,
643                         const struct ofproto_controller *controllers,
644                         size_t n_controllers)
645 {
646     struct shash new_controllers;
647     struct ofconn *ofconn, *next_ofconn;
648     struct ofservice *ofservice, *next_ofservice;
649     bool ss_exists;
650     size_t i;
651
652     /* Create newly configured controllers and services.
653      * Create a name to ofproto_controller mapping in 'new_controllers'. */
654     shash_init(&new_controllers);
655     for (i = 0; i < n_controllers; i++) {
656         const struct ofproto_controller *c = &controllers[i];
657
658         if (!vconn_verify_name(c->target) || !strcmp(c->target, "discover")) {
659             if (!find_controller_by_target(p, c->target)) {
660                 add_controller(p, c);
661             }
662         } else if (!pvconn_verify_name(c->target)) {
663             if (!ofservice_lookup(p, c->target) && ofservice_create(p, c)) {
664                 continue;
665             }
666         } else {
667             VLOG_WARN_RL(&rl, "%s: unsupported controller \"%s\"",
668                          dpif_name(p->dpif), c->target);
669             continue;
670         }
671
672         shash_add_once(&new_controllers, c->target, &controllers[i]);
673     }
674
675     /* Delete controllers that are no longer configured.
676      * Update configuration of all now-existing controllers. */
677     ss_exists = false;
678     HMAP_FOR_EACH_SAFE (ofconn, next_ofconn, hmap_node, &p->controllers) {
679         struct ofproto_controller *c;
680
681         c = shash_find_data(&new_controllers, ofconn_get_target(ofconn));
682         if (!c) {
683             ofconn_destroy(ofconn);
684         } else {
685             update_controller(ofconn, c);
686             if (ofconn->ss) {
687                 ss_exists = true;
688             }
689         }
690     }
691
692     /* Delete services that are no longer configured.
693      * Update configuration of all now-existing services. */
694     HMAP_FOR_EACH_SAFE (ofservice, next_ofservice, node, &p->services) {
695         struct ofproto_controller *c;
696
697         c = shash_find_data(&new_controllers,
698                             pvconn_get_name(ofservice->pvconn));
699         if (!c) {
700             ofservice_destroy(p, ofservice);
701         } else {
702             ofservice_reconfigure(ofservice, c);
703         }
704     }
705
706     shash_destroy(&new_controllers);
707
708     update_in_band_remotes(p);
709     update_fail_open(p);
710
711     if (!hmap_is_empty(&p->controllers) && !ss_exists) {
712         ofconn = CONTAINER_OF(hmap_first(&p->controllers),
713                               struct ofconn, hmap_node);
714         ofconn->ss = switch_status_register(p->switch_status, "remote",
715                                             rconn_status_cb, ofconn->rconn);
716     }
717 }
718
719 void
720 ofproto_set_fail_mode(struct ofproto *p, enum ofproto_fail_mode fail_mode)
721 {
722     p->fail_mode = fail_mode;
723     update_fail_open(p);
724 }
725
726 /* Drops the connections between 'ofproto' and all of its controllers, forcing
727  * them to reconnect. */
728 void
729 ofproto_reconnect_controllers(struct ofproto *ofproto)
730 {
731     struct ofconn *ofconn;
732
733     LIST_FOR_EACH (ofconn, node, &ofproto->all_conns) {
734         rconn_reconnect(ofconn->rconn);
735     }
736 }
737
738 static bool
739 any_extras_changed(const struct ofproto *ofproto,
740                    const struct sockaddr_in *extras, size_t n)
741 {
742     size_t i;
743
744     if (n != ofproto->n_extra_remotes) {
745         return true;
746     }
747
748     for (i = 0; i < n; i++) {
749         const struct sockaddr_in *old = &ofproto->extra_in_band_remotes[i];
750         const struct sockaddr_in *new = &extras[i];
751
752         if (old->sin_addr.s_addr != new->sin_addr.s_addr ||
753             old->sin_port != new->sin_port) {
754             return true;
755         }
756     }
757
758     return false;
759 }
760
761 /* Sets the 'n' TCP port addresses in 'extras' as ones to which 'ofproto''s
762  * in-band control should guarantee access, in the same way that in-band
763  * control guarantees access to OpenFlow controllers. */
764 void
765 ofproto_set_extra_in_band_remotes(struct ofproto *ofproto,
766                                   const struct sockaddr_in *extras, size_t n)
767 {
768     if (!any_extras_changed(ofproto, extras, n)) {
769         return;
770     }
771
772     free(ofproto->extra_in_band_remotes);
773     ofproto->n_extra_remotes = n;
774     ofproto->extra_in_band_remotes = xmemdup(extras, n * sizeof *extras);
775
776     update_in_band_remotes(ofproto);
777 }
778
779 void
780 ofproto_set_desc(struct ofproto *p,
781                  const char *mfr_desc, const char *hw_desc,
782                  const char *sw_desc, const char *serial_desc,
783                  const char *dp_desc)
784 {
785     struct ofp_desc_stats *ods;
786
787     if (mfr_desc) {
788         if (strlen(mfr_desc) >= sizeof ods->mfr_desc) {
789             VLOG_WARN("truncating mfr_desc, must be less than %zu characters",
790                     sizeof ods->mfr_desc);
791         }
792         free(p->mfr_desc);
793         p->mfr_desc = xstrdup(mfr_desc);
794     }
795     if (hw_desc) {
796         if (strlen(hw_desc) >= sizeof ods->hw_desc) {
797             VLOG_WARN("truncating hw_desc, must be less than %zu characters",
798                     sizeof ods->hw_desc);
799         }
800         free(p->hw_desc);
801         p->hw_desc = xstrdup(hw_desc);
802     }
803     if (sw_desc) {
804         if (strlen(sw_desc) >= sizeof ods->sw_desc) {
805             VLOG_WARN("truncating sw_desc, must be less than %zu characters",
806                     sizeof ods->sw_desc);
807         }
808         free(p->sw_desc);
809         p->sw_desc = xstrdup(sw_desc);
810     }
811     if (serial_desc) {
812         if (strlen(serial_desc) >= sizeof ods->serial_num) {
813             VLOG_WARN("truncating serial_desc, must be less than %zu "
814                     "characters",
815                     sizeof ods->serial_num);
816         }
817         free(p->serial_desc);
818         p->serial_desc = xstrdup(serial_desc);
819     }
820     if (dp_desc) {
821         if (strlen(dp_desc) >= sizeof ods->dp_desc) {
822             VLOG_WARN("truncating dp_desc, must be less than %zu characters",
823                     sizeof ods->dp_desc);
824         }
825         free(p->dp_desc);
826         p->dp_desc = xstrdup(dp_desc);
827     }
828 }
829
830 static int
831 set_pvconns(struct pvconn ***pvconnsp, size_t *n_pvconnsp,
832             const struct svec *svec)
833 {
834     struct pvconn **pvconns = *pvconnsp;
835     size_t n_pvconns = *n_pvconnsp;
836     int retval = 0;
837     size_t i;
838
839     for (i = 0; i < n_pvconns; i++) {
840         pvconn_close(pvconns[i]);
841     }
842     free(pvconns);
843
844     pvconns = xmalloc(svec->n * sizeof *pvconns);
845     n_pvconns = 0;
846     for (i = 0; i < svec->n; i++) {
847         const char *name = svec->names[i];
848         struct pvconn *pvconn;
849         int error;
850
851         error = pvconn_open(name, &pvconn);
852         if (!error) {
853             pvconns[n_pvconns++] = pvconn;
854         } else {
855             VLOG_ERR("failed to listen on %s: %s", name, strerror(error));
856             if (!retval) {
857                 retval = error;
858             }
859         }
860     }
861
862     *pvconnsp = pvconns;
863     *n_pvconnsp = n_pvconns;
864
865     return retval;
866 }
867
868 int
869 ofproto_set_snoops(struct ofproto *ofproto, const struct svec *snoops)
870 {
871     return set_pvconns(&ofproto->snoops, &ofproto->n_snoops, snoops);
872 }
873
874 int
875 ofproto_set_netflow(struct ofproto *ofproto,
876                     const struct netflow_options *nf_options)
877 {
878     if (nf_options && nf_options->collectors.n) {
879         if (!ofproto->netflow) {
880             ofproto->netflow = netflow_create();
881         }
882         return netflow_set_options(ofproto->netflow, nf_options);
883     } else {
884         netflow_destroy(ofproto->netflow);
885         ofproto->netflow = NULL;
886         return 0;
887     }
888 }
889
890 void
891 ofproto_set_sflow(struct ofproto *ofproto,
892                   const struct ofproto_sflow_options *oso)
893 {
894     struct ofproto_sflow *os = ofproto->sflow;
895     if (oso) {
896         if (!os) {
897             struct ofport *ofport;
898
899             os = ofproto->sflow = ofproto_sflow_create(ofproto->dpif);
900             HMAP_FOR_EACH (ofport, hmap_node, &ofproto->ports) {
901                 ofproto_sflow_add_port(os, ofport->odp_port,
902                                        netdev_get_name(ofport->netdev));
903             }
904         }
905         ofproto_sflow_set_options(os, oso);
906     } else {
907         ofproto_sflow_destroy(os);
908         ofproto->sflow = NULL;
909     }
910 }
911
912 uint64_t
913 ofproto_get_datapath_id(const struct ofproto *ofproto)
914 {
915     return ofproto->datapath_id;
916 }
917
918 bool
919 ofproto_has_primary_controller(const struct ofproto *ofproto)
920 {
921     return !hmap_is_empty(&ofproto->controllers);
922 }
923
924 enum ofproto_fail_mode
925 ofproto_get_fail_mode(const struct ofproto *p)
926 {
927     return p->fail_mode;
928 }
929
930 void
931 ofproto_get_snoops(const struct ofproto *ofproto, struct svec *snoops)
932 {
933     size_t i;
934
935     for (i = 0; i < ofproto->n_snoops; i++) {
936         svec_add(snoops, pvconn_get_name(ofproto->snoops[i]));
937     }
938 }
939
940 void
941 ofproto_destroy(struct ofproto *p)
942 {
943     struct ofservice *ofservice, *next_ofservice;
944     struct ofconn *ofconn, *next_ofconn;
945     struct ofport *ofport, *next_ofport;
946     size_t i;
947
948     if (!p) {
949         return;
950     }
951
952     /* Destroy fail-open and in-band early, since they touch the classifier. */
953     fail_open_destroy(p->fail_open);
954     p->fail_open = NULL;
955
956     in_band_destroy(p->in_band);
957     p->in_band = NULL;
958     free(p->extra_in_band_remotes);
959
960     ofproto_flush_flows(p);
961     classifier_destroy(&p->cls);
962     hmap_destroy(&p->facets);
963
964     LIST_FOR_EACH_SAFE (ofconn, next_ofconn, node, &p->all_conns) {
965         ofconn_destroy(ofconn);
966     }
967     hmap_destroy(&p->controllers);
968
969     dpif_close(p->dpif);
970     netdev_monitor_destroy(p->netdev_monitor);
971     HMAP_FOR_EACH_SAFE (ofport, next_ofport, hmap_node, &p->ports) {
972         hmap_remove(&p->ports, &ofport->hmap_node);
973         ofport_free(ofport);
974     }
975     shash_destroy(&p->port_by_name);
976
977     switch_status_destroy(p->switch_status);
978     netflow_destroy(p->netflow);
979     ofproto_sflow_destroy(p->sflow);
980
981     HMAP_FOR_EACH_SAFE (ofservice, next_ofservice, node, &p->services) {
982         ofservice_destroy(p, ofservice);
983     }
984     hmap_destroy(&p->services);
985
986     for (i = 0; i < p->n_snoops; i++) {
987         pvconn_close(p->snoops[i]);
988     }
989     free(p->snoops);
990
991     mac_learning_destroy(p->ml);
992
993     free(p->mfr_desc);
994     free(p->hw_desc);
995     free(p->sw_desc);
996     free(p->serial_desc);
997     free(p->dp_desc);
998
999     hmap_destroy(&p->ports);
1000
1001     free(p);
1002 }
1003
1004 int
1005 ofproto_run(struct ofproto *p)
1006 {
1007     int error = ofproto_run1(p);
1008     if (!error) {
1009         error = ofproto_run2(p, false);
1010     }
1011     return error;
1012 }
1013
1014 static void
1015 process_port_change(struct ofproto *ofproto, int error, char *devname)
1016 {
1017     if (error == ENOBUFS) {
1018         reinit_ports(ofproto);
1019     } else if (!error) {
1020         update_port(ofproto, devname);
1021         free(devname);
1022     }
1023 }
1024
1025 /* Returns a "preference level" for snooping 'ofconn'.  A higher return value
1026  * means that 'ofconn' is more interesting for monitoring than a lower return
1027  * value. */
1028 static int
1029 snoop_preference(const struct ofconn *ofconn)
1030 {
1031     switch (ofconn->role) {
1032     case NX_ROLE_MASTER:
1033         return 3;
1034     case NX_ROLE_OTHER:
1035         return 2;
1036     case NX_ROLE_SLAVE:
1037         return 1;
1038     default:
1039         /* Shouldn't happen. */
1040         return 0;
1041     }
1042 }
1043
1044 /* One of ofproto's "snoop" pvconns has accepted a new connection on 'vconn'.
1045  * Connects this vconn to a controller. */
1046 static void
1047 add_snooper(struct ofproto *ofproto, struct vconn *vconn)
1048 {
1049     struct ofconn *ofconn, *best;
1050
1051     /* Pick a controller for monitoring. */
1052     best = NULL;
1053     LIST_FOR_EACH (ofconn, node, &ofproto->all_conns) {
1054         if (ofconn->type == OFCONN_PRIMARY
1055             && (!best || snoop_preference(ofconn) > snoop_preference(best))) {
1056             best = ofconn;
1057         }
1058     }
1059
1060     if (best) {
1061         rconn_add_monitor(best->rconn, vconn);
1062     } else {
1063         VLOG_INFO_RL(&rl, "no controller connection to snoop");
1064         vconn_close(vconn);
1065     }
1066 }
1067
1068 int
1069 ofproto_run1(struct ofproto *p)
1070 {
1071     struct ofconn *ofconn, *next_ofconn;
1072     struct ofservice *ofservice;
1073     char *devname;
1074     int error;
1075     int i;
1076
1077     if (shash_is_empty(&p->port_by_name)) {
1078         init_ports(p);
1079     }
1080
1081     for (i = 0; i < 50; i++) {
1082         struct ofpbuf *buf;
1083
1084         error = dpif_recv(p->dpif, &buf);
1085         if (error) {
1086             if (error == ENODEV) {
1087                 /* Someone destroyed the datapath behind our back.  The caller
1088                  * better destroy us and give up, because we're just going to
1089                  * spin from here on out. */
1090                 static struct vlog_rate_limit rl2 = VLOG_RATE_LIMIT_INIT(1, 5);
1091                 VLOG_ERR_RL(&rl2, "%s: datapath was destroyed externally",
1092                             dpif_name(p->dpif));
1093                 return ENODEV;
1094             }
1095             break;
1096         }
1097
1098         handle_odp_msg(p, buf);
1099     }
1100
1101     while ((error = dpif_port_poll(p->dpif, &devname)) != EAGAIN) {
1102         process_port_change(p, error, devname);
1103     }
1104     while ((error = netdev_monitor_poll(p->netdev_monitor,
1105                                         &devname)) != EAGAIN) {
1106         process_port_change(p, error, devname);
1107     }
1108
1109     if (p->in_band) {
1110         if (time_msec() >= p->next_in_band_update) {
1111             update_in_band_remotes(p);
1112         }
1113         in_band_run(p->in_band);
1114     }
1115
1116     LIST_FOR_EACH_SAFE (ofconn, next_ofconn, node, &p->all_conns) {
1117         ofconn_run(ofconn);
1118     }
1119
1120     /* Fail-open maintenance.  Do this after processing the ofconns since
1121      * fail-open checks the status of the controller rconn. */
1122     if (p->fail_open) {
1123         fail_open_run(p->fail_open);
1124     }
1125
1126     HMAP_FOR_EACH (ofservice, node, &p->services) {
1127         struct vconn *vconn;
1128         int retval;
1129
1130         retval = pvconn_accept(ofservice->pvconn, OFP_VERSION, &vconn);
1131         if (!retval) {
1132             struct rconn *rconn;
1133             char *name;
1134
1135             rconn = rconn_create(ofservice->probe_interval, 0);
1136             name = ofconn_make_name(p, vconn_get_name(vconn));
1137             rconn_connect_unreliably(rconn, vconn, name);
1138             free(name);
1139
1140             ofconn = ofconn_create(p, rconn, OFCONN_SERVICE);
1141             ofconn_set_rate_limit(ofconn, ofservice->rate_limit,
1142                                   ofservice->burst_limit);
1143         } else if (retval != EAGAIN) {
1144             VLOG_WARN_RL(&rl, "accept failed (%s)", strerror(retval));
1145         }
1146     }
1147
1148     for (i = 0; i < p->n_snoops; i++) {
1149         struct vconn *vconn;
1150         int retval;
1151
1152         retval = pvconn_accept(p->snoops[i], OFP_VERSION, &vconn);
1153         if (!retval) {
1154             add_snooper(p, vconn);
1155         } else if (retval != EAGAIN) {
1156             VLOG_WARN_RL(&rl, "accept failed (%s)", strerror(retval));
1157         }
1158     }
1159
1160     if (time_msec() >= p->next_expiration) {
1161         int delay = ofproto_expire(p);
1162         p->next_expiration = time_msec() + delay;
1163         COVERAGE_INC(ofproto_expiration);
1164     }
1165
1166     if (p->netflow) {
1167         netflow_run(p->netflow);
1168     }
1169     if (p->sflow) {
1170         ofproto_sflow_run(p->sflow);
1171     }
1172
1173     return 0;
1174 }
1175
1176 int
1177 ofproto_run2(struct ofproto *p, bool revalidate_all)
1178 {
1179     /* Figure out what we need to revalidate now, if anything. */
1180     struct tag_set revalidate_set = p->revalidate_set;
1181     if (p->need_revalidate) {
1182         revalidate_all = true;
1183     }
1184
1185     /* Clear the revalidation flags. */
1186     tag_set_init(&p->revalidate_set);
1187     p->need_revalidate = false;
1188
1189     /* Now revalidate if there's anything to do. */
1190     if (revalidate_all || !tag_set_is_empty(&revalidate_set)) {
1191         struct facet *facet, *next;
1192
1193         HMAP_FOR_EACH_SAFE (facet, next, hmap_node, &p->facets) {
1194             if (revalidate_all
1195                 || tag_set_intersects(&revalidate_set, facet->tags)) {
1196                 facet_revalidate(p, facet);
1197             }
1198         }
1199     }
1200
1201     return 0;
1202 }
1203
1204 void
1205 ofproto_wait(struct ofproto *p)
1206 {
1207     struct ofservice *ofservice;
1208     struct ofconn *ofconn;
1209     size_t i;
1210
1211     dpif_recv_wait(p->dpif);
1212     dpif_port_poll_wait(p->dpif);
1213     netdev_monitor_poll_wait(p->netdev_monitor);
1214     LIST_FOR_EACH (ofconn, node, &p->all_conns) {
1215         ofconn_wait(ofconn);
1216     }
1217     if (p->in_band) {
1218         poll_timer_wait_until(p->next_in_band_update);
1219         in_band_wait(p->in_band);
1220     }
1221     if (p->fail_open) {
1222         fail_open_wait(p->fail_open);
1223     }
1224     if (p->sflow) {
1225         ofproto_sflow_wait(p->sflow);
1226     }
1227     if (!tag_set_is_empty(&p->revalidate_set)) {
1228         poll_immediate_wake();
1229     }
1230     if (p->need_revalidate) {
1231         /* Shouldn't happen, but if it does just go around again. */
1232         VLOG_DBG_RL(&rl, "need revalidate in ofproto_wait_cb()");
1233         poll_immediate_wake();
1234     } else if (p->next_expiration != LLONG_MAX) {
1235         poll_timer_wait_until(p->next_expiration);
1236     }
1237     HMAP_FOR_EACH (ofservice, node, &p->services) {
1238         pvconn_wait(ofservice->pvconn);
1239     }
1240     for (i = 0; i < p->n_snoops; i++) {
1241         pvconn_wait(p->snoops[i]);
1242     }
1243 }
1244
1245 void
1246 ofproto_revalidate(struct ofproto *ofproto, tag_type tag)
1247 {
1248     tag_set_add(&ofproto->revalidate_set, tag);
1249 }
1250
1251 struct tag_set *
1252 ofproto_get_revalidate_set(struct ofproto *ofproto)
1253 {
1254     return &ofproto->revalidate_set;
1255 }
1256
1257 bool
1258 ofproto_is_alive(const struct ofproto *p)
1259 {
1260     return !hmap_is_empty(&p->controllers);
1261 }
1262
1263 /* Deletes port number 'odp_port' from the datapath for 'ofproto'.
1264  *
1265  * This is almost the same as calling dpif_port_del() directly on the
1266  * datapath, but it also makes 'ofproto' close its open netdev for the port
1267  * (if any).  This makes it possible to create a new netdev of a different
1268  * type under the same name, which otherwise the netdev library would refuse
1269  * to do because of the conflict.  (The netdev would eventually get closed on
1270  * the next trip through ofproto_run(), but this interface is more direct.)
1271  *
1272  * Returns 0 if successful, otherwise a positive errno. */
1273 int
1274 ofproto_port_del(struct ofproto *ofproto, uint16_t odp_port)
1275 {
1276     struct ofport *ofport = get_port(ofproto, odp_port);
1277     const char *name = ofport ? (char *) ofport->opp.name : "<unknown>";
1278     int error;
1279
1280     error = dpif_port_del(ofproto->dpif, odp_port);
1281     if (error) {
1282         VLOG_ERR("%s: failed to remove port %"PRIu16" (%s) interface (%s)",
1283                  dpif_name(ofproto->dpif), odp_port, name, strerror(error));
1284     } else if (ofport) {
1285         /* 'name' is ofport->opp.name and update_port() is going to destroy
1286          * 'ofport'.  Just in case update_port() refers to 'name' after it
1287          * destroys 'ofport', make a copy of it around the update_port()
1288          * call. */
1289         char *devname = xstrdup(name);
1290         update_port(ofproto, devname);
1291         free(devname);
1292     }
1293     return error;
1294 }
1295
1296 /* Checks if 'ofproto' thinks 'odp_port' should be included in floods.  Returns
1297  * true if 'odp_port' exists and should be included, false otherwise. */
1298 bool
1299 ofproto_port_is_floodable(struct ofproto *ofproto, uint16_t odp_port)
1300 {
1301     struct ofport *ofport = get_port(ofproto, odp_port);
1302     return ofport && !(ofport->opp.config & OFPPC_NO_FLOOD);
1303 }
1304
1305 int
1306 ofproto_send_packet(struct ofproto *p, const struct flow *flow,
1307                     const union ofp_action *actions, size_t n_actions,
1308                     const struct ofpbuf *packet)
1309 {
1310     struct odp_actions odp_actions;
1311     int error;
1312
1313     error = xlate_actions(actions, n_actions, flow, p, packet, &odp_actions,
1314                           NULL, NULL, NULL);
1315     if (error) {
1316         return error;
1317     }
1318
1319     /* XXX Should we translate the dpif_execute() errno value into an OpenFlow
1320      * error code? */
1321     dpif_execute(p->dpif, odp_actions.actions, odp_actions.n_actions, packet);
1322     return 0;
1323 }
1324
1325 /* Adds a flow to the OpenFlow flow table in 'p' that matches 'cls_rule' and
1326  * performs the 'n_actions' actions in 'actions'.  The new flow will not
1327  * timeout.
1328  *
1329  * If cls_rule->priority is in the range of priorities supported by OpenFlow
1330  * (0...65535, inclusive) then the flow will be visible to OpenFlow
1331  * controllers; otherwise, it will be hidden.
1332  *
1333  * The caller retains ownership of 'cls_rule' and 'actions'. */
1334 void
1335 ofproto_add_flow(struct ofproto *p, const struct cls_rule *cls_rule,
1336                  const union ofp_action *actions, size_t n_actions)
1337 {
1338     struct rule *rule;
1339     rule = rule_create(cls_rule, actions, n_actions, 0, 0, 0, false);
1340     rule_insert(p, rule);
1341 }
1342
1343 void
1344 ofproto_delete_flow(struct ofproto *ofproto, const struct cls_rule *target)
1345 {
1346     struct rule *rule;
1347
1348     rule = rule_from_cls_rule(classifier_find_rule_exactly(&ofproto->cls,
1349                                                            target));
1350     if (rule) {
1351         rule_remove(ofproto, rule);
1352     }
1353 }
1354
1355 static void
1356 destroy_rule(struct cls_rule *rule_, void *ofproto_)
1357 {
1358     struct rule *rule = rule_from_cls_rule(rule_);
1359     struct ofproto *ofproto = ofproto_;
1360
1361     rule_remove(ofproto, rule);
1362 }
1363
1364 void
1365 ofproto_flush_flows(struct ofproto *ofproto)
1366 {
1367     struct facet *facet, *next_facet;
1368
1369     COVERAGE_INC(ofproto_flush);
1370
1371     HMAP_FOR_EACH_SAFE (facet, next_facet, hmap_node, &ofproto->facets) {
1372         /* Mark the facet as not installed so that facet_remove() doesn't
1373          * bother trying to uninstall it.  There is no point in uninstalling it
1374          * individually since we are about to blow away all the facets with
1375          * dpif_flow_flush(). */
1376         facet->installed = false;
1377         facet_remove(ofproto, facet);
1378     }
1379     classifier_for_each(&ofproto->cls, CLS_INC_ALL, destroy_rule, ofproto);
1380     dpif_flow_flush(ofproto->dpif);
1381     if (ofproto->in_band) {
1382         in_band_flushed(ofproto->in_band);
1383     }
1384     if (ofproto->fail_open) {
1385         fail_open_flushed(ofproto->fail_open);
1386     }
1387 }
1388 \f
1389 static void
1390 reinit_ports(struct ofproto *p)
1391 {
1392     struct svec devnames;
1393     struct ofport *ofport;
1394     struct odp_port *odp_ports;
1395     size_t n_odp_ports;
1396     size_t i;
1397
1398     COVERAGE_INC(ofproto_reinit_ports);
1399
1400     svec_init(&devnames);
1401     HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
1402         svec_add (&devnames, (char *) ofport->opp.name);
1403     }
1404     dpif_port_list(p->dpif, &odp_ports, &n_odp_ports);
1405     for (i = 0; i < n_odp_ports; i++) {
1406         svec_add (&devnames, odp_ports[i].devname);
1407     }
1408     free(odp_ports);
1409
1410     svec_sort_unique(&devnames);
1411     for (i = 0; i < devnames.n; i++) {
1412         update_port(p, devnames.names[i]);
1413     }
1414     svec_destroy(&devnames);
1415 }
1416
1417 static struct ofport *
1418 make_ofport(const struct odp_port *odp_port)
1419 {
1420     struct netdev_options netdev_options;
1421     enum netdev_flags flags;
1422     struct ofport *ofport;
1423     struct netdev *netdev;
1424     int error;
1425
1426     memset(&netdev_options, 0, sizeof netdev_options);
1427     netdev_options.name = odp_port->devname;
1428     netdev_options.ethertype = NETDEV_ETH_TYPE_NONE;
1429
1430     error = netdev_open(&netdev_options, &netdev);
1431     if (error) {
1432         VLOG_WARN_RL(&rl, "ignoring port %s (%"PRIu16") because netdev %s "
1433                      "cannot be opened (%s)",
1434                      odp_port->devname, odp_port->port,
1435                      odp_port->devname, strerror(error));
1436         return NULL;
1437     }
1438
1439     ofport = xmalloc(sizeof *ofport);
1440     ofport->netdev = netdev;
1441     ofport->odp_port = odp_port->port;
1442     ofport->opp.port_no = odp_port_to_ofp_port(odp_port->port);
1443     netdev_get_etheraddr(netdev, ofport->opp.hw_addr);
1444     memcpy(ofport->opp.name, odp_port->devname,
1445            MIN(sizeof ofport->opp.name, sizeof odp_port->devname));
1446     ofport->opp.name[sizeof ofport->opp.name - 1] = '\0';
1447
1448     netdev_get_flags(netdev, &flags);
1449     ofport->opp.config = flags & NETDEV_UP ? 0 : OFPPC_PORT_DOWN;
1450
1451     ofport->opp.state = netdev_get_carrier(netdev) ? 0 : OFPPS_LINK_DOWN;
1452
1453     netdev_get_features(netdev,
1454                         &ofport->opp.curr, &ofport->opp.advertised,
1455                         &ofport->opp.supported, &ofport->opp.peer);
1456     return ofport;
1457 }
1458
1459 static bool
1460 ofport_conflicts(const struct ofproto *p, const struct odp_port *odp_port)
1461 {
1462     if (get_port(p, odp_port->port)) {
1463         VLOG_WARN_RL(&rl, "ignoring duplicate port %"PRIu16" in datapath",
1464                      odp_port->port);
1465         return true;
1466     } else if (shash_find(&p->port_by_name, odp_port->devname)) {
1467         VLOG_WARN_RL(&rl, "ignoring duplicate device %s in datapath",
1468                      odp_port->devname);
1469         return true;
1470     } else {
1471         return false;
1472     }
1473 }
1474
1475 static int
1476 ofport_equal(const struct ofport *a_, const struct ofport *b_)
1477 {
1478     const struct ofp_phy_port *a = &a_->opp;
1479     const struct ofp_phy_port *b = &b_->opp;
1480
1481     BUILD_ASSERT_DECL(sizeof *a == 48); /* Detect ofp_phy_port changes. */
1482     return (a->port_no == b->port_no
1483             && !memcmp(a->hw_addr, b->hw_addr, sizeof a->hw_addr)
1484             && !strcmp((char *) a->name, (char *) b->name)
1485             && a->state == b->state
1486             && a->config == b->config
1487             && a->curr == b->curr
1488             && a->advertised == b->advertised
1489             && a->supported == b->supported
1490             && a->peer == b->peer);
1491 }
1492
1493 static void
1494 send_port_status(struct ofproto *p, const struct ofport *ofport,
1495                  uint8_t reason)
1496 {
1497     /* XXX Should limit the number of queued port status change messages. */
1498     struct ofconn *ofconn;
1499     LIST_FOR_EACH (ofconn, node, &p->all_conns) {
1500         struct ofp_port_status *ops;
1501         struct ofpbuf *b;
1502
1503         if (!ofconn_receives_async_msgs(ofconn)) {
1504             continue;
1505         }
1506
1507         ops = make_openflow_xid(sizeof *ops, OFPT_PORT_STATUS, 0, &b);
1508         ops->reason = reason;
1509         ops->desc = ofport->opp;
1510         hton_ofp_phy_port(&ops->desc);
1511         queue_tx(b, ofconn, NULL);
1512     }
1513 }
1514
1515 static void
1516 ofport_install(struct ofproto *p, struct ofport *ofport)
1517 {
1518     const char *netdev_name = (const char *) ofport->opp.name;
1519
1520     netdev_monitor_add(p->netdev_monitor, ofport->netdev);
1521     hmap_insert(&p->ports, &ofport->hmap_node, hash_int(ofport->odp_port, 0));
1522     shash_add(&p->port_by_name, netdev_name, ofport);
1523     if (p->sflow) {
1524         ofproto_sflow_add_port(p->sflow, ofport->odp_port, netdev_name);
1525     }
1526 }
1527
1528 static void
1529 ofport_remove(struct ofproto *p, struct ofport *ofport)
1530 {
1531     netdev_monitor_remove(p->netdev_monitor, ofport->netdev);
1532     hmap_remove(&p->ports, &ofport->hmap_node);
1533     shash_delete(&p->port_by_name,
1534                  shash_find(&p->port_by_name, (char *) ofport->opp.name));
1535     if (p->sflow) {
1536         ofproto_sflow_del_port(p->sflow, ofport->odp_port);
1537     }
1538 }
1539
1540 static void
1541 ofport_free(struct ofport *ofport)
1542 {
1543     if (ofport) {
1544         netdev_close(ofport->netdev);
1545         free(ofport);
1546     }
1547 }
1548
1549 static struct ofport *
1550 get_port(const struct ofproto *ofproto, uint16_t odp_port)
1551 {
1552     struct ofport *port;
1553
1554     HMAP_FOR_EACH_IN_BUCKET (port, hmap_node,
1555                              hash_int(odp_port, 0), &ofproto->ports) {
1556         if (port->odp_port == odp_port) {
1557             return port;
1558         }
1559     }
1560     return NULL;
1561 }
1562
1563 static void
1564 update_port(struct ofproto *p, const char *devname)
1565 {
1566     struct odp_port odp_port;
1567     struct ofport *old_ofport;
1568     struct ofport *new_ofport;
1569     int error;
1570
1571     COVERAGE_INC(ofproto_update_port);
1572
1573     /* Query the datapath for port information. */
1574     error = dpif_port_query_by_name(p->dpif, devname, &odp_port);
1575
1576     /* Find the old ofport. */
1577     old_ofport = shash_find_data(&p->port_by_name, devname);
1578     if (!error) {
1579         if (!old_ofport) {
1580             /* There's no port named 'devname' but there might be a port with
1581              * the same port number.  This could happen if a port is deleted
1582              * and then a new one added in its place very quickly, or if a port
1583              * is renamed.  In the former case we want to send an OFPPR_DELETE
1584              * and an OFPPR_ADD, and in the latter case we want to send a
1585              * single OFPPR_MODIFY.  We can distinguish the cases by comparing
1586              * the old port's ifindex against the new port, or perhaps less
1587              * reliably but more portably by comparing the old port's MAC
1588              * against the new port's MAC.  However, this code isn't that smart
1589              * and always sends an OFPPR_MODIFY (XXX). */
1590             old_ofport = get_port(p, odp_port.port);
1591         }
1592     } else if (error != ENOENT && error != ENODEV) {
1593         VLOG_WARN_RL(&rl, "dpif_port_query_by_name returned unexpected error "
1594                      "%s", strerror(error));
1595         return;
1596     }
1597
1598     /* Create a new ofport. */
1599     new_ofport = !error ? make_ofport(&odp_port) : NULL;
1600
1601     /* Eliminate a few pathological cases. */
1602     if (!old_ofport && !new_ofport) {
1603         return;
1604     } else if (old_ofport && new_ofport) {
1605         /* Most of the 'config' bits are OpenFlow soft state, but
1606          * OFPPC_PORT_DOWN is maintained the kernel.  So transfer the OpenFlow
1607          * bits from old_ofport.  (make_ofport() only sets OFPPC_PORT_DOWN and
1608          * leaves the other bits 0.)  */
1609         new_ofport->opp.config |= old_ofport->opp.config & ~OFPPC_PORT_DOWN;
1610
1611         if (ofport_equal(old_ofport, new_ofport)) {
1612             /* False alarm--no change. */
1613             ofport_free(new_ofport);
1614             return;
1615         }
1616     }
1617
1618     /* Now deal with the normal cases. */
1619     if (old_ofport) {
1620         ofport_remove(p, old_ofport);
1621     }
1622     if (new_ofport) {
1623         ofport_install(p, new_ofport);
1624     }
1625     send_port_status(p, new_ofport ? new_ofport : old_ofport,
1626                      (!old_ofport ? OFPPR_ADD
1627                       : !new_ofport ? OFPPR_DELETE
1628                       : OFPPR_MODIFY));
1629     ofport_free(old_ofport);
1630 }
1631
1632 static int
1633 init_ports(struct ofproto *p)
1634 {
1635     struct odp_port *ports;
1636     size_t n_ports;
1637     size_t i;
1638     int error;
1639
1640     error = dpif_port_list(p->dpif, &ports, &n_ports);
1641     if (error) {
1642         return error;
1643     }
1644
1645     for (i = 0; i < n_ports; i++) {
1646         const struct odp_port *odp_port = &ports[i];
1647         if (!ofport_conflicts(p, odp_port)) {
1648             struct ofport *ofport = make_ofport(odp_port);
1649             if (ofport) {
1650                 ofport_install(p, ofport);
1651             }
1652         }
1653     }
1654     free(ports);
1655     return 0;
1656 }
1657 \f
1658 static struct ofconn *
1659 ofconn_create(struct ofproto *p, struct rconn *rconn, enum ofconn_type type)
1660 {
1661     struct ofconn *ofconn = xzalloc(sizeof *ofconn);
1662     ofconn->ofproto = p;
1663     list_push_back(&p->all_conns, &ofconn->node);
1664     ofconn->rconn = rconn;
1665     ofconn->type = type;
1666     ofconn->flow_format = NXFF_OPENFLOW10;
1667     ofconn->role = NX_ROLE_OTHER;
1668     ofconn->packet_in_counter = rconn_packet_counter_create ();
1669     ofconn->pktbuf = NULL;
1670     ofconn->miss_send_len = 0;
1671     ofconn->reply_counter = rconn_packet_counter_create ();
1672     return ofconn;
1673 }
1674
1675 static void
1676 ofconn_destroy(struct ofconn *ofconn)
1677 {
1678     if (ofconn->type == OFCONN_PRIMARY) {
1679         hmap_remove(&ofconn->ofproto->controllers, &ofconn->hmap_node);
1680     }
1681     discovery_destroy(ofconn->discovery);
1682
1683     list_remove(&ofconn->node);
1684     switch_status_unregister(ofconn->ss);
1685     rconn_destroy(ofconn->rconn);
1686     rconn_packet_counter_destroy(ofconn->packet_in_counter);
1687     rconn_packet_counter_destroy(ofconn->reply_counter);
1688     pktbuf_destroy(ofconn->pktbuf);
1689     free(ofconn);
1690 }
1691
1692 static void
1693 ofconn_run(struct ofconn *ofconn)
1694 {
1695     struct ofproto *p = ofconn->ofproto;
1696     int iteration;
1697     size_t i;
1698
1699     if (ofconn->discovery) {
1700         char *controller_name;
1701         if (rconn_is_connectivity_questionable(ofconn->rconn)) {
1702             discovery_question_connectivity(ofconn->discovery);
1703         }
1704         if (discovery_run(ofconn->discovery, &controller_name)) {
1705             if (controller_name) {
1706                 char *ofconn_name = ofconn_make_name(p, controller_name);
1707                 rconn_connect(ofconn->rconn, controller_name, ofconn_name);
1708                 free(ofconn_name);
1709             } else {
1710                 rconn_disconnect(ofconn->rconn);
1711             }
1712         }
1713     }
1714
1715     for (i = 0; i < N_SCHEDULERS; i++) {
1716         pinsched_run(ofconn->schedulers[i], do_send_packet_in, ofconn);
1717     }
1718
1719     rconn_run(ofconn->rconn);
1720
1721     if (rconn_packet_counter_read (ofconn->reply_counter) < OFCONN_REPLY_MAX) {
1722         /* Limit the number of iterations to prevent other tasks from
1723          * starving. */
1724         for (iteration = 0; iteration < 50; iteration++) {
1725             struct ofpbuf *of_msg = rconn_recv(ofconn->rconn);
1726             if (!of_msg) {
1727                 break;
1728             }
1729             if (p->fail_open) {
1730                 fail_open_maybe_recover(p->fail_open);
1731             }
1732             handle_openflow(ofconn, of_msg);
1733             ofpbuf_delete(of_msg);
1734         }
1735     }
1736
1737     if (!ofconn->discovery && !rconn_is_alive(ofconn->rconn)) {
1738         ofconn_destroy(ofconn);
1739     }
1740 }
1741
1742 static void
1743 ofconn_wait(struct ofconn *ofconn)
1744 {
1745     int i;
1746
1747     if (ofconn->discovery) {
1748         discovery_wait(ofconn->discovery);
1749     }
1750     for (i = 0; i < N_SCHEDULERS; i++) {
1751         pinsched_wait(ofconn->schedulers[i]);
1752     }
1753     rconn_run_wait(ofconn->rconn);
1754     if (rconn_packet_counter_read (ofconn->reply_counter) < OFCONN_REPLY_MAX) {
1755         rconn_recv_wait(ofconn->rconn);
1756     } else {
1757         COVERAGE_INC(ofproto_ofconn_stuck);
1758     }
1759 }
1760
1761 /* Returns true if 'ofconn' should receive asynchronous messages. */
1762 static bool
1763 ofconn_receives_async_msgs(const struct ofconn *ofconn)
1764 {
1765     if (ofconn->type == OFCONN_PRIMARY) {
1766         /* Primary controllers always get asynchronous messages unless they
1767          * have configured themselves as "slaves".  */
1768         return ofconn->role != NX_ROLE_SLAVE;
1769     } else {
1770         /* Service connections don't get asynchronous messages unless they have
1771          * explicitly asked for them by setting a nonzero miss send length. */
1772         return ofconn->miss_send_len > 0;
1773     }
1774 }
1775
1776 /* Returns a human-readable name for an OpenFlow connection between 'ofproto'
1777  * and 'target', suitable for use in log messages for identifying the
1778  * connection.
1779  *
1780  * The name is dynamically allocated.  The caller should free it (with free())
1781  * when it is no longer needed. */
1782 static char *
1783 ofconn_make_name(const struct ofproto *ofproto, const char *target)
1784 {
1785     return xasprintf("%s<->%s", dpif_base_name(ofproto->dpif), target);
1786 }
1787
1788 static void
1789 ofconn_set_rate_limit(struct ofconn *ofconn, int rate, int burst)
1790 {
1791     int i;
1792
1793     for (i = 0; i < N_SCHEDULERS; i++) {
1794         struct pinsched **s = &ofconn->schedulers[i];
1795
1796         if (rate > 0) {
1797             if (!*s) {
1798                 *s = pinsched_create(rate, burst,
1799                                      ofconn->ofproto->switch_status);
1800             } else {
1801                 pinsched_set_limits(*s, rate, burst);
1802             }
1803         } else {
1804             pinsched_destroy(*s);
1805             *s = NULL;
1806         }
1807     }
1808 }
1809 \f
1810 static void
1811 ofservice_reconfigure(struct ofservice *ofservice,
1812                       const struct ofproto_controller *c)
1813 {
1814     ofservice->probe_interval = c->probe_interval;
1815     ofservice->rate_limit = c->rate_limit;
1816     ofservice->burst_limit = c->burst_limit;
1817 }
1818
1819 /* Creates a new ofservice in 'ofproto'.  Returns 0 if successful, otherwise a
1820  * positive errno value. */
1821 static int
1822 ofservice_create(struct ofproto *ofproto, const struct ofproto_controller *c)
1823 {
1824     struct ofservice *ofservice;
1825     struct pvconn *pvconn;
1826     int error;
1827
1828     error = pvconn_open(c->target, &pvconn);
1829     if (error) {
1830         return error;
1831     }
1832
1833     ofservice = xzalloc(sizeof *ofservice);
1834     hmap_insert(&ofproto->services, &ofservice->node,
1835                 hash_string(c->target, 0));
1836     ofservice->pvconn = pvconn;
1837
1838     ofservice_reconfigure(ofservice, c);
1839
1840     return 0;
1841 }
1842
1843 static void
1844 ofservice_destroy(struct ofproto *ofproto, struct ofservice *ofservice)
1845 {
1846     hmap_remove(&ofproto->services, &ofservice->node);
1847     pvconn_close(ofservice->pvconn);
1848     free(ofservice);
1849 }
1850
1851 /* Finds and returns the ofservice within 'ofproto' that has the given
1852  * 'target', or a null pointer if none exists. */
1853 static struct ofservice *
1854 ofservice_lookup(struct ofproto *ofproto, const char *target)
1855 {
1856     struct ofservice *ofservice;
1857
1858     HMAP_FOR_EACH_WITH_HASH (ofservice, node, hash_string(target, 0),
1859                              &ofproto->services) {
1860         if (!strcmp(pvconn_get_name(ofservice->pvconn), target)) {
1861             return ofservice;
1862         }
1863     }
1864     return NULL;
1865 }
1866 \f
1867 /* Returns true if 'rule' should be hidden from the controller.
1868  *
1869  * Rules with priority higher than UINT16_MAX are set up by ofproto itself
1870  * (e.g. by in-band control) and are intentionally hidden from the
1871  * controller. */
1872 static bool
1873 rule_is_hidden(const struct rule *rule)
1874 {
1875     return rule->cr.priority > UINT16_MAX;
1876 }
1877
1878 /* Creates and returns a new rule initialized as specified.
1879  *
1880  * The caller is responsible for inserting the rule into the classifier (with
1881  * rule_insert()). */
1882 static struct rule *
1883 rule_create(const struct cls_rule *cls_rule,
1884             const union ofp_action *actions, size_t n_actions,
1885             uint16_t idle_timeout, uint16_t hard_timeout,
1886             ovs_be64 flow_cookie, bool send_flow_removed)
1887 {
1888     struct rule *rule = xzalloc(sizeof *rule);
1889     rule->cr = *cls_rule;
1890     rule->idle_timeout = idle_timeout;
1891     rule->hard_timeout = hard_timeout;
1892     rule->flow_cookie = flow_cookie;
1893     rule->used = rule->created = time_msec();
1894     rule->send_flow_removed = send_flow_removed;
1895     list_init(&rule->facets);
1896     if (n_actions > 0) {
1897         rule->n_actions = n_actions;
1898         rule->actions = xmemdup(actions, n_actions * sizeof *actions);
1899     }
1900
1901     return rule;
1902 }
1903
1904 static struct rule *
1905 rule_from_cls_rule(const struct cls_rule *cls_rule)
1906 {
1907     return cls_rule ? CONTAINER_OF(cls_rule, struct rule, cr) : NULL;
1908 }
1909
1910 static void
1911 rule_free(struct rule *rule)
1912 {
1913     free(rule->actions);
1914     free(rule);
1915 }
1916
1917 /* Destroys 'rule' and iterates through all of its facets and revalidates them,
1918  * destroying any that no longer has a rule (which is probably all of them).
1919  *
1920  * The caller must have already removed 'rule' from the classifier. */
1921 static void
1922 rule_destroy(struct ofproto *ofproto, struct rule *rule)
1923 {
1924     struct facet *facet, *next_facet;
1925     LIST_FOR_EACH_SAFE (facet, next_facet, list_node, &rule->facets) {
1926         facet_revalidate(ofproto, facet);
1927     }
1928     rule_free(rule);
1929 }
1930
1931 /* Returns true if 'rule' has an OpenFlow OFPAT_OUTPUT or OFPAT_ENQUEUE action
1932  * that outputs to 'out_port' (output to OFPP_FLOOD and OFPP_ALL doesn't
1933  * count). */
1934 static bool
1935 rule_has_out_port(const struct rule *rule, ovs_be16 out_port)
1936 {
1937     const union ofp_action *oa;
1938     struct actions_iterator i;
1939
1940     if (out_port == htons(OFPP_NONE)) {
1941         return true;
1942     }
1943     for (oa = actions_first(&i, rule->actions, rule->n_actions); oa;
1944          oa = actions_next(&i)) {
1945         if (action_outputs_to_port(oa, out_port)) {
1946             return true;
1947         }
1948     }
1949     return false;
1950 }
1951
1952 /* Executes, within 'ofproto', the 'n_actions' actions in 'actions' on
1953  * 'packet', which arrived on 'in_port'.
1954  *
1955  * Takes ownership of 'packet'. */
1956 static bool
1957 execute_odp_actions(struct ofproto *ofproto, uint16_t in_port,
1958                     const union odp_action *actions, size_t n_actions,
1959                     struct ofpbuf *packet)
1960 {
1961     if (n_actions == 1 && actions[0].type == ODPAT_CONTROLLER) {
1962         /* As an optimization, avoid a round-trip from userspace to kernel to
1963          * userspace.  This also avoids possibly filling up kernel packet
1964          * buffers along the way. */
1965         struct odp_msg *msg;
1966
1967         msg = ofpbuf_push_uninit(packet, sizeof *msg);
1968         msg->type = _ODPL_ACTION_NR;
1969         msg->length = sizeof(struct odp_msg) + packet->size;
1970         msg->port = in_port;
1971         msg->reserved = 0;
1972         msg->arg = actions[0].controller.arg;
1973
1974         send_packet_in(ofproto, packet);
1975
1976         return true;
1977     } else {
1978         int error;
1979
1980         error = dpif_execute(ofproto->dpif, actions, n_actions, packet);
1981         ofpbuf_delete(packet);
1982         return !error;
1983     }
1984 }
1985
1986 /* Executes the actions indicated by 'facet' on 'packet' and credits 'facet''s
1987  * statistics appropriately.  'packet' must have at least sizeof(struct
1988  * ofp_packet_in) bytes of headroom.
1989  *
1990  * For correct results, 'packet' must actually be in 'facet''s flow; that is,
1991  * applying flow_extract() to 'packet' would yield the same flow as
1992  * 'facet->flow'.
1993  *
1994  * 'facet' must have accurately composed ODP actions; that is, it must not be
1995  * in need of revalidation.
1996  *
1997  * Takes ownership of 'packet'. */
1998 static void
1999 facet_execute(struct ofproto *ofproto, struct facet *facet,
2000               struct ofpbuf *packet)
2001 {
2002     struct odp_flow_stats stats;
2003
2004     assert(ofpbuf_headroom(packet) >= sizeof(struct ofp_packet_in));
2005
2006     flow_extract_stats(&facet->flow, packet, &stats);
2007     if (execute_odp_actions(ofproto, facet->flow.in_port,
2008                             facet->actions, facet->n_actions, packet)) {
2009         facet_update_stats(ofproto, facet, &stats);
2010         facet->used = time_msec();
2011         netflow_flow_update_time(ofproto->netflow,
2012                                  &facet->nf_flow, facet->used);
2013     }
2014 }
2015
2016 /* Executes the actions indicated by 'rule' on 'packet' and credits 'rule''s
2017  * statistics (or the statistics for one of its facets) appropriately.
2018  * 'packet' must have at least sizeof(struct ofp_packet_in) bytes of headroom.
2019  *
2020  * 'packet' doesn't necessarily have to match 'rule'.  'rule' will be credited
2021  * with statistics for 'packet' either way.
2022  *
2023  * Takes ownership of 'packet'. */
2024 static void
2025 rule_execute(struct ofproto *ofproto, struct rule *rule, uint16_t in_port,
2026              struct ofpbuf *packet)
2027 {
2028     struct facet *facet;
2029     struct odp_actions a;
2030     struct flow flow;
2031     size_t size;
2032
2033     assert(ofpbuf_headroom(packet) >= sizeof(struct ofp_packet_in));
2034
2035     flow_extract(packet, 0, in_port, &flow);
2036
2037     /* First look for a related facet.  If we find one, account it to that. */
2038     facet = facet_lookup_valid(ofproto, &flow);
2039     if (facet && facet->rule == rule) {
2040         facet_execute(ofproto, facet, packet);
2041         return;
2042     }
2043
2044     /* Otherwise, if 'rule' is in fact the correct rule for 'packet', then
2045      * create a new facet for it and use that. */
2046     if (rule_lookup(ofproto, &flow) == rule) {
2047         facet = facet_create(ofproto, rule, &flow, packet);
2048         facet_execute(ofproto, facet, packet);
2049         facet_install(ofproto, facet, true);
2050         return;
2051     }
2052
2053     /* We can't account anything to a facet.  If we were to try, then that
2054      * facet would have a non-matching rule, busting our invariants. */
2055     if (xlate_actions(rule->actions, rule->n_actions, &flow, ofproto,
2056                       packet, &a, NULL, 0, NULL)) {
2057         ofpbuf_delete(packet);
2058         return;
2059     }
2060     size = packet->size;
2061     if (execute_odp_actions(ofproto, in_port,
2062                             a.actions, a.n_actions, packet)) {
2063         rule->used = time_msec();
2064         rule->packet_count++;
2065         rule->byte_count += size;
2066     }
2067 }
2068
2069 /* Inserts 'rule' into 'p''s flow table. */
2070 static void
2071 rule_insert(struct ofproto *p, struct rule *rule)
2072 {
2073     struct rule *displaced_rule;
2074
2075     displaced_rule = rule_from_cls_rule(classifier_insert(&p->cls, &rule->cr));
2076     if (displaced_rule) {
2077         rule_destroy(p, displaced_rule);
2078     }
2079     p->need_revalidate = true;
2080 }
2081
2082 /* Creates and returns a new facet within 'ofproto' owned by 'rule', given a
2083  * 'flow' and an example 'packet' within that flow.
2084  *
2085  * The caller must already have determined that no facet with an identical
2086  * 'flow' exists in 'ofproto' and that 'flow' is the best match for 'rule' in
2087  * 'ofproto''s classifier table. */
2088 static struct facet *
2089 facet_create(struct ofproto *ofproto, struct rule *rule,
2090              const struct flow *flow, const struct ofpbuf *packet)
2091 {
2092     struct facet *facet;
2093
2094     facet = xzalloc(sizeof *facet);
2095     facet->used = time_msec();
2096     hmap_insert(&ofproto->facets, &facet->hmap_node, flow_hash(flow, 0));
2097     list_push_back(&rule->facets, &facet->list_node);
2098     facet->rule = rule;
2099     facet->flow = *flow;
2100     netflow_flow_init(&facet->nf_flow);
2101     netflow_flow_update_time(ofproto->netflow, &facet->nf_flow, facet->used);
2102
2103     facet_make_actions(ofproto, facet, packet);
2104
2105     return facet;
2106 }
2107
2108 static void
2109 facet_free(struct facet *facet)
2110 {
2111     free(facet->actions);
2112     free(facet);
2113 }
2114
2115 /* Remove 'rule' from 'ofproto' and free up the associated memory:
2116  *
2117  *   - Removes 'rule' from the classifier.
2118  *
2119  *   - If 'rule' has facets, revalidates them (and possibly uninstalls and
2120  *     destroys them), via rule_destroy().
2121  */
2122 static void
2123 rule_remove(struct ofproto *ofproto, struct rule *rule)
2124 {
2125     COVERAGE_INC(ofproto_del_rule);
2126     ofproto->need_revalidate = true;
2127     classifier_remove(&ofproto->cls, &rule->cr);
2128     rule_destroy(ofproto, rule);
2129 }
2130
2131 /* Remove 'facet' from 'ofproto' and free up the associated memory:
2132  *
2133  *   - If 'facet' was installed in the datapath, uninstalls it and updates its
2134  *     rule's statistics, via facet_uninstall().
2135  *
2136  *   - Removes 'facet' from its rule and from ofproto->facets.
2137  */
2138 static void
2139 facet_remove(struct ofproto *ofproto, struct facet *facet)
2140 {
2141     facet_uninstall(ofproto, facet);
2142     facet_flush_stats(ofproto, facet);
2143     hmap_remove(&ofproto->facets, &facet->hmap_node);
2144     list_remove(&facet->list_node);
2145     facet_free(facet);
2146 }
2147
2148 /* Composes the ODP actions for 'facet' based on its rule's actions. */
2149 static void
2150 facet_make_actions(struct ofproto *p, struct facet *facet,
2151                    const struct ofpbuf *packet)
2152 {
2153     const struct rule *rule = facet->rule;
2154     struct odp_actions a;
2155     size_t actions_len;
2156
2157     xlate_actions(rule->actions, rule->n_actions, &facet->flow, p,
2158                   packet, &a, &facet->tags, &facet->may_install,
2159                   &facet->nf_flow.output_iface);
2160
2161     actions_len = a.n_actions * sizeof *a.actions;
2162     if (facet->n_actions != a.n_actions
2163         || memcmp(facet->actions, a.actions, actions_len)) {
2164         free(facet->actions);
2165         facet->n_actions = a.n_actions;
2166         facet->actions = xmemdup(a.actions, actions_len);
2167     }
2168 }
2169
2170 static int
2171 facet_put__(struct ofproto *ofproto, struct facet *facet, int flags,
2172             struct odp_flow_put *put)
2173 {
2174     memset(&put->flow.stats, 0, sizeof put->flow.stats);
2175     odp_flow_key_from_flow(&put->flow.key, &facet->flow);
2176     put->flow.actions = facet->actions;
2177     put->flow.n_actions = facet->n_actions;
2178     put->flow.flags = 0;
2179     put->flags = flags;
2180     return dpif_flow_put(ofproto->dpif, put);
2181 }
2182
2183 /* If 'facet' is installable, inserts or re-inserts it into 'p''s datapath.  If
2184  * 'zero_stats' is true, clears any existing statistics from the datapath for
2185  * 'facet'. */
2186 static void
2187 facet_install(struct ofproto *p, struct facet *facet, bool zero_stats)
2188 {
2189     if (facet->may_install) {
2190         struct odp_flow_put put;
2191         int flags;
2192
2193         flags = ODPPF_CREATE | ODPPF_MODIFY;
2194         if (zero_stats) {
2195             flags |= ODPPF_ZERO_STATS;
2196         }
2197         if (!facet_put__(p, facet, flags, &put)) {
2198             facet->installed = true;
2199         }
2200     }
2201 }
2202
2203 /* Ensures that the bytes in 'facet', plus 'extra_bytes', have been passed up
2204  * to the accounting hook function in the ofhooks structure. */
2205 static void
2206 facet_account(struct ofproto *ofproto,
2207               struct facet *facet, uint64_t extra_bytes)
2208 {
2209     uint64_t total_bytes = facet->byte_count + extra_bytes;
2210
2211     if (ofproto->ofhooks->account_flow_cb
2212         && total_bytes > facet->accounted_bytes)
2213     {
2214         ofproto->ofhooks->account_flow_cb(
2215             &facet->flow, facet->tags, facet->actions, facet->n_actions,
2216             total_bytes - facet->accounted_bytes, ofproto->aux);
2217         facet->accounted_bytes = total_bytes;
2218     }
2219 }
2220
2221 /* If 'rule' is installed in the datapath, uninstalls it. */
2222 static void
2223 facet_uninstall(struct ofproto *p, struct facet *facet)
2224 {
2225     if (facet->installed) {
2226         struct odp_flow odp_flow;
2227
2228         odp_flow_key_from_flow(&odp_flow.key, &facet->flow);
2229         odp_flow.actions = NULL;
2230         odp_flow.n_actions = 0;
2231         odp_flow.flags = 0;
2232         if (!dpif_flow_del(p->dpif, &odp_flow)) {
2233             facet_update_stats(p, facet, &odp_flow.stats);
2234         }
2235         facet->installed = false;
2236     }
2237 }
2238
2239 /* Returns true if the only action for 'facet' is to send to the controller.
2240  * (We don't report NetFlow expiration messages for such facets because they
2241  * are just part of the control logic for the network, not real traffic). */
2242 static bool
2243 facet_is_controller_flow(struct facet *facet)
2244 {
2245     return (facet
2246             && facet->rule->n_actions == 1
2247             && action_outputs_to_port(&facet->rule->actions[0],
2248                                       htons(OFPP_CONTROLLER)));
2249 }
2250
2251 /* Folds all of 'facet''s statistics into its rule.  Also updates the
2252  * accounting ofhook and emits a NetFlow expiration if appropriate.  */
2253 static void
2254 facet_flush_stats(struct ofproto *ofproto, struct facet *facet)
2255 {
2256     facet_account(ofproto, facet, 0);
2257
2258     if (ofproto->netflow && !facet_is_controller_flow(facet)) {
2259         struct ofexpired expired;
2260         expired.flow = facet->flow;
2261         expired.packet_count = facet->packet_count;
2262         expired.byte_count = facet->byte_count;
2263         expired.used = facet->used;
2264         netflow_expire(ofproto->netflow, &facet->nf_flow, &expired);
2265     }
2266
2267     facet->rule->packet_count += facet->packet_count;
2268     facet->rule->byte_count += facet->byte_count;
2269
2270     /* Reset counters to prevent double counting if 'facet' ever gets
2271      * reinstalled. */
2272     facet->packet_count = 0;
2273     facet->byte_count = 0;
2274     facet->accounted_bytes = 0;
2275
2276     netflow_flow_clear(&facet->nf_flow);
2277 }
2278
2279 /* Searches 'ofproto''s table of facets for one exactly equal to 'flow'.
2280  * Returns it if found, otherwise a null pointer.
2281  *
2282  * The returned facet might need revalidation; use facet_lookup_valid()
2283  * instead if that is important. */
2284 static struct facet *
2285 facet_find(struct ofproto *ofproto, const struct flow *flow)
2286 {
2287     struct facet *facet;
2288
2289     HMAP_FOR_EACH_WITH_HASH (facet, hmap_node, flow_hash(flow, 0),
2290                              &ofproto->facets) {
2291         if (flow_equal(flow, &facet->flow)) {
2292             return facet;
2293         }
2294     }
2295
2296     return NULL;
2297 }
2298
2299 /* Searches 'ofproto''s table of facets for one exactly equal to 'flow'.
2300  * Returns it if found, otherwise a null pointer.
2301  *
2302  * The returned facet is guaranteed to be valid. */
2303 static struct facet *
2304 facet_lookup_valid(struct ofproto *ofproto, const struct flow *flow)
2305 {
2306     struct facet *facet = facet_find(ofproto, flow);
2307
2308     /* The facet we found might not be valid, since we could be in need of
2309      * revalidation.  If it is not valid, don't return it. */
2310     if (facet
2311         && ofproto->need_revalidate
2312         && !facet_revalidate(ofproto, facet)) {
2313         COVERAGE_INC(ofproto_invalidated);
2314         return NULL;
2315     }
2316
2317     return facet;
2318 }
2319
2320 /* Re-searches 'ofproto''s classifier for a rule matching 'facet':
2321  *
2322  *   - If the rule found is different from 'facet''s current rule, moves
2323  *     'facet' to the new rule and recompiles its actions.
2324  *
2325  *   - If the rule found is the same as 'facet''s current rule, leaves 'facet'
2326  *     where it is and recompiles its actions anyway.
2327  *
2328  *   - If there is none, destroys 'facet'.
2329  *
2330  * Returns true if 'facet' still exists, false if it has been destroyed. */
2331 static bool
2332 facet_revalidate(struct ofproto *ofproto, struct facet *facet)
2333 {
2334     struct rule *new_rule;
2335     struct odp_actions a;
2336     size_t actions_len;
2337     uint16_t new_nf_output_iface;
2338     bool actions_changed;
2339
2340     COVERAGE_INC(facet_revalidate);
2341
2342     /* Determine the new rule. */
2343     new_rule = rule_lookup(ofproto, &facet->flow);
2344     if (!new_rule) {
2345         /* No new rule, so delete the facet. */
2346         facet_remove(ofproto, facet);
2347         return false;
2348     }
2349
2350     /* Calculate new ODP actions.
2351      *
2352      * We are very cautious about actually modifying 'facet' state at this
2353      * point, because we might need to, e.g., emit a NetFlow expiration and, if
2354      * so, we need to have the old state around to properly compose it. */
2355     xlate_actions(new_rule->actions, new_rule->n_actions, &facet->flow,
2356                   ofproto, NULL, &a, &facet->tags, &facet->may_install,
2357                   &new_nf_output_iface);
2358     actions_len = a.n_actions * sizeof *a.actions;
2359     actions_changed = (facet->n_actions != a.n_actions
2360                        || memcmp(facet->actions, a.actions, actions_len));
2361
2362     /* If the ODP actions changed or the installability changed, then we need
2363      * to talk to the datapath. */
2364     if (actions_changed || facet->may_install != facet->installed) {
2365         if (facet->may_install) {
2366             struct odp_flow_put put;
2367
2368             memset(&put.flow.stats, 0, sizeof put.flow.stats);
2369             odp_flow_key_from_flow(&put.flow.key, &facet->flow);
2370             put.flow.actions = a.actions;
2371             put.flow.n_actions = a.n_actions;
2372             put.flow.flags = 0;
2373             put.flags = ODPPF_CREATE | ODPPF_MODIFY | ODPPF_ZERO_STATS;
2374             dpif_flow_put(ofproto->dpif, &put);
2375
2376             facet_update_stats(ofproto, facet, &put.flow.stats);
2377         } else {
2378             facet_uninstall(ofproto, facet);
2379         }
2380
2381         /* The datapath flow is gone or has zeroed stats, so push stats out of
2382          * 'facet' into 'rule'. */
2383         facet_flush_stats(ofproto, facet);
2384     }
2385
2386     /* Update 'facet' now that we've taken care of all the old state. */
2387     facet->nf_flow.output_iface = new_nf_output_iface;
2388     if (actions_changed) {
2389         free(facet->actions);
2390         facet->n_actions = a.n_actions;
2391         facet->actions = xmemdup(a.actions, actions_len);
2392     }
2393     if (facet->rule != new_rule) {
2394         COVERAGE_INC(facet_changed_rule);
2395         list_remove(&facet->list_node);
2396         list_push_back(&new_rule->facets, &facet->list_node);
2397         facet->rule = new_rule;
2398         facet->used = new_rule->created;
2399     }
2400
2401     return true;
2402 }
2403 \f
2404 static void
2405 queue_tx(struct ofpbuf *msg, const struct ofconn *ofconn,
2406          struct rconn_packet_counter *counter)
2407 {
2408     update_openflow_length(msg);
2409     if (rconn_send(ofconn->rconn, msg, counter)) {
2410         ofpbuf_delete(msg);
2411     }
2412 }
2413
2414 static void
2415 send_error_oh(const struct ofconn *ofconn, const struct ofp_header *oh,
2416               int error)
2417 {
2418     struct ofpbuf *buf = make_ofp_error_msg(error, oh);
2419     if (buf) {
2420         COVERAGE_INC(ofproto_error);
2421         queue_tx(buf, ofconn, ofconn->reply_counter);
2422     }
2423 }
2424
2425 static void
2426 hton_ofp_phy_port(struct ofp_phy_port *opp)
2427 {
2428     opp->port_no = htons(opp->port_no);
2429     opp->config = htonl(opp->config);
2430     opp->state = htonl(opp->state);
2431     opp->curr = htonl(opp->curr);
2432     opp->advertised = htonl(opp->advertised);
2433     opp->supported = htonl(opp->supported);
2434     opp->peer = htonl(opp->peer);
2435 }
2436
2437 static int
2438 handle_echo_request(struct ofconn *ofconn, struct ofp_header *oh)
2439 {
2440     struct ofp_header *rq = oh;
2441     queue_tx(make_echo_reply(rq), ofconn, ofconn->reply_counter);
2442     return 0;
2443 }
2444
2445 static int
2446 handle_features_request(struct ofconn *ofconn, struct ofp_header *oh)
2447 {
2448     struct ofp_switch_features *osf;
2449     struct ofpbuf *buf;
2450     struct ofport *port;
2451
2452     osf = make_openflow_xid(sizeof *osf, OFPT_FEATURES_REPLY, oh->xid, &buf);
2453     osf->datapath_id = htonll(ofconn->ofproto->datapath_id);
2454     osf->n_buffers = htonl(pktbuf_capacity());
2455     osf->n_tables = 2;
2456     osf->capabilities = htonl(OFPC_FLOW_STATS | OFPC_TABLE_STATS |
2457                               OFPC_PORT_STATS | OFPC_ARP_MATCH_IP);
2458     osf->actions = htonl((1u << OFPAT_OUTPUT) |
2459                          (1u << OFPAT_SET_VLAN_VID) |
2460                          (1u << OFPAT_SET_VLAN_PCP) |
2461                          (1u << OFPAT_STRIP_VLAN) |
2462                          (1u << OFPAT_SET_DL_SRC) |
2463                          (1u << OFPAT_SET_DL_DST) |
2464                          (1u << OFPAT_SET_NW_SRC) |
2465                          (1u << OFPAT_SET_NW_DST) |
2466                          (1u << OFPAT_SET_NW_TOS) |
2467                          (1u << OFPAT_SET_TP_SRC) |
2468                          (1u << OFPAT_SET_TP_DST) |
2469                          (1u << OFPAT_ENQUEUE));
2470
2471     HMAP_FOR_EACH (port, hmap_node, &ofconn->ofproto->ports) {
2472         hton_ofp_phy_port(ofpbuf_put(buf, &port->opp, sizeof port->opp));
2473     }
2474
2475     queue_tx(buf, ofconn, ofconn->reply_counter);
2476     return 0;
2477 }
2478
2479 static int
2480 handle_get_config_request(struct ofconn *ofconn, struct ofp_header *oh)
2481 {
2482     struct ofpbuf *buf;
2483     struct ofp_switch_config *osc;
2484     uint16_t flags;
2485     bool drop_frags;
2486
2487     /* Figure out flags. */
2488     dpif_get_drop_frags(ofconn->ofproto->dpif, &drop_frags);
2489     flags = drop_frags ? OFPC_FRAG_DROP : OFPC_FRAG_NORMAL;
2490
2491     /* Send reply. */
2492     osc = make_openflow_xid(sizeof *osc, OFPT_GET_CONFIG_REPLY, oh->xid, &buf);
2493     osc->flags = htons(flags);
2494     osc->miss_send_len = htons(ofconn->miss_send_len);
2495     queue_tx(buf, ofconn, ofconn->reply_counter);
2496
2497     return 0;
2498 }
2499
2500 static int
2501 handle_set_config(struct ofconn *ofconn, struct ofp_switch_config *osc)
2502 {
2503     uint16_t flags;
2504     int error;
2505
2506     error = check_ofp_message(&osc->header, OFPT_SET_CONFIG, sizeof *osc);
2507     if (error) {
2508         return error;
2509     }
2510     flags = ntohs(osc->flags);
2511
2512     if (ofconn->type == OFCONN_PRIMARY && ofconn->role != NX_ROLE_SLAVE) {
2513         switch (flags & OFPC_FRAG_MASK) {
2514         case OFPC_FRAG_NORMAL:
2515             dpif_set_drop_frags(ofconn->ofproto->dpif, false);
2516             break;
2517         case OFPC_FRAG_DROP:
2518             dpif_set_drop_frags(ofconn->ofproto->dpif, true);
2519             break;
2520         default:
2521             VLOG_WARN_RL(&rl, "requested bad fragment mode (flags=%"PRIx16")",
2522                          osc->flags);
2523             break;
2524         }
2525     }
2526
2527     ofconn->miss_send_len = ntohs(osc->miss_send_len);
2528
2529     return 0;
2530 }
2531
2532 static void
2533 add_controller_action(struct odp_actions *actions, uint16_t max_len)
2534 {
2535     union odp_action *a = odp_actions_add(actions, ODPAT_CONTROLLER);
2536     a->controller.arg = max_len;
2537 }
2538
2539 struct action_xlate_ctx {
2540     /* Input. */
2541     struct flow flow;           /* Flow to which these actions correspond. */
2542     int recurse;                /* Recursion level, via xlate_table_action. */
2543     struct ofproto *ofproto;
2544     const struct ofpbuf *packet; /* The packet corresponding to 'flow', or a
2545                                   * null pointer if we are revalidating
2546                                   * without a packet to refer to. */
2547
2548     /* Output. */
2549     struct odp_actions *out;    /* Datapath actions. */
2550     tag_type tags;              /* Tags associated with OFPP_NORMAL actions. */
2551     bool may_set_up_flow;       /* True ordinarily; false if the actions must
2552                                  * be reassessed for every packet. */
2553     uint16_t nf_output_iface;   /* Output interface index for NetFlow. */
2554 };
2555
2556 /* Maximum depth of flow table recursion (due to NXAST_RESUBMIT actions) in a
2557  * flow translation. */
2558 #define MAX_RESUBMIT_RECURSION 8
2559
2560 static void do_xlate_actions(const union ofp_action *in, size_t n_in,
2561                              struct action_xlate_ctx *ctx);
2562
2563 static void
2564 add_output_action(struct action_xlate_ctx *ctx, uint16_t port)
2565 {
2566     const struct ofport *ofport = get_port(ctx->ofproto, port);
2567
2568     if (ofport) {
2569         if (ofport->opp.config & OFPPC_NO_FWD) {
2570             /* Forwarding disabled on port. */
2571             return;
2572         }
2573     } else {
2574         /*
2575          * We don't have an ofport record for this port, but it doesn't hurt to
2576          * allow forwarding to it anyhow.  Maybe such a port will appear later
2577          * and we're pre-populating the flow table.
2578          */
2579     }
2580
2581     odp_actions_add(ctx->out, ODPAT_OUTPUT)->output.port = port;
2582     ctx->nf_output_iface = port;
2583 }
2584
2585 static struct rule *
2586 rule_lookup(struct ofproto *ofproto, const struct flow *flow)
2587 {
2588     return rule_from_cls_rule(classifier_lookup(&ofproto->cls, flow,
2589                                                 CLS_INC_ALL));
2590 }
2591
2592 static void
2593 xlate_table_action(struct action_xlate_ctx *ctx, uint16_t in_port)
2594 {
2595     if (ctx->recurse < MAX_RESUBMIT_RECURSION) {
2596         uint16_t old_in_port;
2597         struct rule *rule;
2598
2599         /* Look up a flow with 'in_port' as the input port.  Then restore the
2600          * original input port (otherwise OFPP_NORMAL and OFPP_IN_PORT will
2601          * have surprising behavior). */
2602         old_in_port = ctx->flow.in_port;
2603         ctx->flow.in_port = in_port;
2604         rule = rule_lookup(ctx->ofproto, &ctx->flow);
2605         ctx->flow.in_port = old_in_port;
2606
2607         if (rule) {
2608             ctx->recurse++;
2609             do_xlate_actions(rule->actions, rule->n_actions, ctx);
2610             ctx->recurse--;
2611         }
2612     } else {
2613         struct vlog_rate_limit recurse_rl = VLOG_RATE_LIMIT_INIT(1, 1);
2614
2615         VLOG_ERR_RL(&recurse_rl, "NXAST_RESUBMIT recursed over %d times",
2616                     MAX_RESUBMIT_RECURSION);
2617     }
2618 }
2619
2620 static void
2621 flood_packets(struct ofproto *ofproto, uint16_t odp_in_port, uint32_t mask,
2622               uint16_t *nf_output_iface, struct odp_actions *actions)
2623 {
2624     struct ofport *ofport;
2625
2626     HMAP_FOR_EACH (ofport, hmap_node, &ofproto->ports) {
2627         uint16_t odp_port = ofport->odp_port;
2628         if (odp_port != odp_in_port && !(ofport->opp.config & mask)) {
2629             odp_actions_add(actions, ODPAT_OUTPUT)->output.port = odp_port;
2630         }
2631     }
2632     *nf_output_iface = NF_OUT_FLOOD;
2633 }
2634
2635 static void
2636 xlate_output_action__(struct action_xlate_ctx *ctx,
2637                       uint16_t port, uint16_t max_len)
2638 {
2639     uint16_t odp_port;
2640     uint16_t prev_nf_output_iface = ctx->nf_output_iface;
2641
2642     ctx->nf_output_iface = NF_OUT_DROP;
2643
2644     switch (port) {
2645     case OFPP_IN_PORT:
2646         add_output_action(ctx, ctx->flow.in_port);
2647         break;
2648     case OFPP_TABLE:
2649         xlate_table_action(ctx, ctx->flow.in_port);
2650         break;
2651     case OFPP_NORMAL:
2652         if (!ctx->ofproto->ofhooks->normal_cb(&ctx->flow, ctx->packet,
2653                                               ctx->out, &ctx->tags,
2654                                               &ctx->nf_output_iface,
2655                                               ctx->ofproto->aux)) {
2656             COVERAGE_INC(ofproto_uninstallable);
2657             ctx->may_set_up_flow = false;
2658         }
2659         break;
2660     case OFPP_FLOOD:
2661         flood_packets(ctx->ofproto, ctx->flow.in_port, OFPPC_NO_FLOOD,
2662                       &ctx->nf_output_iface, ctx->out);
2663         break;
2664     case OFPP_ALL:
2665         flood_packets(ctx->ofproto, ctx->flow.in_port, 0,
2666                       &ctx->nf_output_iface, ctx->out);
2667         break;
2668     case OFPP_CONTROLLER:
2669         add_controller_action(ctx->out, max_len);
2670         break;
2671     case OFPP_LOCAL:
2672         add_output_action(ctx, ODPP_LOCAL);
2673         break;
2674     default:
2675         odp_port = ofp_port_to_odp_port(port);
2676         if (odp_port != ctx->flow.in_port) {
2677             add_output_action(ctx, odp_port);
2678         }
2679         break;
2680     }
2681
2682     if (prev_nf_output_iface == NF_OUT_FLOOD) {
2683         ctx->nf_output_iface = NF_OUT_FLOOD;
2684     } else if (ctx->nf_output_iface == NF_OUT_DROP) {
2685         ctx->nf_output_iface = prev_nf_output_iface;
2686     } else if (prev_nf_output_iface != NF_OUT_DROP &&
2687                ctx->nf_output_iface != NF_OUT_FLOOD) {
2688         ctx->nf_output_iface = NF_OUT_MULTI;
2689     }
2690 }
2691
2692 static void
2693 xlate_output_action(struct action_xlate_ctx *ctx,
2694                     const struct ofp_action_output *oao)
2695 {
2696     xlate_output_action__(ctx, ntohs(oao->port), ntohs(oao->max_len));
2697 }
2698
2699 /* If the final ODP action in 'ctx' is "pop priority", drop it, as an
2700  * optimization, because we're going to add another action that sets the
2701  * priority immediately after, or because there are no actions following the
2702  * pop.  */
2703 static void
2704 remove_pop_action(struct action_xlate_ctx *ctx)
2705 {
2706     size_t n = ctx->out->n_actions;
2707     if (n > 0 && ctx->out->actions[n - 1].type == ODPAT_POP_PRIORITY) {
2708         ctx->out->n_actions--;
2709     }
2710 }
2711
2712 static void
2713 xlate_enqueue_action(struct action_xlate_ctx *ctx,
2714                      const struct ofp_action_enqueue *oae)
2715 {
2716     uint16_t ofp_port, odp_port;
2717     uint32_t priority;
2718     int error;
2719
2720     error = dpif_queue_to_priority(ctx->ofproto->dpif, ntohl(oae->queue_id),
2721                                    &priority);
2722     if (error) {
2723         /* Fall back to ordinary output action. */
2724         xlate_output_action__(ctx, ntohs(oae->port), 0);
2725         return;
2726     }
2727
2728     /* Figure out ODP output port. */
2729     ofp_port = ntohs(oae->port);
2730     if (ofp_port != OFPP_IN_PORT) {
2731         odp_port = ofp_port_to_odp_port(ofp_port);
2732     } else {
2733         odp_port = ctx->flow.in_port;
2734     }
2735
2736     /* Add ODP actions. */
2737     remove_pop_action(ctx);
2738     odp_actions_add(ctx->out, ODPAT_SET_PRIORITY)->priority.priority
2739         = priority;
2740     add_output_action(ctx, odp_port);
2741     odp_actions_add(ctx->out, ODPAT_POP_PRIORITY);
2742
2743     /* Update NetFlow output port. */
2744     if (ctx->nf_output_iface == NF_OUT_DROP) {
2745         ctx->nf_output_iface = odp_port;
2746     } else if (ctx->nf_output_iface != NF_OUT_FLOOD) {
2747         ctx->nf_output_iface = NF_OUT_MULTI;
2748     }
2749 }
2750
2751 static void
2752 xlate_set_queue_action(struct action_xlate_ctx *ctx,
2753                        const struct nx_action_set_queue *nasq)
2754 {
2755     uint32_t priority;
2756     int error;
2757
2758     error = dpif_queue_to_priority(ctx->ofproto->dpif, ntohl(nasq->queue_id),
2759                                    &priority);
2760     if (error) {
2761         /* Couldn't translate queue to a priority, so ignore.  A warning
2762          * has already been logged. */
2763         return;
2764     }
2765
2766     remove_pop_action(ctx);
2767     odp_actions_add(ctx->out, ODPAT_SET_PRIORITY)->priority.priority
2768         = priority;
2769 }
2770
2771 static void
2772 xlate_set_dl_tci(struct action_xlate_ctx *ctx)
2773 {
2774     ovs_be16 dl_vlan = ctx->flow.dl_vlan;
2775     uint8_t dl_vlan_pcp = ctx->flow.dl_vlan_pcp;
2776
2777     if (dl_vlan == htons(OFP_VLAN_NONE)) {
2778         odp_actions_add(ctx->out, ODPAT_STRIP_VLAN);
2779     } else {
2780         union odp_action *oa = odp_actions_add(ctx->out, ODPAT_SET_DL_TCI);
2781         oa->dl_tci.tci = htons(ntohs(dl_vlan & htons(VLAN_VID_MASK))
2782                                | (dl_vlan_pcp << VLAN_PCP_SHIFT)
2783                                | VLAN_CFI);
2784     }
2785 }
2786
2787 static void
2788 xlate_reg_move_action(struct action_xlate_ctx *ctx,
2789                       const struct nx_action_reg_move *narm)
2790 {
2791     ovs_be16 old_vlan = ctx->flow.dl_vlan;
2792     uint8_t old_pcp = ctx->flow.dl_vlan_pcp;
2793
2794     nxm_execute_reg_move(narm, &ctx->flow);
2795
2796     if (ctx->flow.dl_vlan != old_vlan || ctx->flow.dl_vlan_pcp != old_pcp) {
2797         xlate_set_dl_tci(ctx);
2798     }
2799 }
2800
2801 static void
2802 xlate_nicira_action(struct action_xlate_ctx *ctx,
2803                     const struct nx_action_header *nah)
2804 {
2805     const struct nx_action_resubmit *nar;
2806     const struct nx_action_set_tunnel *nast;
2807     const struct nx_action_set_queue *nasq;
2808     union odp_action *oa;
2809     int subtype = ntohs(nah->subtype);
2810
2811     assert(nah->vendor == htonl(NX_VENDOR_ID));
2812     switch (subtype) {
2813     case NXAST_RESUBMIT:
2814         nar = (const struct nx_action_resubmit *) nah;
2815         xlate_table_action(ctx, ofp_port_to_odp_port(ntohs(nar->in_port)));
2816         break;
2817
2818     case NXAST_SET_TUNNEL:
2819         nast = (const struct nx_action_set_tunnel *) nah;
2820         oa = odp_actions_add(ctx->out, ODPAT_SET_TUNNEL);
2821         ctx->flow.tun_id = oa->tunnel.tun_id = nast->tun_id;
2822         break;
2823
2824     case NXAST_DROP_SPOOFED_ARP:
2825         if (ctx->flow.dl_type == htons(ETH_TYPE_ARP)) {
2826             odp_actions_add(ctx->out, ODPAT_DROP_SPOOFED_ARP);
2827         }
2828         break;
2829
2830     case NXAST_SET_QUEUE:
2831         nasq = (const struct nx_action_set_queue *) nah;
2832         xlate_set_queue_action(ctx, nasq);
2833         break;
2834
2835     case NXAST_POP_QUEUE:
2836         odp_actions_add(ctx->out, ODPAT_POP_PRIORITY);
2837         break;
2838
2839     case NXAST_REG_MOVE:
2840         xlate_reg_move_action(ctx, (const struct nx_action_reg_move *) nah);
2841         break;
2842
2843     case NXAST_REG_LOAD:
2844         nxm_execute_reg_load((const struct nx_action_reg_load *) nah,
2845                              &ctx->flow);
2846         break;
2847
2848     /* If you add a new action here that modifies flow data, don't forget to
2849      * update the flow key in ctx->flow at the same time. */
2850
2851     default:
2852         VLOG_DBG_RL(&rl, "unknown Nicira action type %"PRIu16, subtype);
2853         break;
2854     }
2855 }
2856
2857 static void
2858 do_xlate_actions(const union ofp_action *in, size_t n_in,
2859                  struct action_xlate_ctx *ctx)
2860 {
2861     struct actions_iterator iter;
2862     const union ofp_action *ia;
2863     const struct ofport *port;
2864
2865     port = get_port(ctx->ofproto, ctx->flow.in_port);
2866     if (port && port->opp.config & (OFPPC_NO_RECV | OFPPC_NO_RECV_STP) &&
2867         port->opp.config & (eth_addr_equals(ctx->flow.dl_dst, eth_addr_stp)
2868                             ? OFPPC_NO_RECV_STP : OFPPC_NO_RECV)) {
2869         /* Drop this flow. */
2870         return;
2871     }
2872
2873     for (ia = actions_first(&iter, in, n_in); ia; ia = actions_next(&iter)) {
2874         uint16_t type = ntohs(ia->type);
2875         union odp_action *oa;
2876
2877         switch (type) {
2878         case OFPAT_OUTPUT:
2879             xlate_output_action(ctx, &ia->output);
2880             break;
2881
2882         case OFPAT_SET_VLAN_VID:
2883             ctx->flow.dl_vlan = ia->vlan_vid.vlan_vid;
2884             xlate_set_dl_tci(ctx);
2885             break;
2886
2887         case OFPAT_SET_VLAN_PCP:
2888             ctx->flow.dl_vlan_pcp = ia->vlan_pcp.vlan_pcp;
2889             xlate_set_dl_tci(ctx);
2890             break;
2891
2892         case OFPAT_STRIP_VLAN:
2893             ctx->flow.dl_vlan = htons(OFP_VLAN_NONE);
2894             ctx->flow.dl_vlan_pcp = 0;
2895             xlate_set_dl_tci(ctx);
2896             break;
2897
2898         case OFPAT_SET_DL_SRC:
2899             oa = odp_actions_add(ctx->out, ODPAT_SET_DL_SRC);
2900             memcpy(oa->dl_addr.dl_addr,
2901                    ((struct ofp_action_dl_addr *) ia)->dl_addr, ETH_ADDR_LEN);
2902             memcpy(ctx->flow.dl_src,
2903                    ((struct ofp_action_dl_addr *) ia)->dl_addr, ETH_ADDR_LEN);
2904             break;
2905
2906         case OFPAT_SET_DL_DST:
2907             oa = odp_actions_add(ctx->out, ODPAT_SET_DL_DST);
2908             memcpy(oa->dl_addr.dl_addr,
2909                    ((struct ofp_action_dl_addr *) ia)->dl_addr, ETH_ADDR_LEN);
2910             memcpy(ctx->flow.dl_dst,
2911                    ((struct ofp_action_dl_addr *) ia)->dl_addr, ETH_ADDR_LEN);
2912             break;
2913
2914         case OFPAT_SET_NW_SRC:
2915             oa = odp_actions_add(ctx->out, ODPAT_SET_NW_SRC);
2916             ctx->flow.nw_src = oa->nw_addr.nw_addr = ia->nw_addr.nw_addr;
2917             break;
2918
2919         case OFPAT_SET_NW_DST:
2920             oa = odp_actions_add(ctx->out, ODPAT_SET_NW_DST);
2921             ctx->flow.nw_dst = oa->nw_addr.nw_addr = ia->nw_addr.nw_addr;
2922             break;
2923
2924         case OFPAT_SET_NW_TOS:
2925             oa = odp_actions_add(ctx->out, ODPAT_SET_NW_TOS);
2926             ctx->flow.nw_tos = oa->nw_tos.nw_tos = ia->nw_tos.nw_tos;
2927             break;
2928
2929         case OFPAT_SET_TP_SRC:
2930             oa = odp_actions_add(ctx->out, ODPAT_SET_TP_SRC);
2931             ctx->flow.tp_src = oa->tp_port.tp_port = ia->tp_port.tp_port;
2932             break;
2933
2934         case OFPAT_SET_TP_DST:
2935             oa = odp_actions_add(ctx->out, ODPAT_SET_TP_DST);
2936             ctx->flow.tp_dst = oa->tp_port.tp_port = ia->tp_port.tp_port;
2937             break;
2938
2939         case OFPAT_VENDOR:
2940             xlate_nicira_action(ctx, (const struct nx_action_header *) ia);
2941             break;
2942
2943         case OFPAT_ENQUEUE:
2944             xlate_enqueue_action(ctx, (const struct ofp_action_enqueue *) ia);
2945             break;
2946
2947         default:
2948             VLOG_DBG_RL(&rl, "unknown action type %"PRIu16, type);
2949             break;
2950         }
2951     }
2952 }
2953
2954 static int
2955 xlate_actions(const union ofp_action *in, size_t n_in,
2956               const struct flow *flow, struct ofproto *ofproto,
2957               const struct ofpbuf *packet,
2958               struct odp_actions *out, tag_type *tags, bool *may_set_up_flow,
2959               uint16_t *nf_output_iface)
2960 {
2961     struct action_xlate_ctx ctx;
2962
2963     COVERAGE_INC(ofproto_ofp2odp);
2964     odp_actions_init(out);
2965     ctx.flow = *flow;
2966     ctx.recurse = 0;
2967     ctx.ofproto = ofproto;
2968     ctx.packet = packet;
2969     ctx.out = out;
2970     ctx.tags = 0;
2971     ctx.may_set_up_flow = true;
2972     ctx.nf_output_iface = NF_OUT_DROP;
2973     do_xlate_actions(in, n_in, &ctx);
2974     remove_pop_action(&ctx);
2975
2976     /* Check with in-band control to see if we're allowed to set up this
2977      * flow. */
2978     if (!in_band_rule_check(ofproto->in_band, flow, out)) {
2979         ctx.may_set_up_flow = false;
2980     }
2981
2982     if (tags) {
2983         *tags = ctx.tags;
2984     }
2985     if (may_set_up_flow) {
2986         *may_set_up_flow = ctx.may_set_up_flow;
2987     }
2988     if (nf_output_iface) {
2989         *nf_output_iface = ctx.nf_output_iface;
2990     }
2991     if (odp_actions_overflow(out)) {
2992         COVERAGE_INC(odp_overflow);
2993         odp_actions_init(out);
2994         return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_TOO_MANY);
2995     }
2996     return 0;
2997 }
2998
2999 /* Checks whether 'ofconn' is a slave controller.  If so, returns an OpenFlow
3000  * error message code (composed with ofp_mkerr()) for the caller to propagate
3001  * upward.  Otherwise, returns 0.
3002  *
3003  * The log message mentions 'msg_type'. */
3004 static int
3005 reject_slave_controller(struct ofconn *ofconn, const const char *msg_type)
3006 {
3007     if (ofconn->type == OFCONN_PRIMARY && ofconn->role == NX_ROLE_SLAVE) {
3008         static struct vlog_rate_limit perm_rl = VLOG_RATE_LIMIT_INIT(1, 5);
3009         VLOG_WARN_RL(&perm_rl, "rejecting %s message from slave controller",
3010                      msg_type);
3011
3012         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_EPERM);
3013     } else {
3014         return 0;
3015     }
3016 }
3017
3018 static int
3019 handle_packet_out(struct ofconn *ofconn, struct ofp_header *oh)
3020 {
3021     struct ofproto *p = ofconn->ofproto;
3022     struct ofp_packet_out *opo;
3023     struct ofpbuf payload, *buffer;
3024     union ofp_action *ofp_actions;
3025     struct odp_actions odp_actions;
3026     struct ofpbuf request;
3027     struct flow flow;
3028     size_t n_ofp_actions;
3029     uint16_t in_port;
3030     int error;
3031
3032     COVERAGE_INC(ofproto_packet_out);
3033
3034     error = reject_slave_controller(ofconn, "OFPT_PACKET_OUT");
3035     if (error) {
3036         return error;
3037     }
3038
3039     /* Get ofp_packet_out. */
3040     request.data = oh;
3041     request.size = ntohs(oh->length);
3042     opo = ofpbuf_try_pull(&request, offsetof(struct ofp_packet_out, actions));
3043     if (!opo) {
3044         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3045     }
3046
3047     /* Get actions. */
3048     error = ofputil_pull_actions(&request, ntohs(opo->actions_len),
3049                                  &ofp_actions, &n_ofp_actions);
3050     if (error) {
3051         return error;
3052     }
3053
3054     /* Get payload. */
3055     if (opo->buffer_id != htonl(UINT32_MAX)) {
3056         error = pktbuf_retrieve(ofconn->pktbuf, ntohl(opo->buffer_id),
3057                                 &buffer, &in_port);
3058         if (error || !buffer) {
3059             return error;
3060         }
3061         payload = *buffer;
3062     } else {
3063         payload = request;
3064         buffer = NULL;
3065     }
3066
3067     /* Extract flow, check actions. */
3068     flow_extract(&payload, 0, ofp_port_to_odp_port(ntohs(opo->in_port)),
3069                  &flow);
3070     error = validate_actions(ofp_actions, n_ofp_actions, &flow, p->max_ports);
3071     if (error) {
3072         goto exit;
3073     }
3074
3075     /* Send. */
3076     error = xlate_actions(ofp_actions, n_ofp_actions, &flow, p, &payload,
3077                           &odp_actions, NULL, NULL, NULL);
3078     if (!error) {
3079         dpif_execute(p->dpif, odp_actions.actions, odp_actions.n_actions,
3080                      &payload);
3081     }
3082
3083 exit:
3084     ofpbuf_delete(buffer);
3085     return 0;
3086 }
3087
3088 static void
3089 update_port_config(struct ofproto *p, struct ofport *port,
3090                    uint32_t config, uint32_t mask)
3091 {
3092     mask &= config ^ port->opp.config;
3093     if (mask & OFPPC_PORT_DOWN) {
3094         if (config & OFPPC_PORT_DOWN) {
3095             netdev_turn_flags_off(port->netdev, NETDEV_UP, true);
3096         } else {
3097             netdev_turn_flags_on(port->netdev, NETDEV_UP, true);
3098         }
3099     }
3100 #define REVALIDATE_BITS (OFPPC_NO_RECV | OFPPC_NO_RECV_STP |    \
3101                          OFPPC_NO_FWD | OFPPC_NO_FLOOD)
3102     if (mask & REVALIDATE_BITS) {
3103         COVERAGE_INC(ofproto_costly_flags);
3104         port->opp.config ^= mask & REVALIDATE_BITS;
3105         p->need_revalidate = true;
3106     }
3107 #undef REVALIDATE_BITS
3108     if (mask & OFPPC_NO_PACKET_IN) {
3109         port->opp.config ^= OFPPC_NO_PACKET_IN;
3110     }
3111 }
3112
3113 static int
3114 handle_port_mod(struct ofconn *ofconn, struct ofp_header *oh)
3115 {
3116     struct ofproto *p = ofconn->ofproto;
3117     const struct ofp_port_mod *opm;
3118     struct ofport *port;
3119     int error;
3120
3121     error = reject_slave_controller(ofconn, "OFPT_PORT_MOD");
3122     if (error) {
3123         return error;
3124     }
3125     error = check_ofp_message(oh, OFPT_PORT_MOD, sizeof *opm);
3126     if (error) {
3127         return error;
3128     }
3129     opm = (struct ofp_port_mod *) oh;
3130
3131     port = get_port(p, ofp_port_to_odp_port(ntohs(opm->port_no)));
3132     if (!port) {
3133         return ofp_mkerr(OFPET_PORT_MOD_FAILED, OFPPMFC_BAD_PORT);
3134     } else if (memcmp(port->opp.hw_addr, opm->hw_addr, OFP_ETH_ALEN)) {
3135         return ofp_mkerr(OFPET_PORT_MOD_FAILED, OFPPMFC_BAD_HW_ADDR);
3136     } else {
3137         update_port_config(p, port, ntohl(opm->config), ntohl(opm->mask));
3138         if (opm->advertise) {
3139             netdev_set_advertisements(port->netdev, ntohl(opm->advertise));
3140         }
3141     }
3142     return 0;
3143 }
3144
3145 static struct ofpbuf *
3146 make_ofp_stats_reply(ovs_be32 xid, ovs_be16 type, size_t body_len)
3147 {
3148     struct ofp_stats_reply *osr;
3149     struct ofpbuf *msg;
3150
3151     msg = ofpbuf_new(MIN(sizeof *osr + body_len, UINT16_MAX));
3152     osr = put_openflow_xid(sizeof *osr, OFPT_STATS_REPLY, xid, msg);
3153     osr->type = type;
3154     osr->flags = htons(0);
3155     return msg;
3156 }
3157
3158 static struct ofpbuf *
3159 start_ofp_stats_reply(const struct ofp_stats_request *request, size_t body_len)
3160 {
3161     return make_ofp_stats_reply(request->header.xid, request->type, body_len);
3162 }
3163
3164 static void *
3165 append_ofp_stats_reply(size_t nbytes, struct ofconn *ofconn,
3166                        struct ofpbuf **msgp)
3167 {
3168     struct ofpbuf *msg = *msgp;
3169     assert(nbytes <= UINT16_MAX - sizeof(struct ofp_stats_reply));
3170     if (nbytes + msg->size > UINT16_MAX) {
3171         struct ofp_stats_reply *reply = msg->data;
3172         reply->flags = htons(OFPSF_REPLY_MORE);
3173         *msgp = make_ofp_stats_reply(reply->header.xid, reply->type, nbytes);
3174         queue_tx(msg, ofconn, ofconn->reply_counter);
3175     }
3176     return ofpbuf_put_uninit(*msgp, nbytes);
3177 }
3178
3179 static struct ofpbuf *
3180 make_nxstats_reply(ovs_be32 xid, ovs_be32 subtype, size_t body_len)
3181 {
3182     struct nicira_stats_msg *nsm;
3183     struct ofpbuf *msg;
3184
3185     msg = ofpbuf_new(MIN(sizeof *nsm + body_len, UINT16_MAX));
3186     nsm = put_openflow_xid(sizeof *nsm, OFPT_STATS_REPLY, xid, msg);
3187     nsm->type = htons(OFPST_VENDOR);
3188     nsm->flags = htons(0);
3189     nsm->vendor = htonl(NX_VENDOR_ID);
3190     nsm->subtype = htonl(subtype);
3191     return msg;
3192 }
3193
3194 static struct ofpbuf *
3195 start_nxstats_reply(const struct nicira_stats_msg *request, size_t body_len)
3196 {
3197     return make_nxstats_reply(request->header.xid, request->subtype, body_len);
3198 }
3199
3200 static void
3201 append_nxstats_reply(size_t nbytes, struct ofconn *ofconn,
3202                      struct ofpbuf **msgp)
3203 {
3204     struct ofpbuf *msg = *msgp;
3205     assert(nbytes <= UINT16_MAX - sizeof(struct nicira_stats_msg));
3206     if (nbytes + msg->size > UINT16_MAX) {
3207         struct nicira_stats_msg *reply = msg->data;
3208         reply->flags = htons(OFPSF_REPLY_MORE);
3209         *msgp = make_nxstats_reply(reply->header.xid, reply->subtype, nbytes);
3210         queue_tx(msg, ofconn, ofconn->reply_counter);
3211     }
3212     ofpbuf_prealloc_tailroom(*msgp, nbytes);
3213 }
3214
3215 static int
3216 handle_desc_stats_request(struct ofconn *ofconn,
3217                           struct ofp_stats_request *request)
3218 {
3219     struct ofproto *p = ofconn->ofproto;
3220     struct ofp_desc_stats *ods;
3221     struct ofpbuf *msg;
3222
3223     msg = start_ofp_stats_reply(request, sizeof *ods);
3224     ods = append_ofp_stats_reply(sizeof *ods, ofconn, &msg);
3225     memset(ods, 0, sizeof *ods);
3226     ovs_strlcpy(ods->mfr_desc, p->mfr_desc, sizeof ods->mfr_desc);
3227     ovs_strlcpy(ods->hw_desc, p->hw_desc, sizeof ods->hw_desc);
3228     ovs_strlcpy(ods->sw_desc, p->sw_desc, sizeof ods->sw_desc);
3229     ovs_strlcpy(ods->serial_num, p->serial_desc, sizeof ods->serial_num);
3230     ovs_strlcpy(ods->dp_desc, p->dp_desc, sizeof ods->dp_desc);
3231     queue_tx(msg, ofconn, ofconn->reply_counter);
3232
3233     return 0;
3234 }
3235
3236 static int
3237 handle_table_stats_request(struct ofconn *ofconn,
3238                            struct ofp_stats_request *request)
3239 {
3240     struct ofproto *p = ofconn->ofproto;
3241     struct ofp_table_stats *ots;
3242     struct ofpbuf *msg;
3243
3244     msg = start_ofp_stats_reply(request, sizeof *ots * 2);
3245
3246     /* Classifier table. */
3247     ots = append_ofp_stats_reply(sizeof *ots, ofconn, &msg);
3248     memset(ots, 0, sizeof *ots);
3249     strcpy(ots->name, "classifier");
3250     ots->wildcards = (ofconn->flow_format == NXFF_OPENFLOW10
3251                       ? htonl(OFPFW_ALL) : htonl(OVSFW_ALL));
3252     ots->max_entries = htonl(1024 * 1024); /* An arbitrary big number. */
3253     ots->active_count = htonl(classifier_count(&p->cls));
3254     ots->lookup_count = htonll(0);              /* XXX */
3255     ots->matched_count = htonll(0);             /* XXX */
3256
3257     queue_tx(msg, ofconn, ofconn->reply_counter);
3258     return 0;
3259 }
3260
3261 static void
3262 append_port_stat(struct ofport *port, struct ofconn *ofconn,
3263                  struct ofpbuf **msgp)
3264 {
3265     struct netdev_stats stats;
3266     struct ofp_port_stats *ops;
3267
3268     /* Intentionally ignore return value, since errors will set
3269      * 'stats' to all-1s, which is correct for OpenFlow, and
3270      * netdev_get_stats() will log errors. */
3271     netdev_get_stats(port->netdev, &stats);
3272
3273     ops = append_ofp_stats_reply(sizeof *ops, ofconn, msgp);
3274     ops->port_no = htons(port->opp.port_no);
3275     memset(ops->pad, 0, sizeof ops->pad);
3276     ops->rx_packets = htonll(stats.rx_packets);
3277     ops->tx_packets = htonll(stats.tx_packets);
3278     ops->rx_bytes = htonll(stats.rx_bytes);
3279     ops->tx_bytes = htonll(stats.tx_bytes);
3280     ops->rx_dropped = htonll(stats.rx_dropped);
3281     ops->tx_dropped = htonll(stats.tx_dropped);
3282     ops->rx_errors = htonll(stats.rx_errors);
3283     ops->tx_errors = htonll(stats.tx_errors);
3284     ops->rx_frame_err = htonll(stats.rx_frame_errors);
3285     ops->rx_over_err = htonll(stats.rx_over_errors);
3286     ops->rx_crc_err = htonll(stats.rx_crc_errors);
3287     ops->collisions = htonll(stats.collisions);
3288 }
3289
3290 static int
3291 handle_port_stats_request(struct ofconn *ofconn, struct ofp_stats_request *osr,
3292                           size_t arg_size)
3293 {
3294     struct ofproto *p = ofconn->ofproto;
3295     struct ofp_port_stats_request *psr;
3296     struct ofp_port_stats *ops;
3297     struct ofpbuf *msg;
3298     struct ofport *port;
3299
3300     if (arg_size != sizeof *psr) {
3301         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3302     }
3303     psr = (struct ofp_port_stats_request *) osr->body;
3304
3305     msg = start_ofp_stats_reply(osr, sizeof *ops * 16);
3306     if (psr->port_no != htons(OFPP_NONE)) {
3307         port = get_port(p, ofp_port_to_odp_port(ntohs(psr->port_no)));
3308         if (port) {
3309             append_port_stat(port, ofconn, &msg);
3310         }
3311     } else {
3312         HMAP_FOR_EACH (port, hmap_node, &p->ports) {
3313             append_port_stat(port, ofconn, &msg);
3314         }
3315     }
3316
3317     queue_tx(msg, ofconn, ofconn->reply_counter);
3318     return 0;
3319 }
3320
3321 struct flow_stats_cbdata {
3322     struct ofconn *ofconn;
3323     ovs_be16 out_port;
3324     struct ofpbuf *msg;
3325 };
3326
3327 /* Obtains statistic counters for 'rule' within 'p' and stores them into
3328  * '*packet_countp' and '*byte_countp'.  The returned statistics include
3329  * statistics for all of 'rule''s facets. */
3330 static void
3331 query_stats(struct ofproto *p, struct rule *rule,
3332             uint64_t *packet_countp, uint64_t *byte_countp)
3333 {
3334     uint64_t packet_count, byte_count;
3335     struct facet *facet;
3336     struct odp_flow *odp_flows;
3337     size_t n_odp_flows;
3338
3339     /* Start from historical data for 'rule' itself that are no longer tracked
3340      * by the datapath.  This counts, for example, facets that have expired. */
3341     packet_count = rule->packet_count;
3342     byte_count = rule->byte_count;
3343
3344     /* Prepare to ask the datapath for statistics on all of the rule's facets.
3345      *
3346      * Also, add any statistics that are not tracked by the datapath for each
3347      * facet.  This includes, for example, statistics for packets that were
3348      * executed "by hand" by ofproto via dpif_execute() but must be accounted
3349      * to a rule. */
3350     odp_flows = xzalloc(list_size(&rule->facets) * sizeof *odp_flows);
3351     n_odp_flows = 0;
3352     LIST_FOR_EACH (facet, list_node, &rule->facets) {
3353         struct odp_flow *odp_flow = &odp_flows[n_odp_flows++];
3354         odp_flow_key_from_flow(&odp_flow->key, &facet->flow);
3355         packet_count += facet->packet_count;
3356         byte_count += facet->byte_count;
3357     }
3358
3359     /* Fetch up-to-date statistics from the datapath and add them in. */
3360     if (!dpif_flow_get_multiple(p->dpif, odp_flows, n_odp_flows)) {
3361         size_t i;
3362
3363         for (i = 0; i < n_odp_flows; i++) {
3364             struct odp_flow *odp_flow = &odp_flows[i];
3365             packet_count += odp_flow->stats.n_packets;
3366             byte_count += odp_flow->stats.n_bytes;
3367         }
3368     }
3369     free(odp_flows);
3370
3371     /* Return the stats to the caller. */
3372     *packet_countp = packet_count;
3373     *byte_countp = byte_count;
3374 }
3375
3376 static void
3377 calc_flow_duration(long long int start, ovs_be32 *sec, ovs_be32 *nsec)
3378 {
3379     long long int msecs = time_msec() - start;
3380     *sec = htonl(msecs / 1000);
3381     *nsec = htonl((msecs % 1000) * (1000 * 1000));
3382 }
3383
3384 static void
3385 flow_stats_cb(struct cls_rule *rule_, void *cbdata_)
3386 {
3387     struct rule *rule = rule_from_cls_rule(rule_);
3388     struct flow_stats_cbdata *cbdata = cbdata_;
3389     struct ofp_flow_stats *ofs;
3390     uint64_t packet_count, byte_count;
3391     size_t act_len, len;
3392
3393     if (rule_is_hidden(rule) || !rule_has_out_port(rule, cbdata->out_port)) {
3394         return;
3395     }
3396
3397     act_len = sizeof *rule->actions * rule->n_actions;
3398     len = offsetof(struct ofp_flow_stats, actions) + act_len;
3399
3400     query_stats(cbdata->ofconn->ofproto, rule, &packet_count, &byte_count);
3401
3402     ofs = append_ofp_stats_reply(len, cbdata->ofconn, &cbdata->msg);
3403     ofs->length = htons(len);
3404     ofs->table_id = 0;
3405     ofs->pad = 0;
3406     flow_to_match(&rule->cr.flow, rule->cr.wc.wildcards,
3407                   cbdata->ofconn->flow_format, &ofs->match);
3408     calc_flow_duration(rule->created, &ofs->duration_sec, &ofs->duration_nsec);
3409     ofs->cookie = rule->flow_cookie;
3410     ofs->priority = htons(rule->cr.priority);
3411     ofs->idle_timeout = htons(rule->idle_timeout);
3412     ofs->hard_timeout = htons(rule->hard_timeout);
3413     memset(ofs->pad2, 0, sizeof ofs->pad2);
3414     ofs->packet_count = htonll(packet_count);
3415     ofs->byte_count = htonll(byte_count);
3416     if (rule->n_actions > 0) {
3417         memcpy(ofs->actions, rule->actions, act_len);
3418     }
3419 }
3420
3421 static int
3422 table_id_to_include(uint8_t table_id)
3423 {
3424     return table_id == 0 || table_id == 0xff ? CLS_INC_ALL : 0;
3425 }
3426
3427 static int
3428 handle_flow_stats_request(struct ofconn *ofconn,
3429                           const struct ofp_stats_request *osr, size_t arg_size)
3430 {
3431     struct ofp_flow_stats_request *fsr;
3432     struct flow_stats_cbdata cbdata;
3433     struct cls_rule target;
3434
3435     if (arg_size != sizeof *fsr) {
3436         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3437     }
3438     fsr = (struct ofp_flow_stats_request *) osr->body;
3439
3440     COVERAGE_INC(ofproto_flows_req);
3441     cbdata.ofconn = ofconn;
3442     cbdata.out_port = fsr->out_port;
3443     cbdata.msg = start_ofp_stats_reply(osr, 1024);
3444     cls_rule_from_match(&fsr->match, 0, NXFF_OPENFLOW10, 0, &target);
3445     classifier_for_each_match(&ofconn->ofproto->cls, &target,
3446                               table_id_to_include(fsr->table_id),
3447                               flow_stats_cb, &cbdata);
3448     queue_tx(cbdata.msg, ofconn, ofconn->reply_counter);
3449     return 0;
3450 }
3451
3452 static void
3453 nx_flow_stats_cb(struct cls_rule *rule_, void *cbdata_)
3454 {
3455     struct rule *rule = rule_from_cls_rule(rule_);
3456     struct flow_stats_cbdata *cbdata = cbdata_;
3457     struct nx_flow_stats *nfs;
3458     uint64_t packet_count, byte_count;
3459     size_t act_len, start_len;
3460
3461     if (rule_is_hidden(rule) || !rule_has_out_port(rule, cbdata->out_port)) {
3462         return;
3463     }
3464
3465     query_stats(cbdata->ofconn->ofproto, rule, &packet_count, &byte_count);
3466
3467     act_len = sizeof *rule->actions * rule->n_actions;
3468
3469     start_len = cbdata->msg->size;
3470     append_nxstats_reply(sizeof *nfs + NXM_MAX_LEN + act_len,
3471                          cbdata->ofconn, &cbdata->msg);
3472     nfs = ofpbuf_put_uninit(cbdata->msg, sizeof *nfs);
3473     nfs->table_id = 0;
3474     nfs->pad = 0;
3475     calc_flow_duration(rule->created, &nfs->duration_sec, &nfs->duration_nsec);
3476     nfs->cookie = rule->flow_cookie;
3477     nfs->priority = htons(rule->cr.priority);
3478     nfs->idle_timeout = htons(rule->idle_timeout);
3479     nfs->hard_timeout = htons(rule->hard_timeout);
3480     nfs->match_len = htons(nx_put_match(cbdata->msg, &rule->cr));
3481     memset(nfs->pad2, 0, sizeof nfs->pad2);
3482     nfs->packet_count = htonll(packet_count);
3483     nfs->byte_count = htonll(byte_count);
3484     if (rule->n_actions > 0) {
3485         ofpbuf_put(cbdata->msg, rule->actions, act_len);
3486     }
3487     nfs->length = htons(cbdata->msg->size - start_len);
3488 }
3489
3490 static int
3491 handle_nxst_flow(struct ofconn *ofconn, struct ofpbuf *b)
3492 {
3493     struct nx_flow_stats_request *nfsr;
3494     struct flow_stats_cbdata cbdata;
3495     struct cls_rule target;
3496     int error;
3497
3498     /* Dissect the message. */
3499     nfsr = ofpbuf_try_pull(b, sizeof *nfsr);
3500     if (!nfsr) {
3501         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3502     }
3503     error = nx_pull_match(b, ntohs(nfsr->match_len), 0, &target);
3504     if (error) {
3505         return error;
3506     }
3507
3508     COVERAGE_INC(ofproto_flows_req);
3509     cbdata.ofconn = ofconn;
3510     cbdata.out_port = nfsr->out_port;
3511     cbdata.msg = start_nxstats_reply(&nfsr->nsm, 1024);
3512     classifier_for_each_match(&ofconn->ofproto->cls, &target,
3513                               table_id_to_include(nfsr->table_id),
3514                               nx_flow_stats_cb, &cbdata);
3515     queue_tx(cbdata.msg, ofconn, ofconn->reply_counter);
3516     return 0;
3517 }
3518
3519 struct flow_stats_ds_cbdata {
3520     struct ofproto *ofproto;
3521     struct ds *results;
3522 };
3523
3524 static void
3525 flow_stats_ds_cb(struct cls_rule *rule_, void *cbdata_)
3526 {
3527     struct rule *rule = rule_from_cls_rule(rule_);
3528     struct flow_stats_ds_cbdata *cbdata = cbdata_;
3529     struct ds *results = cbdata->results;
3530     struct ofp_match match;
3531     uint64_t packet_count, byte_count;
3532     size_t act_len = sizeof *rule->actions * rule->n_actions;
3533
3534     query_stats(cbdata->ofproto, rule, &packet_count, &byte_count);
3535     flow_to_match(&rule->cr.flow, rule->cr.wc.wildcards,
3536                   NXFF_OPENFLOW10, &match);
3537
3538     ds_put_format(results, "duration=%llds, ",
3539                   (time_msec() - rule->created) / 1000);
3540     ds_put_format(results, "priority=%u, ", rule->cr.priority);
3541     ds_put_format(results, "n_packets=%"PRIu64", ", packet_count);
3542     ds_put_format(results, "n_bytes=%"PRIu64", ", byte_count);
3543     ofp_print_match(results, &match, true);
3544     if (act_len > 0) {
3545         ofp_print_actions(results, &rule->actions->header, act_len);
3546     } else {
3547         ds_put_cstr(results, "drop");
3548     }
3549     ds_put_cstr(results, "\n");
3550 }
3551
3552 /* Adds a pretty-printed description of all flows to 'results', including
3553  * those marked hidden by secchan (e.g., by in-band control). */
3554 void
3555 ofproto_get_all_flows(struct ofproto *p, struct ds *results)
3556 {
3557     struct ofp_match match;
3558     struct cls_rule target;
3559     struct flow_stats_ds_cbdata cbdata;
3560
3561     memset(&match, 0, sizeof match);
3562     match.wildcards = htonl(OVSFW_ALL);
3563
3564     cbdata.ofproto = p;
3565     cbdata.results = results;
3566
3567     cls_rule_from_match(&match, 0, NXFF_OPENFLOW10, 0, &target);
3568     classifier_for_each_match(&p->cls, &target, CLS_INC_ALL,
3569                               flow_stats_ds_cb, &cbdata);
3570 }
3571
3572 struct aggregate_stats_cbdata {
3573     struct ofproto *ofproto;
3574     ovs_be16 out_port;
3575     uint64_t packet_count;
3576     uint64_t byte_count;
3577     uint32_t n_flows;
3578 };
3579
3580 static void
3581 aggregate_stats_cb(struct cls_rule *rule_, void *cbdata_)
3582 {
3583     struct rule *rule = rule_from_cls_rule(rule_);
3584     struct aggregate_stats_cbdata *cbdata = cbdata_;
3585     uint64_t packet_count, byte_count;
3586
3587     if (rule_is_hidden(rule) || !rule_has_out_port(rule, cbdata->out_port)) {
3588         return;
3589     }
3590
3591     query_stats(cbdata->ofproto, rule, &packet_count, &byte_count);
3592
3593     cbdata->packet_count += packet_count;
3594     cbdata->byte_count += byte_count;
3595     cbdata->n_flows++;
3596 }
3597
3598 static void
3599 query_aggregate_stats(struct ofproto *ofproto, struct cls_rule *target,
3600                       ovs_be16 out_port, uint8_t table_id,
3601                       struct ofp_aggregate_stats_reply *oasr)
3602 {
3603     struct aggregate_stats_cbdata cbdata;
3604
3605     COVERAGE_INC(ofproto_agg_request);
3606     cbdata.ofproto = ofproto;
3607     cbdata.out_port = out_port;
3608     cbdata.packet_count = 0;
3609     cbdata.byte_count = 0;
3610     cbdata.n_flows = 0;
3611     classifier_for_each_match(&ofproto->cls, target,
3612                               table_id_to_include(table_id),
3613                               aggregate_stats_cb, &cbdata);
3614
3615     oasr->flow_count = htonl(cbdata.n_flows);
3616     oasr->packet_count = htonll(cbdata.packet_count);
3617     oasr->byte_count = htonll(cbdata.byte_count);
3618     memset(oasr->pad, 0, sizeof oasr->pad);
3619 }
3620
3621 static int
3622 handle_aggregate_stats_request(struct ofconn *ofconn,
3623                                const struct ofp_stats_request *osr,
3624                                size_t arg_size)
3625 {
3626     struct ofp_aggregate_stats_request *request;
3627     struct ofp_aggregate_stats_reply *reply;
3628     struct cls_rule target;
3629     struct ofpbuf *msg;
3630
3631     if (arg_size != sizeof *request) {
3632         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3633     }
3634     request = (struct ofp_aggregate_stats_request *) osr->body;
3635
3636     cls_rule_from_match(&request->match, 0, NXFF_OPENFLOW10, 0, &target);
3637
3638     msg = start_ofp_stats_reply(osr, sizeof *reply);
3639     reply = append_ofp_stats_reply(sizeof *reply, ofconn, &msg);
3640     query_aggregate_stats(ofconn->ofproto, &target, request->out_port,
3641                           request->table_id, reply);
3642     queue_tx(msg, ofconn, ofconn->reply_counter);
3643     return 0;
3644 }
3645
3646 static int
3647 handle_nxst_aggregate(struct ofconn *ofconn, struct ofpbuf *b)
3648 {
3649     struct nx_aggregate_stats_request *request;
3650     struct ofp_aggregate_stats_reply *reply;
3651     struct cls_rule target;
3652     struct ofpbuf *buf;
3653     int error;
3654
3655     /* Dissect the message. */
3656     request = ofpbuf_try_pull(b, sizeof *request);
3657     if (!request) {
3658         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3659     }
3660     error = nx_pull_match(b, ntohs(request->match_len), 0, &target);
3661     if (error) {
3662         return error;
3663     }
3664
3665     /* Reply. */
3666     COVERAGE_INC(ofproto_flows_req);
3667     buf = start_nxstats_reply(&request->nsm, sizeof *reply);
3668     reply = ofpbuf_put_uninit(buf, sizeof *reply);
3669     query_aggregate_stats(ofconn->ofproto, &target, request->out_port,
3670                           request->table_id, reply);
3671     queue_tx(buf, ofconn, ofconn->reply_counter);
3672
3673     return 0;
3674 }
3675
3676 struct queue_stats_cbdata {
3677     struct ofconn *ofconn;
3678     struct ofport *ofport;
3679     struct ofpbuf *msg;
3680 };
3681
3682 static void
3683 put_queue_stats(struct queue_stats_cbdata *cbdata, uint32_t queue_id,
3684                 const struct netdev_queue_stats *stats)
3685 {
3686     struct ofp_queue_stats *reply;
3687
3688     reply = append_ofp_stats_reply(sizeof *reply, cbdata->ofconn, &cbdata->msg);
3689     reply->port_no = htons(cbdata->ofport->opp.port_no);
3690     memset(reply->pad, 0, sizeof reply->pad);
3691     reply->queue_id = htonl(queue_id);
3692     reply->tx_bytes = htonll(stats->tx_bytes);
3693     reply->tx_packets = htonll(stats->tx_packets);
3694     reply->tx_errors = htonll(stats->tx_errors);
3695 }
3696
3697 static void
3698 handle_queue_stats_dump_cb(uint32_t queue_id,
3699                            struct netdev_queue_stats *stats,
3700                            void *cbdata_)
3701 {
3702     struct queue_stats_cbdata *cbdata = cbdata_;
3703
3704     put_queue_stats(cbdata, queue_id, stats);
3705 }
3706
3707 static void
3708 handle_queue_stats_for_port(struct ofport *port, uint32_t queue_id,
3709                             struct queue_stats_cbdata *cbdata)
3710 {
3711     cbdata->ofport = port;
3712     if (queue_id == OFPQ_ALL) {
3713         netdev_dump_queue_stats(port->netdev,
3714                                 handle_queue_stats_dump_cb, cbdata);
3715     } else {
3716         struct netdev_queue_stats stats;
3717
3718         if (!netdev_get_queue_stats(port->netdev, queue_id, &stats)) {
3719             put_queue_stats(cbdata, queue_id, &stats);
3720         }
3721     }
3722 }
3723
3724 static int
3725 handle_queue_stats_request(struct ofconn *ofconn,
3726                            const struct ofp_stats_request *osr,
3727                            size_t arg_size)
3728 {
3729     struct ofproto *ofproto = ofconn->ofproto;
3730     struct ofp_queue_stats_request *qsr;
3731     struct queue_stats_cbdata cbdata;
3732     struct ofport *port;
3733     unsigned int port_no;
3734     uint32_t queue_id;
3735
3736     if (arg_size != sizeof *qsr) {
3737         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3738     }
3739     qsr = (struct ofp_queue_stats_request *) osr->body;
3740
3741     COVERAGE_INC(ofproto_queue_req);
3742
3743     cbdata.ofconn = ofconn;
3744     cbdata.msg = start_ofp_stats_reply(osr, 128);
3745
3746     port_no = ntohs(qsr->port_no);
3747     queue_id = ntohl(qsr->queue_id);
3748     if (port_no == OFPP_ALL) {
3749         HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
3750             handle_queue_stats_for_port(port, queue_id, &cbdata);
3751         }
3752     } else if (port_no < ofproto->max_ports) {
3753         port = get_port(ofproto, ofp_port_to_odp_port(port_no));
3754         if (port) {
3755             handle_queue_stats_for_port(port, queue_id, &cbdata);
3756         }
3757     } else {
3758         ofpbuf_delete(cbdata.msg);
3759         return ofp_mkerr(OFPET_QUEUE_OP_FAILED, OFPQOFC_BAD_PORT);
3760     }
3761     queue_tx(cbdata.msg, ofconn, ofconn->reply_counter);
3762
3763     return 0;
3764 }
3765
3766 static int
3767 handle_vendor_stats_request(struct ofconn *ofconn,
3768                             struct ofp_stats_request *osr, size_t arg_size)
3769 {
3770     struct nicira_stats_msg *nsm;
3771     struct ofpbuf b;
3772     ovs_be32 vendor;
3773
3774     if (arg_size < 4) {
3775         VLOG_WARN_RL(&rl, "truncated vendor stats request body");
3776         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3777     }
3778
3779     memcpy(&vendor, osr->body, sizeof vendor);
3780     if (vendor != htonl(NX_VENDOR_ID)) {
3781         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_VENDOR);
3782     }
3783
3784     if (ntohs(osr->header.length) < sizeof(struct nicira_stats_msg)) {
3785         VLOG_WARN_RL(&rl, "truncated Nicira stats request");
3786         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3787     }
3788
3789     nsm = (struct nicira_stats_msg *) osr;
3790     b.data = nsm;
3791     b.size = ntohs(nsm->header.length);
3792     switch (ntohl(nsm->subtype)) {
3793     case NXST_FLOW:
3794         return handle_nxst_flow(ofconn, &b);
3795
3796     case NXST_AGGREGATE:
3797         return handle_nxst_aggregate(ofconn, &b);
3798
3799     default:
3800         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE);
3801     }
3802 }
3803
3804 static int
3805 handle_stats_request(struct ofconn *ofconn, struct ofp_header *oh)
3806 {
3807     struct ofp_stats_request *osr;
3808     size_t arg_size;
3809     int error;
3810
3811     error = check_ofp_message_array(oh, OFPT_STATS_REQUEST, sizeof *osr,
3812                                     1, &arg_size);
3813     if (error) {
3814         return error;
3815     }
3816     osr = (struct ofp_stats_request *) oh;
3817
3818     switch (ntohs(osr->type)) {
3819     case OFPST_DESC:
3820         return handle_desc_stats_request(ofconn, osr);
3821
3822     case OFPST_FLOW:
3823         return handle_flow_stats_request(ofconn, osr, arg_size);
3824
3825     case OFPST_AGGREGATE:
3826         return handle_aggregate_stats_request(ofconn, osr, arg_size);
3827
3828     case OFPST_TABLE:
3829         return handle_table_stats_request(ofconn, osr);
3830
3831     case OFPST_PORT:
3832         return handle_port_stats_request(ofconn, osr, arg_size);
3833
3834     case OFPST_QUEUE:
3835         return handle_queue_stats_request(ofconn, osr, arg_size);
3836
3837     case OFPST_VENDOR:
3838         return handle_vendor_stats_request(ofconn, osr, arg_size);
3839
3840     default:
3841         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_STAT);
3842     }
3843 }
3844
3845 static long long int
3846 msec_from_nsec(uint64_t sec, uint32_t nsec)
3847 {
3848     return !sec ? 0 : sec * 1000 + nsec / 1000000;
3849 }
3850
3851 static void
3852 facet_update_time(struct ofproto *ofproto, struct facet *facet,
3853                   const struct odp_flow_stats *stats)
3854 {
3855     long long int used = msec_from_nsec(stats->used_sec, stats->used_nsec);
3856     if (used > facet->used) {
3857         facet->used = used;
3858         if (used > facet->rule->used) {
3859             facet->rule->used = used;
3860         }
3861         netflow_flow_update_time(ofproto->netflow, &facet->nf_flow, used);
3862     }
3863 }
3864
3865 /* Folds the statistics from 'stats' into the counters in 'facet'.
3866  *
3867  * Because of the meaning of a facet's counters, it only makes sense to do this
3868  * if 'stats' are not tracked in the datapath, that is, if 'stats' represents a
3869  * packet that was sent by hand or if it represents statistics that have been
3870  * cleared out of the datapath. */
3871 static void
3872 facet_update_stats(struct ofproto *ofproto, struct facet *facet,
3873                    const struct odp_flow_stats *stats)
3874 {
3875     if (stats->n_packets) {
3876         facet_update_time(ofproto, facet, stats);
3877         facet->packet_count += stats->n_packets;
3878         facet->byte_count += stats->n_bytes;
3879         netflow_flow_update_flags(&facet->nf_flow, stats->tcp_flags);
3880     }
3881 }
3882
3883 struct flow_mod {
3884     struct cls_rule cr;
3885     ovs_be64 cookie;
3886     uint16_t command;
3887     uint16_t idle_timeout;
3888     uint16_t hard_timeout;
3889     uint32_t buffer_id;
3890     uint16_t out_port;
3891     uint16_t flags;
3892     union ofp_action *actions;
3893     size_t n_actions;
3894 };
3895
3896 /* Implements OFPFC_ADD and the cases for OFPFC_MODIFY and OFPFC_MODIFY_STRICT
3897  * in which no matching flow already exists in the flow table.
3898  *
3899  * Adds the flow specified by 'ofm', which is followed by 'n_actions'
3900  * ofp_actions, to ofconn->ofproto's flow table.  Returns 0 on success or an
3901  * OpenFlow error code as encoded by ofp_mkerr() on failure.
3902  *
3903  * 'ofconn' is used to retrieve the packet buffer specified in ofm->buffer_id,
3904  * if any. */
3905 static int
3906 add_flow(struct ofconn *ofconn, struct flow_mod *fm)
3907 {
3908     struct ofproto *p = ofconn->ofproto;
3909     struct ofpbuf *packet;
3910     struct rule *rule;
3911     uint16_t in_port;
3912     int error;
3913
3914     if (fm->flags & OFPFF_CHECK_OVERLAP
3915         && classifier_rule_overlaps(&p->cls, &fm->cr)) {
3916         return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_OVERLAP);
3917     }
3918
3919     error = 0;
3920     if (fm->buffer_id != UINT32_MAX) {
3921         error = pktbuf_retrieve(ofconn->pktbuf, fm->buffer_id,
3922                                 &packet, &in_port);
3923     } else {
3924         packet = NULL;
3925         in_port = UINT16_MAX;
3926     }
3927
3928     rule = rule_create(&fm->cr, fm->actions, fm->n_actions,
3929                        fm->idle_timeout, fm->hard_timeout, fm->cookie,
3930                        fm->flags & OFPFF_SEND_FLOW_REM);
3931     rule_insert(p, rule);
3932     if (packet) {
3933         rule_execute(p, rule, in_port, packet);
3934     }
3935     return error;
3936 }
3937
3938 static struct rule *
3939 find_flow_strict(struct ofproto *p, const struct flow_mod *fm)
3940 {
3941     return rule_from_cls_rule(classifier_find_rule_exactly(&p->cls, &fm->cr));
3942 }
3943
3944 static int
3945 send_buffered_packet(struct ofconn *ofconn,
3946                      struct rule *rule, uint32_t buffer_id)
3947 {
3948     struct ofpbuf *packet;
3949     uint16_t in_port;
3950     int error;
3951
3952     if (buffer_id == UINT32_MAX) {
3953         return 0;
3954     }
3955
3956     error = pktbuf_retrieve(ofconn->pktbuf, buffer_id, &packet, &in_port);
3957     if (error) {
3958         return error;
3959     }
3960
3961     rule_execute(ofconn->ofproto, rule, in_port, packet);
3962
3963     return 0;
3964 }
3965 \f
3966 /* OFPFC_MODIFY and OFPFC_MODIFY_STRICT. */
3967
3968 struct modify_flows_cbdata {
3969     struct ofproto *ofproto;
3970     const struct flow_mod *fm;
3971     struct rule *match;
3972 };
3973
3974 static int modify_flow(struct ofproto *, const struct flow_mod *,
3975                        struct rule *);
3976 static void modify_flows_cb(struct cls_rule *, void *cbdata_);
3977
3978 /* Implements OFPFC_MODIFY.  Returns 0 on success or an OpenFlow error code as
3979  * encoded by ofp_mkerr() on failure.
3980  *
3981  * 'ofconn' is used to retrieve the packet buffer specified in ofm->buffer_id,
3982  * if any. */
3983 static int
3984 modify_flows_loose(struct ofconn *ofconn, struct flow_mod *fm)
3985 {
3986     struct modify_flows_cbdata cbdata;
3987
3988     cbdata.ofproto = ofconn->ofproto;
3989     cbdata.fm = fm;
3990     cbdata.match = NULL;
3991
3992     classifier_for_each_match(&ofconn->ofproto->cls, &fm->cr, CLS_INC_ALL,
3993                               modify_flows_cb, &cbdata);
3994     if (cbdata.match) {
3995         /* This credits the packet to whichever flow happened to happened to
3996          * match last.  That's weird.  Maybe we should do a lookup for the
3997          * flow that actually matches the packet?  Who knows. */
3998         send_buffered_packet(ofconn, cbdata.match, fm->buffer_id);
3999         return 0;
4000     } else {
4001         return add_flow(ofconn, fm);
4002     }
4003 }
4004
4005 /* Implements OFPFC_MODIFY_STRICT.  Returns 0 on success or an OpenFlow error
4006  * code as encoded by ofp_mkerr() on failure.
4007  *
4008  * 'ofconn' is used to retrieve the packet buffer specified in ofm->buffer_id,
4009  * if any. */
4010 static int
4011 modify_flow_strict(struct ofconn *ofconn, struct flow_mod *fm)
4012 {
4013     struct ofproto *p = ofconn->ofproto;
4014     struct rule *rule = find_flow_strict(p, fm);
4015     if (rule && !rule_is_hidden(rule)) {
4016         modify_flow(p, fm, rule);
4017         return send_buffered_packet(ofconn, rule, fm->buffer_id);
4018     } else {
4019         return add_flow(ofconn, fm);
4020     }
4021 }
4022
4023 /* Callback for modify_flows_loose(). */
4024 static void
4025 modify_flows_cb(struct cls_rule *rule_, void *cbdata_)
4026 {
4027     struct rule *rule = rule_from_cls_rule(rule_);
4028     struct modify_flows_cbdata *cbdata = cbdata_;
4029
4030     if (!rule_is_hidden(rule)) {
4031         cbdata->match = rule;
4032         modify_flow(cbdata->ofproto, cbdata->fm, rule);
4033     }
4034 }
4035
4036 /* Implements core of OFPFC_MODIFY and OFPFC_MODIFY_STRICT where 'rule' has
4037  * been identified as a flow in 'p''s flow table to be modified, by changing
4038  * the rule's actions to match those in 'ofm' (which is followed by 'n_actions'
4039  * ofp_action[] structures). */
4040 static int
4041 modify_flow(struct ofproto *p, const struct flow_mod *fm, struct rule *rule)
4042 {
4043     size_t actions_len = fm->n_actions * sizeof *rule->actions;
4044
4045     rule->flow_cookie = fm->cookie;
4046
4047     /* If the actions are the same, do nothing. */
4048     if (fm->n_actions == rule->n_actions
4049         && (!fm->n_actions
4050             || !memcmp(fm->actions, rule->actions, actions_len))) {
4051         return 0;
4052     }
4053
4054     /* Replace actions. */
4055     free(rule->actions);
4056     rule->actions = fm->n_actions ? xmemdup(fm->actions, actions_len) : NULL;
4057     rule->n_actions = fm->n_actions;
4058
4059     p->need_revalidate = true;
4060
4061     return 0;
4062 }
4063 \f
4064 /* OFPFC_DELETE implementation. */
4065
4066 struct delete_flows_cbdata {
4067     struct ofproto *ofproto;
4068     ovs_be16 out_port;
4069 };
4070
4071 static void delete_flows_cb(struct cls_rule *, void *cbdata_);
4072 static void delete_flow(struct ofproto *, struct rule *, ovs_be16 out_port);
4073
4074 /* Implements OFPFC_DELETE. */
4075 static void
4076 delete_flows_loose(struct ofproto *p, const struct flow_mod *fm)
4077 {
4078     struct delete_flows_cbdata cbdata;
4079
4080     cbdata.ofproto = p;
4081     cbdata.out_port = htons(fm->out_port);
4082
4083     classifier_for_each_match(&p->cls, &fm->cr, CLS_INC_ALL,
4084                               delete_flows_cb, &cbdata);
4085 }
4086
4087 /* Implements OFPFC_DELETE_STRICT. */
4088 static void
4089 delete_flow_strict(struct ofproto *p, struct flow_mod *fm)
4090 {
4091     struct rule *rule = find_flow_strict(p, fm);
4092     if (rule) {
4093         delete_flow(p, rule, htons(fm->out_port));
4094     }
4095 }
4096
4097 /* Callback for delete_flows_loose(). */
4098 static void
4099 delete_flows_cb(struct cls_rule *rule_, void *cbdata_)
4100 {
4101     struct rule *rule = rule_from_cls_rule(rule_);
4102     struct delete_flows_cbdata *cbdata = cbdata_;
4103
4104     delete_flow(cbdata->ofproto, rule, cbdata->out_port);
4105 }
4106
4107 /* Implements core of OFPFC_DELETE and OFPFC_DELETE_STRICT where 'rule' has
4108  * been identified as a flow to delete from 'p''s flow table, by deleting the
4109  * flow and sending out a OFPT_FLOW_REMOVED message to any interested
4110  * controller.
4111  *
4112  * Will not delete 'rule' if it is hidden.  Will delete 'rule' only if
4113  * 'out_port' is htons(OFPP_NONE) or if 'rule' actually outputs to the
4114  * specified 'out_port'. */
4115 static void
4116 delete_flow(struct ofproto *p, struct rule *rule, ovs_be16 out_port)
4117 {
4118     if (rule_is_hidden(rule)) {
4119         return;
4120     }
4121
4122     if (out_port != htons(OFPP_NONE) && !rule_has_out_port(rule, out_port)) {
4123         return;
4124     }
4125
4126     rule_send_removed(p, rule, OFPRR_DELETE);
4127     rule_remove(p, rule);
4128 }
4129 \f
4130 static int
4131 flow_mod_core(struct ofconn *ofconn, struct flow_mod *fm)
4132 {
4133     struct ofproto *p = ofconn->ofproto;
4134     int error;
4135
4136     error = reject_slave_controller(ofconn, "flow_mod");
4137     if (error) {
4138         return error;
4139     }
4140
4141     error = validate_actions(fm->actions, fm->n_actions,
4142                              &fm->cr.flow, p->max_ports);
4143     if (error) {
4144         return error;
4145     }
4146
4147     /* We do not support the emergency flow cache.  It will hopefully
4148      * get dropped from OpenFlow in the near future. */
4149     if (fm->flags & OFPFF_EMERG) {
4150         /* There isn't a good fit for an error code, so just state that the
4151          * flow table is full. */
4152         return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_ALL_TABLES_FULL);
4153     }
4154
4155     switch (fm->command) {
4156     case OFPFC_ADD:
4157         return add_flow(ofconn, fm);
4158
4159     case OFPFC_MODIFY:
4160         return modify_flows_loose(ofconn, fm);
4161
4162     case OFPFC_MODIFY_STRICT:
4163         return modify_flow_strict(ofconn, fm);
4164
4165     case OFPFC_DELETE:
4166         delete_flows_loose(p, fm);
4167         return 0;
4168
4169     case OFPFC_DELETE_STRICT:
4170         delete_flow_strict(p, fm);
4171         return 0;
4172
4173     default:
4174         return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_BAD_COMMAND);
4175     }
4176 }
4177
4178 static int
4179 handle_ofpt_flow_mod(struct ofconn *ofconn, struct ofp_header *oh)
4180 {
4181     struct ofp_match orig_match;
4182     struct ofp_flow_mod *ofm;
4183     struct flow_mod fm;
4184     struct ofpbuf b;
4185     int error;
4186
4187     b.data = oh;
4188     b.size = ntohs(oh->length);
4189
4190     /* Dissect the message. */
4191     ofm = ofpbuf_try_pull(&b, sizeof *ofm);
4192     if (!ofm) {
4193         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
4194     }
4195     error = ofputil_pull_actions(&b, b.size, &fm.actions, &fm.n_actions);
4196     if (error) {
4197         return error;
4198     }
4199
4200     /* Normalize ofm->match.  If normalization actually changes anything, then
4201      * log the differences. */
4202     ofm->match.pad1[0] = ofm->match.pad2[0] = 0;
4203     orig_match = ofm->match;
4204     normalize_match(&ofm->match);
4205     if (memcmp(&ofm->match, &orig_match, sizeof orig_match)) {
4206         static struct vlog_rate_limit normal_rl = VLOG_RATE_LIMIT_INIT(1, 1);
4207         if (!VLOG_DROP_INFO(&normal_rl)) {
4208             char *old = ofp_match_to_literal_string(&orig_match);
4209             char *new = ofp_match_to_literal_string(&ofm->match);
4210             VLOG_INFO("%s: normalization changed ofp_match, details:",
4211                       rconn_get_name(ofconn->rconn));
4212             VLOG_INFO(" pre: %s", old);
4213             VLOG_INFO("post: %s", new);
4214             free(old);
4215             free(new);
4216         }
4217     }
4218
4219     /* Translate the message. */
4220     cls_rule_from_match(&ofm->match, ntohs(ofm->priority), ofconn->flow_format,
4221                         ofm->cookie, &fm.cr);
4222     fm.cookie = ofm->cookie;
4223     fm.command = ntohs(ofm->command);
4224     fm.idle_timeout = ntohs(ofm->idle_timeout);
4225     fm.hard_timeout = ntohs(ofm->hard_timeout);
4226     fm.buffer_id = ntohl(ofm->buffer_id);
4227     fm.out_port = ntohs(ofm->out_port);
4228     fm.flags = ntohs(ofm->flags);
4229
4230     /* Execute the command. */
4231     return flow_mod_core(ofconn, &fm);
4232 }
4233
4234 static int
4235 handle_nxt_flow_mod(struct ofconn *ofconn, struct ofp_header *oh)
4236 {
4237     struct nx_flow_mod *nfm;
4238     struct flow_mod fm;
4239     struct ofpbuf b;
4240     int error;
4241
4242     b.data = oh;
4243     b.size = ntohs(oh->length);
4244
4245     /* Dissect the message. */
4246     nfm = ofpbuf_try_pull(&b, sizeof *nfm);
4247     if (!nfm) {
4248         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
4249     }
4250     error = nx_pull_match(&b, ntohs(nfm->match_len), ntohs(nfm->priority),
4251                           &fm.cr);
4252     if (error) {
4253         return error;
4254     }
4255     error = ofputil_pull_actions(&b, b.size, &fm.actions, &fm.n_actions);
4256     if (error) {
4257         return error;
4258     }
4259
4260     /* Translate the message. */
4261     fm.cookie = nfm->cookie;
4262     fm.command = ntohs(nfm->command);
4263     fm.idle_timeout = ntohs(nfm->idle_timeout);
4264     fm.hard_timeout = ntohs(nfm->hard_timeout);
4265     fm.buffer_id = ntohl(nfm->buffer_id);
4266     fm.out_port = ntohs(nfm->out_port);
4267     fm.flags = ntohs(nfm->flags);
4268
4269     /* Execute the command. */
4270     return flow_mod_core(ofconn, &fm);
4271 }
4272
4273 static int
4274 handle_tun_id_from_cookie(struct ofconn *ofconn, struct nxt_tun_id_cookie *msg)
4275 {
4276     int error;
4277
4278     error = check_ofp_message(&msg->header, OFPT_VENDOR, sizeof *msg);
4279     if (error) {
4280         return error;
4281     }
4282
4283     ofconn->flow_format = msg->set ? NXFF_TUN_ID_FROM_COOKIE : NXFF_OPENFLOW10;
4284     return 0;
4285 }
4286
4287 static int
4288 handle_role_request(struct ofconn *ofconn, struct nicira_header *msg)
4289 {
4290     struct nx_role_request *nrr;
4291     struct nx_role_request *reply;
4292     struct ofpbuf *buf;
4293     uint32_t role;
4294
4295     if (ntohs(msg->header.length) != sizeof *nrr) {
4296         VLOG_WARN_RL(&rl, "received role request of length %u (expected %zu)",
4297                      ntohs(msg->header.length), sizeof *nrr);
4298         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
4299     }
4300     nrr = (struct nx_role_request *) msg;
4301
4302     if (ofconn->type != OFCONN_PRIMARY) {
4303         VLOG_WARN_RL(&rl, "ignoring role request on non-controller "
4304                      "connection");
4305         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_EPERM);
4306     }
4307
4308     role = ntohl(nrr->role);
4309     if (role != NX_ROLE_OTHER && role != NX_ROLE_MASTER
4310         && role != NX_ROLE_SLAVE) {
4311         VLOG_WARN_RL(&rl, "received request for unknown role %"PRIu32, role);
4312
4313         /* There's no good error code for this. */
4314         return ofp_mkerr(OFPET_BAD_REQUEST, -1);
4315     }
4316
4317     if (role == NX_ROLE_MASTER) {
4318         struct ofconn *other;
4319
4320         HMAP_FOR_EACH (other, hmap_node, &ofconn->ofproto->controllers) {
4321             if (other->role == NX_ROLE_MASTER) {
4322                 other->role = NX_ROLE_SLAVE;
4323             }
4324         }
4325     }
4326     ofconn->role = role;
4327
4328     reply = make_nxmsg_xid(sizeof *reply, NXT_ROLE_REPLY, msg->header.xid,
4329                            &buf);
4330     reply->role = htonl(role);
4331     queue_tx(buf, ofconn, ofconn->reply_counter);
4332
4333     return 0;
4334 }
4335
4336 static int
4337 handle_nxt_set_flow_format(struct ofconn *ofconn,
4338                            struct nxt_set_flow_format *msg)
4339 {
4340     uint32_t format;
4341     int error;
4342
4343     error = check_ofp_message(&msg->header, OFPT_VENDOR, sizeof *msg);
4344     if (error) {
4345         return error;
4346     }
4347
4348     format = ntohl(msg->format);
4349     if (format == NXFF_OPENFLOW10
4350         || format == NXFF_TUN_ID_FROM_COOKIE
4351         || format == NXFF_NXM) {
4352         ofconn->flow_format = format;
4353         return 0;
4354     } else {
4355         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_EPERM);
4356     }
4357 }
4358
4359 static int
4360 handle_vendor(struct ofconn *ofconn, void *msg)
4361 {
4362     struct ofproto *p = ofconn->ofproto;
4363     struct ofp_vendor_header *ovh = msg;
4364     struct nicira_header *nh;
4365
4366     if (ntohs(ovh->header.length) < sizeof(struct ofp_vendor_header)) {
4367         VLOG_WARN_RL(&rl, "received vendor message of length %u "
4368                           "(expected at least %zu)",
4369                    ntohs(ovh->header.length), sizeof(struct ofp_vendor_header));
4370         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
4371     }
4372     if (ovh->vendor != htonl(NX_VENDOR_ID)) {
4373         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_VENDOR);
4374     }
4375     if (ntohs(ovh->header.length) < sizeof(struct nicira_header)) {
4376         VLOG_WARN_RL(&rl, "received Nicira vendor message of length %u "
4377                           "(expected at least %zu)",
4378                      ntohs(ovh->header.length), sizeof(struct nicira_header));
4379         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
4380     }
4381
4382     nh = msg;
4383     switch (ntohl(nh->subtype)) {
4384     case NXT_STATUS_REQUEST:
4385         return switch_status_handle_request(p->switch_status, ofconn->rconn,
4386                                             msg);
4387
4388     case NXT_TUN_ID_FROM_COOKIE:
4389         return handle_tun_id_from_cookie(ofconn, msg);
4390
4391     case NXT_ROLE_REQUEST:
4392         return handle_role_request(ofconn, msg);
4393
4394     case NXT_SET_FLOW_FORMAT:
4395         return handle_nxt_set_flow_format(ofconn, msg);
4396
4397     case NXT_FLOW_MOD:
4398         return handle_nxt_flow_mod(ofconn, &ovh->header);
4399     }
4400
4401     return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE);
4402 }
4403
4404 static int
4405 handle_barrier_request(struct ofconn *ofconn, struct ofp_header *oh)
4406 {
4407     struct ofp_header *ob;
4408     struct ofpbuf *buf;
4409
4410     /* Currently, everything executes synchronously, so we can just
4411      * immediately send the barrier reply. */
4412     ob = make_openflow_xid(sizeof *ob, OFPT_BARRIER_REPLY, oh->xid, &buf);
4413     queue_tx(buf, ofconn, ofconn->reply_counter);
4414     return 0;
4415 }
4416
4417 static void
4418 handle_openflow(struct ofconn *ofconn, struct ofpbuf *ofp_msg)
4419 {
4420     struct ofp_header *oh = ofp_msg->data;
4421     int error;
4422
4423     COVERAGE_INC(ofproto_recv_openflow);
4424     switch (oh->type) {
4425     case OFPT_ECHO_REQUEST:
4426         error = handle_echo_request(ofconn, oh);
4427         break;
4428
4429     case OFPT_ECHO_REPLY:
4430         error = 0;
4431         break;
4432
4433     case OFPT_FEATURES_REQUEST:
4434         error = handle_features_request(ofconn, oh);
4435         break;
4436
4437     case OFPT_GET_CONFIG_REQUEST:
4438         error = handle_get_config_request(ofconn, oh);
4439         break;
4440
4441     case OFPT_SET_CONFIG:
4442         error = handle_set_config(ofconn, ofp_msg->data);
4443         break;
4444
4445     case OFPT_PACKET_OUT:
4446         error = handle_packet_out(ofconn, ofp_msg->data);
4447         break;
4448
4449     case OFPT_PORT_MOD:
4450         error = handle_port_mod(ofconn, oh);
4451         break;
4452
4453     case OFPT_FLOW_MOD:
4454         error = handle_ofpt_flow_mod(ofconn, ofp_msg->data);
4455         break;
4456
4457     case OFPT_STATS_REQUEST:
4458         error = handle_stats_request(ofconn, oh);
4459         break;
4460
4461     case OFPT_VENDOR:
4462         error = handle_vendor(ofconn, ofp_msg->data);
4463         break;
4464
4465     case OFPT_BARRIER_REQUEST:
4466         error = handle_barrier_request(ofconn, oh);
4467         break;
4468
4469     default:
4470         if (VLOG_IS_WARN_ENABLED()) {
4471             char *s = ofp_to_string(oh, ntohs(oh->length), 2);
4472             VLOG_DBG_RL(&rl, "OpenFlow message ignored: %s", s);
4473             free(s);
4474         }
4475         error = ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_TYPE);
4476         break;
4477     }
4478
4479     if (error) {
4480         send_error_oh(ofconn, ofp_msg->data, error);
4481     }
4482 }
4483 \f
4484 static void
4485 handle_odp_miss_msg(struct ofproto *p, struct ofpbuf *packet)
4486 {
4487     struct odp_msg *msg = packet->data;
4488     struct ofpbuf payload;
4489     struct facet *facet;
4490     struct flow flow;
4491
4492     payload.data = msg + 1;
4493     payload.size = msg->length - sizeof *msg;
4494     flow_extract(&payload, msg->arg, msg->port, &flow);
4495
4496     /* Check with in-band control to see if this packet should be sent
4497      * to the local port regardless of the flow table. */
4498     if (in_band_msg_in_hook(p->in_band, &flow, &payload)) {
4499         union odp_action action;
4500
4501         memset(&action, 0, sizeof(action));
4502         action.output.type = ODPAT_OUTPUT;
4503         action.output.port = ODPP_LOCAL;
4504         dpif_execute(p->dpif, &action, 1, &payload);
4505     }
4506
4507     facet = facet_lookup_valid(p, &flow);
4508     if (!facet) {
4509         struct rule *rule = rule_lookup(p, &flow);
4510         if (!rule) {
4511             /* Don't send a packet-in if OFPPC_NO_PACKET_IN asserted. */
4512             struct ofport *port = get_port(p, msg->port);
4513             if (port) {
4514                 if (port->opp.config & OFPPC_NO_PACKET_IN) {
4515                     COVERAGE_INC(ofproto_no_packet_in);
4516                     /* XXX install 'drop' flow entry */
4517                     ofpbuf_delete(packet);
4518                     return;
4519                 }
4520             } else {
4521                 VLOG_WARN_RL(&rl, "packet-in on unknown port %"PRIu16,
4522                              msg->port);
4523             }
4524
4525             COVERAGE_INC(ofproto_packet_in);
4526             send_packet_in(p, packet);
4527             return;
4528         }
4529
4530         facet = facet_create(p, rule, &flow, packet);
4531     } else if (!facet->may_install) {
4532         /* The facet is not installable, that is, we need to process every
4533          * packet, so process the current packet's actions into 'facet'. */
4534         facet_make_actions(p, facet, packet);
4535     }
4536
4537     if (facet->rule->cr.priority == FAIL_OPEN_PRIORITY) {
4538         /*
4539          * Extra-special case for fail-open mode.
4540          *
4541          * We are in fail-open mode and the packet matched the fail-open rule,
4542          * but we are connected to a controller too.  We should send the packet
4543          * up to the controller in the hope that it will try to set up a flow
4544          * and thereby allow us to exit fail-open.
4545          *
4546          * See the top-level comment in fail-open.c for more information.
4547          */
4548         send_packet_in(p, ofpbuf_clone_with_headroom(packet,
4549                                                      DPIF_RECV_MSG_PADDING));
4550     }
4551
4552     ofpbuf_pull(packet, sizeof *msg);
4553     facet_execute(p, facet, packet);
4554     facet_install(p, facet, false);
4555 }
4556
4557 static void
4558 handle_odp_msg(struct ofproto *p, struct ofpbuf *packet)
4559 {
4560     struct odp_msg *msg = packet->data;
4561
4562     switch (msg->type) {
4563     case _ODPL_ACTION_NR:
4564         COVERAGE_INC(ofproto_ctlr_action);
4565         send_packet_in(p, packet);
4566         break;
4567
4568     case _ODPL_SFLOW_NR:
4569         if (p->sflow) {
4570             ofproto_sflow_received(p->sflow, msg);
4571         }
4572         ofpbuf_delete(packet);
4573         break;
4574
4575     case _ODPL_MISS_NR:
4576         handle_odp_miss_msg(p, packet);
4577         break;
4578
4579     default:
4580         VLOG_WARN_RL(&rl, "received ODP message of unexpected type %"PRIu32,
4581                      msg->type);
4582         break;
4583     }
4584 }
4585 \f
4586 /* Flow expiration. */
4587
4588 struct expire_cbdata {
4589     struct ofproto *ofproto;
4590     int dp_max_idle;
4591 };
4592
4593 static int ofproto_dp_max_idle(const struct ofproto *);
4594 static void ofproto_update_used(struct ofproto *);
4595 static void rule_expire(struct cls_rule *, void *cbdata);
4596 static void ofproto_expire_facets(struct ofproto *, int dp_max_idle);
4597
4598 /* This function is called periodically by ofproto_run().  Its job is to
4599  * collect updates for the flows that have been installed into the datapath,
4600  * most importantly when they last were used, and then use that information to
4601  * expire flows that have not been used recently.
4602  *
4603  * Returns the number of milliseconds after which it should be called again. */
4604 static int
4605 ofproto_expire(struct ofproto *ofproto)
4606 {
4607     struct expire_cbdata cbdata;
4608
4609     /* Update 'used' for each flow in the datapath. */
4610     ofproto_update_used(ofproto);
4611
4612     /* Expire facets that have been idle too long. */
4613     cbdata.dp_max_idle = ofproto_dp_max_idle(ofproto);
4614     ofproto_expire_facets(ofproto, cbdata.dp_max_idle);
4615
4616     /* Expire OpenFlow flows whose idle_timeout or hard_timeout has passed. */
4617     cbdata.ofproto = ofproto;
4618     classifier_for_each(&ofproto->cls, CLS_INC_ALL, rule_expire, &cbdata);
4619
4620     /* Let the hook know that we're at a stable point: all outstanding data
4621      * in existing flows has been accounted to the account_cb.  Thus, the
4622      * hook can now reasonably do operations that depend on having accurate
4623      * flow volume accounting (currently, that's just bond rebalancing). */
4624     if (ofproto->ofhooks->account_checkpoint_cb) {
4625         ofproto->ofhooks->account_checkpoint_cb(ofproto->aux);
4626     }
4627
4628     return MIN(cbdata.dp_max_idle, 1000);
4629 }
4630
4631 /* Update 'used' member of installed facets. */
4632 static void
4633 ofproto_update_used(struct ofproto *p)
4634 {
4635     struct odp_flow *flows;
4636     size_t n_flows;
4637     size_t i;
4638     int error;
4639
4640     error = dpif_flow_list_all(p->dpif, &flows, &n_flows);
4641     if (error) {
4642         return;
4643     }
4644
4645     for (i = 0; i < n_flows; i++) {
4646         struct odp_flow *f = &flows[i];
4647         struct facet *facet;
4648         struct flow flow;
4649
4650         odp_flow_key_to_flow(&f->key, &flow);
4651         facet = facet_find(p, &flow);
4652
4653         if (facet && facet->installed) {
4654             facet_update_time(p, facet, &f->stats);
4655             facet_account(p, facet, f->stats.n_bytes);
4656         } else {
4657             /* There's a flow in the datapath that we know nothing about.
4658              * Delete it. */
4659             COVERAGE_INC(ofproto_unexpected_rule);
4660             dpif_flow_del(p->dpif, f);
4661         }
4662
4663     }
4664     free(flows);
4665 }
4666
4667 /* Calculates and returns the number of milliseconds of idle time after which
4668  * facets should expire from the datapath and we should fold their statistics
4669  * into their parent rules in userspace. */
4670 static int
4671 ofproto_dp_max_idle(const struct ofproto *ofproto)
4672 {
4673     /*
4674      * Idle time histogram.
4675      *
4676      * Most of the time a switch has a relatively small number of facets.  When
4677      * this is the case we might as well keep statistics for all of them in
4678      * userspace and to cache them in the kernel datapath for performance as
4679      * well.
4680      *
4681      * As the number of facets increases, the memory required to maintain
4682      * statistics about them in userspace and in the kernel becomes
4683      * significant.  However, with a large number of facets it is likely that
4684      * only a few of them are "heavy hitters" that consume a large amount of
4685      * bandwidth.  At this point, only heavy hitters are worth caching in the
4686      * kernel and maintaining in userspaces; other facets we can discard.
4687      *
4688      * The technique used to compute the idle time is to build a histogram with
4689      * N_BUCKETS buckets whose width is BUCKET_WIDTH msecs each.  Each facet
4690      * that is installed in the kernel gets dropped in the appropriate bucket.
4691      * After the histogram has been built, we compute the cutoff so that only
4692      * the most-recently-used 1% of facets (but at least 1000 flows) are kept
4693      * cached.  At least the most-recently-used bucket of facets is kept, so
4694      * actually an arbitrary number of facets can be kept in any given
4695      * expiration run (though the next run will delete most of those unless
4696      * they receive additional data).
4697      *
4698      * This requires a second pass through the facets, in addition to the pass
4699      * made by ofproto_update_used(), because the former function never looks
4700      * at uninstallable facets.
4701      */
4702     enum { BUCKET_WIDTH = ROUND_UP(100, TIME_UPDATE_INTERVAL) };
4703     enum { N_BUCKETS = 5000 / BUCKET_WIDTH };
4704     int buckets[N_BUCKETS] = { 0 };
4705     struct facet *facet;
4706     int total, bucket;
4707     long long int now;
4708     int i;
4709
4710     total = hmap_count(&ofproto->facets);
4711     if (total <= 1000) {
4712         return N_BUCKETS * BUCKET_WIDTH;
4713     }
4714
4715     /* Build histogram. */
4716     now = time_msec();
4717     HMAP_FOR_EACH (facet, hmap_node, &ofproto->facets) {
4718         long long int idle = now - facet->used;
4719         int bucket = (idle <= 0 ? 0
4720                       : idle >= BUCKET_WIDTH * N_BUCKETS ? N_BUCKETS - 1
4721                       : (unsigned int) idle / BUCKET_WIDTH);
4722         buckets[bucket]++;
4723     }
4724
4725     /* Find the first bucket whose flows should be expired. */
4726     for (bucket = 0; bucket < N_BUCKETS; bucket++) {
4727         if (buckets[bucket]) {
4728             int subtotal = 0;
4729             do {
4730                 subtotal += buckets[bucket++];
4731             } while (bucket < N_BUCKETS && subtotal < MAX(1000, total / 100));
4732             break;
4733         }
4734     }
4735
4736     if (VLOG_IS_DBG_ENABLED()) {
4737         struct ds s;
4738
4739         ds_init(&s);
4740         ds_put_cstr(&s, "keep");
4741         for (i = 0; i < N_BUCKETS; i++) {
4742             if (i == bucket) {
4743                 ds_put_cstr(&s, ", drop");
4744             }
4745             if (buckets[i]) {
4746                 ds_put_format(&s, " %d:%d", i * BUCKET_WIDTH, buckets[i]);
4747             }
4748         }
4749         VLOG_INFO("%s: %s (msec:count)",
4750                   dpif_name(ofproto->dpif), ds_cstr(&s));
4751         ds_destroy(&s);
4752     }
4753
4754     return bucket * BUCKET_WIDTH;
4755 }
4756
4757 static void
4758 facet_active_timeout(struct ofproto *ofproto, struct facet *facet)
4759 {
4760     if (ofproto->netflow && !facet_is_controller_flow(facet) &&
4761         netflow_active_timeout_expired(ofproto->netflow, &facet->nf_flow)) {
4762         struct ofexpired expired;
4763         struct odp_flow odp_flow;
4764
4765         /* Get updated flow stats.
4766          *
4767          * XXX We could avoid this call entirely if (1) ofproto_update_used()
4768          * updated TCP flags and (2) the dpif_flow_list_all() in
4769          * ofproto_update_used() zeroed TCP flags. */
4770         memset(&odp_flow, 0, sizeof odp_flow);
4771         if (facet->installed) {
4772             odp_flow_key_from_flow(&odp_flow.key, &facet->flow);
4773             odp_flow.flags = ODPFF_ZERO_TCP_FLAGS;
4774             dpif_flow_get(ofproto->dpif, &odp_flow);
4775
4776             if (odp_flow.stats.n_packets) {
4777                 facet_update_time(ofproto, facet, &odp_flow.stats);
4778                 netflow_flow_update_flags(&facet->nf_flow,
4779                                           odp_flow.stats.tcp_flags);
4780             }
4781         }
4782
4783         expired.flow = facet->flow;
4784         expired.packet_count = facet->packet_count +
4785                                odp_flow.stats.n_packets;
4786         expired.byte_count = facet->byte_count + odp_flow.stats.n_bytes;
4787         expired.used = facet->used;
4788
4789         netflow_expire(ofproto->netflow, &facet->nf_flow, &expired);
4790     }
4791 }
4792
4793 static void
4794 ofproto_expire_facets(struct ofproto *ofproto, int dp_max_idle)
4795 {
4796     long long int cutoff = time_msec() - dp_max_idle;
4797     struct facet *facet, *next_facet;
4798
4799     HMAP_FOR_EACH_SAFE (facet, next_facet, hmap_node, &ofproto->facets) {
4800         facet_active_timeout(ofproto, facet);
4801         if (facet->used < cutoff) {
4802             facet_remove(ofproto, facet);
4803         }
4804     }
4805 }
4806
4807 /* If 'cls_rule' is an OpenFlow rule, that has expired according to OpenFlow
4808  * rules, then delete it entirely.
4809  *
4810  * (This is a callback function for classifier_for_each().) */
4811 static void
4812 rule_expire(struct cls_rule *cls_rule, void *cbdata_)
4813 {
4814     struct expire_cbdata *cbdata = cbdata_;
4815     struct rule *rule = rule_from_cls_rule(cls_rule);
4816     struct facet *facet, *next_facet;
4817     long long int now;
4818     uint8_t reason;
4819
4820     /* Has 'rule' expired? */
4821     now = time_msec();
4822     if (rule->hard_timeout
4823         && now > rule->created + rule->hard_timeout * 1000) {
4824         reason = OFPRR_HARD_TIMEOUT;
4825     } else if (rule->idle_timeout && list_is_empty(&rule->facets)
4826                && now >rule->used + rule->idle_timeout * 1000) {
4827         reason = OFPRR_IDLE_TIMEOUT;
4828     } else {
4829         return;
4830     }
4831
4832     COVERAGE_INC(ofproto_expired);
4833
4834     /* Update stats.  (This is a no-op if the rule expired due to an idle
4835      * timeout, because that only happens when the rule has no facets left.) */
4836     LIST_FOR_EACH_SAFE (facet, next_facet, list_node, &rule->facets) {
4837         facet_remove(cbdata->ofproto, facet);
4838     }
4839
4840     /* Get rid of the rule. */
4841     if (!rule_is_hidden(rule)) {
4842         rule_send_removed(cbdata->ofproto, rule, reason);
4843     }
4844     rule_remove(cbdata->ofproto, rule);
4845 }
4846 \f
4847 static struct ofpbuf *
4848 compose_ofp_flow_removed(struct ofconn *ofconn, const struct rule *rule,
4849                          uint8_t reason)
4850 {
4851     struct ofp_flow_removed *ofr;
4852     struct ofpbuf *buf;
4853
4854     ofr = make_openflow(sizeof *ofr, OFPT_FLOW_REMOVED, &buf);
4855     flow_to_match(&rule->cr.flow, rule->cr.wc.wildcards, ofconn->flow_format,
4856                   &ofr->match);
4857     ofr->cookie = rule->flow_cookie;
4858     ofr->priority = htons(rule->cr.priority);
4859     ofr->reason = reason;
4860     calc_flow_duration(rule->created, &ofr->duration_sec, &ofr->duration_nsec);
4861     ofr->idle_timeout = htons(rule->idle_timeout);
4862     ofr->packet_count = htonll(rule->packet_count);
4863     ofr->byte_count = htonll(rule->byte_count);
4864
4865     return buf;
4866 }
4867
4868 static struct ofpbuf *
4869 compose_nx_flow_removed(const struct rule *rule, uint8_t reason)
4870 {
4871     struct nx_flow_removed *nfr;
4872     struct ofpbuf *buf;
4873     int match_len;
4874
4875     nfr = make_nxmsg(sizeof *nfr, NXT_FLOW_REMOVED, &buf);
4876
4877     match_len = nx_put_match(buf, &rule->cr);
4878
4879     nfr->cookie = rule->flow_cookie;
4880     nfr->priority = htons(rule->cr.priority);
4881     nfr->reason = reason;
4882     calc_flow_duration(rule->created, &nfr->duration_sec, &nfr->duration_nsec);
4883     nfr->idle_timeout = htons(rule->idle_timeout);
4884     nfr->match_len = htons(match_len);
4885     nfr->packet_count = htonll(rule->packet_count);
4886     nfr->byte_count = htonll(rule->byte_count);
4887
4888     return buf;
4889 }
4890
4891 static void
4892 rule_send_removed(struct ofproto *p, struct rule *rule, uint8_t reason)
4893 {
4894     struct ofconn *ofconn;
4895
4896     if (!rule->send_flow_removed) {
4897         return;
4898     }
4899
4900     LIST_FOR_EACH (ofconn, node, &p->all_conns) {
4901         struct ofpbuf *msg;
4902
4903         if (!rconn_is_connected(ofconn->rconn)
4904             || !ofconn_receives_async_msgs(ofconn)) {
4905             continue;
4906         }
4907
4908         msg = (ofconn->flow_format == NXFF_NXM
4909                ? compose_nx_flow_removed(rule, reason)
4910                : compose_ofp_flow_removed(ofconn, rule, reason));
4911
4912         /* Account flow expirations under ofconn->reply_counter, the counter
4913          * for replies to OpenFlow requests.  That works because preventing
4914          * OpenFlow requests from being processed also prevents new flows from
4915          * being added (and expiring).  (It also prevents processing OpenFlow
4916          * requests that would not add new flows, so it is imperfect.) */
4917         queue_tx(msg, ofconn, ofconn->reply_counter);
4918     }
4919 }
4920
4921 /* pinsched callback for sending 'packet' on 'ofconn'. */
4922 static void
4923 do_send_packet_in(struct ofpbuf *packet, void *ofconn_)
4924 {
4925     struct ofconn *ofconn = ofconn_;
4926
4927     rconn_send_with_limit(ofconn->rconn, packet,
4928                           ofconn->packet_in_counter, 100);
4929 }
4930
4931 /* Takes 'packet', which has been converted with do_convert_to_packet_in(), and
4932  * finalizes its content for sending on 'ofconn', and passes it to 'ofconn''s
4933  * packet scheduler for sending.
4934  *
4935  * 'max_len' specifies the maximum number of bytes of the packet to send on
4936  * 'ofconn' (INT_MAX specifies no limit).
4937  *
4938  * If 'clone' is true, the caller retains ownership of 'packet'.  Otherwise,
4939  * ownership is transferred to this function. */
4940 static void
4941 schedule_packet_in(struct ofconn *ofconn, struct ofpbuf *packet, int max_len,
4942                    bool clone)
4943 {
4944     struct ofproto *ofproto = ofconn->ofproto;
4945     struct ofp_packet_in *opi = packet->data;
4946     uint16_t in_port = ofp_port_to_odp_port(ntohs(opi->in_port));
4947     int send_len, trim_size;
4948     uint32_t buffer_id;
4949
4950     /* Get buffer. */
4951     if (opi->reason == OFPR_ACTION) {
4952         buffer_id = UINT32_MAX;
4953     } else if (ofproto->fail_open && fail_open_is_active(ofproto->fail_open)) {
4954         buffer_id = pktbuf_get_null();
4955     } else if (!ofconn->pktbuf) {
4956         buffer_id = UINT32_MAX;
4957     } else {
4958         struct ofpbuf payload;
4959         payload.data = opi->data;
4960         payload.size = packet->size - offsetof(struct ofp_packet_in, data);
4961         buffer_id = pktbuf_save(ofconn->pktbuf, &payload, in_port);
4962     }
4963
4964     /* Figure out how much of the packet to send. */
4965     send_len = ntohs(opi->total_len);
4966     if (buffer_id != UINT32_MAX) {
4967         send_len = MIN(send_len, ofconn->miss_send_len);
4968     }
4969     send_len = MIN(send_len, max_len);
4970
4971     /* Adjust packet length and clone if necessary. */
4972     trim_size = offsetof(struct ofp_packet_in, data) + send_len;
4973     if (clone) {
4974         packet = ofpbuf_clone_data(packet->data, trim_size);
4975         opi = packet->data;
4976     } else {
4977         packet->size = trim_size;
4978     }
4979
4980     /* Update packet headers. */
4981     opi->buffer_id = htonl(buffer_id);
4982     update_openflow_length(packet);
4983
4984     /* Hand over to packet scheduler.  It might immediately call into
4985      * do_send_packet_in() or it might buffer it for a while (until a later
4986      * call to pinsched_run()). */
4987     pinsched_send(ofconn->schedulers[opi->reason], in_port,
4988                   packet, do_send_packet_in, ofconn);
4989 }
4990
4991 /* Replace struct odp_msg header in 'packet' by equivalent struct
4992  * ofp_packet_in.  The odp_msg must have sufficient headroom to do so (e.g. as
4993  * returned by dpif_recv()).
4994  *
4995  * The conversion is not complete: the caller still needs to trim any unneeded
4996  * payload off the end of the buffer, set the length in the OpenFlow header,
4997  * and set buffer_id.  Those require us to know the controller settings and so
4998  * must be done on a per-controller basis.
4999  *
5000  * Returns the maximum number of bytes of the packet that should be sent to
5001  * the controller (INT_MAX if no limit). */
5002 static int
5003 do_convert_to_packet_in(struct ofpbuf *packet)
5004 {
5005     struct odp_msg *msg = packet->data;
5006     struct ofp_packet_in *opi;
5007     uint8_t reason;
5008     uint16_t total_len;
5009     uint16_t in_port;
5010     int max_len;
5011
5012     /* Extract relevant header fields */
5013     if (msg->type == _ODPL_ACTION_NR) {
5014         reason = OFPR_ACTION;
5015         max_len = msg->arg;
5016     } else {
5017         reason = OFPR_NO_MATCH;
5018         max_len = INT_MAX;
5019     }
5020     total_len = msg->length - sizeof *msg;
5021     in_port = odp_port_to_ofp_port(msg->port);
5022
5023     /* Repurpose packet buffer by overwriting header. */
5024     ofpbuf_pull(packet, sizeof(struct odp_msg));
5025     opi = ofpbuf_push_zeros(packet, offsetof(struct ofp_packet_in, data));
5026     opi->header.version = OFP_VERSION;
5027     opi->header.type = OFPT_PACKET_IN;
5028     opi->total_len = htons(total_len);
5029     opi->in_port = htons(in_port);
5030     opi->reason = reason;
5031
5032     return max_len;
5033 }
5034
5035 /* Given 'packet' containing an odp_msg of type _ODPL_ACTION_NR or
5036  * _ODPL_MISS_NR, sends an OFPT_PACKET_IN message to each OpenFlow controller
5037  * as necessary according to their individual configurations.
5038  *
5039  * 'packet' must have sufficient headroom to convert it into a struct
5040  * ofp_packet_in (e.g. as returned by dpif_recv()).
5041  *
5042  * Takes ownership of 'packet'. */
5043 static void
5044 send_packet_in(struct ofproto *ofproto, struct ofpbuf *packet)
5045 {
5046     struct ofconn *ofconn, *prev;
5047     int max_len;
5048
5049     max_len = do_convert_to_packet_in(packet);
5050
5051     prev = NULL;
5052     LIST_FOR_EACH (ofconn, node, &ofproto->all_conns) {
5053         if (ofconn_receives_async_msgs(ofconn)) {
5054             if (prev) {
5055                 schedule_packet_in(prev, packet, max_len, true);
5056             }
5057             prev = ofconn;
5058         }
5059     }
5060     if (prev) {
5061         schedule_packet_in(prev, packet, max_len, false);
5062     } else {
5063         ofpbuf_delete(packet);
5064     }
5065 }
5066
5067 static uint64_t
5068 pick_datapath_id(const struct ofproto *ofproto)
5069 {
5070     const struct ofport *port;
5071
5072     port = get_port(ofproto, ODPP_LOCAL);
5073     if (port) {
5074         uint8_t ea[ETH_ADDR_LEN];
5075         int error;
5076
5077         error = netdev_get_etheraddr(port->netdev, ea);
5078         if (!error) {
5079             return eth_addr_to_uint64(ea);
5080         }
5081         VLOG_WARN("could not get MAC address for %s (%s)",
5082                   netdev_get_name(port->netdev), strerror(error));
5083     }
5084     return ofproto->fallback_dpid;
5085 }
5086
5087 static uint64_t
5088 pick_fallback_dpid(void)
5089 {
5090     uint8_t ea[ETH_ADDR_LEN];
5091     eth_addr_nicira_random(ea);
5092     return eth_addr_to_uint64(ea);
5093 }
5094 \f
5095 static bool
5096 default_normal_ofhook_cb(const struct flow *flow, const struct ofpbuf *packet,
5097                          struct odp_actions *actions, tag_type *tags,
5098                          uint16_t *nf_output_iface, void *ofproto_)
5099 {
5100     struct ofproto *ofproto = ofproto_;
5101     int out_port;
5102
5103     /* Drop frames for reserved multicast addresses. */
5104     if (eth_addr_is_reserved(flow->dl_dst)) {
5105         return true;
5106     }
5107
5108     /* Learn source MAC (but don't try to learn from revalidation). */
5109     if (packet != NULL) {
5110         tag_type rev_tag = mac_learning_learn(ofproto->ml, flow->dl_src,
5111                                               0, flow->in_port,
5112                                               GRAT_ARP_LOCK_NONE);
5113         if (rev_tag) {
5114             /* The log messages here could actually be useful in debugging,
5115              * so keep the rate limit relatively high. */
5116             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30, 300);
5117             VLOG_DBG_RL(&rl, "learned that "ETH_ADDR_FMT" is on port %"PRIu16,
5118                         ETH_ADDR_ARGS(flow->dl_src), flow->in_port);
5119             ofproto_revalidate(ofproto, rev_tag);
5120         }
5121     }
5122
5123     /* Determine output port. */
5124     out_port = mac_learning_lookup_tag(ofproto->ml, flow->dl_dst, 0, tags,
5125                                        NULL);
5126     if (out_port < 0) {
5127         flood_packets(ofproto, flow->in_port, OFPPC_NO_FLOOD,
5128                       nf_output_iface, actions);
5129     } else if (out_port != flow->in_port) {
5130         odp_actions_add(actions, ODPAT_OUTPUT)->output.port = out_port;
5131         *nf_output_iface = out_port;
5132     } else {
5133         /* Drop. */
5134     }
5135
5136     return true;
5137 }
5138
5139 static const struct ofhooks default_ofhooks = {
5140     default_normal_ofhook_cb,
5141     NULL,
5142     NULL
5143 };