ofproto: Avoid clearing NetFlow stats twice upon rule creation.
[cascardo/ovs.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 /* Adds a flow to the OpenFlow flow table in 'p' that matches 'cls_rule' and
1302  * performs the 'n_actions' actions in 'actions'.  The new flow will not
1303  * timeout.
1304  *
1305  * If cls_rule->priority is in the range of priorities supported by OpenFlow
1306  * (0...65535, inclusive) then the flow will be visible to OpenFlow
1307  * controllers; otherwise, it will be hidden.
1308  *
1309  * The caller retains ownership of 'cls_rule' and 'actions'. */
1310 void
1311 ofproto_add_flow(struct ofproto *p, const struct cls_rule *cls_rule,
1312                  const union ofp_action *actions, size_t n_actions)
1313 {
1314     struct rule *rule;
1315     rule = rule_create(p, NULL, actions, n_actions, 0, 0, 0, false);
1316     rule->cr = *cls_rule;
1317     rule_insert(p, rule, NULL, 0);
1318 }
1319
1320 void
1321 ofproto_delete_flow(struct ofproto *ofproto, const struct cls_rule *target)
1322 {
1323     struct rule *rule;
1324
1325     rule = rule_from_cls_rule(classifier_find_rule_exactly(&ofproto->cls,
1326                                                            target));
1327     if (rule) {
1328         rule_remove(ofproto, rule);
1329     }
1330 }
1331
1332 static void
1333 destroy_rule(struct cls_rule *rule_, void *ofproto_)
1334 {
1335     struct rule *rule = rule_from_cls_rule(rule_);
1336     struct ofproto *ofproto = ofproto_;
1337
1338     /* Mark the flow as not installed, even though it might really be
1339      * installed, so that rule_remove() doesn't bother trying to uninstall it.
1340      * There is no point in uninstalling it individually since we are about to
1341      * blow away all the flows with dpif_flow_flush(). */
1342     rule->installed = false;
1343
1344     rule_remove(ofproto, rule);
1345 }
1346
1347 void
1348 ofproto_flush_flows(struct ofproto *ofproto)
1349 {
1350     COVERAGE_INC(ofproto_flush);
1351     classifier_for_each(&ofproto->cls, CLS_INC_ALL, destroy_rule, ofproto);
1352     dpif_flow_flush(ofproto->dpif);
1353     if (ofproto->in_band) {
1354         in_band_flushed(ofproto->in_band);
1355     }
1356     if (ofproto->fail_open) {
1357         fail_open_flushed(ofproto->fail_open);
1358     }
1359 }
1360 \f
1361 static void
1362 reinit_ports(struct ofproto *p)
1363 {
1364     struct svec devnames;
1365     struct ofport *ofport;
1366     struct odp_port *odp_ports;
1367     size_t n_odp_ports;
1368     size_t i;
1369
1370     COVERAGE_INC(ofproto_reinit_ports);
1371
1372     svec_init(&devnames);
1373     HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
1374         svec_add (&devnames, (char *) ofport->opp.name);
1375     }
1376     dpif_port_list(p->dpif, &odp_ports, &n_odp_ports);
1377     for (i = 0; i < n_odp_ports; i++) {
1378         svec_add (&devnames, odp_ports[i].devname);
1379     }
1380     free(odp_ports);
1381
1382     svec_sort_unique(&devnames);
1383     for (i = 0; i < devnames.n; i++) {
1384         update_port(p, devnames.names[i]);
1385     }
1386     svec_destroy(&devnames);
1387 }
1388
1389 static struct ofport *
1390 make_ofport(const struct odp_port *odp_port)
1391 {
1392     struct netdev_options netdev_options;
1393     enum netdev_flags flags;
1394     struct ofport *ofport;
1395     struct netdev *netdev;
1396     int error;
1397
1398     memset(&netdev_options, 0, sizeof netdev_options);
1399     netdev_options.name = odp_port->devname;
1400     netdev_options.ethertype = NETDEV_ETH_TYPE_NONE;
1401
1402     error = netdev_open(&netdev_options, &netdev);
1403     if (error) {
1404         VLOG_WARN_RL(&rl, "ignoring port %s (%"PRIu16") because netdev %s "
1405                      "cannot be opened (%s)",
1406                      odp_port->devname, odp_port->port,
1407                      odp_port->devname, strerror(error));
1408         return NULL;
1409     }
1410
1411     ofport = xmalloc(sizeof *ofport);
1412     ofport->netdev = netdev;
1413     ofport->odp_port = odp_port->port;
1414     ofport->opp.port_no = odp_port_to_ofp_port(odp_port->port);
1415     netdev_get_etheraddr(netdev, ofport->opp.hw_addr);
1416     memcpy(ofport->opp.name, odp_port->devname,
1417            MIN(sizeof ofport->opp.name, sizeof odp_port->devname));
1418     ofport->opp.name[sizeof ofport->opp.name - 1] = '\0';
1419
1420     netdev_get_flags(netdev, &flags);
1421     ofport->opp.config = flags & NETDEV_UP ? 0 : OFPPC_PORT_DOWN;
1422
1423     ofport->opp.state = netdev_get_carrier(netdev) ? 0 : OFPPS_LINK_DOWN;
1424
1425     netdev_get_features(netdev,
1426                         &ofport->opp.curr, &ofport->opp.advertised,
1427                         &ofport->opp.supported, &ofport->opp.peer);
1428     return ofport;
1429 }
1430
1431 static bool
1432 ofport_conflicts(const struct ofproto *p, const struct odp_port *odp_port)
1433 {
1434     if (get_port(p, odp_port->port)) {
1435         VLOG_WARN_RL(&rl, "ignoring duplicate port %"PRIu16" in datapath",
1436                      odp_port->port);
1437         return true;
1438     } else if (shash_find(&p->port_by_name, odp_port->devname)) {
1439         VLOG_WARN_RL(&rl, "ignoring duplicate device %s in datapath",
1440                      odp_port->devname);
1441         return true;
1442     } else {
1443         return false;
1444     }
1445 }
1446
1447 static int
1448 ofport_equal(const struct ofport *a_, const struct ofport *b_)
1449 {
1450     const struct ofp_phy_port *a = &a_->opp;
1451     const struct ofp_phy_port *b = &b_->opp;
1452
1453     BUILD_ASSERT_DECL(sizeof *a == 48); /* Detect ofp_phy_port changes. */
1454     return (a->port_no == b->port_no
1455             && !memcmp(a->hw_addr, b->hw_addr, sizeof a->hw_addr)
1456             && !strcmp((char *) a->name, (char *) b->name)
1457             && a->state == b->state
1458             && a->config == b->config
1459             && a->curr == b->curr
1460             && a->advertised == b->advertised
1461             && a->supported == b->supported
1462             && a->peer == b->peer);
1463 }
1464
1465 static void
1466 send_port_status(struct ofproto *p, const struct ofport *ofport,
1467                  uint8_t reason)
1468 {
1469     /* XXX Should limit the number of queued port status change messages. */
1470     struct ofconn *ofconn;
1471     LIST_FOR_EACH (ofconn, node, &p->all_conns) {
1472         struct ofp_port_status *ops;
1473         struct ofpbuf *b;
1474
1475         if (!ofconn_receives_async_msgs(ofconn)) {
1476             continue;
1477         }
1478
1479         ops = make_openflow_xid(sizeof *ops, OFPT_PORT_STATUS, 0, &b);
1480         ops->reason = reason;
1481         ops->desc = ofport->opp;
1482         hton_ofp_phy_port(&ops->desc);
1483         queue_tx(b, ofconn, NULL);
1484     }
1485 }
1486
1487 static void
1488 ofport_install(struct ofproto *p, struct ofport *ofport)
1489 {
1490     const char *netdev_name = (const char *) ofport->opp.name;
1491
1492     netdev_monitor_add(p->netdev_monitor, ofport->netdev);
1493     hmap_insert(&p->ports, &ofport->hmap_node, hash_int(ofport->odp_port, 0));
1494     shash_add(&p->port_by_name, netdev_name, ofport);
1495     if (p->sflow) {
1496         ofproto_sflow_add_port(p->sflow, ofport->odp_port, netdev_name);
1497     }
1498 }
1499
1500 static void
1501 ofport_remove(struct ofproto *p, struct ofport *ofport)
1502 {
1503     netdev_monitor_remove(p->netdev_monitor, ofport->netdev);
1504     hmap_remove(&p->ports, &ofport->hmap_node);
1505     shash_delete(&p->port_by_name,
1506                  shash_find(&p->port_by_name, (char *) ofport->opp.name));
1507     if (p->sflow) {
1508         ofproto_sflow_del_port(p->sflow, ofport->odp_port);
1509     }
1510 }
1511
1512 static void
1513 ofport_free(struct ofport *ofport)
1514 {
1515     if (ofport) {
1516         netdev_close(ofport->netdev);
1517         free(ofport);
1518     }
1519 }
1520
1521 static struct ofport *
1522 get_port(const struct ofproto *ofproto, uint16_t odp_port)
1523 {
1524     struct ofport *port;
1525
1526     HMAP_FOR_EACH_IN_BUCKET (port, hmap_node,
1527                              hash_int(odp_port, 0), &ofproto->ports) {
1528         if (port->odp_port == odp_port) {
1529             return port;
1530         }
1531     }
1532     return NULL;
1533 }
1534
1535 static void
1536 update_port(struct ofproto *p, const char *devname)
1537 {
1538     struct odp_port odp_port;
1539     struct ofport *old_ofport;
1540     struct ofport *new_ofport;
1541     int error;
1542
1543     COVERAGE_INC(ofproto_update_port);
1544
1545     /* Query the datapath for port information. */
1546     error = dpif_port_query_by_name(p->dpif, devname, &odp_port);
1547
1548     /* Find the old ofport. */
1549     old_ofport = shash_find_data(&p->port_by_name, devname);
1550     if (!error) {
1551         if (!old_ofport) {
1552             /* There's no port named 'devname' but there might be a port with
1553              * the same port number.  This could happen if a port is deleted
1554              * and then a new one added in its place very quickly, or if a port
1555              * is renamed.  In the former case we want to send an OFPPR_DELETE
1556              * and an OFPPR_ADD, and in the latter case we want to send a
1557              * single OFPPR_MODIFY.  We can distinguish the cases by comparing
1558              * the old port's ifindex against the new port, or perhaps less
1559              * reliably but more portably by comparing the old port's MAC
1560              * against the new port's MAC.  However, this code isn't that smart
1561              * and always sends an OFPPR_MODIFY (XXX). */
1562             old_ofport = get_port(p, odp_port.port);
1563         }
1564     } else if (error != ENOENT && error != ENODEV) {
1565         VLOG_WARN_RL(&rl, "dpif_port_query_by_name returned unexpected error "
1566                      "%s", strerror(error));
1567         return;
1568     }
1569
1570     /* Create a new ofport. */
1571     new_ofport = !error ? make_ofport(&odp_port) : NULL;
1572
1573     /* Eliminate a few pathological cases. */
1574     if (!old_ofport && !new_ofport) {
1575         return;
1576     } else if (old_ofport && new_ofport) {
1577         /* Most of the 'config' bits are OpenFlow soft state, but
1578          * OFPPC_PORT_DOWN is maintained the kernel.  So transfer the OpenFlow
1579          * bits from old_ofport.  (make_ofport() only sets OFPPC_PORT_DOWN and
1580          * leaves the other bits 0.)  */
1581         new_ofport->opp.config |= old_ofport->opp.config & ~OFPPC_PORT_DOWN;
1582
1583         if (ofport_equal(old_ofport, new_ofport)) {
1584             /* False alarm--no change. */
1585             ofport_free(new_ofport);
1586             return;
1587         }
1588     }
1589
1590     /* Now deal with the normal cases. */
1591     if (old_ofport) {
1592         ofport_remove(p, old_ofport);
1593     }
1594     if (new_ofport) {
1595         ofport_install(p, new_ofport);
1596     }
1597     send_port_status(p, new_ofport ? new_ofport : old_ofport,
1598                      (!old_ofport ? OFPPR_ADD
1599                       : !new_ofport ? OFPPR_DELETE
1600                       : OFPPR_MODIFY));
1601     ofport_free(old_ofport);
1602 }
1603
1604 static int
1605 init_ports(struct ofproto *p)
1606 {
1607     struct odp_port *ports;
1608     size_t n_ports;
1609     size_t i;
1610     int error;
1611
1612     error = dpif_port_list(p->dpif, &ports, &n_ports);
1613     if (error) {
1614         return error;
1615     }
1616
1617     for (i = 0; i < n_ports; i++) {
1618         const struct odp_port *odp_port = &ports[i];
1619         if (!ofport_conflicts(p, odp_port)) {
1620             struct ofport *ofport = make_ofport(odp_port);
1621             if (ofport) {
1622                 ofport_install(p, ofport);
1623             }
1624         }
1625     }
1626     free(ports);
1627     return 0;
1628 }
1629 \f
1630 static struct ofconn *
1631 ofconn_create(struct ofproto *p, struct rconn *rconn, enum ofconn_type type)
1632 {
1633     struct ofconn *ofconn = xzalloc(sizeof *ofconn);
1634     ofconn->ofproto = p;
1635     list_push_back(&p->all_conns, &ofconn->node);
1636     ofconn->rconn = rconn;
1637     ofconn->type = type;
1638     ofconn->flow_format = NXFF_OPENFLOW10;
1639     ofconn->role = NX_ROLE_OTHER;
1640     ofconn->packet_in_counter = rconn_packet_counter_create ();
1641     ofconn->pktbuf = NULL;
1642     ofconn->miss_send_len = 0;
1643     ofconn->reply_counter = rconn_packet_counter_create ();
1644     return ofconn;
1645 }
1646
1647 static void
1648 ofconn_destroy(struct ofconn *ofconn)
1649 {
1650     if (ofconn->type == OFCONN_PRIMARY) {
1651         hmap_remove(&ofconn->ofproto->controllers, &ofconn->hmap_node);
1652     }
1653     discovery_destroy(ofconn->discovery);
1654
1655     list_remove(&ofconn->node);
1656     switch_status_unregister(ofconn->ss);
1657     rconn_destroy(ofconn->rconn);
1658     rconn_packet_counter_destroy(ofconn->packet_in_counter);
1659     rconn_packet_counter_destroy(ofconn->reply_counter);
1660     pktbuf_destroy(ofconn->pktbuf);
1661     free(ofconn);
1662 }
1663
1664 static void
1665 ofconn_run(struct ofconn *ofconn)
1666 {
1667     struct ofproto *p = ofconn->ofproto;
1668     int iteration;
1669     size_t i;
1670
1671     if (ofconn->discovery) {
1672         char *controller_name;
1673         if (rconn_is_connectivity_questionable(ofconn->rconn)) {
1674             discovery_question_connectivity(ofconn->discovery);
1675         }
1676         if (discovery_run(ofconn->discovery, &controller_name)) {
1677             if (controller_name) {
1678                 char *ofconn_name = ofconn_make_name(p, controller_name);
1679                 rconn_connect(ofconn->rconn, controller_name, ofconn_name);
1680                 free(ofconn_name);
1681             } else {
1682                 rconn_disconnect(ofconn->rconn);
1683             }
1684         }
1685     }
1686
1687     for (i = 0; i < N_SCHEDULERS; i++) {
1688         pinsched_run(ofconn->schedulers[i], do_send_packet_in, ofconn);
1689     }
1690
1691     rconn_run(ofconn->rconn);
1692
1693     if (rconn_packet_counter_read (ofconn->reply_counter) < OFCONN_REPLY_MAX) {
1694         /* Limit the number of iterations to prevent other tasks from
1695          * starving. */
1696         for (iteration = 0; iteration < 50; iteration++) {
1697             struct ofpbuf *of_msg = rconn_recv(ofconn->rconn);
1698             if (!of_msg) {
1699                 break;
1700             }
1701             if (p->fail_open) {
1702                 fail_open_maybe_recover(p->fail_open);
1703             }
1704             handle_openflow(ofconn, of_msg);
1705             ofpbuf_delete(of_msg);
1706         }
1707     }
1708
1709     if (!ofconn->discovery && !rconn_is_alive(ofconn->rconn)) {
1710         ofconn_destroy(ofconn);
1711     }
1712 }
1713
1714 static void
1715 ofconn_wait(struct ofconn *ofconn)
1716 {
1717     int i;
1718
1719     if (ofconn->discovery) {
1720         discovery_wait(ofconn->discovery);
1721     }
1722     for (i = 0; i < N_SCHEDULERS; i++) {
1723         pinsched_wait(ofconn->schedulers[i]);
1724     }
1725     rconn_run_wait(ofconn->rconn);
1726     if (rconn_packet_counter_read (ofconn->reply_counter) < OFCONN_REPLY_MAX) {
1727         rconn_recv_wait(ofconn->rconn);
1728     } else {
1729         COVERAGE_INC(ofproto_ofconn_stuck);
1730     }
1731 }
1732
1733 /* Returns true if 'ofconn' should receive asynchronous messages. */
1734 static bool
1735 ofconn_receives_async_msgs(const struct ofconn *ofconn)
1736 {
1737     if (ofconn->type == OFCONN_PRIMARY) {
1738         /* Primary controllers always get asynchronous messages unless they
1739          * have configured themselves as "slaves".  */
1740         return ofconn->role != NX_ROLE_SLAVE;
1741     } else {
1742         /* Service connections don't get asynchronous messages unless they have
1743          * explicitly asked for them by setting a nonzero miss send length. */
1744         return ofconn->miss_send_len > 0;
1745     }
1746 }
1747
1748 /* Returns a human-readable name for an OpenFlow connection between 'ofproto'
1749  * and 'target', suitable for use in log messages for identifying the
1750  * connection.
1751  *
1752  * The name is dynamically allocated.  The caller should free it (with free())
1753  * when it is no longer needed. */
1754 static char *
1755 ofconn_make_name(const struct ofproto *ofproto, const char *target)
1756 {
1757     return xasprintf("%s<->%s", dpif_base_name(ofproto->dpif), target);
1758 }
1759
1760 static void
1761 ofconn_set_rate_limit(struct ofconn *ofconn, int rate, int burst)
1762 {
1763     int i;
1764
1765     for (i = 0; i < N_SCHEDULERS; i++) {
1766         struct pinsched **s = &ofconn->schedulers[i];
1767
1768         if (rate > 0) {
1769             if (!*s) {
1770                 *s = pinsched_create(rate, burst,
1771                                      ofconn->ofproto->switch_status);
1772             } else {
1773                 pinsched_set_limits(*s, rate, burst);
1774             }
1775         } else {
1776             pinsched_destroy(*s);
1777             *s = NULL;
1778         }
1779     }
1780 }
1781 \f
1782 static void
1783 ofservice_reconfigure(struct ofservice *ofservice,
1784                       const struct ofproto_controller *c)
1785 {
1786     ofservice->probe_interval = c->probe_interval;
1787     ofservice->rate_limit = c->rate_limit;
1788     ofservice->burst_limit = c->burst_limit;
1789 }
1790
1791 /* Creates a new ofservice in 'ofproto'.  Returns 0 if successful, otherwise a
1792  * positive errno value. */
1793 static int
1794 ofservice_create(struct ofproto *ofproto, const struct ofproto_controller *c)
1795 {
1796     struct ofservice *ofservice;
1797     struct pvconn *pvconn;
1798     int error;
1799
1800     error = pvconn_open(c->target, &pvconn);
1801     if (error) {
1802         return error;
1803     }
1804
1805     ofservice = xzalloc(sizeof *ofservice);
1806     hmap_insert(&ofproto->services, &ofservice->node,
1807                 hash_string(c->target, 0));
1808     ofservice->pvconn = pvconn;
1809
1810     ofservice_reconfigure(ofservice, c);
1811
1812     return 0;
1813 }
1814
1815 static void
1816 ofservice_destroy(struct ofproto *ofproto, struct ofservice *ofservice)
1817 {
1818     hmap_remove(&ofproto->services, &ofservice->node);
1819     pvconn_close(ofservice->pvconn);
1820     free(ofservice);
1821 }
1822
1823 /* Finds and returns the ofservice within 'ofproto' that has the given
1824  * 'target', or a null pointer if none exists. */
1825 static struct ofservice *
1826 ofservice_lookup(struct ofproto *ofproto, const char *target)
1827 {
1828     struct ofservice *ofservice;
1829
1830     HMAP_FOR_EACH_WITH_HASH (ofservice, node, hash_string(target, 0),
1831                              &ofproto->services) {
1832         if (!strcmp(pvconn_get_name(ofservice->pvconn), target)) {
1833             return ofservice;
1834         }
1835     }
1836     return NULL;
1837 }
1838 \f
1839 /* Caller is responsible for initializing the 'cr' member of the returned
1840  * rule. */
1841 static struct rule *
1842 rule_create(struct ofproto *ofproto, struct rule *super,
1843             const union ofp_action *actions, size_t n_actions,
1844             uint16_t idle_timeout, uint16_t hard_timeout,
1845             ovs_be64 flow_cookie, bool send_flow_removed)
1846 {
1847     struct rule *rule = xzalloc(sizeof *rule);
1848     rule->idle_timeout = idle_timeout;
1849     rule->hard_timeout = hard_timeout;
1850     rule->flow_cookie = flow_cookie;
1851     rule->used = rule->created = time_msec();
1852     rule->send_flow_removed = send_flow_removed;
1853     rule->super = super;
1854     if (super) {
1855         list_push_back(&super->list, &rule->list);
1856     } else {
1857         list_init(&rule->list);
1858     }
1859     if (n_actions > 0) {
1860         rule->n_actions = n_actions;
1861         rule->actions = xmemdup(actions, n_actions * sizeof *actions);
1862     }
1863     netflow_flow_init(&rule->nf_flow);
1864     netflow_flow_update_time(ofproto->netflow, &rule->nf_flow, rule->created);
1865
1866     return rule;
1867 }
1868
1869 static struct rule *
1870 rule_from_cls_rule(const struct cls_rule *cls_rule)
1871 {
1872     return cls_rule ? CONTAINER_OF(cls_rule, struct rule, cr) : NULL;
1873 }
1874
1875 static void
1876 rule_free(struct rule *rule)
1877 {
1878     free(rule->actions);
1879     free(rule->odp_actions);
1880     free(rule);
1881 }
1882
1883 /* Destroys 'rule'.  If 'rule' is a subrule, also removes it from its
1884  * super-rule's list of subrules.  If 'rule' is a super-rule, also iterates
1885  * through all of its subrules and revalidates them, destroying any that no
1886  * longer has a super-rule (which is probably all of them).
1887  *
1888  * Before calling this function, the caller must make have removed 'rule' from
1889  * the classifier.  If 'rule' is an exact-match rule, the caller is also
1890  * responsible for ensuring that it has been uninstalled from the datapath. */
1891 static void
1892 rule_destroy(struct ofproto *ofproto, struct rule *rule)
1893 {
1894     if (!rule->super) {
1895         struct rule *subrule, *next;
1896         LIST_FOR_EACH_SAFE (subrule, next, list, &rule->list) {
1897             revalidate_rule(ofproto, subrule);
1898         }
1899     } else {
1900         list_remove(&rule->list);
1901     }
1902     rule_free(rule);
1903 }
1904
1905 static bool
1906 rule_has_out_port(const struct rule *rule, ovs_be16 out_port)
1907 {
1908     const union ofp_action *oa;
1909     struct actions_iterator i;
1910
1911     if (out_port == htons(OFPP_NONE)) {
1912         return true;
1913     }
1914     for (oa = actions_first(&i, rule->actions, rule->n_actions); oa;
1915          oa = actions_next(&i)) {
1916         if (action_outputs_to_port(oa, out_port)) {
1917             return true;
1918         }
1919     }
1920     return false;
1921 }
1922
1923 /* Executes, within 'ofproto', the 'n_actions' actions in 'actions' on
1924  * 'packet', which arrived on 'in_port'.
1925  *
1926  * Takes ownership of 'packet'. */
1927 static bool
1928 execute_odp_actions(struct ofproto *ofproto, uint16_t in_port,
1929                     const union odp_action *actions, size_t n_actions,
1930                     struct ofpbuf *packet)
1931 {
1932     if (n_actions == 1 && actions[0].type == ODPAT_CONTROLLER) {
1933         /* As an optimization, avoid a round-trip from userspace to kernel to
1934          * userspace.  This also avoids possibly filling up kernel packet
1935          * buffers along the way. */
1936         struct odp_msg *msg;
1937
1938         msg = ofpbuf_push_uninit(packet, sizeof *msg);
1939         msg->type = _ODPL_ACTION_NR;
1940         msg->length = sizeof(struct odp_msg) + packet->size;
1941         msg->port = in_port;
1942         msg->reserved = 0;
1943         msg->arg = actions[0].controller.arg;
1944
1945         send_packet_in(ofproto, packet);
1946
1947         return true;
1948     } else {
1949         int error;
1950
1951         error = dpif_execute(ofproto->dpif, actions, n_actions, packet);
1952         ofpbuf_delete(packet);
1953         return !error;
1954     }
1955 }
1956
1957 /* Executes the actions indicated by 'rule' on 'packet', which is in flow
1958  * 'flow' and is considered to have arrived on ODP port 'in_port'.  'packet'
1959  * must have at least sizeof(struct ofp_packet_in) bytes of headroom.
1960  *
1961  * The flow that 'packet' actually contains does not need to actually match
1962  * 'rule'; the actions in 'rule' will be applied to it either way.  Likewise,
1963  * the packet and byte counters for 'rule' will be credited for the packet sent
1964  * out whether or not the packet actually matches 'rule'.
1965  *
1966  * If 'rule' is an exact-match rule and 'flow' actually equals the rule's flow,
1967  * the caller must already have accurately composed ODP actions for it given
1968  * 'packet' using rule_make_actions().  If 'rule' is a wildcard rule, or if
1969  * 'rule' is an exact-match rule but 'flow' is not the rule's flow, then this
1970  * function will compose a set of ODP actions based on 'rule''s OpenFlow
1971  * actions and apply them to 'packet'.
1972  *
1973  * Takes ownership of 'packet'. */
1974 static void
1975 rule_execute(struct ofproto *ofproto, struct rule *rule,
1976              struct ofpbuf *packet, const struct flow *flow)
1977 {
1978     const union odp_action *actions;
1979     struct odp_flow_stats stats;
1980     size_t n_actions;
1981     struct odp_actions a;
1982
1983     assert(ofpbuf_headroom(packet) >= sizeof(struct ofp_packet_in));
1984
1985     /* Grab or compose the ODP actions.
1986      *
1987      * The special case for an exact-match 'rule' where 'flow' is not the
1988      * rule's flow is important to avoid, e.g., sending a packet out its input
1989      * port simply because the ODP actions were composed for the wrong
1990      * scenario. */
1991     if (rule->cr.wc.wildcards || !flow_equal(flow, &rule->cr.flow)) {
1992         struct rule *super = rule->super ? rule->super : rule;
1993         if (xlate_actions(super->actions, super->n_actions, flow, ofproto,
1994                           packet, &a, NULL, 0, NULL)) {
1995             ofpbuf_delete(packet);
1996             return;
1997         }
1998         actions = a.actions;
1999         n_actions = a.n_actions;
2000     } else {
2001         actions = rule->odp_actions;
2002         n_actions = rule->n_odp_actions;
2003     }
2004
2005     /* Execute the ODP actions. */
2006     flow_extract_stats(flow, packet, &stats);
2007     if (execute_odp_actions(ofproto, flow->in_port,
2008                             actions, n_actions, packet)) {
2009         update_stats(ofproto, rule, &stats);
2010         rule->used = time_msec();
2011         netflow_flow_update_time(ofproto->netflow, &rule->nf_flow, rule->used);
2012     }
2013 }
2014
2015 /* Inserts 'rule' into 'p''s flow table.
2016  *
2017  * If 'packet' is nonnull, takes ownership of 'packet', executes 'rule''s
2018  * actions on it and credits the statistics for sending the packet to 'rule'.
2019  * 'packet' must have at least sizeof(struct ofp_packet_in) bytes of
2020  * headroom. */
2021 static void
2022 rule_insert(struct ofproto *p, struct rule *rule, struct ofpbuf *packet,
2023             uint16_t in_port)
2024 {
2025     struct rule *displaced_rule;
2026
2027     /* Insert the rule in the classifier. */
2028     displaced_rule = rule_from_cls_rule(classifier_insert(&p->cls, &rule->cr));
2029     if (!rule->cr.wc.wildcards) {
2030         rule_make_actions(p, rule, packet);
2031     }
2032
2033     /* Send the packet and credit it to the rule. */
2034     if (packet) {
2035         struct flow flow;
2036         flow_extract(packet, 0, in_port, &flow);
2037         rule_execute(p, rule, packet, &flow);
2038     }
2039
2040     /* Install the rule in the datapath only after sending the packet, to
2041      * avoid packet reordering.  */
2042     if (rule->cr.wc.wildcards) {
2043         COVERAGE_INC(ofproto_add_wc_flow);
2044         p->need_revalidate = true;
2045     } else {
2046         rule_install(p, rule, displaced_rule);
2047     }
2048
2049     /* Free the rule that was displaced, if any. */
2050     if (displaced_rule) {
2051         rule_destroy(p, displaced_rule);
2052     }
2053 }
2054
2055 static struct rule *
2056 rule_create_subrule(struct ofproto *ofproto, struct rule *rule,
2057                     const struct flow *flow)
2058 {
2059     struct rule *subrule = rule_create(ofproto, rule, NULL, 0,
2060                                        rule->idle_timeout, rule->hard_timeout,
2061                                        0, false);
2062     COVERAGE_INC(ofproto_subrule_create);
2063     cls_rule_init_exact(flow, (rule->cr.priority <= UINT16_MAX ? UINT16_MAX
2064                                : rule->cr.priority),
2065                         &subrule->cr);
2066
2067     if (classifier_insert(&ofproto->cls, &subrule->cr)) {
2068         /* Can't happen,  */
2069         NOT_REACHED();
2070     }
2071
2072     return subrule;
2073 }
2074
2075 /* Remove 'rule' from 'ofproto' and free up the associated memory:
2076  *
2077  *   - If 'rule' was installed in the datapath, uninstalls it and updates
2078  *     'rule''s statistics (or its super-rule's statistics, if it is a
2079  *     subrule), via rule_uninstall().
2080  *
2081  *   - Removes 'rule' from the classifier.
2082  *
2083  *   - If 'rule' is a super-rule that has subrules, revalidates (and possibly
2084  *     uninstalls and destroys) its subrules, via rule_destroy().
2085  */
2086 static void
2087 rule_remove(struct ofproto *ofproto, struct rule *rule)
2088 {
2089     if (rule->cr.wc.wildcards) {
2090         COVERAGE_INC(ofproto_del_wc_flow);
2091         ofproto->need_revalidate = true;
2092     } else {
2093         rule_uninstall(ofproto, rule);
2094     }
2095     classifier_remove(&ofproto->cls, &rule->cr);
2096     rule_destroy(ofproto, rule);
2097 }
2098
2099 /* Returns true if the actions changed, false otherwise. */
2100 static bool
2101 rule_make_actions(struct ofproto *p, struct rule *rule,
2102                   const struct ofpbuf *packet)
2103 {
2104     const struct rule *super;
2105     struct odp_actions a;
2106     size_t actions_len;
2107
2108     assert(!rule->cr.wc.wildcards);
2109
2110     super = rule->super ? rule->super : rule;
2111     xlate_actions(super->actions, super->n_actions, &rule->cr.flow, p,
2112                   packet, &a, &rule->tags, &rule->may_install,
2113                   &rule->nf_flow.output_iface);
2114
2115     actions_len = a.n_actions * sizeof *a.actions;
2116     if (rule->n_odp_actions != a.n_actions
2117         || memcmp(rule->odp_actions, a.actions, actions_len)) {
2118         COVERAGE_INC(ofproto_odp_unchanged);
2119         free(rule->odp_actions);
2120         rule->n_odp_actions = a.n_actions;
2121         rule->odp_actions = xmemdup(a.actions, actions_len);
2122         return true;
2123     } else {
2124         return false;
2125     }
2126 }
2127
2128 static int
2129 do_put_flow(struct ofproto *ofproto, struct rule *rule, int flags,
2130             struct odp_flow_put *put)
2131 {
2132     memset(&put->flow.stats, 0, sizeof put->flow.stats);
2133     odp_flow_key_from_flow(&put->flow.key, &rule->cr.flow);
2134     put->flow.actions = rule->odp_actions;
2135     put->flow.n_actions = rule->n_odp_actions;
2136     put->flow.flags = 0;
2137     put->flags = flags;
2138     return dpif_flow_put(ofproto->dpif, put);
2139 }
2140
2141 static void
2142 rule_install(struct ofproto *p, struct rule *rule, struct rule *displaced_rule)
2143 {
2144     assert(!rule->cr.wc.wildcards);
2145
2146     if (rule->may_install) {
2147         struct odp_flow_put put;
2148         if (!do_put_flow(p, rule,
2149                          ODPPF_CREATE | ODPPF_MODIFY | ODPPF_ZERO_STATS,
2150                          &put)) {
2151             rule->installed = true;
2152             if (displaced_rule) {
2153                 update_stats(p, displaced_rule, &put.flow.stats);
2154                 rule_post_uninstall(p, displaced_rule);
2155             }
2156         }
2157     } else if (displaced_rule) {
2158         rule_uninstall(p, displaced_rule);
2159     }
2160 }
2161
2162 static void
2163 rule_reinstall(struct ofproto *ofproto, struct rule *rule)
2164 {
2165     if (rule->installed) {
2166         struct odp_flow_put put;
2167         COVERAGE_INC(ofproto_dp_missed);
2168         do_put_flow(ofproto, rule, ODPPF_CREATE | ODPPF_MODIFY, &put);
2169     } else {
2170         rule_install(ofproto, rule, NULL);
2171     }
2172 }
2173
2174 static void
2175 rule_update_actions(struct ofproto *ofproto, struct rule *rule)
2176 {
2177     bool actions_changed;
2178     uint16_t new_out_iface, old_out_iface;
2179
2180     old_out_iface = rule->nf_flow.output_iface;
2181     actions_changed = rule_make_actions(ofproto, rule, NULL);
2182
2183     if (rule->may_install) {
2184         if (rule->installed) {
2185             if (actions_changed) {
2186                 struct odp_flow_put put;
2187                 do_put_flow(ofproto, rule, ODPPF_CREATE | ODPPF_MODIFY
2188                                            | ODPPF_ZERO_STATS, &put);
2189                 update_stats(ofproto, rule, &put.flow.stats);
2190
2191                 /* Temporarily set the old output iface so that NetFlow
2192                  * messages have the correct output interface for the old
2193                  * stats. */
2194                 new_out_iface = rule->nf_flow.output_iface;
2195                 rule->nf_flow.output_iface = old_out_iface;
2196                 rule_post_uninstall(ofproto, rule);
2197                 rule->nf_flow.output_iface = new_out_iface;
2198             }
2199         } else {
2200             rule_install(ofproto, rule, NULL);
2201         }
2202     } else {
2203         rule_uninstall(ofproto, rule);
2204     }
2205 }
2206
2207 static void
2208 rule_account(struct ofproto *ofproto, struct rule *rule, uint64_t extra_bytes)
2209 {
2210     uint64_t total_bytes = rule->byte_count + extra_bytes;
2211
2212     if (ofproto->ofhooks->account_flow_cb
2213         && total_bytes > rule->accounted_bytes)
2214     {
2215         ofproto->ofhooks->account_flow_cb(
2216             &rule->cr.flow, rule->tags, rule->odp_actions, rule->n_odp_actions,
2217             total_bytes - rule->accounted_bytes, ofproto->aux);
2218         rule->accounted_bytes = total_bytes;
2219     }
2220 }
2221
2222 /* 'rule' must be an exact-match rule in 'p'.
2223  *
2224  * If 'rule' is installed in the datapath, uninstalls it and updates's
2225  * statistics.  If 'rule' is a subrule, the statistics that are updated are
2226  * actually its super-rule's statistics; otherwise 'rule''s own statistics are
2227  * updated.
2228  *
2229  * If 'rule' is not installed, this function has no effect. */
2230 static void
2231 rule_uninstall(struct ofproto *p, struct rule *rule)
2232 {
2233     assert(!rule->cr.wc.wildcards);
2234     if (rule->installed) {
2235         struct odp_flow odp_flow;
2236
2237         odp_flow_key_from_flow(&odp_flow.key, &rule->cr.flow);
2238         odp_flow.actions = NULL;
2239         odp_flow.n_actions = 0;
2240         odp_flow.flags = 0;
2241         if (!dpif_flow_del(p->dpif, &odp_flow)) {
2242             update_stats(p, rule, &odp_flow.stats);
2243         }
2244         rule->installed = false;
2245
2246         rule_post_uninstall(p, rule);
2247     }
2248 }
2249
2250 static bool
2251 is_controller_rule(struct rule *rule)
2252 {
2253     /* If the only action is send to the controller then don't report
2254      * NetFlow expiration messages since it is just part of the control
2255      * logic for the network and not real traffic. */
2256
2257     return (rule
2258             && rule->super
2259             && rule->super->n_actions == 1
2260             && action_outputs_to_port(&rule->super->actions[0],
2261                                       htons(OFPP_CONTROLLER)));
2262 }
2263
2264 static void
2265 rule_post_uninstall(struct ofproto *ofproto, struct rule *rule)
2266 {
2267     struct rule *super = rule->super;
2268
2269     rule_account(ofproto, rule, 0);
2270
2271     if (ofproto->netflow && !is_controller_rule(rule)) {
2272         struct ofexpired expired;
2273         expired.flow = rule->cr.flow;
2274         expired.packet_count = rule->packet_count;
2275         expired.byte_count = rule->byte_count;
2276         expired.used = rule->used;
2277         netflow_expire(ofproto->netflow, &rule->nf_flow, &expired);
2278     }
2279     if (super) {
2280         super->packet_count += rule->packet_count;
2281         super->byte_count += rule->byte_count;
2282
2283         /* Reset counters to prevent double counting if the rule ever gets
2284          * reinstalled. */
2285         rule->packet_count = 0;
2286         rule->byte_count = 0;
2287         rule->accounted_bytes = 0;
2288
2289         netflow_flow_clear(&rule->nf_flow);
2290     }
2291 }
2292 \f
2293 static void
2294 queue_tx(struct ofpbuf *msg, const struct ofconn *ofconn,
2295          struct rconn_packet_counter *counter)
2296 {
2297     update_openflow_length(msg);
2298     if (rconn_send(ofconn->rconn, msg, counter)) {
2299         ofpbuf_delete(msg);
2300     }
2301 }
2302
2303 static void
2304 send_error_oh(const struct ofconn *ofconn, const struct ofp_header *oh,
2305               int error)
2306 {
2307     struct ofpbuf *buf = make_ofp_error_msg(error, oh);
2308     if (buf) {
2309         COVERAGE_INC(ofproto_error);
2310         queue_tx(buf, ofconn, ofconn->reply_counter);
2311     }
2312 }
2313
2314 static void
2315 hton_ofp_phy_port(struct ofp_phy_port *opp)
2316 {
2317     opp->port_no = htons(opp->port_no);
2318     opp->config = htonl(opp->config);
2319     opp->state = htonl(opp->state);
2320     opp->curr = htonl(opp->curr);
2321     opp->advertised = htonl(opp->advertised);
2322     opp->supported = htonl(opp->supported);
2323     opp->peer = htonl(opp->peer);
2324 }
2325
2326 static int
2327 handle_echo_request(struct ofconn *ofconn, struct ofp_header *oh)
2328 {
2329     struct ofp_header *rq = oh;
2330     queue_tx(make_echo_reply(rq), ofconn, ofconn->reply_counter);
2331     return 0;
2332 }
2333
2334 static int
2335 handle_features_request(struct ofconn *ofconn, struct ofp_header *oh)
2336 {
2337     struct ofp_switch_features *osf;
2338     struct ofpbuf *buf;
2339     struct ofport *port;
2340
2341     osf = make_openflow_xid(sizeof *osf, OFPT_FEATURES_REPLY, oh->xid, &buf);
2342     osf->datapath_id = htonll(ofconn->ofproto->datapath_id);
2343     osf->n_buffers = htonl(pktbuf_capacity());
2344     osf->n_tables = 2;
2345     osf->capabilities = htonl(OFPC_FLOW_STATS | OFPC_TABLE_STATS |
2346                               OFPC_PORT_STATS | OFPC_ARP_MATCH_IP);
2347     osf->actions = htonl((1u << OFPAT_OUTPUT) |
2348                          (1u << OFPAT_SET_VLAN_VID) |
2349                          (1u << OFPAT_SET_VLAN_PCP) |
2350                          (1u << OFPAT_STRIP_VLAN) |
2351                          (1u << OFPAT_SET_DL_SRC) |
2352                          (1u << OFPAT_SET_DL_DST) |
2353                          (1u << OFPAT_SET_NW_SRC) |
2354                          (1u << OFPAT_SET_NW_DST) |
2355                          (1u << OFPAT_SET_NW_TOS) |
2356                          (1u << OFPAT_SET_TP_SRC) |
2357                          (1u << OFPAT_SET_TP_DST) |
2358                          (1u << OFPAT_ENQUEUE));
2359
2360     HMAP_FOR_EACH (port, hmap_node, &ofconn->ofproto->ports) {
2361         hton_ofp_phy_port(ofpbuf_put(buf, &port->opp, sizeof port->opp));
2362     }
2363
2364     queue_tx(buf, ofconn, ofconn->reply_counter);
2365     return 0;
2366 }
2367
2368 static int
2369 handle_get_config_request(struct ofconn *ofconn, struct ofp_header *oh)
2370 {
2371     struct ofpbuf *buf;
2372     struct ofp_switch_config *osc;
2373     uint16_t flags;
2374     bool drop_frags;
2375
2376     /* Figure out flags. */
2377     dpif_get_drop_frags(ofconn->ofproto->dpif, &drop_frags);
2378     flags = drop_frags ? OFPC_FRAG_DROP : OFPC_FRAG_NORMAL;
2379
2380     /* Send reply. */
2381     osc = make_openflow_xid(sizeof *osc, OFPT_GET_CONFIG_REPLY, oh->xid, &buf);
2382     osc->flags = htons(flags);
2383     osc->miss_send_len = htons(ofconn->miss_send_len);
2384     queue_tx(buf, ofconn, ofconn->reply_counter);
2385
2386     return 0;
2387 }
2388
2389 static int
2390 handle_set_config(struct ofconn *ofconn, struct ofp_switch_config *osc)
2391 {
2392     uint16_t flags;
2393     int error;
2394
2395     error = check_ofp_message(&osc->header, OFPT_SET_CONFIG, sizeof *osc);
2396     if (error) {
2397         return error;
2398     }
2399     flags = ntohs(osc->flags);
2400
2401     if (ofconn->type == OFCONN_PRIMARY && ofconn->role != NX_ROLE_SLAVE) {
2402         switch (flags & OFPC_FRAG_MASK) {
2403         case OFPC_FRAG_NORMAL:
2404             dpif_set_drop_frags(ofconn->ofproto->dpif, false);
2405             break;
2406         case OFPC_FRAG_DROP:
2407             dpif_set_drop_frags(ofconn->ofproto->dpif, true);
2408             break;
2409         default:
2410             VLOG_WARN_RL(&rl, "requested bad fragment mode (flags=%"PRIx16")",
2411                          osc->flags);
2412             break;
2413         }
2414     }
2415
2416     ofconn->miss_send_len = ntohs(osc->miss_send_len);
2417
2418     return 0;
2419 }
2420
2421 static void
2422 add_controller_action(struct odp_actions *actions, uint16_t max_len)
2423 {
2424     union odp_action *a = odp_actions_add(actions, ODPAT_CONTROLLER);
2425     a->controller.arg = max_len;
2426 }
2427
2428 struct action_xlate_ctx {
2429     /* Input. */
2430     struct flow flow;           /* Flow to which these actions correspond. */
2431     int recurse;                /* Recursion level, via xlate_table_action. */
2432     struct ofproto *ofproto;
2433     const struct ofpbuf *packet; /* The packet corresponding to 'flow', or a
2434                                   * null pointer if we are revalidating
2435                                   * without a packet to refer to. */
2436
2437     /* Output. */
2438     struct odp_actions *out;    /* Datapath actions. */
2439     tag_type tags;              /* Tags associated with OFPP_NORMAL actions. */
2440     bool may_set_up_flow;       /* True ordinarily; false if the actions must
2441                                  * be reassessed for every packet. */
2442     uint16_t nf_output_iface;   /* Output interface index for NetFlow. */
2443 };
2444
2445 /* Maximum depth of flow table recursion (due to NXAST_RESUBMIT actions) in a
2446  * flow translation. */
2447 #define MAX_RESUBMIT_RECURSION 8
2448
2449 static void do_xlate_actions(const union ofp_action *in, size_t n_in,
2450                              struct action_xlate_ctx *ctx);
2451
2452 static void
2453 add_output_action(struct action_xlate_ctx *ctx, uint16_t port)
2454 {
2455     const struct ofport *ofport = get_port(ctx->ofproto, port);
2456
2457     if (ofport) {
2458         if (ofport->opp.config & OFPPC_NO_FWD) {
2459             /* Forwarding disabled on port. */
2460             return;
2461         }
2462     } else {
2463         /*
2464          * We don't have an ofport record for this port, but it doesn't hurt to
2465          * allow forwarding to it anyhow.  Maybe such a port will appear later
2466          * and we're pre-populating the flow table.
2467          */
2468     }
2469
2470     odp_actions_add(ctx->out, ODPAT_OUTPUT)->output.port = port;
2471     ctx->nf_output_iface = port;
2472 }
2473
2474 static struct rule *
2475 lookup_valid_rule(struct ofproto *ofproto, const struct flow *flow)
2476 {
2477     struct rule *rule;
2478     rule = rule_from_cls_rule(classifier_lookup(&ofproto->cls, flow,
2479                                                 CLS_INC_ALL));
2480
2481     /* The rule we found might not be valid, since we could be in need of
2482      * revalidation.  If it is not valid, don't return it. */
2483     if (rule
2484         && rule->super
2485         && ofproto->need_revalidate
2486         && !revalidate_rule(ofproto, rule)) {
2487         COVERAGE_INC(ofproto_invalidated);
2488         return NULL;
2489     }
2490
2491     return rule;
2492 }
2493
2494 static void
2495 xlate_table_action(struct action_xlate_ctx *ctx, uint16_t in_port)
2496 {
2497     if (ctx->recurse < MAX_RESUBMIT_RECURSION) {
2498         uint16_t old_in_port;
2499         struct rule *rule;
2500
2501         /* Look up a flow with 'in_port' as the input port.  Then restore the
2502          * original input port (otherwise OFPP_NORMAL and OFPP_IN_PORT will
2503          * have surprising behavior). */
2504         old_in_port = ctx->flow.in_port;
2505         ctx->flow.in_port = in_port;
2506         rule = lookup_valid_rule(ctx->ofproto, &ctx->flow);
2507         ctx->flow.in_port = old_in_port;
2508
2509         if (rule) {
2510             if (rule->super) {
2511                 rule = rule->super;
2512             }
2513
2514             ctx->recurse++;
2515             do_xlate_actions(rule->actions, rule->n_actions, ctx);
2516             ctx->recurse--;
2517         }
2518     } else {
2519         struct vlog_rate_limit recurse_rl = VLOG_RATE_LIMIT_INIT(1, 1);
2520
2521         VLOG_ERR_RL(&recurse_rl, "NXAST_RESUBMIT recursed over %d times",
2522                     MAX_RESUBMIT_RECURSION);
2523     }
2524 }
2525
2526 static void
2527 flood_packets(struct ofproto *ofproto, uint16_t odp_in_port, uint32_t mask,
2528               uint16_t *nf_output_iface, struct odp_actions *actions)
2529 {
2530     struct ofport *ofport;
2531
2532     HMAP_FOR_EACH (ofport, hmap_node, &ofproto->ports) {
2533         uint16_t odp_port = ofport->odp_port;
2534         if (odp_port != odp_in_port && !(ofport->opp.config & mask)) {
2535             odp_actions_add(actions, ODPAT_OUTPUT)->output.port = odp_port;
2536         }
2537     }
2538     *nf_output_iface = NF_OUT_FLOOD;
2539 }
2540
2541 static void
2542 xlate_output_action__(struct action_xlate_ctx *ctx,
2543                       uint16_t port, uint16_t max_len)
2544 {
2545     uint16_t odp_port;
2546     uint16_t prev_nf_output_iface = ctx->nf_output_iface;
2547
2548     ctx->nf_output_iface = NF_OUT_DROP;
2549
2550     switch (port) {
2551     case OFPP_IN_PORT:
2552         add_output_action(ctx, ctx->flow.in_port);
2553         break;
2554     case OFPP_TABLE:
2555         xlate_table_action(ctx, ctx->flow.in_port);
2556         break;
2557     case OFPP_NORMAL:
2558         if (!ctx->ofproto->ofhooks->normal_cb(&ctx->flow, ctx->packet,
2559                                               ctx->out, &ctx->tags,
2560                                               &ctx->nf_output_iface,
2561                                               ctx->ofproto->aux)) {
2562             COVERAGE_INC(ofproto_uninstallable);
2563             ctx->may_set_up_flow = false;
2564         }
2565         break;
2566     case OFPP_FLOOD:
2567         flood_packets(ctx->ofproto, ctx->flow.in_port, OFPPC_NO_FLOOD,
2568                       &ctx->nf_output_iface, ctx->out);
2569         break;
2570     case OFPP_ALL:
2571         flood_packets(ctx->ofproto, ctx->flow.in_port, 0,
2572                       &ctx->nf_output_iface, ctx->out);
2573         break;
2574     case OFPP_CONTROLLER:
2575         add_controller_action(ctx->out, max_len);
2576         break;
2577     case OFPP_LOCAL:
2578         add_output_action(ctx, ODPP_LOCAL);
2579         break;
2580     default:
2581         odp_port = ofp_port_to_odp_port(port);
2582         if (odp_port != ctx->flow.in_port) {
2583             add_output_action(ctx, odp_port);
2584         }
2585         break;
2586     }
2587
2588     if (prev_nf_output_iface == NF_OUT_FLOOD) {
2589         ctx->nf_output_iface = NF_OUT_FLOOD;
2590     } else if (ctx->nf_output_iface == NF_OUT_DROP) {
2591         ctx->nf_output_iface = prev_nf_output_iface;
2592     } else if (prev_nf_output_iface != NF_OUT_DROP &&
2593                ctx->nf_output_iface != NF_OUT_FLOOD) {
2594         ctx->nf_output_iface = NF_OUT_MULTI;
2595     }
2596 }
2597
2598 static void
2599 xlate_output_action(struct action_xlate_ctx *ctx,
2600                     const struct ofp_action_output *oao)
2601 {
2602     xlate_output_action__(ctx, ntohs(oao->port), ntohs(oao->max_len));
2603 }
2604
2605 /* If the final ODP action in 'ctx' is "pop priority", drop it, as an
2606  * optimization, because we're going to add another action that sets the
2607  * priority immediately after, or because there are no actions following the
2608  * pop.  */
2609 static void
2610 remove_pop_action(struct action_xlate_ctx *ctx)
2611 {
2612     size_t n = ctx->out->n_actions;
2613     if (n > 0 && ctx->out->actions[n - 1].type == ODPAT_POP_PRIORITY) {
2614         ctx->out->n_actions--;
2615     }
2616 }
2617
2618 static void
2619 xlate_enqueue_action(struct action_xlate_ctx *ctx,
2620                      const struct ofp_action_enqueue *oae)
2621 {
2622     uint16_t ofp_port, odp_port;
2623     uint32_t priority;
2624     int error;
2625
2626     error = dpif_queue_to_priority(ctx->ofproto->dpif, ntohl(oae->queue_id),
2627                                    &priority);
2628     if (error) {
2629         /* Fall back to ordinary output action. */
2630         xlate_output_action__(ctx, ntohs(oae->port), 0);
2631         return;
2632     }
2633
2634     /* Figure out ODP output port. */
2635     ofp_port = ntohs(oae->port);
2636     if (ofp_port != OFPP_IN_PORT) {
2637         odp_port = ofp_port_to_odp_port(ofp_port);
2638     } else {
2639         odp_port = ctx->flow.in_port;
2640     }
2641
2642     /* Add ODP actions. */
2643     remove_pop_action(ctx);
2644     odp_actions_add(ctx->out, ODPAT_SET_PRIORITY)->priority.priority
2645         = priority;
2646     add_output_action(ctx, odp_port);
2647     odp_actions_add(ctx->out, ODPAT_POP_PRIORITY);
2648
2649     /* Update NetFlow output port. */
2650     if (ctx->nf_output_iface == NF_OUT_DROP) {
2651         ctx->nf_output_iface = odp_port;
2652     } else if (ctx->nf_output_iface != NF_OUT_FLOOD) {
2653         ctx->nf_output_iface = NF_OUT_MULTI;
2654     }
2655 }
2656
2657 static void
2658 xlate_set_queue_action(struct action_xlate_ctx *ctx,
2659                        const struct nx_action_set_queue *nasq)
2660 {
2661     uint32_t priority;
2662     int error;
2663
2664     error = dpif_queue_to_priority(ctx->ofproto->dpif, ntohl(nasq->queue_id),
2665                                    &priority);
2666     if (error) {
2667         /* Couldn't translate queue to a priority, so ignore.  A warning
2668          * has already been logged. */
2669         return;
2670     }
2671
2672     remove_pop_action(ctx);
2673     odp_actions_add(ctx->out, ODPAT_SET_PRIORITY)->priority.priority
2674         = priority;
2675 }
2676
2677 static void
2678 xlate_set_dl_tci(struct action_xlate_ctx *ctx)
2679 {
2680     ovs_be16 dl_vlan = ctx->flow.dl_vlan;
2681     uint8_t dl_vlan_pcp = ctx->flow.dl_vlan_pcp;
2682
2683     if (dl_vlan == htons(OFP_VLAN_NONE)) {
2684         odp_actions_add(ctx->out, ODPAT_STRIP_VLAN);
2685     } else {
2686         union odp_action *oa = odp_actions_add(ctx->out, ODPAT_SET_DL_TCI);
2687         oa->dl_tci.tci = htons(ntohs(dl_vlan & htons(VLAN_VID_MASK))
2688                                | (dl_vlan_pcp << VLAN_PCP_SHIFT)
2689                                | VLAN_CFI);
2690     }
2691 }
2692
2693 static void
2694 xlate_reg_move_action(struct action_xlate_ctx *ctx,
2695                       const struct nx_action_reg_move *narm)
2696 {
2697     ovs_be16 old_vlan = ctx->flow.dl_vlan;
2698     uint8_t old_pcp = ctx->flow.dl_vlan_pcp;
2699
2700     nxm_execute_reg_move(narm, &ctx->flow);
2701
2702     if (ctx->flow.dl_vlan != old_vlan || ctx->flow.dl_vlan_pcp != old_pcp) {
2703         xlate_set_dl_tci(ctx);
2704     }
2705 }
2706
2707 static void
2708 xlate_nicira_action(struct action_xlate_ctx *ctx,
2709                     const struct nx_action_header *nah)
2710 {
2711     const struct nx_action_resubmit *nar;
2712     const struct nx_action_set_tunnel *nast;
2713     const struct nx_action_set_queue *nasq;
2714     union odp_action *oa;
2715     int subtype = ntohs(nah->subtype);
2716
2717     assert(nah->vendor == htonl(NX_VENDOR_ID));
2718     switch (subtype) {
2719     case NXAST_RESUBMIT:
2720         nar = (const struct nx_action_resubmit *) nah;
2721         xlate_table_action(ctx, ofp_port_to_odp_port(ntohs(nar->in_port)));
2722         break;
2723
2724     case NXAST_SET_TUNNEL:
2725         nast = (const struct nx_action_set_tunnel *) nah;
2726         oa = odp_actions_add(ctx->out, ODPAT_SET_TUNNEL);
2727         ctx->flow.tun_id = oa->tunnel.tun_id = nast->tun_id;
2728         break;
2729
2730     case NXAST_DROP_SPOOFED_ARP:
2731         if (ctx->flow.dl_type == htons(ETH_TYPE_ARP)) {
2732             odp_actions_add(ctx->out, ODPAT_DROP_SPOOFED_ARP);
2733         }
2734         break;
2735
2736     case NXAST_SET_QUEUE:
2737         nasq = (const struct nx_action_set_queue *) nah;
2738         xlate_set_queue_action(ctx, nasq);
2739         break;
2740
2741     case NXAST_POP_QUEUE:
2742         odp_actions_add(ctx->out, ODPAT_POP_PRIORITY);
2743         break;
2744
2745     case NXAST_REG_MOVE:
2746         xlate_reg_move_action(ctx, (const struct nx_action_reg_move *) nah);
2747         break;
2748
2749     case NXAST_REG_LOAD:
2750         nxm_execute_reg_load((const struct nx_action_reg_load *) nah,
2751                              &ctx->flow);
2752         break;
2753
2754     /* If you add a new action here that modifies flow data, don't forget to
2755      * update the flow key in ctx->flow at the same time. */
2756
2757     default:
2758         VLOG_DBG_RL(&rl, "unknown Nicira action type %"PRIu16, subtype);
2759         break;
2760     }
2761 }
2762
2763 static void
2764 do_xlate_actions(const union ofp_action *in, size_t n_in,
2765                  struct action_xlate_ctx *ctx)
2766 {
2767     struct actions_iterator iter;
2768     const union ofp_action *ia;
2769     const struct ofport *port;
2770
2771     port = get_port(ctx->ofproto, ctx->flow.in_port);
2772     if (port && port->opp.config & (OFPPC_NO_RECV | OFPPC_NO_RECV_STP) &&
2773         port->opp.config & (eth_addr_equals(ctx->flow.dl_dst, eth_addr_stp)
2774                             ? OFPPC_NO_RECV_STP : OFPPC_NO_RECV)) {
2775         /* Drop this flow. */
2776         return;
2777     }
2778
2779     for (ia = actions_first(&iter, in, n_in); ia; ia = actions_next(&iter)) {
2780         uint16_t type = ntohs(ia->type);
2781         union odp_action *oa;
2782
2783         switch (type) {
2784         case OFPAT_OUTPUT:
2785             xlate_output_action(ctx, &ia->output);
2786             break;
2787
2788         case OFPAT_SET_VLAN_VID:
2789             ctx->flow.dl_vlan = ia->vlan_vid.vlan_vid;
2790             xlate_set_dl_tci(ctx);
2791             break;
2792
2793         case OFPAT_SET_VLAN_PCP:
2794             ctx->flow.dl_vlan_pcp = ia->vlan_pcp.vlan_pcp;
2795             xlate_set_dl_tci(ctx);
2796             break;
2797
2798         case OFPAT_STRIP_VLAN:
2799             ctx->flow.dl_vlan = htons(OFP_VLAN_NONE);
2800             ctx->flow.dl_vlan_pcp = 0;
2801             xlate_set_dl_tci(ctx);
2802             break;
2803
2804         case OFPAT_SET_DL_SRC:
2805             oa = odp_actions_add(ctx->out, ODPAT_SET_DL_SRC);
2806             memcpy(oa->dl_addr.dl_addr,
2807                    ((struct ofp_action_dl_addr *) ia)->dl_addr, ETH_ADDR_LEN);
2808             memcpy(ctx->flow.dl_src,
2809                    ((struct ofp_action_dl_addr *) ia)->dl_addr, ETH_ADDR_LEN);
2810             break;
2811
2812         case OFPAT_SET_DL_DST:
2813             oa = odp_actions_add(ctx->out, ODPAT_SET_DL_DST);
2814             memcpy(oa->dl_addr.dl_addr,
2815                    ((struct ofp_action_dl_addr *) ia)->dl_addr, ETH_ADDR_LEN);
2816             memcpy(ctx->flow.dl_dst,
2817                    ((struct ofp_action_dl_addr *) ia)->dl_addr, ETH_ADDR_LEN);
2818             break;
2819
2820         case OFPAT_SET_NW_SRC:
2821             oa = odp_actions_add(ctx->out, ODPAT_SET_NW_SRC);
2822             ctx->flow.nw_src = oa->nw_addr.nw_addr = ia->nw_addr.nw_addr;
2823             break;
2824
2825         case OFPAT_SET_NW_DST:
2826             oa = odp_actions_add(ctx->out, ODPAT_SET_NW_DST);
2827             ctx->flow.nw_dst = oa->nw_addr.nw_addr = ia->nw_addr.nw_addr;
2828             break;
2829
2830         case OFPAT_SET_NW_TOS:
2831             oa = odp_actions_add(ctx->out, ODPAT_SET_NW_TOS);
2832             ctx->flow.nw_tos = oa->nw_tos.nw_tos = ia->nw_tos.nw_tos;
2833             break;
2834
2835         case OFPAT_SET_TP_SRC:
2836             oa = odp_actions_add(ctx->out, ODPAT_SET_TP_SRC);
2837             ctx->flow.tp_src = oa->tp_port.tp_port = ia->tp_port.tp_port;
2838             break;
2839
2840         case OFPAT_SET_TP_DST:
2841             oa = odp_actions_add(ctx->out, ODPAT_SET_TP_DST);
2842             ctx->flow.tp_dst = oa->tp_port.tp_port = ia->tp_port.tp_port;
2843             break;
2844
2845         case OFPAT_VENDOR:
2846             xlate_nicira_action(ctx, (const struct nx_action_header *) ia);
2847             break;
2848
2849         case OFPAT_ENQUEUE:
2850             xlate_enqueue_action(ctx, (const struct ofp_action_enqueue *) ia);
2851             break;
2852
2853         default:
2854             VLOG_DBG_RL(&rl, "unknown action type %"PRIu16, type);
2855             break;
2856         }
2857     }
2858 }
2859
2860 static int
2861 xlate_actions(const union ofp_action *in, size_t n_in,
2862               const struct flow *flow, struct ofproto *ofproto,
2863               const struct ofpbuf *packet,
2864               struct odp_actions *out, tag_type *tags, bool *may_set_up_flow,
2865               uint16_t *nf_output_iface)
2866 {
2867     struct action_xlate_ctx ctx;
2868
2869     COVERAGE_INC(ofproto_ofp2odp);
2870     odp_actions_init(out);
2871     ctx.flow = *flow;
2872     ctx.recurse = 0;
2873     ctx.ofproto = ofproto;
2874     ctx.packet = packet;
2875     ctx.out = out;
2876     ctx.tags = 0;
2877     ctx.may_set_up_flow = true;
2878     ctx.nf_output_iface = NF_OUT_DROP;
2879     do_xlate_actions(in, n_in, &ctx);
2880     remove_pop_action(&ctx);
2881
2882     /* Check with in-band control to see if we're allowed to set up this
2883      * flow. */
2884     if (!in_band_rule_check(ofproto->in_band, flow, out)) {
2885         ctx.may_set_up_flow = false;
2886     }
2887
2888     if (tags) {
2889         *tags = ctx.tags;
2890     }
2891     if (may_set_up_flow) {
2892         *may_set_up_flow = ctx.may_set_up_flow;
2893     }
2894     if (nf_output_iface) {
2895         *nf_output_iface = ctx.nf_output_iface;
2896     }
2897     if (odp_actions_overflow(out)) {
2898         COVERAGE_INC(odp_overflow);
2899         odp_actions_init(out);
2900         return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_TOO_MANY);
2901     }
2902     return 0;
2903 }
2904
2905 /* Checks whether 'ofconn' is a slave controller.  If so, returns an OpenFlow
2906  * error message code (composed with ofp_mkerr()) for the caller to propagate
2907  * upward.  Otherwise, returns 0.
2908  *
2909  * The log message mentions 'msg_type'. */
2910 static int
2911 reject_slave_controller(struct ofconn *ofconn, const const char *msg_type)
2912 {
2913     if (ofconn->type == OFCONN_PRIMARY && ofconn->role == NX_ROLE_SLAVE) {
2914         static struct vlog_rate_limit perm_rl = VLOG_RATE_LIMIT_INIT(1, 5);
2915         VLOG_WARN_RL(&perm_rl, "rejecting %s message from slave controller",
2916                      msg_type);
2917
2918         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_EPERM);
2919     } else {
2920         return 0;
2921     }
2922 }
2923
2924 static int
2925 handle_packet_out(struct ofconn *ofconn, struct ofp_header *oh)
2926 {
2927     struct ofproto *p = ofconn->ofproto;
2928     struct ofp_packet_out *opo;
2929     struct ofpbuf payload, *buffer;
2930     union ofp_action *ofp_actions;
2931     struct odp_actions odp_actions;
2932     struct ofpbuf request;
2933     struct flow flow;
2934     size_t n_ofp_actions;
2935     uint16_t in_port;
2936     int error;
2937
2938     COVERAGE_INC(ofproto_packet_out);
2939
2940     error = reject_slave_controller(ofconn, "OFPT_PACKET_OUT");
2941     if (error) {
2942         return error;
2943     }
2944
2945     /* Get ofp_packet_out. */
2946     request.data = oh;
2947     request.size = ntohs(oh->length);
2948     opo = ofpbuf_try_pull(&request, offsetof(struct ofp_packet_out, actions));
2949     if (!opo) {
2950         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
2951     }
2952
2953     /* Get actions. */
2954     error = ofputil_pull_actions(&request, ntohs(opo->actions_len),
2955                                  &ofp_actions, &n_ofp_actions);
2956     if (error) {
2957         return error;
2958     }
2959
2960     /* Get payload. */
2961     if (opo->buffer_id != htonl(UINT32_MAX)) {
2962         error = pktbuf_retrieve(ofconn->pktbuf, ntohl(opo->buffer_id),
2963                                 &buffer, &in_port);
2964         if (error || !buffer) {
2965             return error;
2966         }
2967         payload = *buffer;
2968     } else {
2969         payload = request;
2970         buffer = NULL;
2971     }
2972
2973     /* Extract flow, check actions. */
2974     flow_extract(&payload, 0, ofp_port_to_odp_port(ntohs(opo->in_port)),
2975                  &flow);
2976     error = validate_actions(ofp_actions, n_ofp_actions, &flow, p->max_ports);
2977     if (error) {
2978         goto exit;
2979     }
2980
2981     /* Send. */
2982     error = xlate_actions(ofp_actions, n_ofp_actions, &flow, p, &payload,
2983                           &odp_actions, NULL, NULL, NULL);
2984     if (!error) {
2985         dpif_execute(p->dpif, odp_actions.actions, odp_actions.n_actions,
2986                      &payload);
2987     }
2988
2989 exit:
2990     ofpbuf_delete(buffer);
2991     return 0;
2992 }
2993
2994 static void
2995 update_port_config(struct ofproto *p, struct ofport *port,
2996                    uint32_t config, uint32_t mask)
2997 {
2998     mask &= config ^ port->opp.config;
2999     if (mask & OFPPC_PORT_DOWN) {
3000         if (config & OFPPC_PORT_DOWN) {
3001             netdev_turn_flags_off(port->netdev, NETDEV_UP, true);
3002         } else {
3003             netdev_turn_flags_on(port->netdev, NETDEV_UP, true);
3004         }
3005     }
3006 #define REVALIDATE_BITS (OFPPC_NO_RECV | OFPPC_NO_RECV_STP |    \
3007                          OFPPC_NO_FWD | OFPPC_NO_FLOOD)
3008     if (mask & REVALIDATE_BITS) {
3009         COVERAGE_INC(ofproto_costly_flags);
3010         port->opp.config ^= mask & REVALIDATE_BITS;
3011         p->need_revalidate = true;
3012     }
3013 #undef REVALIDATE_BITS
3014     if (mask & OFPPC_NO_PACKET_IN) {
3015         port->opp.config ^= OFPPC_NO_PACKET_IN;
3016     }
3017 }
3018
3019 static int
3020 handle_port_mod(struct ofconn *ofconn, struct ofp_header *oh)
3021 {
3022     struct ofproto *p = ofconn->ofproto;
3023     const struct ofp_port_mod *opm;
3024     struct ofport *port;
3025     int error;
3026
3027     error = reject_slave_controller(ofconn, "OFPT_PORT_MOD");
3028     if (error) {
3029         return error;
3030     }
3031     error = check_ofp_message(oh, OFPT_PORT_MOD, sizeof *opm);
3032     if (error) {
3033         return error;
3034     }
3035     opm = (struct ofp_port_mod *) oh;
3036
3037     port = get_port(p, ofp_port_to_odp_port(ntohs(opm->port_no)));
3038     if (!port) {
3039         return ofp_mkerr(OFPET_PORT_MOD_FAILED, OFPPMFC_BAD_PORT);
3040     } else if (memcmp(port->opp.hw_addr, opm->hw_addr, OFP_ETH_ALEN)) {
3041         return ofp_mkerr(OFPET_PORT_MOD_FAILED, OFPPMFC_BAD_HW_ADDR);
3042     } else {
3043         update_port_config(p, port, ntohl(opm->config), ntohl(opm->mask));
3044         if (opm->advertise) {
3045             netdev_set_advertisements(port->netdev, ntohl(opm->advertise));
3046         }
3047     }
3048     return 0;
3049 }
3050
3051 static struct ofpbuf *
3052 make_ofp_stats_reply(ovs_be32 xid, ovs_be16 type, size_t body_len)
3053 {
3054     struct ofp_stats_reply *osr;
3055     struct ofpbuf *msg;
3056
3057     msg = ofpbuf_new(MIN(sizeof *osr + body_len, UINT16_MAX));
3058     osr = put_openflow_xid(sizeof *osr, OFPT_STATS_REPLY, xid, msg);
3059     osr->type = type;
3060     osr->flags = htons(0);
3061     return msg;
3062 }
3063
3064 static struct ofpbuf *
3065 start_ofp_stats_reply(const struct ofp_stats_request *request, size_t body_len)
3066 {
3067     return make_ofp_stats_reply(request->header.xid, request->type, body_len);
3068 }
3069
3070 static void *
3071 append_ofp_stats_reply(size_t nbytes, struct ofconn *ofconn,
3072                        struct ofpbuf **msgp)
3073 {
3074     struct ofpbuf *msg = *msgp;
3075     assert(nbytes <= UINT16_MAX - sizeof(struct ofp_stats_reply));
3076     if (nbytes + msg->size > UINT16_MAX) {
3077         struct ofp_stats_reply *reply = msg->data;
3078         reply->flags = htons(OFPSF_REPLY_MORE);
3079         *msgp = make_ofp_stats_reply(reply->header.xid, reply->type, nbytes);
3080         queue_tx(msg, ofconn, ofconn->reply_counter);
3081     }
3082     return ofpbuf_put_uninit(*msgp, nbytes);
3083 }
3084
3085 static struct ofpbuf *
3086 make_nxstats_reply(ovs_be32 xid, ovs_be32 subtype, size_t body_len)
3087 {
3088     struct nicira_stats_msg *nsm;
3089     struct ofpbuf *msg;
3090
3091     msg = ofpbuf_new(MIN(sizeof *nsm + body_len, UINT16_MAX));
3092     nsm = put_openflow_xid(sizeof *nsm, OFPT_STATS_REPLY, xid, msg);
3093     nsm->type = htons(OFPST_VENDOR);
3094     nsm->flags = htons(0);
3095     nsm->vendor = htonl(NX_VENDOR_ID);
3096     nsm->subtype = htonl(subtype);
3097     return msg;
3098 }
3099
3100 static struct ofpbuf *
3101 start_nxstats_reply(const struct nicira_stats_msg *request, size_t body_len)
3102 {
3103     return make_nxstats_reply(request->header.xid, request->subtype, body_len);
3104 }
3105
3106 static void
3107 append_nxstats_reply(size_t nbytes, struct ofconn *ofconn,
3108                      struct ofpbuf **msgp)
3109 {
3110     struct ofpbuf *msg = *msgp;
3111     assert(nbytes <= UINT16_MAX - sizeof(struct nicira_stats_msg));
3112     if (nbytes + msg->size > UINT16_MAX) {
3113         struct nicira_stats_msg *reply = msg->data;
3114         reply->flags = htons(OFPSF_REPLY_MORE);
3115         *msgp = make_nxstats_reply(reply->header.xid, reply->subtype, nbytes);
3116         queue_tx(msg, ofconn, ofconn->reply_counter);
3117     }
3118     ofpbuf_prealloc_tailroom(*msgp, nbytes);
3119 }
3120
3121 static int
3122 handle_desc_stats_request(struct ofconn *ofconn,
3123                           struct ofp_stats_request *request)
3124 {
3125     struct ofproto *p = ofconn->ofproto;
3126     struct ofp_desc_stats *ods;
3127     struct ofpbuf *msg;
3128
3129     msg = start_ofp_stats_reply(request, sizeof *ods);
3130     ods = append_ofp_stats_reply(sizeof *ods, ofconn, &msg);
3131     memset(ods, 0, sizeof *ods);
3132     ovs_strlcpy(ods->mfr_desc, p->mfr_desc, sizeof ods->mfr_desc);
3133     ovs_strlcpy(ods->hw_desc, p->hw_desc, sizeof ods->hw_desc);
3134     ovs_strlcpy(ods->sw_desc, p->sw_desc, sizeof ods->sw_desc);
3135     ovs_strlcpy(ods->serial_num, p->serial_desc, sizeof ods->serial_num);
3136     ovs_strlcpy(ods->dp_desc, p->dp_desc, sizeof ods->dp_desc);
3137     queue_tx(msg, ofconn, ofconn->reply_counter);
3138
3139     return 0;
3140 }
3141
3142 static int
3143 handle_table_stats_request(struct ofconn *ofconn,
3144                            struct ofp_stats_request *request)
3145 {
3146     struct ofproto *p = ofconn->ofproto;
3147     struct ofp_table_stats *ots;
3148     struct ofpbuf *msg;
3149     struct rule *rule;
3150     int n_rules;
3151
3152     msg = start_ofp_stats_reply(request, sizeof *ots * 2);
3153
3154     /* Count rules other than subrules. */
3155     n_rules = classifier_count(&p->cls);
3156     CLASSIFIER_FOR_EACH_EXACT_RULE (rule, cr, &p->cls) {
3157         if (rule->super) {
3158             n_rules--;
3159         }
3160     }
3161
3162     /* Classifier table. */
3163     ots = append_ofp_stats_reply(sizeof *ots, ofconn, &msg);
3164     memset(ots, 0, sizeof *ots);
3165     strcpy(ots->name, "classifier");
3166     ots->wildcards = (ofconn->flow_format == NXFF_OPENFLOW10
3167                       ? htonl(OFPFW_ALL) : htonl(OVSFW_ALL));
3168     ots->max_entries = htonl(1024 * 1024); /* An arbitrary big number. */
3169     ots->active_count = htonl(n_rules);
3170     ots->lookup_count = htonll(0);              /* XXX */
3171     ots->matched_count = htonll(0);             /* XXX */
3172
3173     queue_tx(msg, ofconn, ofconn->reply_counter);
3174     return 0;
3175 }
3176
3177 static void
3178 append_port_stat(struct ofport *port, struct ofconn *ofconn,
3179                  struct ofpbuf **msgp)
3180 {
3181     struct netdev_stats stats;
3182     struct ofp_port_stats *ops;
3183
3184     /* Intentionally ignore return value, since errors will set
3185      * 'stats' to all-1s, which is correct for OpenFlow, and
3186      * netdev_get_stats() will log errors. */
3187     netdev_get_stats(port->netdev, &stats);
3188
3189     ops = append_ofp_stats_reply(sizeof *ops, ofconn, msgp);
3190     ops->port_no = htons(port->opp.port_no);
3191     memset(ops->pad, 0, sizeof ops->pad);
3192     ops->rx_packets = htonll(stats.rx_packets);
3193     ops->tx_packets = htonll(stats.tx_packets);
3194     ops->rx_bytes = htonll(stats.rx_bytes);
3195     ops->tx_bytes = htonll(stats.tx_bytes);
3196     ops->rx_dropped = htonll(stats.rx_dropped);
3197     ops->tx_dropped = htonll(stats.tx_dropped);
3198     ops->rx_errors = htonll(stats.rx_errors);
3199     ops->tx_errors = htonll(stats.tx_errors);
3200     ops->rx_frame_err = htonll(stats.rx_frame_errors);
3201     ops->rx_over_err = htonll(stats.rx_over_errors);
3202     ops->rx_crc_err = htonll(stats.rx_crc_errors);
3203     ops->collisions = htonll(stats.collisions);
3204 }
3205
3206 static int
3207 handle_port_stats_request(struct ofconn *ofconn, struct ofp_stats_request *osr,
3208                           size_t arg_size)
3209 {
3210     struct ofproto *p = ofconn->ofproto;
3211     struct ofp_port_stats_request *psr;
3212     struct ofp_port_stats *ops;
3213     struct ofpbuf *msg;
3214     struct ofport *port;
3215
3216     if (arg_size != sizeof *psr) {
3217         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3218     }
3219     psr = (struct ofp_port_stats_request *) osr->body;
3220
3221     msg = start_ofp_stats_reply(osr, sizeof *ops * 16);
3222     if (psr->port_no != htons(OFPP_NONE)) {
3223         port = get_port(p, ofp_port_to_odp_port(ntohs(psr->port_no)));
3224         if (port) {
3225             append_port_stat(port, ofconn, &msg);
3226         }
3227     } else {
3228         HMAP_FOR_EACH (port, hmap_node, &p->ports) {
3229             append_port_stat(port, ofconn, &msg);
3230         }
3231     }
3232
3233     queue_tx(msg, ofconn, ofconn->reply_counter);
3234     return 0;
3235 }
3236
3237 struct flow_stats_cbdata {
3238     struct ofconn *ofconn;
3239     ovs_be16 out_port;
3240     struct ofpbuf *msg;
3241 };
3242
3243 /* Obtains statistic counters for 'rule' within 'p' and stores them into
3244  * '*packet_countp' and '*byte_countp'.  If 'rule' is a wildcarded rule, the
3245  * returned statistic include statistics for all of 'rule''s subrules. */
3246 static void
3247 query_stats(struct ofproto *p, struct rule *rule,
3248             uint64_t *packet_countp, uint64_t *byte_countp)
3249 {
3250     uint64_t packet_count, byte_count;
3251     struct rule *subrule;
3252     struct odp_flow *odp_flows;
3253     size_t n_odp_flows;
3254
3255     /* Start from historical data for 'rule' itself that are no longer tracked
3256      * by the datapath.  This counts, for example, subrules that have
3257      * expired. */
3258     packet_count = rule->packet_count;
3259     byte_count = rule->byte_count;
3260
3261     /* Prepare to ask the datapath for statistics on 'rule', or if it is
3262      * wildcarded then on all of its subrules.
3263      *
3264      * Also, add any statistics that are not tracked by the datapath for each
3265      * subrule.  This includes, for example, statistics for packets that were
3266      * executed "by hand" by ofproto via dpif_execute() but must be accounted
3267      * to a flow. */
3268     n_odp_flows = rule->cr.wc.wildcards ? list_size(&rule->list) : 1;
3269     odp_flows = xzalloc(n_odp_flows * sizeof *odp_flows);
3270     if (rule->cr.wc.wildcards) {
3271         size_t i = 0;
3272         LIST_FOR_EACH (subrule, list, &rule->list) {
3273             odp_flow_key_from_flow(&odp_flows[i++].key, &subrule->cr.flow);
3274             packet_count += subrule->packet_count;
3275             byte_count += subrule->byte_count;
3276         }
3277     } else {
3278         odp_flow_key_from_flow(&odp_flows[0].key, &rule->cr.flow);
3279     }
3280
3281     /* Fetch up-to-date statistics from the datapath and add them in. */
3282     if (!dpif_flow_get_multiple(p->dpif, odp_flows, n_odp_flows)) {
3283         size_t i;
3284         for (i = 0; i < n_odp_flows; i++) {
3285             struct odp_flow *odp_flow = &odp_flows[i];
3286             packet_count += odp_flow->stats.n_packets;
3287             byte_count += odp_flow->stats.n_bytes;
3288         }
3289     }
3290     free(odp_flows);
3291
3292     /* Return the stats to the caller. */
3293     *packet_countp = packet_count;
3294     *byte_countp = byte_count;
3295 }
3296
3297 static void
3298 calc_flow_duration(long long int start, ovs_be32 *sec, ovs_be32 *nsec)
3299 {
3300     long long int msecs = time_msec() - start;
3301     *sec = htonl(msecs / 1000);
3302     *nsec = htonl((msecs % 1000) * (1000 * 1000));
3303 }
3304
3305 static void
3306 flow_stats_cb(struct cls_rule *rule_, void *cbdata_)
3307 {
3308     struct rule *rule = rule_from_cls_rule(rule_);
3309     struct flow_stats_cbdata *cbdata = cbdata_;
3310     struct ofp_flow_stats *ofs;
3311     uint64_t packet_count, byte_count;
3312     size_t act_len, len;
3313
3314     if (rule_is_hidden(rule) || !rule_has_out_port(rule, cbdata->out_port)) {
3315         return;
3316     }
3317
3318     act_len = sizeof *rule->actions * rule->n_actions;
3319     len = offsetof(struct ofp_flow_stats, actions) + act_len;
3320
3321     query_stats(cbdata->ofconn->ofproto, rule, &packet_count, &byte_count);
3322
3323     ofs = append_ofp_stats_reply(len, cbdata->ofconn, &cbdata->msg);
3324     ofs->length = htons(len);
3325     ofs->table_id = 0;
3326     ofs->pad = 0;
3327     flow_to_match(&rule->cr.flow, rule->cr.wc.wildcards,
3328                   cbdata->ofconn->flow_format, &ofs->match);
3329     calc_flow_duration(rule->created, &ofs->duration_sec, &ofs->duration_nsec);
3330     ofs->cookie = rule->flow_cookie;
3331     ofs->priority = htons(rule->cr.priority);
3332     ofs->idle_timeout = htons(rule->idle_timeout);
3333     ofs->hard_timeout = htons(rule->hard_timeout);
3334     memset(ofs->pad2, 0, sizeof ofs->pad2);
3335     ofs->packet_count = htonll(packet_count);
3336     ofs->byte_count = htonll(byte_count);
3337     if (rule->n_actions > 0) {
3338         memcpy(ofs->actions, rule->actions, act_len);
3339     }
3340 }
3341
3342 static int
3343 table_id_to_include(uint8_t table_id)
3344 {
3345     return table_id == 0 || table_id == 0xff ? CLS_INC_ALL : 0;
3346 }
3347
3348 static int
3349 handle_flow_stats_request(struct ofconn *ofconn,
3350                           const struct ofp_stats_request *osr, size_t arg_size)
3351 {
3352     struct ofp_flow_stats_request *fsr;
3353     struct flow_stats_cbdata cbdata;
3354     struct cls_rule target;
3355
3356     if (arg_size != sizeof *fsr) {
3357         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3358     }
3359     fsr = (struct ofp_flow_stats_request *) osr->body;
3360
3361     COVERAGE_INC(ofproto_flows_req);
3362     cbdata.ofconn = ofconn;
3363     cbdata.out_port = fsr->out_port;
3364     cbdata.msg = start_ofp_stats_reply(osr, 1024);
3365     cls_rule_from_match(&fsr->match, 0, NXFF_OPENFLOW10, 0, &target);
3366     classifier_for_each_match(&ofconn->ofproto->cls, &target,
3367                               table_id_to_include(fsr->table_id),
3368                               flow_stats_cb, &cbdata);
3369     queue_tx(cbdata.msg, ofconn, ofconn->reply_counter);
3370     return 0;
3371 }
3372
3373 static void
3374 nx_flow_stats_cb(struct cls_rule *rule_, void *cbdata_)
3375 {
3376     struct rule *rule = rule_from_cls_rule(rule_);
3377     struct flow_stats_cbdata *cbdata = cbdata_;
3378     struct nx_flow_stats *nfs;
3379     uint64_t packet_count, byte_count;
3380     size_t act_len, start_len;
3381
3382     if (rule_is_hidden(rule) || !rule_has_out_port(rule, cbdata->out_port)) {
3383         return;
3384     }
3385
3386     query_stats(cbdata->ofconn->ofproto, rule, &packet_count, &byte_count);
3387
3388     act_len = sizeof *rule->actions * rule->n_actions;
3389
3390     start_len = cbdata->msg->size;
3391     append_nxstats_reply(sizeof *nfs + NXM_MAX_LEN + act_len,
3392                          cbdata->ofconn, &cbdata->msg);
3393     nfs = ofpbuf_put_uninit(cbdata->msg, sizeof *nfs);
3394     nfs->table_id = 0;
3395     nfs->pad = 0;
3396     calc_flow_duration(rule->created, &nfs->duration_sec, &nfs->duration_nsec);
3397     nfs->cookie = rule->flow_cookie;
3398     nfs->priority = htons(rule->cr.priority);
3399     nfs->idle_timeout = htons(rule->idle_timeout);
3400     nfs->hard_timeout = htons(rule->hard_timeout);
3401     nfs->match_len = htons(nx_put_match(cbdata->msg, &rule->cr));
3402     memset(nfs->pad2, 0, sizeof nfs->pad2);
3403     nfs->packet_count = htonll(packet_count);
3404     nfs->byte_count = htonll(byte_count);
3405     if (rule->n_actions > 0) {
3406         ofpbuf_put(cbdata->msg, rule->actions, act_len);
3407     }
3408     nfs->length = htons(cbdata->msg->size - start_len);
3409 }
3410
3411 static int
3412 handle_nxst_flow(struct ofconn *ofconn, struct ofpbuf *b)
3413 {
3414     struct nx_flow_stats_request *nfsr;
3415     struct flow_stats_cbdata cbdata;
3416     struct cls_rule target;
3417     int error;
3418
3419     /* Dissect the message. */
3420     nfsr = ofpbuf_try_pull(b, sizeof *nfsr);
3421     if (!nfsr) {
3422         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3423     }
3424     error = nx_pull_match(b, ntohs(nfsr->match_len), 0, &target);
3425     if (error) {
3426         return error;
3427     }
3428
3429     COVERAGE_INC(ofproto_flows_req);
3430     cbdata.ofconn = ofconn;
3431     cbdata.out_port = nfsr->out_port;
3432     cbdata.msg = start_nxstats_reply(&nfsr->nsm, 1024);
3433     classifier_for_each_match(&ofconn->ofproto->cls, &target,
3434                               table_id_to_include(nfsr->table_id),
3435                               nx_flow_stats_cb, &cbdata);
3436     queue_tx(cbdata.msg, ofconn, ofconn->reply_counter);
3437     return 0;
3438 }
3439
3440 struct flow_stats_ds_cbdata {
3441     struct ofproto *ofproto;
3442     struct ds *results;
3443 };
3444
3445 static void
3446 flow_stats_ds_cb(struct cls_rule *rule_, void *cbdata_)
3447 {
3448     struct rule *rule = rule_from_cls_rule(rule_);
3449     struct flow_stats_ds_cbdata *cbdata = cbdata_;
3450     struct ds *results = cbdata->results;
3451     struct ofp_match match;
3452     uint64_t packet_count, byte_count;
3453     size_t act_len = sizeof *rule->actions * rule->n_actions;
3454
3455     /* Don't report on subrules. */
3456     if (rule->super != NULL) {
3457         return;
3458     }
3459
3460     query_stats(cbdata->ofproto, rule, &packet_count, &byte_count);
3461     flow_to_match(&rule->cr.flow, rule->cr.wc.wildcards,
3462                   NXFF_OPENFLOW10, &match);
3463
3464     ds_put_format(results, "duration=%llds, ",
3465                   (time_msec() - rule->created) / 1000);
3466     ds_put_format(results, "priority=%u, ", rule->cr.priority);
3467     ds_put_format(results, "n_packets=%"PRIu64", ", packet_count);
3468     ds_put_format(results, "n_bytes=%"PRIu64", ", byte_count);
3469     ofp_print_match(results, &match, true);
3470     if (act_len > 0) {
3471         ofp_print_actions(results, &rule->actions->header, act_len);
3472     } else {
3473         ds_put_cstr(results, "drop");
3474     }
3475     ds_put_cstr(results, "\n");
3476 }
3477
3478 /* Adds a pretty-printed description of all flows to 'results', including
3479  * those marked hidden by secchan (e.g., by in-band control). */
3480 void
3481 ofproto_get_all_flows(struct ofproto *p, struct ds *results)
3482 {
3483     struct ofp_match match;
3484     struct cls_rule target;
3485     struct flow_stats_ds_cbdata cbdata;
3486
3487     memset(&match, 0, sizeof match);
3488     match.wildcards = htonl(OVSFW_ALL);
3489
3490     cbdata.ofproto = p;
3491     cbdata.results = results;
3492
3493     cls_rule_from_match(&match, 0, NXFF_OPENFLOW10, 0, &target);
3494     classifier_for_each_match(&p->cls, &target, CLS_INC_ALL,
3495                               flow_stats_ds_cb, &cbdata);
3496 }
3497
3498 struct aggregate_stats_cbdata {
3499     struct ofproto *ofproto;
3500     ovs_be16 out_port;
3501     uint64_t packet_count;
3502     uint64_t byte_count;
3503     uint32_t n_flows;
3504 };
3505
3506 static void
3507 aggregate_stats_cb(struct cls_rule *rule_, void *cbdata_)
3508 {
3509     struct rule *rule = rule_from_cls_rule(rule_);
3510     struct aggregate_stats_cbdata *cbdata = cbdata_;
3511     uint64_t packet_count, byte_count;
3512
3513     if (rule_is_hidden(rule) || !rule_has_out_port(rule, cbdata->out_port)) {
3514         return;
3515     }
3516
3517     query_stats(cbdata->ofproto, rule, &packet_count, &byte_count);
3518
3519     cbdata->packet_count += packet_count;
3520     cbdata->byte_count += byte_count;
3521     cbdata->n_flows++;
3522 }
3523
3524 static void
3525 query_aggregate_stats(struct ofproto *ofproto, struct cls_rule *target,
3526                       ovs_be16 out_port, uint8_t table_id,
3527                       struct ofp_aggregate_stats_reply *oasr)
3528 {
3529     struct aggregate_stats_cbdata cbdata;
3530
3531     COVERAGE_INC(ofproto_agg_request);
3532     cbdata.ofproto = ofproto;
3533     cbdata.out_port = out_port;
3534     cbdata.packet_count = 0;
3535     cbdata.byte_count = 0;
3536     cbdata.n_flows = 0;
3537     classifier_for_each_match(&ofproto->cls, target,
3538                               table_id_to_include(table_id),
3539                               aggregate_stats_cb, &cbdata);
3540
3541     oasr->flow_count = htonl(cbdata.n_flows);
3542     oasr->packet_count = htonll(cbdata.packet_count);
3543     oasr->byte_count = htonll(cbdata.byte_count);
3544     memset(oasr->pad, 0, sizeof oasr->pad);
3545 }
3546
3547 static int
3548 handle_aggregate_stats_request(struct ofconn *ofconn,
3549                                const struct ofp_stats_request *osr,
3550                                size_t arg_size)
3551 {
3552     struct ofp_aggregate_stats_request *request;
3553     struct ofp_aggregate_stats_reply *reply;
3554     struct cls_rule target;
3555     struct ofpbuf *msg;
3556
3557     if (arg_size != sizeof *request) {
3558         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3559     }
3560     request = (struct ofp_aggregate_stats_request *) osr->body;
3561
3562     cls_rule_from_match(&request->match, 0, NXFF_OPENFLOW10, 0, &target);
3563
3564     msg = start_ofp_stats_reply(osr, sizeof *reply);
3565     reply = append_ofp_stats_reply(sizeof *reply, ofconn, &msg);
3566     query_aggregate_stats(ofconn->ofproto, &target, request->out_port,
3567                           request->table_id, reply);
3568     queue_tx(msg, ofconn, ofconn->reply_counter);
3569     return 0;
3570 }
3571
3572 static int
3573 handle_nxst_aggregate(struct ofconn *ofconn, struct ofpbuf *b)
3574 {
3575     struct nx_aggregate_stats_request *request;
3576     struct ofp_aggregate_stats_reply *reply;
3577     struct cls_rule target;
3578     struct ofpbuf *buf;
3579     int error;
3580
3581     /* Dissect the message. */
3582     request = ofpbuf_try_pull(b, sizeof *request);
3583     if (!request) {
3584         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3585     }
3586     error = nx_pull_match(b, ntohs(request->match_len), 0, &target);
3587     if (error) {
3588         return error;
3589     }
3590
3591     /* Reply. */
3592     COVERAGE_INC(ofproto_flows_req);
3593     buf = start_nxstats_reply(&request->nsm, sizeof *reply);
3594     reply = ofpbuf_put_uninit(buf, sizeof *reply);
3595     query_aggregate_stats(ofconn->ofproto, &target, request->out_port,
3596                           request->table_id, reply);
3597     queue_tx(buf, ofconn, ofconn->reply_counter);
3598
3599     return 0;
3600 }
3601
3602 struct queue_stats_cbdata {
3603     struct ofconn *ofconn;
3604     struct ofport *ofport;
3605     struct ofpbuf *msg;
3606 };
3607
3608 static void
3609 put_queue_stats(struct queue_stats_cbdata *cbdata, uint32_t queue_id,
3610                 const struct netdev_queue_stats *stats)
3611 {
3612     struct ofp_queue_stats *reply;
3613
3614     reply = append_ofp_stats_reply(sizeof *reply, cbdata->ofconn, &cbdata->msg);
3615     reply->port_no = htons(cbdata->ofport->opp.port_no);
3616     memset(reply->pad, 0, sizeof reply->pad);
3617     reply->queue_id = htonl(queue_id);
3618     reply->tx_bytes = htonll(stats->tx_bytes);
3619     reply->tx_packets = htonll(stats->tx_packets);
3620     reply->tx_errors = htonll(stats->tx_errors);
3621 }
3622
3623 static void
3624 handle_queue_stats_dump_cb(uint32_t queue_id,
3625                            struct netdev_queue_stats *stats,
3626                            void *cbdata_)
3627 {
3628     struct queue_stats_cbdata *cbdata = cbdata_;
3629
3630     put_queue_stats(cbdata, queue_id, stats);
3631 }
3632
3633 static void
3634 handle_queue_stats_for_port(struct ofport *port, uint32_t queue_id,
3635                             struct queue_stats_cbdata *cbdata)
3636 {
3637     cbdata->ofport = port;
3638     if (queue_id == OFPQ_ALL) {
3639         netdev_dump_queue_stats(port->netdev,
3640                                 handle_queue_stats_dump_cb, cbdata);
3641     } else {
3642         struct netdev_queue_stats stats;
3643
3644         if (!netdev_get_queue_stats(port->netdev, queue_id, &stats)) {
3645             put_queue_stats(cbdata, queue_id, &stats);
3646         }
3647     }
3648 }
3649
3650 static int
3651 handle_queue_stats_request(struct ofconn *ofconn,
3652                            const struct ofp_stats_request *osr,
3653                            size_t arg_size)
3654 {
3655     struct ofproto *ofproto = ofconn->ofproto;
3656     struct ofp_queue_stats_request *qsr;
3657     struct queue_stats_cbdata cbdata;
3658     struct ofport *port;
3659     unsigned int port_no;
3660     uint32_t queue_id;
3661
3662     if (arg_size != sizeof *qsr) {
3663         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3664     }
3665     qsr = (struct ofp_queue_stats_request *) osr->body;
3666
3667     COVERAGE_INC(ofproto_queue_req);
3668
3669     cbdata.ofconn = ofconn;
3670     cbdata.msg = start_ofp_stats_reply(osr, 128);
3671
3672     port_no = ntohs(qsr->port_no);
3673     queue_id = ntohl(qsr->queue_id);
3674     if (port_no == OFPP_ALL) {
3675         HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
3676             handle_queue_stats_for_port(port, queue_id, &cbdata);
3677         }
3678     } else if (port_no < ofproto->max_ports) {
3679         port = get_port(ofproto, ofp_port_to_odp_port(port_no));
3680         if (port) {
3681             handle_queue_stats_for_port(port, queue_id, &cbdata);
3682         }
3683     } else {
3684         ofpbuf_delete(cbdata.msg);
3685         return ofp_mkerr(OFPET_QUEUE_OP_FAILED, OFPQOFC_BAD_PORT);
3686     }
3687     queue_tx(cbdata.msg, ofconn, ofconn->reply_counter);
3688
3689     return 0;
3690 }
3691
3692 static int
3693 handle_vendor_stats_request(struct ofconn *ofconn,
3694                             struct ofp_stats_request *osr, size_t arg_size)
3695 {
3696     struct nicira_stats_msg *nsm;
3697     struct ofpbuf b;
3698     ovs_be32 vendor;
3699
3700     if (arg_size < 4) {
3701         VLOG_WARN_RL(&rl, "truncated vendor stats request body");
3702         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3703     }
3704
3705     memcpy(&vendor, osr->body, sizeof vendor);
3706     if (vendor != htonl(NX_VENDOR_ID)) {
3707         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_VENDOR);
3708     }
3709
3710     if (ntohs(osr->header.length) < sizeof(struct nicira_stats_msg)) {
3711         VLOG_WARN_RL(&rl, "truncated Nicira stats request");
3712         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
3713     }
3714
3715     nsm = (struct nicira_stats_msg *) osr;
3716     b.data = nsm;
3717     b.size = ntohs(nsm->header.length);
3718     switch (ntohl(nsm->subtype)) {
3719     case NXST_FLOW:
3720         return handle_nxst_flow(ofconn, &b);
3721
3722     case NXST_AGGREGATE:
3723         return handle_nxst_aggregate(ofconn, &b);
3724
3725     default:
3726         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE);
3727     }
3728 }
3729
3730 static int
3731 handle_stats_request(struct ofconn *ofconn, struct ofp_header *oh)
3732 {
3733     struct ofp_stats_request *osr;
3734     size_t arg_size;
3735     int error;
3736
3737     error = check_ofp_message_array(oh, OFPT_STATS_REQUEST, sizeof *osr,
3738                                     1, &arg_size);
3739     if (error) {
3740         return error;
3741     }
3742     osr = (struct ofp_stats_request *) oh;
3743
3744     switch (ntohs(osr->type)) {
3745     case OFPST_DESC:
3746         return handle_desc_stats_request(ofconn, osr);
3747
3748     case OFPST_FLOW:
3749         return handle_flow_stats_request(ofconn, osr, arg_size);
3750
3751     case OFPST_AGGREGATE:
3752         return handle_aggregate_stats_request(ofconn, osr, arg_size);
3753
3754     case OFPST_TABLE:
3755         return handle_table_stats_request(ofconn, osr);
3756
3757     case OFPST_PORT:
3758         return handle_port_stats_request(ofconn, osr, arg_size);
3759
3760     case OFPST_QUEUE:
3761         return handle_queue_stats_request(ofconn, osr, arg_size);
3762
3763     case OFPST_VENDOR:
3764         return handle_vendor_stats_request(ofconn, osr, arg_size);
3765
3766     default:
3767         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_STAT);
3768     }
3769 }
3770
3771 static long long int
3772 msec_from_nsec(uint64_t sec, uint32_t nsec)
3773 {
3774     return !sec ? 0 : sec * 1000 + nsec / 1000000;
3775 }
3776
3777 static void
3778 update_time(struct ofproto *ofproto, struct rule *rule,
3779             const struct odp_flow_stats *stats)
3780 {
3781     long long int used = msec_from_nsec(stats->used_sec, stats->used_nsec);
3782     if (used > rule->used) {
3783         rule->used = used;
3784         if (rule->super && used > rule->super->used) {
3785             rule->super->used = used;
3786         }
3787         netflow_flow_update_time(ofproto->netflow, &rule->nf_flow, used);
3788     }
3789 }
3790
3791 static void
3792 update_stats(struct ofproto *ofproto, struct rule *rule,
3793              const struct odp_flow_stats *stats)
3794 {
3795     if (stats->n_packets) {
3796         update_time(ofproto, rule, stats);
3797         rule->packet_count += stats->n_packets;
3798         rule->byte_count += stats->n_bytes;
3799         netflow_flow_update_flags(&rule->nf_flow, stats->tcp_flags);
3800     }
3801 }
3802
3803 struct flow_mod {
3804     struct cls_rule cr;
3805     ovs_be64 cookie;
3806     uint16_t command;
3807     uint16_t idle_timeout;
3808     uint16_t hard_timeout;
3809     uint32_t buffer_id;
3810     uint16_t out_port;
3811     uint16_t flags;
3812     union ofp_action *actions;
3813     size_t n_actions;
3814 };
3815
3816 /* Implements OFPFC_ADD and the cases for OFPFC_MODIFY and OFPFC_MODIFY_STRICT
3817  * in which no matching flow already exists in the flow table.
3818  *
3819  * Adds the flow specified by 'ofm', which is followed by 'n_actions'
3820  * ofp_actions, to ofconn->ofproto's flow table.  Returns 0 on success or an
3821  * OpenFlow error code as encoded by ofp_mkerr() on failure.
3822  *
3823  * 'ofconn' is used to retrieve the packet buffer specified in ofm->buffer_id,
3824  * if any. */
3825 static int
3826 add_flow(struct ofconn *ofconn, struct flow_mod *fm)
3827 {
3828     struct ofproto *p = ofconn->ofproto;
3829     struct ofpbuf *packet;
3830     struct rule *rule;
3831     uint16_t in_port;
3832     int error;
3833
3834     if (fm->flags & OFPFF_CHECK_OVERLAP
3835         && classifier_rule_overlaps(&p->cls, &fm->cr)) {
3836         return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_OVERLAP);
3837     }
3838
3839     rule = rule_create(p, NULL, fm->actions, fm->n_actions,
3840                        fm->idle_timeout, fm->hard_timeout, fm->cookie,
3841                        fm->flags & OFPFF_SEND_FLOW_REM);
3842     rule->cr = fm->cr;
3843
3844     error = 0;
3845     if (fm->buffer_id != UINT32_MAX) {
3846         error = pktbuf_retrieve(ofconn->pktbuf, fm->buffer_id,
3847                                 &packet, &in_port);
3848     } else {
3849         packet = NULL;
3850         in_port = UINT16_MAX;
3851     }
3852
3853     rule_insert(p, rule, packet, in_port);
3854     return error;
3855 }
3856
3857 static struct rule *
3858 find_flow_strict(struct ofproto *p, const struct flow_mod *fm)
3859 {
3860     return rule_from_cls_rule(classifier_find_rule_exactly(&p->cls, &fm->cr));
3861 }
3862
3863 static int
3864 send_buffered_packet(struct ofconn *ofconn,
3865                      struct rule *rule, uint32_t buffer_id)
3866 {
3867     struct ofpbuf *packet;
3868     uint16_t in_port;
3869     struct flow flow;
3870     int error;
3871
3872     if (buffer_id == UINT32_MAX) {
3873         return 0;
3874     }
3875
3876     error = pktbuf_retrieve(ofconn->pktbuf, buffer_id, &packet, &in_port);
3877     if (error) {
3878         return error;
3879     }
3880
3881     flow_extract(packet, 0, in_port, &flow);
3882     rule_execute(ofconn->ofproto, rule, packet, &flow);
3883
3884     return 0;
3885 }
3886 \f
3887 /* OFPFC_MODIFY and OFPFC_MODIFY_STRICT. */
3888
3889 struct modify_flows_cbdata {
3890     struct ofproto *ofproto;
3891     const struct flow_mod *fm;
3892     struct rule *match;
3893 };
3894
3895 static int modify_flow(struct ofproto *, const struct flow_mod *,
3896                        struct rule *);
3897 static void modify_flows_cb(struct cls_rule *, void *cbdata_);
3898
3899 /* Implements OFPFC_MODIFY.  Returns 0 on success or an OpenFlow error code as
3900  * encoded by ofp_mkerr() on failure.
3901  *
3902  * 'ofconn' is used to retrieve the packet buffer specified in ofm->buffer_id,
3903  * if any. */
3904 static int
3905 modify_flows_loose(struct ofconn *ofconn, struct flow_mod *fm)
3906 {
3907     struct modify_flows_cbdata cbdata;
3908
3909     cbdata.ofproto = ofconn->ofproto;
3910     cbdata.fm = fm;
3911     cbdata.match = NULL;
3912
3913     classifier_for_each_match(&ofconn->ofproto->cls, &fm->cr, CLS_INC_ALL,
3914                               modify_flows_cb, &cbdata);
3915     if (cbdata.match) {
3916         /* This credits the packet to whichever flow happened to happened to
3917          * match last.  That's weird.  Maybe we should do a lookup for the
3918          * flow that actually matches the packet?  Who knows. */
3919         send_buffered_packet(ofconn, cbdata.match, fm->buffer_id);
3920         return 0;
3921     } else {
3922         return add_flow(ofconn, fm);
3923     }
3924 }
3925
3926 /* Implements OFPFC_MODIFY_STRICT.  Returns 0 on success or an OpenFlow error
3927  * code as encoded by ofp_mkerr() on failure.
3928  *
3929  * 'ofconn' is used to retrieve the packet buffer specified in ofm->buffer_id,
3930  * if any. */
3931 static int
3932 modify_flow_strict(struct ofconn *ofconn, struct flow_mod *fm)
3933 {
3934     struct ofproto *p = ofconn->ofproto;
3935     struct rule *rule = find_flow_strict(p, fm);
3936     if (rule && !rule_is_hidden(rule)) {
3937         modify_flow(p, fm, rule);
3938         return send_buffered_packet(ofconn, rule, fm->buffer_id);
3939     } else {
3940         return add_flow(ofconn, fm);
3941     }
3942 }
3943
3944 /* Callback for modify_flows_loose(). */
3945 static void
3946 modify_flows_cb(struct cls_rule *rule_, void *cbdata_)
3947 {
3948     struct rule *rule = rule_from_cls_rule(rule_);
3949     struct modify_flows_cbdata *cbdata = cbdata_;
3950
3951     if (!rule_is_hidden(rule)) {
3952         cbdata->match = rule;
3953         modify_flow(cbdata->ofproto, cbdata->fm, rule);
3954     }
3955 }
3956
3957 /* Implements core of OFPFC_MODIFY and OFPFC_MODIFY_STRICT where 'rule' has
3958  * been identified as a flow in 'p''s flow table to be modified, by changing
3959  * the rule's actions to match those in 'ofm' (which is followed by 'n_actions'
3960  * ofp_action[] structures). */
3961 static int
3962 modify_flow(struct ofproto *p, const struct flow_mod *fm, struct rule *rule)
3963 {
3964     size_t actions_len = fm->n_actions * sizeof *rule->actions;
3965
3966     rule->flow_cookie = fm->cookie;
3967
3968     /* If the actions are the same, do nothing. */
3969     if (fm->n_actions == rule->n_actions
3970         && (!fm->n_actions
3971             || !memcmp(fm->actions, rule->actions, actions_len))) {
3972         return 0;
3973     }
3974
3975     /* Replace actions. */
3976     free(rule->actions);
3977     rule->actions = fm->n_actions ? xmemdup(fm->actions, actions_len) : NULL;
3978     rule->n_actions = fm->n_actions;
3979
3980     /* Make sure that the datapath gets updated properly. */
3981     if (rule->cr.wc.wildcards) {
3982         COVERAGE_INC(ofproto_mod_wc_flow);
3983         p->need_revalidate = true;
3984     } else {
3985         rule_update_actions(p, rule);
3986     }
3987
3988     return 0;
3989 }
3990 \f
3991 /* OFPFC_DELETE implementation. */
3992
3993 struct delete_flows_cbdata {
3994     struct ofproto *ofproto;
3995     ovs_be16 out_port;
3996 };
3997
3998 static void delete_flows_cb(struct cls_rule *, void *cbdata_);
3999 static void delete_flow(struct ofproto *, struct rule *, ovs_be16 out_port);
4000
4001 /* Implements OFPFC_DELETE. */
4002 static void
4003 delete_flows_loose(struct ofproto *p, const struct flow_mod *fm)
4004 {
4005     struct delete_flows_cbdata cbdata;
4006
4007     cbdata.ofproto = p;
4008     cbdata.out_port = htons(fm->out_port);
4009
4010     classifier_for_each_match(&p->cls, &fm->cr, CLS_INC_ALL,
4011                               delete_flows_cb, &cbdata);
4012 }
4013
4014 /* Implements OFPFC_DELETE_STRICT. */
4015 static void
4016 delete_flow_strict(struct ofproto *p, struct flow_mod *fm)
4017 {
4018     struct rule *rule = find_flow_strict(p, fm);
4019     if (rule) {
4020         delete_flow(p, rule, htons(fm->out_port));
4021     }
4022 }
4023
4024 /* Callback for delete_flows_loose(). */
4025 static void
4026 delete_flows_cb(struct cls_rule *rule_, void *cbdata_)
4027 {
4028     struct rule *rule = rule_from_cls_rule(rule_);
4029     struct delete_flows_cbdata *cbdata = cbdata_;
4030
4031     delete_flow(cbdata->ofproto, rule, cbdata->out_port);
4032 }
4033
4034 /* Implements core of OFPFC_DELETE and OFPFC_DELETE_STRICT where 'rule' has
4035  * been identified as a flow to delete from 'p''s flow table, by deleting the
4036  * flow and sending out a OFPT_FLOW_REMOVED message to any interested
4037  * controller.
4038  *
4039  * Will not delete 'rule' if it is hidden.  Will delete 'rule' only if
4040  * 'out_port' is htons(OFPP_NONE) or if 'rule' actually outputs to the
4041  * specified 'out_port'. */
4042 static void
4043 delete_flow(struct ofproto *p, struct rule *rule, ovs_be16 out_port)
4044 {
4045     if (rule_is_hidden(rule)) {
4046         return;
4047     }
4048
4049     if (out_port != htons(OFPP_NONE) && !rule_has_out_port(rule, out_port)) {
4050         return;
4051     }
4052
4053     send_flow_removed(p, rule, OFPRR_DELETE);
4054     rule_remove(p, rule);
4055 }
4056 \f
4057 static int
4058 flow_mod_core(struct ofconn *ofconn, struct flow_mod *fm)
4059 {
4060     struct ofproto *p = ofconn->ofproto;
4061     int error;
4062
4063     error = reject_slave_controller(ofconn, "flow_mod");
4064     if (error) {
4065         return error;
4066     }
4067
4068     error = validate_actions(fm->actions, fm->n_actions,
4069                              &fm->cr.flow, p->max_ports);
4070     if (error) {
4071         return error;
4072     }
4073
4074     /* We do not support the emergency flow cache.  It will hopefully
4075      * get dropped from OpenFlow in the near future. */
4076     if (fm->flags & OFPFF_EMERG) {
4077         /* There isn't a good fit for an error code, so just state that the
4078          * flow table is full. */
4079         return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_ALL_TABLES_FULL);
4080     }
4081
4082     switch (fm->command) {
4083     case OFPFC_ADD:
4084         return add_flow(ofconn, fm);
4085
4086     case OFPFC_MODIFY:
4087         return modify_flows_loose(ofconn, fm);
4088
4089     case OFPFC_MODIFY_STRICT:
4090         return modify_flow_strict(ofconn, fm);
4091
4092     case OFPFC_DELETE:
4093         delete_flows_loose(p, fm);
4094         return 0;
4095
4096     case OFPFC_DELETE_STRICT:
4097         delete_flow_strict(p, fm);
4098         return 0;
4099
4100     default:
4101         return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_BAD_COMMAND);
4102     }
4103 }
4104
4105 static int
4106 handle_ofpt_flow_mod(struct ofconn *ofconn, struct ofp_header *oh)
4107 {
4108     struct ofp_match orig_match;
4109     struct ofp_flow_mod *ofm;
4110     struct flow_mod fm;
4111     struct ofpbuf b;
4112     int error;
4113
4114     b.data = oh;
4115     b.size = ntohs(oh->length);
4116
4117     /* Dissect the message. */
4118     ofm = ofpbuf_try_pull(&b, sizeof *ofm);
4119     if (!ofm) {
4120         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
4121     }
4122     error = ofputil_pull_actions(&b, b.size, &fm.actions, &fm.n_actions);
4123     if (error) {
4124         return error;
4125     }
4126
4127     /* Normalize ofm->match.  If normalization actually changes anything, then
4128      * log the differences. */
4129     ofm->match.pad1[0] = ofm->match.pad2[0] = 0;
4130     orig_match = ofm->match;
4131     normalize_match(&ofm->match);
4132     if (memcmp(&ofm->match, &orig_match, sizeof orig_match)) {
4133         static struct vlog_rate_limit normal_rl = VLOG_RATE_LIMIT_INIT(1, 1);
4134         if (!VLOG_DROP_INFO(&normal_rl)) {
4135             char *old = ofp_match_to_literal_string(&orig_match);
4136             char *new = ofp_match_to_literal_string(&ofm->match);
4137             VLOG_INFO("%s: normalization changed ofp_match, details:",
4138                       rconn_get_name(ofconn->rconn));
4139             VLOG_INFO(" pre: %s", old);
4140             VLOG_INFO("post: %s", new);
4141             free(old);
4142             free(new);
4143         }
4144     }
4145
4146     /* Translate the message. */
4147     cls_rule_from_match(&ofm->match, ntohs(ofm->priority), ofconn->flow_format,
4148                         ofm->cookie, &fm.cr);
4149     fm.cookie = ofm->cookie;
4150     fm.command = ntohs(ofm->command);
4151     fm.idle_timeout = ntohs(ofm->idle_timeout);
4152     fm.hard_timeout = ntohs(ofm->hard_timeout);
4153     fm.buffer_id = ntohl(ofm->buffer_id);
4154     fm.out_port = ntohs(ofm->out_port);
4155     fm.flags = ntohs(ofm->flags);
4156
4157     /* Execute the command. */
4158     return flow_mod_core(ofconn, &fm);
4159 }
4160
4161 static int
4162 handle_nxt_flow_mod(struct ofconn *ofconn, struct ofp_header *oh)
4163 {
4164     struct nx_flow_mod *nfm;
4165     struct flow_mod fm;
4166     struct ofpbuf b;
4167     int error;
4168
4169     b.data = oh;
4170     b.size = ntohs(oh->length);
4171
4172     /* Dissect the message. */
4173     nfm = ofpbuf_try_pull(&b, sizeof *nfm);
4174     if (!nfm) {
4175         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
4176     }
4177     error = nx_pull_match(&b, ntohs(nfm->match_len), ntohs(nfm->priority),
4178                           &fm.cr);
4179     if (error) {
4180         return error;
4181     }
4182     error = ofputil_pull_actions(&b, b.size, &fm.actions, &fm.n_actions);
4183     if (error) {
4184         return error;
4185     }
4186
4187     /* Translate the message. */
4188     fm.cookie = nfm->cookie;
4189     fm.command = ntohs(nfm->command);
4190     fm.idle_timeout = ntohs(nfm->idle_timeout);
4191     fm.hard_timeout = ntohs(nfm->hard_timeout);
4192     fm.buffer_id = ntohl(nfm->buffer_id);
4193     fm.out_port = ntohs(nfm->out_port);
4194     fm.flags = ntohs(nfm->flags);
4195
4196     /* Execute the command. */
4197     return flow_mod_core(ofconn, &fm);
4198 }
4199
4200 static int
4201 handle_tun_id_from_cookie(struct ofconn *ofconn, struct nxt_tun_id_cookie *msg)
4202 {
4203     int error;
4204
4205     error = check_ofp_message(&msg->header, OFPT_VENDOR, sizeof *msg);
4206     if (error) {
4207         return error;
4208     }
4209
4210     ofconn->flow_format = msg->set ? NXFF_TUN_ID_FROM_COOKIE : NXFF_OPENFLOW10;
4211     return 0;
4212 }
4213
4214 static int
4215 handle_role_request(struct ofconn *ofconn, struct nicira_header *msg)
4216 {
4217     struct nx_role_request *nrr;
4218     struct nx_role_request *reply;
4219     struct ofpbuf *buf;
4220     uint32_t role;
4221
4222     if (ntohs(msg->header.length) != sizeof *nrr) {
4223         VLOG_WARN_RL(&rl, "received role request of length %u (expected %zu)",
4224                      ntohs(msg->header.length), sizeof *nrr);
4225         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
4226     }
4227     nrr = (struct nx_role_request *) msg;
4228
4229     if (ofconn->type != OFCONN_PRIMARY) {
4230         VLOG_WARN_RL(&rl, "ignoring role request on non-controller "
4231                      "connection");
4232         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_EPERM);
4233     }
4234
4235     role = ntohl(nrr->role);
4236     if (role != NX_ROLE_OTHER && role != NX_ROLE_MASTER
4237         && role != NX_ROLE_SLAVE) {
4238         VLOG_WARN_RL(&rl, "received request for unknown role %"PRIu32, role);
4239
4240         /* There's no good error code for this. */
4241         return ofp_mkerr(OFPET_BAD_REQUEST, -1);
4242     }
4243
4244     if (role == NX_ROLE_MASTER) {
4245         struct ofconn *other;
4246
4247         HMAP_FOR_EACH (other, hmap_node, &ofconn->ofproto->controllers) {
4248             if (other->role == NX_ROLE_MASTER) {
4249                 other->role = NX_ROLE_SLAVE;
4250             }
4251         }
4252     }
4253     ofconn->role = role;
4254
4255     reply = make_nxmsg_xid(sizeof *reply, NXT_ROLE_REPLY, msg->header.xid,
4256                            &buf);
4257     reply->role = htonl(role);
4258     queue_tx(buf, ofconn, ofconn->reply_counter);
4259
4260     return 0;
4261 }
4262
4263 static int
4264 handle_nxt_set_flow_format(struct ofconn *ofconn,
4265                            struct nxt_set_flow_format *msg)
4266 {
4267     uint32_t format;
4268     int error;
4269
4270     error = check_ofp_message(&msg->header, OFPT_VENDOR, sizeof *msg);
4271     if (error) {
4272         return error;
4273     }
4274
4275     format = ntohl(msg->format);
4276     if (format == NXFF_OPENFLOW10
4277         || format == NXFF_TUN_ID_FROM_COOKIE
4278         || format == NXFF_NXM) {
4279         ofconn->flow_format = format;
4280         return 0;
4281     } else {
4282         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_EPERM);
4283     }
4284 }
4285
4286 static int
4287 handle_vendor(struct ofconn *ofconn, void *msg)
4288 {
4289     struct ofproto *p = ofconn->ofproto;
4290     struct ofp_vendor_header *ovh = msg;
4291     struct nicira_header *nh;
4292
4293     if (ntohs(ovh->header.length) < sizeof(struct ofp_vendor_header)) {
4294         VLOG_WARN_RL(&rl, "received vendor message of length %u "
4295                           "(expected at least %zu)",
4296                    ntohs(ovh->header.length), sizeof(struct ofp_vendor_header));
4297         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
4298     }
4299     if (ovh->vendor != htonl(NX_VENDOR_ID)) {
4300         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_VENDOR);
4301     }
4302     if (ntohs(ovh->header.length) < sizeof(struct nicira_header)) {
4303         VLOG_WARN_RL(&rl, "received Nicira vendor message of length %u "
4304                           "(expected at least %zu)",
4305                      ntohs(ovh->header.length), sizeof(struct nicira_header));
4306         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LEN);
4307     }
4308
4309     nh = msg;
4310     switch (ntohl(nh->subtype)) {
4311     case NXT_STATUS_REQUEST:
4312         return switch_status_handle_request(p->switch_status, ofconn->rconn,
4313                                             msg);
4314
4315     case NXT_TUN_ID_FROM_COOKIE:
4316         return handle_tun_id_from_cookie(ofconn, msg);
4317
4318     case NXT_ROLE_REQUEST:
4319         return handle_role_request(ofconn, msg);
4320
4321     case NXT_SET_FLOW_FORMAT:
4322         return handle_nxt_set_flow_format(ofconn, msg);
4323
4324     case NXT_FLOW_MOD:
4325         return handle_nxt_flow_mod(ofconn, &ovh->header);
4326     }
4327
4328     return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE);
4329 }
4330
4331 static int
4332 handle_barrier_request(struct ofconn *ofconn, struct ofp_header *oh)
4333 {
4334     struct ofp_header *ob;
4335     struct ofpbuf *buf;
4336
4337     /* Currently, everything executes synchronously, so we can just
4338      * immediately send the barrier reply. */
4339     ob = make_openflow_xid(sizeof *ob, OFPT_BARRIER_REPLY, oh->xid, &buf);
4340     queue_tx(buf, ofconn, ofconn->reply_counter);
4341     return 0;
4342 }
4343
4344 static void
4345 handle_openflow(struct ofconn *ofconn, struct ofpbuf *ofp_msg)
4346 {
4347     struct ofp_header *oh = ofp_msg->data;
4348     int error;
4349
4350     COVERAGE_INC(ofproto_recv_openflow);
4351     switch (oh->type) {
4352     case OFPT_ECHO_REQUEST:
4353         error = handle_echo_request(ofconn, oh);
4354         break;
4355
4356     case OFPT_ECHO_REPLY:
4357         error = 0;
4358         break;
4359
4360     case OFPT_FEATURES_REQUEST:
4361         error = handle_features_request(ofconn, oh);
4362         break;
4363
4364     case OFPT_GET_CONFIG_REQUEST:
4365         error = handle_get_config_request(ofconn, oh);
4366         break;
4367
4368     case OFPT_SET_CONFIG:
4369         error = handle_set_config(ofconn, ofp_msg->data);
4370         break;
4371
4372     case OFPT_PACKET_OUT:
4373         error = handle_packet_out(ofconn, ofp_msg->data);
4374         break;
4375
4376     case OFPT_PORT_MOD:
4377         error = handle_port_mod(ofconn, oh);
4378         break;
4379
4380     case OFPT_FLOW_MOD:
4381         error = handle_ofpt_flow_mod(ofconn, ofp_msg->data);
4382         break;
4383
4384     case OFPT_STATS_REQUEST:
4385         error = handle_stats_request(ofconn, oh);
4386         break;
4387
4388     case OFPT_VENDOR:
4389         error = handle_vendor(ofconn, ofp_msg->data);
4390         break;
4391
4392     case OFPT_BARRIER_REQUEST:
4393         error = handle_barrier_request(ofconn, oh);
4394         break;
4395
4396     default:
4397         if (VLOG_IS_WARN_ENABLED()) {
4398             char *s = ofp_to_string(oh, ntohs(oh->length), 2);
4399             VLOG_DBG_RL(&rl, "OpenFlow message ignored: %s", s);
4400             free(s);
4401         }
4402         error = ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_TYPE);
4403         break;
4404     }
4405
4406     if (error) {
4407         send_error_oh(ofconn, ofp_msg->data, error);
4408     }
4409 }
4410 \f
4411 static void
4412 handle_odp_miss_msg(struct ofproto *p, struct ofpbuf *packet)
4413 {
4414     struct odp_msg *msg = packet->data;
4415     struct rule *rule;
4416     struct ofpbuf payload;
4417     struct flow flow;
4418
4419     payload.data = msg + 1;
4420     payload.size = msg->length - sizeof *msg;
4421     flow_extract(&payload, msg->arg, msg->port, &flow);
4422
4423     /* Check with in-band control to see if this packet should be sent
4424      * to the local port regardless of the flow table. */
4425     if (in_band_msg_in_hook(p->in_band, &flow, &payload)) {
4426         union odp_action action;
4427
4428         memset(&action, 0, sizeof(action));
4429         action.output.type = ODPAT_OUTPUT;
4430         action.output.port = ODPP_LOCAL;
4431         dpif_execute(p->dpif, &action, 1, &payload);
4432     }
4433
4434     rule = lookup_valid_rule(p, &flow);
4435     if (!rule) {
4436         /* Don't send a packet-in if OFPPC_NO_PACKET_IN asserted. */
4437         struct ofport *port = get_port(p, msg->port);
4438         if (port) {
4439             if (port->opp.config & OFPPC_NO_PACKET_IN) {
4440                 COVERAGE_INC(ofproto_no_packet_in);
4441                 /* XXX install 'drop' flow entry */
4442                 ofpbuf_delete(packet);
4443                 return;
4444             }
4445         } else {
4446             VLOG_WARN_RL(&rl, "packet-in on unknown port %"PRIu16, msg->port);
4447         }
4448
4449         COVERAGE_INC(ofproto_packet_in);
4450         send_packet_in(p, packet);
4451         return;
4452     }
4453
4454     if (rule->cr.wc.wildcards) {
4455         rule = rule_create_subrule(p, rule, &flow);
4456         rule_make_actions(p, rule, packet);
4457     } else {
4458         if (!rule->may_install) {
4459             /* The rule is not installable, that is, we need to process every
4460              * packet, so process the current packet and set its actions into
4461              * 'subrule'. */
4462             rule_make_actions(p, rule, packet);
4463         } else {
4464             /* XXX revalidate rule if it needs it */
4465         }
4466     }
4467
4468     if (rule->super && rule->super->cr.priority == FAIL_OPEN_PRIORITY) {
4469         /*
4470          * Extra-special case for fail-open mode.
4471          *
4472          * We are in fail-open mode and the packet matched the fail-open rule,
4473          * but we are connected to a controller too.  We should send the packet
4474          * up to the controller in the hope that it will try to set up a flow
4475          * and thereby allow us to exit fail-open.
4476          *
4477          * See the top-level comment in fail-open.c for more information.
4478          */
4479         send_packet_in(p, ofpbuf_clone_with_headroom(packet,
4480                                                      DPIF_RECV_MSG_PADDING));
4481     }
4482
4483     ofpbuf_pull(packet, sizeof *msg);
4484     rule_execute(p, rule, packet, &flow);
4485     rule_reinstall(p, rule);
4486 }
4487
4488 static void
4489 handle_odp_msg(struct ofproto *p, struct ofpbuf *packet)
4490 {
4491     struct odp_msg *msg = packet->data;
4492
4493     switch (msg->type) {
4494     case _ODPL_ACTION_NR:
4495         COVERAGE_INC(ofproto_ctlr_action);
4496         send_packet_in(p, packet);
4497         break;
4498
4499     case _ODPL_SFLOW_NR:
4500         if (p->sflow) {
4501             ofproto_sflow_received(p->sflow, msg);
4502         }
4503         ofpbuf_delete(packet);
4504         break;
4505
4506     case _ODPL_MISS_NR:
4507         handle_odp_miss_msg(p, packet);
4508         break;
4509
4510     default:
4511         VLOG_WARN_RL(&rl, "received ODP message of unexpected type %"PRIu32,
4512                      msg->type);
4513         break;
4514     }
4515 }
4516 \f
4517 /* Flow expiration. */
4518
4519 struct expire_cbdata {
4520     struct ofproto *ofproto;
4521     int dp_max_idle;
4522 };
4523
4524 static int ofproto_dp_max_idle(const struct ofproto *);
4525 static void ofproto_update_used(struct ofproto *);
4526 static void rule_expire(struct cls_rule *, void *cbdata);
4527
4528 /* This function is called periodically by ofproto_run().  Its job is to
4529  * collect updates for the flows that have been installed into the datapath,
4530  * most importantly when they last were used, and then use that information to
4531  * expire flows that have not been used recently.
4532  *
4533  * Returns the number of milliseconds after which it should be called again. */
4534 static int
4535 ofproto_expire(struct ofproto *ofproto)
4536 {
4537     struct expire_cbdata cbdata;
4538
4539     /* Update 'used' for each flow in the datapath. */
4540     ofproto_update_used(ofproto);
4541
4542     /* Expire idle flows.
4543      *
4544      * A wildcarded flow is idle only when all of its subrules have expired due
4545      * to becoming idle, so iterate through the exact-match flows first. */
4546     cbdata.ofproto = ofproto;
4547     cbdata.dp_max_idle = ofproto_dp_max_idle(ofproto);
4548     classifier_for_each(&ofproto->cls, CLS_INC_EXACT, rule_expire, &cbdata);
4549     classifier_for_each(&ofproto->cls, CLS_INC_WILD, rule_expire, &cbdata);
4550
4551     /* Let the hook know that we're at a stable point: all outstanding data
4552      * in existing flows has been accounted to the account_cb.  Thus, the
4553      * hook can now reasonably do operations that depend on having accurate
4554      * flow volume accounting (currently, that's just bond rebalancing). */
4555     if (ofproto->ofhooks->account_checkpoint_cb) {
4556         ofproto->ofhooks->account_checkpoint_cb(ofproto->aux);
4557     }
4558
4559     return MIN(cbdata.dp_max_idle, 1000);
4560 }
4561
4562 /* Update 'used' member of each flow currently installed into the datapath. */
4563 static void
4564 ofproto_update_used(struct ofproto *p)
4565 {
4566     struct odp_flow *flows;
4567     size_t n_flows;
4568     size_t i;
4569     int error;
4570
4571     error = dpif_flow_list_all(p->dpif, &flows, &n_flows);
4572     if (error) {
4573         return;
4574     }
4575
4576     for (i = 0; i < n_flows; i++) {
4577         struct odp_flow *f = &flows[i];
4578         struct cls_rule target;
4579         struct rule *rule;
4580         struct flow flow;
4581
4582         odp_flow_key_to_flow(&f->key, &flow);
4583         cls_rule_init_exact(&flow, UINT16_MAX, &target);
4584
4585         rule = rule_from_cls_rule(classifier_find_rule_exactly(&p->cls,
4586                                                                &target));
4587
4588         if (rule && rule->installed) {
4589             update_time(p, rule, &f->stats);
4590             rule_account(p, rule, f->stats.n_bytes);
4591         } else {
4592             /* There's a flow in the datapath that we know nothing about.
4593              * Delete it. */
4594             COVERAGE_INC(ofproto_unexpected_rule);
4595             dpif_flow_del(p->dpif, f);
4596         }
4597
4598     }
4599     free(flows);
4600 }
4601
4602 /* Calculates and returns the number of milliseconds of idle time after which
4603  * flows should expire from the datapath and we should fold their statistics
4604  * into their parent rules in userspace. */
4605 static int
4606 ofproto_dp_max_idle(const struct ofproto *ofproto)
4607 {
4608     /*
4609      * Idle time histogram.
4610      *
4611      * Most of the time a switch has a relatively small number of flows.  When
4612      * this is the case we might as well keep statistics for all of them in
4613      * userspace and to cache them in the kernel datapath for performance as
4614      * well.
4615      *
4616      * As the number of flows increases, the memory required to maintain
4617      * statistics about them in userspace and in the kernel becomes
4618      * significant.  However, with a large number of flows it is likely that
4619      * only a few of them are "heavy hitters" that consume a large amount of
4620      * bandwidth.  At this point, only heavy hitters are worth caching in the
4621      * kernel and maintaining in userspaces; other flows we can discard.
4622      *
4623      * The technique used to compute the idle time is to build a histogram with
4624      * N_BUCKETS bucket whose width is BUCKET_WIDTH msecs each.  Each flow that
4625      * is installed in the kernel gets dropped in the appropriate bucket.
4626      * After the histogram has been built, we compute the cutoff so that only
4627      * the most-recently-used 1% of flows (but at least 1000 flows) are kept
4628      * cached.  At least the most-recently-used bucket of flows is kept, so
4629      * actually an arbitrary number of flows can be kept in any given
4630      * expiration run (though the next run will delete most of those unless
4631      * they receive additional data).
4632      *
4633      * This requires a second pass through the exact-match flows, in addition
4634      * to the pass made by ofproto_update_used(), because the former function
4635      * never looks at uninstallable flows.
4636      */
4637     enum { BUCKET_WIDTH = ROUND_UP(100, TIME_UPDATE_INTERVAL) };
4638     enum { N_BUCKETS = 5000 / BUCKET_WIDTH };
4639     int buckets[N_BUCKETS] = { 0 };
4640     int total, bucket;
4641     struct rule *rule;
4642     long long int now;
4643     int i;
4644
4645     total = classifier_count_exact(&ofproto->cls);
4646     if (total <= 1000) {
4647         return N_BUCKETS * BUCKET_WIDTH;
4648     }
4649
4650     /* Build histogram. */
4651     now = time_msec();
4652     CLASSIFIER_FOR_EACH_EXACT_RULE (rule, cr, &ofproto->cls) {
4653         long long int idle = now - rule->used;
4654         int bucket = (idle <= 0 ? 0
4655                       : idle >= BUCKET_WIDTH * N_BUCKETS ? N_BUCKETS - 1
4656                       : (unsigned int) idle / BUCKET_WIDTH);
4657         buckets[bucket]++;
4658     }
4659
4660     /* Find the first bucket whose flows should be expired. */
4661     for (bucket = 0; bucket < N_BUCKETS; bucket++) {
4662         if (buckets[bucket]) {
4663             int subtotal = 0;
4664             do {
4665                 subtotal += buckets[bucket++];
4666             } while (bucket < N_BUCKETS && subtotal < MAX(1000, total / 100));
4667             break;
4668         }
4669     }
4670
4671     if (VLOG_IS_DBG_ENABLED()) {
4672         struct ds s;
4673
4674         ds_init(&s);
4675         ds_put_cstr(&s, "keep");
4676         for (i = 0; i < N_BUCKETS; i++) {
4677             if (i == bucket) {
4678                 ds_put_cstr(&s, ", drop");
4679             }
4680             if (buckets[i]) {
4681                 ds_put_format(&s, " %d:%d", i * BUCKET_WIDTH, buckets[i]);
4682             }
4683         }
4684         VLOG_INFO("%s: %s (msec:count)",
4685                   dpif_name(ofproto->dpif), ds_cstr(&s));
4686         ds_destroy(&s);
4687     }
4688
4689     return bucket * BUCKET_WIDTH;
4690 }
4691
4692 static void
4693 rule_active_timeout(struct ofproto *ofproto, struct rule *rule)
4694 {
4695     if (ofproto->netflow && !is_controller_rule(rule) &&
4696         netflow_active_timeout_expired(ofproto->netflow, &rule->nf_flow)) {
4697         struct ofexpired expired;
4698         struct odp_flow odp_flow;
4699
4700         /* Get updated flow stats.
4701          *
4702          * XXX We could avoid this call entirely if (1) ofproto_update_used()
4703          * updated TCP flags and (2) the dpif_flow_list_all() in
4704          * ofproto_update_used() zeroed TCP flags. */
4705         memset(&odp_flow, 0, sizeof odp_flow);
4706         if (rule->installed) {
4707             odp_flow_key_from_flow(&odp_flow.key, &rule->cr.flow);
4708             odp_flow.flags = ODPFF_ZERO_TCP_FLAGS;
4709             dpif_flow_get(ofproto->dpif, &odp_flow);
4710
4711             if (odp_flow.stats.n_packets) {
4712                 update_time(ofproto, rule, &odp_flow.stats);
4713                 netflow_flow_update_flags(&rule->nf_flow,
4714                                           odp_flow.stats.tcp_flags);
4715             }
4716         }
4717
4718         expired.flow = rule->cr.flow;
4719         expired.packet_count = rule->packet_count +
4720                                odp_flow.stats.n_packets;
4721         expired.byte_count = rule->byte_count + odp_flow.stats.n_bytes;
4722         expired.used = rule->used;
4723
4724         netflow_expire(ofproto->netflow, &rule->nf_flow, &expired);
4725     }
4726 }
4727
4728 /* If 'cls_rule' is an OpenFlow rule, that has expired according to OpenFlow
4729  * rules, then delete it entirely.
4730  *
4731  * If 'cls_rule' is a subrule, that has not been used recently, remove it from
4732  * the datapath and fold its statistics back into its super-rule.
4733  *
4734  * (This is a callback function for classifier_for_each().) */
4735 static void
4736 rule_expire(struct cls_rule *cls_rule, void *cbdata_)
4737 {
4738     struct expire_cbdata *cbdata = cbdata_;
4739     struct ofproto *ofproto = cbdata->ofproto;
4740     struct rule *rule = rule_from_cls_rule(cls_rule);
4741     long long int hard_expire, idle_expire, expire, now;
4742
4743     /* Calculate OpenFlow expiration times for 'rule'. */
4744     hard_expire = (rule->hard_timeout
4745                    ? rule->created + rule->hard_timeout * 1000
4746                    : LLONG_MAX);
4747     idle_expire = (rule->idle_timeout
4748                    && (rule->super || list_is_empty(&rule->list))
4749                    ? rule->used + rule->idle_timeout * 1000
4750                    : LLONG_MAX);
4751     expire = MIN(hard_expire, idle_expire);
4752
4753     now = time_msec();
4754     if (now < expire) {
4755         /* 'rule' has not expired according to OpenFlow rules. */
4756         if (!rule->cr.wc.wildcards) {
4757             if (now >= rule->used + cbdata->dp_max_idle) {
4758                 /* This rule is idle, so drop it to free up resources. */
4759                 if (rule->super) {
4760                     /* It's not part of the OpenFlow flow table, so we can
4761                      * delete it entirely and fold its statistics into its
4762                      * super-rule. */
4763                     rule_remove(ofproto, rule);
4764                 } else {
4765                     /* It is part of the OpenFlow flow table, so we have to
4766                      * keep the rule but we can at least uninstall it from the
4767                      * datapath. */
4768                     rule_uninstall(ofproto, rule);
4769                 }
4770             } else {
4771                 /* Send NetFlow active timeout if appropriate. */
4772                 rule_active_timeout(cbdata->ofproto, rule);
4773             }
4774         }
4775     } else {
4776         /* 'rule' has expired according to OpenFlow rules. */
4777         COVERAGE_INC(ofproto_expired);
4778
4779         /* Update stats.  (This is a no-op if the rule expired due to an idle
4780          * timeout, because that only happens when the rule has no subrules
4781          * left.) */
4782         if (rule->cr.wc.wildcards) {
4783             struct rule *subrule, *next;
4784             LIST_FOR_EACH_SAFE (subrule, next, list, &rule->list) {
4785                 rule_remove(cbdata->ofproto, subrule);
4786             }
4787         } else {
4788             rule_uninstall(cbdata->ofproto, rule);
4789         }
4790
4791         /* Get rid of the rule. */
4792         if (!rule_is_hidden(rule)) {
4793             send_flow_removed(cbdata->ofproto, rule,
4794                               (now >= hard_expire
4795                                ? OFPRR_HARD_TIMEOUT : OFPRR_IDLE_TIMEOUT));
4796         }
4797         rule_remove(cbdata->ofproto, rule);
4798     }
4799 }
4800 \f
4801 static void
4802 revalidate_cb(struct cls_rule *sub_, void *cbdata_)
4803 {
4804     struct rule *sub = rule_from_cls_rule(sub_);
4805     struct revalidate_cbdata *cbdata = cbdata_;
4806
4807     if (cbdata->revalidate_all
4808         || (cbdata->revalidate_subrules && sub->super)
4809         || (tag_set_intersects(&cbdata->revalidate_set, sub->tags))) {
4810         revalidate_rule(cbdata->ofproto, sub);
4811     }
4812 }
4813
4814 static bool
4815 revalidate_rule(struct ofproto *p, struct rule *rule)
4816 {
4817     const struct flow *flow = &rule->cr.flow;
4818
4819     COVERAGE_INC(ofproto_revalidate_rule);
4820     if (rule->super) {
4821         struct rule *super;
4822         super = rule_from_cls_rule(classifier_lookup(&p->cls, flow,
4823                                                      CLS_INC_WILD));
4824         if (!super) {
4825             rule_remove(p, rule);
4826             return false;
4827         } else if (super != rule->super) {
4828             COVERAGE_INC(ofproto_revalidate_moved);
4829             list_remove(&rule->list);
4830             list_push_back(&super->list, &rule->list);
4831             rule->super = super;
4832             rule->hard_timeout = super->hard_timeout;
4833             rule->idle_timeout = super->idle_timeout;
4834             rule->created = rule->used = super->created;
4835         }
4836     }
4837
4838     rule_update_actions(p, rule);
4839     return true;
4840 }
4841
4842 static struct ofpbuf *
4843 compose_ofp_flow_removed(struct ofconn *ofconn, const struct rule *rule,
4844                          uint8_t reason)
4845 {
4846     struct ofp_flow_removed *ofr;
4847     struct ofpbuf *buf;
4848
4849     ofr = make_openflow(sizeof *ofr, OFPT_FLOW_REMOVED, &buf);
4850     flow_to_match(&rule->cr.flow, rule->cr.wc.wildcards, ofconn->flow_format,
4851                   &ofr->match);
4852     ofr->cookie = rule->flow_cookie;
4853     ofr->priority = htons(rule->cr.priority);
4854     ofr->reason = reason;
4855     calc_flow_duration(rule->created, &ofr->duration_sec, &ofr->duration_nsec);
4856     ofr->idle_timeout = htons(rule->idle_timeout);
4857     ofr->packet_count = htonll(rule->packet_count);
4858     ofr->byte_count = htonll(rule->byte_count);
4859
4860     return buf;
4861 }
4862
4863 static struct ofpbuf *
4864 compose_nx_flow_removed(const struct rule *rule, uint8_t reason)
4865 {
4866     struct nx_flow_removed *nfr;
4867     struct ofpbuf *buf;
4868     int match_len;
4869
4870     nfr = make_nxmsg(sizeof *nfr, NXT_FLOW_REMOVED, &buf);
4871
4872     match_len = nx_put_match(buf, &rule->cr);
4873
4874     nfr->cookie = rule->flow_cookie;
4875     nfr->priority = htons(rule->cr.priority);
4876     nfr->reason = reason;
4877     calc_flow_duration(rule->created, &nfr->duration_sec, &nfr->duration_nsec);
4878     nfr->idle_timeout = htons(rule->idle_timeout);
4879     nfr->match_len = htons(match_len);
4880     nfr->packet_count = htonll(rule->packet_count);
4881     nfr->byte_count = htonll(rule->byte_count);
4882
4883     return buf;
4884 }
4885
4886 static void
4887 send_flow_removed(struct ofproto *p, struct rule *rule, uint8_t reason)
4888 {
4889     struct ofconn *ofconn;
4890
4891     if (!rule->send_flow_removed) {
4892         return;
4893     }
4894
4895     LIST_FOR_EACH (ofconn, node, &p->all_conns) {
4896         struct ofpbuf *msg;
4897
4898         if (!rconn_is_connected(ofconn->rconn)
4899             || !ofconn_receives_async_msgs(ofconn)) {
4900             continue;
4901         }
4902
4903         msg = (ofconn->flow_format == NXFF_NXM
4904                ? compose_nx_flow_removed(rule, reason)
4905                : compose_ofp_flow_removed(ofconn, rule, reason));
4906
4907         /* Account flow expirations under ofconn->reply_counter, the counter
4908          * for replies to OpenFlow requests.  That works because preventing
4909          * OpenFlow requests from being processed also prevents new flows from
4910          * being added (and expiring).  (It also prevents processing OpenFlow
4911          * requests that would not add new flows, so it is imperfect.) */
4912         queue_tx(msg, ofconn, ofconn->reply_counter);
4913     }
4914 }
4915
4916 /* pinsched callback for sending 'packet' on 'ofconn'. */
4917 static void
4918 do_send_packet_in(struct ofpbuf *packet, void *ofconn_)
4919 {
4920     struct ofconn *ofconn = ofconn_;
4921
4922     rconn_send_with_limit(ofconn->rconn, packet,
4923                           ofconn->packet_in_counter, 100);
4924 }
4925
4926 /* Takes 'packet', which has been converted with do_convert_to_packet_in(), and
4927  * finalizes its content for sending on 'ofconn', and passes it to 'ofconn''s
4928  * packet scheduler for sending.
4929  *
4930  * 'max_len' specifies the maximum number of bytes of the packet to send on
4931  * 'ofconn' (INT_MAX specifies no limit).
4932  *
4933  * If 'clone' is true, the caller retains ownership of 'packet'.  Otherwise,
4934  * ownership is transferred to this function. */
4935 static void
4936 schedule_packet_in(struct ofconn *ofconn, struct ofpbuf *packet, int max_len,
4937                    bool clone)
4938 {
4939     struct ofproto *ofproto = ofconn->ofproto;
4940     struct ofp_packet_in *opi = packet->data;
4941     uint16_t in_port = ofp_port_to_odp_port(ntohs(opi->in_port));
4942     int send_len, trim_size;
4943     uint32_t buffer_id;
4944
4945     /* Get buffer. */
4946     if (opi->reason == OFPR_ACTION) {
4947         buffer_id = UINT32_MAX;
4948     } else if (ofproto->fail_open && fail_open_is_active(ofproto->fail_open)) {
4949         buffer_id = pktbuf_get_null();
4950     } else if (!ofconn->pktbuf) {
4951         buffer_id = UINT32_MAX;
4952     } else {
4953         struct ofpbuf payload;
4954         payload.data = opi->data;
4955         payload.size = packet->size - offsetof(struct ofp_packet_in, data);
4956         buffer_id = pktbuf_save(ofconn->pktbuf, &payload, in_port);
4957     }
4958
4959     /* Figure out how much of the packet to send. */
4960     send_len = ntohs(opi->total_len);
4961     if (buffer_id != UINT32_MAX) {
4962         send_len = MIN(send_len, ofconn->miss_send_len);
4963     }
4964     send_len = MIN(send_len, max_len);
4965
4966     /* Adjust packet length and clone if necessary. */
4967     trim_size = offsetof(struct ofp_packet_in, data) + send_len;
4968     if (clone) {
4969         packet = ofpbuf_clone_data(packet->data, trim_size);
4970         opi = packet->data;
4971     } else {
4972         packet->size = trim_size;
4973     }
4974
4975     /* Update packet headers. */
4976     opi->buffer_id = htonl(buffer_id);
4977     update_openflow_length(packet);
4978
4979     /* Hand over to packet scheduler.  It might immediately call into
4980      * do_send_packet_in() or it might buffer it for a while (until a later
4981      * call to pinsched_run()). */
4982     pinsched_send(ofconn->schedulers[opi->reason], in_port,
4983                   packet, do_send_packet_in, ofconn);
4984 }
4985
4986 /* Replace struct odp_msg header in 'packet' by equivalent struct
4987  * ofp_packet_in.  The odp_msg must have sufficient headroom to do so (e.g. as
4988  * returned by dpif_recv()).
4989  *
4990  * The conversion is not complete: the caller still needs to trim any unneeded
4991  * payload off the end of the buffer, set the length in the OpenFlow header,
4992  * and set buffer_id.  Those require us to know the controller settings and so
4993  * must be done on a per-controller basis.
4994  *
4995  * Returns the maximum number of bytes of the packet that should be sent to
4996  * the controller (INT_MAX if no limit). */
4997 static int
4998 do_convert_to_packet_in(struct ofpbuf *packet)
4999 {
5000     struct odp_msg *msg = packet->data;
5001     struct ofp_packet_in *opi;
5002     uint8_t reason;
5003     uint16_t total_len;
5004     uint16_t in_port;
5005     int max_len;
5006
5007     /* Extract relevant header fields */
5008     if (msg->type == _ODPL_ACTION_NR) {
5009         reason = OFPR_ACTION;
5010         max_len = msg->arg;
5011     } else {
5012         reason = OFPR_NO_MATCH;
5013         max_len = INT_MAX;
5014     }
5015     total_len = msg->length - sizeof *msg;
5016     in_port = odp_port_to_ofp_port(msg->port);
5017
5018     /* Repurpose packet buffer by overwriting header. */
5019     ofpbuf_pull(packet, sizeof(struct odp_msg));
5020     opi = ofpbuf_push_zeros(packet, offsetof(struct ofp_packet_in, data));
5021     opi->header.version = OFP_VERSION;
5022     opi->header.type = OFPT_PACKET_IN;
5023     opi->total_len = htons(total_len);
5024     opi->in_port = htons(in_port);
5025     opi->reason = reason;
5026
5027     return max_len;
5028 }
5029
5030 /* Given 'packet' containing an odp_msg of type _ODPL_ACTION_NR or
5031  * _ODPL_MISS_NR, sends an OFPT_PACKET_IN message to each OpenFlow controller
5032  * as necessary according to their individual configurations.
5033  *
5034  * 'packet' must have sufficient headroom to convert it into a struct
5035  * ofp_packet_in (e.g. as returned by dpif_recv()).
5036  *
5037  * Takes ownership of 'packet'. */
5038 static void
5039 send_packet_in(struct ofproto *ofproto, struct ofpbuf *packet)
5040 {
5041     struct ofconn *ofconn, *prev;
5042     int max_len;
5043
5044     max_len = do_convert_to_packet_in(packet);
5045
5046     prev = NULL;
5047     LIST_FOR_EACH (ofconn, node, &ofproto->all_conns) {
5048         if (ofconn_receives_async_msgs(ofconn)) {
5049             if (prev) {
5050                 schedule_packet_in(prev, packet, max_len, true);
5051             }
5052             prev = ofconn;
5053         }
5054     }
5055     if (prev) {
5056         schedule_packet_in(prev, packet, max_len, false);
5057     } else {
5058         ofpbuf_delete(packet);
5059     }
5060 }
5061
5062 static uint64_t
5063 pick_datapath_id(const struct ofproto *ofproto)
5064 {
5065     const struct ofport *port;
5066
5067     port = get_port(ofproto, ODPP_LOCAL);
5068     if (port) {
5069         uint8_t ea[ETH_ADDR_LEN];
5070         int error;
5071
5072         error = netdev_get_etheraddr(port->netdev, ea);
5073         if (!error) {
5074             return eth_addr_to_uint64(ea);
5075         }
5076         VLOG_WARN("could not get MAC address for %s (%s)",
5077                   netdev_get_name(port->netdev), strerror(error));
5078     }
5079     return ofproto->fallback_dpid;
5080 }
5081
5082 static uint64_t
5083 pick_fallback_dpid(void)
5084 {
5085     uint8_t ea[ETH_ADDR_LEN];
5086     eth_addr_nicira_random(ea);
5087     return eth_addr_to_uint64(ea);
5088 }
5089 \f
5090 static bool
5091 default_normal_ofhook_cb(const struct flow *flow, const struct ofpbuf *packet,
5092                          struct odp_actions *actions, tag_type *tags,
5093                          uint16_t *nf_output_iface, void *ofproto_)
5094 {
5095     struct ofproto *ofproto = ofproto_;
5096     int out_port;
5097
5098     /* Drop frames for reserved multicast addresses. */
5099     if (eth_addr_is_reserved(flow->dl_dst)) {
5100         return true;
5101     }
5102
5103     /* Learn source MAC (but don't try to learn from revalidation). */
5104     if (packet != NULL) {
5105         tag_type rev_tag = mac_learning_learn(ofproto->ml, flow->dl_src,
5106                                               0, flow->in_port,
5107                                               GRAT_ARP_LOCK_NONE);
5108         if (rev_tag) {
5109             /* The log messages here could actually be useful in debugging,
5110              * so keep the rate limit relatively high. */
5111             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30, 300);
5112             VLOG_DBG_RL(&rl, "learned that "ETH_ADDR_FMT" is on port %"PRIu16,
5113                         ETH_ADDR_ARGS(flow->dl_src), flow->in_port);
5114             ofproto_revalidate(ofproto, rev_tag);
5115         }
5116     }
5117
5118     /* Determine output port. */
5119     out_port = mac_learning_lookup_tag(ofproto->ml, flow->dl_dst, 0, tags,
5120                                        NULL);
5121     if (out_port < 0) {
5122         flood_packets(ofproto, flow->in_port, OFPPC_NO_FLOOD,
5123                       nf_output_iface, actions);
5124     } else if (out_port != flow->in_port) {
5125         odp_actions_add(actions, ODPAT_OUTPUT)->output.port = out_port;
5126         *nf_output_iface = out_port;
5127     } else {
5128         /* Drop. */
5129     }
5130
5131     return true;
5132 }
5133
5134 static const struct ofhooks default_ofhooks = {
5135     default_normal_ofhook_cb,
5136     NULL,
5137     NULL
5138 };