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