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