ofproto: Don't use netdev_nodev_get_etheraddr() in pick_datapath_id().
[sliver-openvswitch.git] / ofproto / ofproto.c
1 /*
2  * Copyright (c) 2009 Nicira Networks.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <config.h>
18 #include "ofproto.h"
19 #include <errno.h>
20 #include <inttypes.h>
21 #include <net/if.h>
22 #include <netinet/in.h>
23 #include <stdbool.h>
24 #include <stdlib.h>
25 #include "classifier.h"
26 #include "coverage.h"
27 #include "discovery.h"
28 #include "dpif.h"
29 #include "executer.h"
30 #include "fail-open.h"
31 #include "in-band.h"
32 #include "mac-learning.h"
33 #include "netdev.h"
34 #include "netflow.h"
35 #include "odp-util.h"
36 #include "ofp-print.h"
37 #include "ofpbuf.h"
38 #include "openflow/nicira-ext.h"
39 #include "openflow/openflow.h"
40 #include "openflow/openflow-mgmt.h"
41 #include "openvswitch/datapath-protocol.h"
42 #include "packets.h"
43 #include "pinsched.h"
44 #include "pktbuf.h"
45 #include "poll-loop.h"
46 #include "port-array.h"
47 #include "rconn.h"
48 #include "shash.h"
49 #include "status.h"
50 #include "stp.h"
51 #include "svec.h"
52 #include "tag.h"
53 #include "timeval.h"
54 #include "vconn.h"
55 #include "vconn-ssl.h"
56 #include "xtoxll.h"
57
58 #define THIS_MODULE VLM_ofproto
59 #include "vlog.h"
60
61 enum {
62     DP_GROUP_FLOOD = 0,
63     DP_GROUP_ALL = 1
64 };
65
66 enum {
67     TABLEID_HASH = 0,
68     TABLEID_CLASSIFIER = 1
69 };
70
71 struct ofport {
72     struct netdev *netdev;
73     struct ofp_phy_port opp;    /* In host byte order. */
74 };
75
76 static void ofport_free(struct ofport *);
77 static void hton_ofp_phy_port(struct ofp_phy_port *);
78
79 static int xlate_actions(const union ofp_action *in, size_t n_in,
80                          const flow_t *flow, struct ofproto *ofproto,
81                          const struct ofpbuf *packet,
82                          struct odp_actions *out, tag_type *tags,
83                          bool *may_setup_flow);
84
85 struct rule {
86     struct cls_rule cr;
87
88     uint16_t idle_timeout;      /* In seconds from time of last use. */
89     uint16_t hard_timeout;      /* In seconds from time of creation. */
90     long long int used;         /* Last-used time (0 if never used). */
91     long long int created;      /* Creation time. */
92     uint64_t packet_count;      /* Number of packets received. */
93     uint64_t byte_count;        /* Number of bytes received. */
94     uint64_t accounted_bytes;   /* Number of bytes passed to account_cb. */
95     uint8_t tcp_flags;          /* Bitwise-OR of all TCP flags seen. */
96     uint8_t ip_tos;             /* Last-seen IP type-of-service. */
97     tag_type tags;              /* Tags (set only by hooks). */
98
99     /* If 'super' is non-NULL, this rule is a subrule, that is, it is an
100      * exact-match rule (having cr.wc.wildcards of 0) generated from the
101      * wildcard rule 'super'.  In this case, 'list' is an element of the
102      * super-rule's list.
103      *
104      * If 'super' is NULL, this rule is a super-rule, and 'list' is the head of
105      * a list of subrules.  A super-rule with no wildcards (where
106      * cr.wc.wildcards is 0) will never have any subrules. */
107     struct rule *super;
108     struct list list;
109
110     /* OpenFlow actions.
111      *
112      * A subrule has no actions (it uses the super-rule's actions). */
113     int n_actions;
114     union ofp_action *actions;
115
116     /* Datapath actions.
117      *
118      * A super-rule with wildcard fields never has ODP actions (since the
119      * datapath only supports exact-match flows). */
120     bool installed;             /* Installed in datapath? */
121     bool may_install;           /* True ordinarily; false if actions must
122                                  * be reassessed for every packet. */
123     int n_odp_actions;
124     union odp_action *odp_actions;
125 };
126
127 static inline bool
128 rule_is_hidden(const struct rule *rule)
129 {
130     /* Subrules are merely an implementation detail, so hide them from the
131      * controller. */
132     if (rule->super != NULL) {
133         return true;
134     }
135
136     /* Rules with priority higher than UINT16_MAX are set up by ofproto itself
137      * (e.g. by in-band control) and are intentionally hidden from the
138      * controller. */
139     if (rule->cr.priority > UINT16_MAX) {
140         return true;
141     }
142
143     return false;
144 }
145
146 static struct rule *rule_create(struct rule *super, const union ofp_action *,
147                                 size_t n_actions, uint16_t idle_timeout,
148                                 uint16_t hard_timeout);
149 static void rule_free(struct rule *);
150 static void rule_destroy(struct ofproto *, struct rule *);
151 static struct rule *rule_from_cls_rule(const struct cls_rule *);
152 static void rule_insert(struct ofproto *, struct rule *,
153                         struct ofpbuf *packet, uint16_t in_port);
154 static void rule_remove(struct ofproto *, struct rule *);
155 static bool rule_make_actions(struct ofproto *, struct rule *,
156                               const struct ofpbuf *packet);
157 static void rule_install(struct ofproto *, struct rule *,
158                          struct rule *displaced_rule);
159 static void rule_uninstall(struct ofproto *, struct rule *);
160 static void rule_post_uninstall(struct ofproto *, struct rule *);
161
162 struct ofconn {
163     struct list node;
164     struct rconn *rconn;
165     struct pktbuf *pktbuf;
166     bool send_flow_exp;
167     int miss_send_len;
168
169     struct rconn_packet_counter *packet_in_counter;
170
171     /* Number of OpenFlow messages queued as replies to OpenFlow requests, and
172      * the maximum number before we stop reading OpenFlow requests.  */
173 #define OFCONN_REPLY_MAX 100
174     struct rconn_packet_counter *reply_counter;
175 };
176
177 static struct ofconn *ofconn_create(struct ofproto *, struct rconn *);
178 static void ofconn_destroy(struct ofconn *, struct ofproto *);
179 static void ofconn_run(struct ofconn *, struct ofproto *);
180 static void ofconn_wait(struct ofconn *);
181 static void queue_tx(struct ofpbuf *msg, const struct ofconn *ofconn,
182                      struct rconn_packet_counter *counter);
183
184 struct ofproto {
185     /* Settings. */
186     uint64_t datapath_id;       /* Datapath ID. */
187     uint64_t fallback_dpid;     /* Datapath ID if no better choice found. */
188     uint64_t mgmt_id;           /* Management channel identifier. */
189     char *manufacturer;         /* Manufacturer. */
190     char *hardware;             /* Hardware. */
191     char *software;             /* Software version. */
192     char *serial;               /* Serial number. */
193
194     /* Datapath. */
195     struct dpif *dpif;
196     struct netdev_monitor *netdev_monitor;
197     struct port_array ports;    /* Index is ODP port nr; ofport->opp.port_no is
198                                  * OFP port nr. */
199     struct shash port_by_name;
200     uint32_t max_ports;
201
202     /* Configuration. */
203     struct switch_status *switch_status;
204     struct status_category *ss_cat;
205     struct in_band *in_band;
206     struct discovery *discovery;
207     struct fail_open *fail_open;
208     struct pinsched *miss_sched, *action_sched;
209     struct executer *executer;
210     struct netflow *netflow;
211
212     /* Flow table. */
213     struct classifier cls;
214     bool need_revalidate;
215     long long int next_expiration;
216     struct tag_set revalidate_set;
217
218     /* OpenFlow connections. */
219     struct list all_conns;
220     struct ofconn *controller;
221     struct pvconn **listeners;
222     size_t n_listeners;
223     struct pvconn **snoops;
224     size_t n_snoops;
225
226     /* Hooks for ovs-vswitchd. */
227     const struct ofhooks *ofhooks;
228     void *aux;
229
230     /* Used by default ofhooks. */
231     struct mac_learning *ml;
232 };
233
234 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
235
236 static const struct ofhooks default_ofhooks;
237
238 static uint64_t pick_datapath_id(const struct ofproto *);
239 static uint64_t pick_fallback_dpid(void);
240 static void send_packet_in_miss(struct ofpbuf *, void *ofproto);
241 static void send_packet_in_action(struct ofpbuf *, void *ofproto);
242 static void update_used(struct ofproto *);
243 static void update_stats(struct rule *, const struct odp_flow_stats *);
244 static void expire_rule(struct cls_rule *, void *ofproto);
245 static bool revalidate_rule(struct ofproto *p, struct rule *rule);
246 static void revalidate_cb(struct cls_rule *rule_, void *p_);
247
248 static void handle_odp_msg(struct ofproto *, struct ofpbuf *);
249
250 static void handle_openflow(struct ofconn *, struct ofproto *,
251                             struct ofpbuf *);
252
253 static void refresh_port_group(struct ofproto *, unsigned int group);
254 static void update_port(struct ofproto *, const char *devname);
255 static int init_ports(struct ofproto *);
256 static void reinit_ports(struct ofproto *);
257
258 int
259 ofproto_create(const char *datapath, const struct ofhooks *ofhooks, void *aux,
260                struct ofproto **ofprotop)
261 {
262     struct netdev_monitor *netdev_monitor;
263     struct odp_stats stats;
264     struct ofproto *p;
265     struct dpif *dpif;
266     int error;
267
268     *ofprotop = NULL;
269
270     /* Connect to datapath and start listening for messages. */
271     error = dpif_open(datapath, &dpif);
272     if (error) {
273         VLOG_ERR("failed to open datapath %s: %s", datapath, strerror(error));
274         return error;
275     }
276     error = dpif_get_dp_stats(dpif, &stats);
277     if (error) {
278         VLOG_ERR("failed to obtain stats for datapath %s: %s",
279                  datapath, strerror(error));
280         dpif_close(dpif);
281         return error;
282     }
283     error = dpif_recv_set_mask(dpif, ODPL_MISS | ODPL_ACTION);
284     if (error) {
285         VLOG_ERR("failed to listen on datapath %s: %s",
286                  datapath, strerror(error));
287         dpif_close(dpif);
288         return error;
289     }
290     dpif_flow_flush(dpif);
291     dpif_recv_purge(dpif);
292
293     /* Arrange to monitor datapath ports for status changes. */
294     error = netdev_monitor_create(&netdev_monitor);
295     if (error) {
296         VLOG_ERR("failed to starting monitoring datapath %s: %s",
297                  datapath, strerror(error));
298         dpif_close(dpif);
299         return error;
300     }
301
302     /* Initialize settings. */
303     p = xcalloc(1, sizeof *p);
304     p->fallback_dpid = pick_fallback_dpid();
305     p->datapath_id = p->fallback_dpid;
306     p->manufacturer = xstrdup("Nicira Networks, Inc.");
307     p->hardware = xstrdup("Reference Implementation");
308     p->software = xstrdup(VERSION BUILDNR);
309     p->serial = xstrdup("None");
310
311     /* Initialize datapath. */
312     p->dpif = dpif;
313     p->netdev_monitor = netdev_monitor;
314     port_array_init(&p->ports);
315     shash_init(&p->port_by_name);
316     p->max_ports = stats.max_ports;
317
318     /* Initialize submodules. */
319     p->switch_status = switch_status_create(p);
320     p->in_band = NULL;
321     p->discovery = NULL;
322     p->fail_open = NULL;
323     p->miss_sched = p->action_sched = NULL;
324     p->executer = NULL;
325     p->netflow = NULL;
326
327     /* Initialize flow table. */
328     classifier_init(&p->cls);
329     p->need_revalidate = false;
330     p->next_expiration = time_msec() + 1000;
331     tag_set_init(&p->revalidate_set);
332
333     /* Initialize OpenFlow connections. */
334     list_init(&p->all_conns);
335     p->controller = ofconn_create(p, rconn_create(15, 15));
336     p->controller->pktbuf = pktbuf_create();
337     p->controller->miss_send_len = OFP_DEFAULT_MISS_SEND_LEN;
338     p->listeners = NULL;
339     p->n_listeners = 0;
340     p->snoops = NULL;
341     p->n_snoops = 0;
342
343     /* Initialize hooks. */
344     if (ofhooks) {
345         p->ofhooks = ofhooks;
346         p->aux = aux;
347         p->ml = NULL;
348     } else {
349         p->ofhooks = &default_ofhooks;
350         p->aux = p;
351         p->ml = mac_learning_create();
352     }
353
354     /* Register switch status category. */
355     p->ss_cat = switch_status_register(p->switch_status, "remote",
356                                        rconn_status_cb, p->controller->rconn);
357
358     /* Almost done... */
359     error = init_ports(p);
360     if (error) {
361         ofproto_destroy(p);
362         return error;
363     }
364
365     /* Pick final datapath ID. */
366     p->datapath_id = pick_datapath_id(p);
367     VLOG_INFO("using datapath ID %012"PRIx64, p->datapath_id);
368
369     *ofprotop = p;
370     return 0;
371 }
372
373 void
374 ofproto_set_datapath_id(struct ofproto *p, uint64_t datapath_id)
375 {
376     uint64_t old_dpid = p->datapath_id;
377     p->datapath_id = datapath_id ? datapath_id : pick_datapath_id(p);
378     if (p->datapath_id != old_dpid) {
379         VLOG_INFO("datapath ID changed to %012"PRIx64, p->datapath_id);
380         rconn_reconnect(p->controller->rconn);
381     }
382 }
383
384 void
385 ofproto_set_mgmt_id(struct ofproto *p, uint64_t mgmt_id)
386 {
387     p->mgmt_id = mgmt_id;
388 }
389
390 void
391 ofproto_set_probe_interval(struct ofproto *p, int probe_interval)
392 {
393     probe_interval = probe_interval ? MAX(probe_interval, 5) : 0;
394     rconn_set_probe_interval(p->controller->rconn, probe_interval);
395     if (p->fail_open) {
396         int trigger_duration = probe_interval ? probe_interval * 3 : 15;
397         fail_open_set_trigger_duration(p->fail_open, trigger_duration);
398     }
399 }
400
401 void
402 ofproto_set_max_backoff(struct ofproto *p, int max_backoff)
403 {
404     rconn_set_max_backoff(p->controller->rconn, max_backoff);
405 }
406
407 void
408 ofproto_set_desc(struct ofproto *p,
409                  const char *manufacturer, const char *hardware,
410                  const char *software, const char *serial)
411 {
412     if (manufacturer) {
413         free(p->manufacturer);
414         p->manufacturer = xstrdup(manufacturer);
415     }
416     if (hardware) {
417         free(p->hardware);
418         p->hardware = xstrdup(hardware);
419     }
420     if (software) {
421         free(p->software);
422         p->software = xstrdup(software);
423     }
424     if (serial) {
425         free(p->serial);
426         p->serial = xstrdup(serial);
427     }
428 }
429
430 int
431 ofproto_set_in_band(struct ofproto *p, bool in_band)
432 {
433     if (in_band != (p->in_band != NULL)) {
434         if (in_band) {
435             in_band_create(p, p->switch_status, p->controller->rconn, 
436                            &p->in_band);
437             return 0;
438         } else {
439             ofproto_set_discovery(p, false, NULL, true);
440             in_band_destroy(p->in_band);
441             p->in_band = NULL;
442         }
443         rconn_reconnect(p->controller->rconn);
444     }
445     return 0;
446 }
447
448 int
449 ofproto_set_discovery(struct ofproto *p, bool discovery,
450                       const char *re, bool update_resolv_conf)
451 {
452     if (discovery != (p->discovery != NULL)) {
453         if (discovery) {
454             int error = ofproto_set_in_band(p, true);
455             if (error) {
456                 return error;
457             }
458             error = discovery_create(re, update_resolv_conf,
459                                      p->dpif, p->switch_status,
460                                      &p->discovery);
461             if (error) {
462                 return error;
463             }
464         } else {
465             discovery_destroy(p->discovery);
466             p->discovery = NULL;
467         }
468         rconn_disconnect(p->controller->rconn);
469     } else if (discovery) {
470         discovery_set_update_resolv_conf(p->discovery, update_resolv_conf);
471         return discovery_set_accept_controller_re(p->discovery, re);
472     }
473     return 0;
474 }
475
476 int
477 ofproto_set_controller(struct ofproto *ofproto, const char *controller)
478 {
479     if (ofproto->discovery) {
480         return EINVAL;
481     } else if (controller) {
482         if (strcmp(rconn_get_name(ofproto->controller->rconn), controller)) {
483             return rconn_connect(ofproto->controller->rconn, controller);
484         } else {
485             return 0;
486         }
487     } else {
488         rconn_disconnect(ofproto->controller->rconn);
489         return 0;
490     }
491 }
492
493 static int
494 set_pvconns(struct pvconn ***pvconnsp, size_t *n_pvconnsp,
495             const struct svec *svec)
496 {
497     struct pvconn **pvconns = *pvconnsp;
498     size_t n_pvconns = *n_pvconnsp;
499     int retval = 0;
500     size_t i;
501
502     for (i = 0; i < n_pvconns; i++) {
503         pvconn_close(pvconns[i]);
504     }
505     free(pvconns);
506
507     pvconns = xmalloc(svec->n * sizeof *pvconns);
508     n_pvconns = 0;
509     for (i = 0; i < svec->n; i++) {
510         const char *name = svec->names[i];
511         struct pvconn *pvconn;
512         int error;
513
514         error = pvconn_open(name, &pvconn);
515         if (!error) {
516             pvconns[n_pvconns++] = pvconn;
517         } else {
518             VLOG_ERR("failed to listen on %s: %s", name, strerror(error));
519             if (!retval) {
520                 retval = error;
521             }
522         }
523     }
524
525     *pvconnsp = pvconns;
526     *n_pvconnsp = n_pvconns;
527
528     return retval;
529 }
530
531 int
532 ofproto_set_listeners(struct ofproto *ofproto, const struct svec *listeners)
533 {
534     return set_pvconns(&ofproto->listeners, &ofproto->n_listeners, listeners);
535 }
536
537 int
538 ofproto_set_snoops(struct ofproto *ofproto, const struct svec *snoops)
539 {
540     return set_pvconns(&ofproto->snoops, &ofproto->n_snoops, snoops);
541 }
542
543 int
544 ofproto_set_netflow(struct ofproto *ofproto, const struct svec *collectors,
545         uint8_t engine_type, uint8_t engine_id, bool add_id_to_iface)
546 {
547     if (collectors && collectors->n) {
548         if (!ofproto->netflow) {
549             ofproto->netflow = netflow_create();
550         }
551         netflow_set_engine(ofproto->netflow, engine_type, engine_id, 
552                 add_id_to_iface);
553         return netflow_set_collectors(ofproto->netflow, collectors);
554     } else {
555         netflow_destroy(ofproto->netflow);
556         ofproto->netflow = NULL;
557         return 0;
558     }
559 }
560
561 void
562 ofproto_set_failure(struct ofproto *ofproto, bool fail_open)
563 {
564     if (fail_open) {
565         struct rconn *rconn = ofproto->controller->rconn;
566         int trigger_duration = rconn_get_probe_interval(rconn) * 3;
567         if (!ofproto->fail_open) {
568             ofproto->fail_open = fail_open_create(ofproto, trigger_duration,
569                                                   ofproto->switch_status,
570                                                   rconn);
571         } else {
572             fail_open_set_trigger_duration(ofproto->fail_open,
573                                            trigger_duration);
574         }
575     } else {
576         fail_open_destroy(ofproto->fail_open);
577         ofproto->fail_open = NULL;
578     }
579 }
580
581 void
582 ofproto_set_rate_limit(struct ofproto *ofproto,
583                        int rate_limit, int burst_limit)
584 {
585     if (rate_limit > 0) {
586         if (!ofproto->miss_sched) {
587             ofproto->miss_sched = pinsched_create(rate_limit, burst_limit,
588                                                   ofproto->switch_status);
589             ofproto->action_sched = pinsched_create(rate_limit, burst_limit,
590                                                     NULL);
591         } else {
592             pinsched_set_limits(ofproto->miss_sched, rate_limit, burst_limit);
593             pinsched_set_limits(ofproto->action_sched,
594                                 rate_limit, burst_limit);
595         }
596     } else {
597         pinsched_destroy(ofproto->miss_sched);
598         ofproto->miss_sched = NULL;
599         pinsched_destroy(ofproto->action_sched);
600         ofproto->action_sched = NULL;
601     }
602 }
603
604 int
605 ofproto_set_stp(struct ofproto *ofproto UNUSED, bool enable_stp)
606 {
607     /* XXX */
608     if (enable_stp) {
609         VLOG_WARN("STP is not yet implemented");
610         return EINVAL;
611     } else {
612         return 0;
613     }
614 }
615
616 int
617 ofproto_set_remote_execution(struct ofproto *ofproto, const char *command_acl,
618                              const char *command_dir)
619 {
620     if (command_acl) {
621         if (!ofproto->executer) {
622             return executer_create(command_acl, command_dir,
623                                    &ofproto->executer);
624         } else {
625             executer_set_acl(ofproto->executer, command_acl, command_dir);
626         }
627     } else {
628         executer_destroy(ofproto->executer);
629         ofproto->executer = NULL;
630     }
631     return 0;
632 }
633
634 uint64_t
635 ofproto_get_datapath_id(const struct ofproto *ofproto)
636 {
637     return ofproto->datapath_id;
638 }
639
640 uint64_t
641 ofproto_get_mgmt_id(const struct ofproto *ofproto)
642 {
643     return ofproto->mgmt_id;
644 }
645
646 int
647 ofproto_get_probe_interval(const struct ofproto *ofproto)
648 {
649     return rconn_get_probe_interval(ofproto->controller->rconn);
650 }
651
652 int
653 ofproto_get_max_backoff(const struct ofproto *ofproto)
654 {
655     return rconn_get_max_backoff(ofproto->controller->rconn);
656 }
657
658 bool
659 ofproto_get_in_band(const struct ofproto *ofproto)
660 {
661     return ofproto->in_band != NULL;
662 }
663
664 bool
665 ofproto_get_discovery(const struct ofproto *ofproto)
666 {
667     return ofproto->discovery != NULL;
668 }
669
670 const char *
671 ofproto_get_controller(const struct ofproto *ofproto)
672 {
673     return rconn_get_name(ofproto->controller->rconn);
674 }
675
676 void
677 ofproto_get_listeners(const struct ofproto *ofproto, struct svec *listeners)
678 {
679     size_t i;
680
681     for (i = 0; i < ofproto->n_listeners; i++) {
682         svec_add(listeners, pvconn_get_name(ofproto->listeners[i]));
683     }
684 }
685
686 void
687 ofproto_get_snoops(const struct ofproto *ofproto, struct svec *snoops)
688 {
689     size_t i;
690
691     for (i = 0; i < ofproto->n_snoops; i++) {
692         svec_add(snoops, pvconn_get_name(ofproto->snoops[i]));
693     }
694 }
695
696 void
697 ofproto_destroy(struct ofproto *p)
698 {
699     struct ofconn *ofconn, *next_ofconn;
700     struct ofport *ofport;
701     unsigned int port_no;
702     size_t i;
703
704     if (!p) {
705         return;
706     }
707
708     ofproto_flush_flows(p);
709     classifier_destroy(&p->cls);
710
711     LIST_FOR_EACH_SAFE (ofconn, next_ofconn, struct ofconn, node,
712                         &p->all_conns) {
713         ofconn_destroy(ofconn, p);
714     }
715
716     dpif_close(p->dpif);
717     netdev_monitor_destroy(p->netdev_monitor);
718     PORT_ARRAY_FOR_EACH (ofport, &p->ports, port_no) {
719         ofport_free(ofport);
720     }
721     shash_destroy(&p->port_by_name);
722
723     switch_status_destroy(p->switch_status);
724     in_band_destroy(p->in_band);
725     discovery_destroy(p->discovery);
726     fail_open_destroy(p->fail_open);
727     pinsched_destroy(p->miss_sched);
728     pinsched_destroy(p->action_sched);
729     executer_destroy(p->executer);
730     netflow_destroy(p->netflow);
731
732     switch_status_unregister(p->ss_cat);
733
734     for (i = 0; i < p->n_listeners; i++) {
735         pvconn_close(p->listeners[i]);
736     }
737     free(p->listeners);
738
739     for (i = 0; i < p->n_snoops; i++) {
740         pvconn_close(p->snoops[i]);
741     }
742     free(p->snoops);
743
744     mac_learning_destroy(p->ml);
745
746     free(p);
747 }
748
749 int
750 ofproto_run(struct ofproto *p)
751 {
752     int error = ofproto_run1(p);
753     if (!error) {
754         error = ofproto_run2(p, false);
755     }
756     return error;
757 }
758
759 static void
760 process_port_change(struct ofproto *ofproto, int error, char *devname)
761 {
762     if (error == ENOBUFS) {
763         reinit_ports(ofproto);
764     } else if (!error) {
765         update_port(ofproto, devname);
766         free(devname);
767     }
768 }
769
770 int
771 ofproto_run1(struct ofproto *p)
772 {
773     struct ofconn *ofconn, *next_ofconn;
774     char *devname;
775     int error;
776     int i;
777
778     for (i = 0; i < 50; i++) {
779         struct ofpbuf *buf;
780         int error;
781
782         error = dpif_recv(p->dpif, &buf);
783         if (error) {
784             if (error == ENODEV) {
785                 /* Someone destroyed the datapath behind our back.  The caller
786                  * better destroy us and give up, because we're just going to
787                  * spin from here on out. */
788                 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
789                 VLOG_ERR_RL(&rl, "%s: datapath was destroyed externally",
790                             dpif_name(p->dpif));
791                 return ENODEV;
792             }
793             break;
794         }
795
796         handle_odp_msg(p, buf);
797     }
798
799     while ((error = dpif_port_poll(p->dpif, &devname)) != EAGAIN) {
800         process_port_change(p, error, devname);
801     }
802     while ((error = netdev_monitor_poll(p->netdev_monitor,
803                                         &devname)) != EAGAIN) {
804         process_port_change(p, error, devname);
805     }
806
807     if (p->in_band) {
808         in_band_run(p->in_band);
809     }
810     if (p->discovery) {
811         char *controller_name;
812         if (rconn_is_connectivity_questionable(p->controller->rconn)) {
813             discovery_question_connectivity(p->discovery);
814         }
815         if (discovery_run(p->discovery, &controller_name)) {
816             if (controller_name) {
817                 rconn_connect(p->controller->rconn, controller_name);
818             } else {
819                 rconn_disconnect(p->controller->rconn);
820             }
821         }
822     }
823     if (p->fail_open) {
824         fail_open_run(p->fail_open);
825     }
826     pinsched_run(p->miss_sched, send_packet_in_miss, p);
827     pinsched_run(p->action_sched, send_packet_in_action, p);
828     if (p->executer) {
829         executer_run(p->executer);
830     }
831
832     LIST_FOR_EACH_SAFE (ofconn, next_ofconn, struct ofconn, node,
833                         &p->all_conns) {
834         ofconn_run(ofconn, p);
835     }
836
837     for (i = 0; i < p->n_listeners; i++) {
838         struct vconn *vconn;
839         int retval;
840
841         retval = pvconn_accept(p->listeners[i], OFP_VERSION, &vconn);
842         if (!retval) {
843             ofconn_create(p, rconn_new_from_vconn("passive", vconn));
844         } else if (retval != EAGAIN) {
845             VLOG_WARN_RL(&rl, "accept failed (%s)", strerror(retval));
846         }
847     }
848
849     for (i = 0; i < p->n_snoops; i++) {
850         struct vconn *vconn;
851         int retval;
852
853         retval = pvconn_accept(p->snoops[i], OFP_VERSION, &vconn);
854         if (!retval) {
855             rconn_add_monitor(p->controller->rconn, vconn);
856         } else if (retval != EAGAIN) {
857             VLOG_WARN_RL(&rl, "accept failed (%s)", strerror(retval));
858         }
859     }
860
861     if (time_msec() >= p->next_expiration) {
862         COVERAGE_INC(ofproto_expiration);
863         p->next_expiration = time_msec() + 1000;
864         update_used(p);
865
866         classifier_for_each(&p->cls, CLS_INC_ALL, expire_rule, p);
867
868         /* Let the hook know that we're at a stable point: all outstanding data
869          * in existing flows has been accounted to the account_cb.  Thus, the
870          * hook can now reasonably do operations that depend on having accurate
871          * flow volume accounting (currently, that's just bond rebalancing). */
872         if (p->ofhooks->account_checkpoint_cb) {
873             p->ofhooks->account_checkpoint_cb(p->aux);
874         }
875     }
876
877     if (p->netflow) {
878         netflow_run(p->netflow);
879     }
880
881     return 0;
882 }
883
884 struct revalidate_cbdata {
885     struct ofproto *ofproto;
886     bool revalidate_all;        /* Revalidate all exact-match rules? */
887     bool revalidate_subrules;   /* Revalidate all exact-match subrules? */
888     struct tag_set revalidate_set; /* Set of tags to revalidate. */
889 };
890
891 int
892 ofproto_run2(struct ofproto *p, bool revalidate_all)
893 {
894     if (p->need_revalidate || revalidate_all
895         || !tag_set_is_empty(&p->revalidate_set)) {
896         struct revalidate_cbdata cbdata;
897         cbdata.ofproto = p;
898         cbdata.revalidate_all = revalidate_all;
899         cbdata.revalidate_subrules = p->need_revalidate;
900         cbdata.revalidate_set = p->revalidate_set;
901         tag_set_init(&p->revalidate_set);
902         COVERAGE_INC(ofproto_revalidate);
903         classifier_for_each(&p->cls, CLS_INC_EXACT, revalidate_cb, &cbdata);
904         p->need_revalidate = false;
905     }
906
907     return 0;
908 }
909
910 void
911 ofproto_wait(struct ofproto *p)
912 {
913     struct ofconn *ofconn;
914     size_t i;
915
916     dpif_recv_wait(p->dpif);
917     dpif_port_poll_wait(p->dpif);
918     netdev_monitor_poll_wait(p->netdev_monitor);
919     LIST_FOR_EACH (ofconn, struct ofconn, node, &p->all_conns) {
920         ofconn_wait(ofconn);
921     }
922     if (p->in_band) {
923         in_band_wait(p->in_band);
924     }
925     if (p->discovery) {
926         discovery_wait(p->discovery);
927     }
928     if (p->fail_open) {
929         fail_open_wait(p->fail_open);
930     }
931     pinsched_wait(p->miss_sched);
932     pinsched_wait(p->action_sched);
933     if (p->executer) {
934         executer_wait(p->executer);
935     }
936     if (!tag_set_is_empty(&p->revalidate_set)) {
937         poll_immediate_wake();
938     }
939     if (p->need_revalidate) {
940         /* Shouldn't happen, but if it does just go around again. */
941         VLOG_DBG_RL(&rl, "need revalidate in ofproto_wait_cb()");
942         poll_immediate_wake();
943     } else if (p->next_expiration != LLONG_MAX) {
944         poll_timer_wait(p->next_expiration - time_msec());
945     }
946     for (i = 0; i < p->n_listeners; i++) {
947         pvconn_wait(p->listeners[i]);
948     }
949     for (i = 0; i < p->n_snoops; i++) {
950         pvconn_wait(p->snoops[i]);
951     }
952 }
953
954 void
955 ofproto_revalidate(struct ofproto *ofproto, tag_type tag)
956 {
957     tag_set_add(&ofproto->revalidate_set, tag);
958 }
959
960 struct tag_set *
961 ofproto_get_revalidate_set(struct ofproto *ofproto)
962 {
963     return &ofproto->revalidate_set;
964 }
965
966 bool
967 ofproto_is_alive(const struct ofproto *p)
968 {
969     return p->discovery || rconn_is_alive(p->controller->rconn);
970 }
971
972 int
973 ofproto_send_packet(struct ofproto *p, const flow_t *flow,
974                     const union ofp_action *actions, size_t n_actions,
975                     const struct ofpbuf *packet)
976 {
977     struct odp_actions odp_actions;
978     int error;
979
980     error = xlate_actions(actions, n_actions, flow, p, packet, &odp_actions,
981                           NULL, NULL);
982     if (error) {
983         return error;
984     }
985
986     /* XXX Should we translate the dpif_execute() errno value into an OpenFlow
987      * error code? */
988     dpif_execute(p->dpif, flow->in_port, odp_actions.actions,
989                  odp_actions.n_actions, packet);
990     return 0;
991 }
992
993 void
994 ofproto_add_flow(struct ofproto *p,
995                  const flow_t *flow, uint32_t wildcards, unsigned int priority,
996                  const union ofp_action *actions, size_t n_actions,
997                  int idle_timeout)
998 {
999     struct rule *rule;
1000     rule = rule_create(NULL, actions, n_actions,
1001                        idle_timeout >= 0 ? idle_timeout : 5 /* XXX */, 0);
1002     cls_rule_from_flow(&rule->cr, flow, wildcards, priority);
1003     rule_insert(p, rule, NULL, 0);
1004 }
1005
1006 void
1007 ofproto_delete_flow(struct ofproto *ofproto, const flow_t *flow,
1008                     uint32_t wildcards, unsigned int priority)
1009 {
1010     struct rule *rule;
1011
1012     rule = rule_from_cls_rule(classifier_find_rule_exactly(&ofproto->cls,
1013                                                            flow, wildcards,
1014                                                            priority));
1015     if (rule) {
1016         rule_remove(ofproto, rule);
1017     }
1018 }
1019
1020 static void
1021 destroy_rule(struct cls_rule *rule_, void *ofproto_)
1022 {
1023     struct rule *rule = rule_from_cls_rule(rule_);
1024     struct ofproto *ofproto = ofproto_;
1025
1026     /* Mark the flow as not installed, even though it might really be
1027      * installed, so that rule_remove() doesn't bother trying to uninstall it.
1028      * There is no point in uninstalling it individually since we are about to
1029      * blow away all the flows with dpif_flow_flush(). */
1030     rule->installed = false;
1031
1032     rule_remove(ofproto, rule);
1033 }
1034
1035 void
1036 ofproto_flush_flows(struct ofproto *ofproto)
1037 {
1038     COVERAGE_INC(ofproto_flush);
1039     classifier_for_each(&ofproto->cls, CLS_INC_ALL, destroy_rule, ofproto);
1040     dpif_flow_flush(ofproto->dpif);
1041     if (ofproto->in_band) {
1042         in_band_flushed(ofproto->in_band);
1043     }
1044     if (ofproto->fail_open) {
1045         fail_open_flushed(ofproto->fail_open);
1046     }
1047 }
1048 \f
1049 static void
1050 reinit_ports(struct ofproto *p)
1051 {
1052     struct svec devnames;
1053     struct ofport *ofport;
1054     unsigned int port_no;
1055     struct odp_port *odp_ports;
1056     size_t n_odp_ports;
1057     size_t i;
1058
1059     svec_init(&devnames);
1060     PORT_ARRAY_FOR_EACH (ofport, &p->ports, port_no) {
1061         svec_add (&devnames, (char *) ofport->opp.name);
1062     }
1063     dpif_port_list(p->dpif, &odp_ports, &n_odp_ports);
1064     for (i = 0; i < n_odp_ports; i++) {
1065         svec_add (&devnames, odp_ports[i].devname);
1066     }
1067     free(odp_ports);
1068
1069     svec_sort_unique(&devnames);
1070     for (i = 0; i < devnames.n; i++) {
1071         update_port(p, devnames.names[i]);
1072     }
1073     svec_destroy(&devnames);
1074 }
1075
1076 static void
1077 refresh_port_group(struct ofproto *p, unsigned int group)
1078 {
1079     uint16_t *ports;
1080     size_t n_ports;
1081     struct ofport *port;
1082     unsigned int port_no;
1083
1084     assert(group == DP_GROUP_ALL || group == DP_GROUP_FLOOD);
1085
1086     ports = xmalloc(port_array_count(&p->ports) * sizeof *ports);
1087     n_ports = 0;
1088     PORT_ARRAY_FOR_EACH (port, &p->ports, port_no) {
1089         if (group == DP_GROUP_ALL || !(port->opp.config & OFPPC_NO_FLOOD)) {
1090             ports[n_ports++] = port_no;
1091         }
1092     }
1093     dpif_port_group_set(p->dpif, group, ports, n_ports);
1094     free(ports);
1095 }
1096
1097 static void
1098 refresh_port_groups(struct ofproto *p)
1099 {
1100     refresh_port_group(p, DP_GROUP_FLOOD);
1101     refresh_port_group(p, DP_GROUP_ALL);
1102 }
1103
1104 static struct ofport *
1105 make_ofport(const struct odp_port *odp_port)
1106 {
1107     enum netdev_flags flags;
1108     struct ofport *ofport;
1109     struct netdev *netdev;
1110     bool carrier;
1111     int error;
1112
1113     error = netdev_open(odp_port->devname, NETDEV_ETH_TYPE_NONE, &netdev);
1114     if (error) {
1115         VLOG_WARN_RL(&rl, "ignoring port %s (%"PRIu16") because netdev %s "
1116                      "cannot be opened (%s)",
1117                      odp_port->devname, odp_port->port,
1118                      odp_port->devname, strerror(error));
1119         return NULL;
1120     }
1121
1122     ofport = xmalloc(sizeof *ofport);
1123     ofport->netdev = netdev;
1124     ofport->opp.port_no = odp_port_to_ofp_port(odp_port->port);
1125     netdev_get_etheraddr(netdev, ofport->opp.hw_addr);
1126     memcpy(ofport->opp.name, odp_port->devname,
1127            MIN(sizeof ofport->opp.name, sizeof odp_port->devname));
1128     ofport->opp.name[sizeof ofport->opp.name - 1] = '\0';
1129
1130     netdev_get_flags(netdev, &flags);
1131     ofport->opp.config = flags & NETDEV_UP ? 0 : OFPPC_PORT_DOWN;
1132
1133     netdev_get_carrier(netdev, &carrier);
1134     ofport->opp.state = carrier ? 0 : OFPPS_LINK_DOWN;
1135
1136     netdev_get_features(netdev,
1137                         &ofport->opp.curr, &ofport->opp.advertised,
1138                         &ofport->opp.supported, &ofport->opp.peer);
1139     return ofport;
1140 }
1141
1142 static bool
1143 ofport_conflicts(const struct ofproto *p, const struct odp_port *odp_port)
1144 {
1145     if (port_array_get(&p->ports, odp_port->port)) {
1146         VLOG_WARN_RL(&rl, "ignoring duplicate port %"PRIu16" in datapath",
1147                      odp_port->port);
1148         return true;
1149     } else if (shash_find(&p->port_by_name, odp_port->devname)) {
1150         VLOG_WARN_RL(&rl, "ignoring duplicate device %s in datapath",
1151                      odp_port->devname);
1152         return true;
1153     } else {
1154         return false;
1155     }
1156 }
1157
1158 static int
1159 ofport_equal(const struct ofport *a_, const struct ofport *b_)
1160 {
1161     const struct ofp_phy_port *a = &a_->opp;
1162     const struct ofp_phy_port *b = &b_->opp;
1163
1164     BUILD_ASSERT_DECL(sizeof *a == 48); /* Detect ofp_phy_port changes. */
1165     return (a->port_no == b->port_no
1166             && !memcmp(a->hw_addr, b->hw_addr, sizeof a->hw_addr)
1167             && !strcmp((char *) a->name, (char *) b->name)
1168             && a->state == b->state
1169             && a->config == b->config
1170             && a->curr == b->curr
1171             && a->advertised == b->advertised
1172             && a->supported == b->supported
1173             && a->peer == b->peer);
1174 }
1175
1176 static void
1177 send_port_status(struct ofproto *p, const struct ofport *ofport,
1178                  uint8_t reason)
1179 {
1180     /* XXX Should limit the number of queued port status change messages. */
1181     struct ofconn *ofconn;
1182     LIST_FOR_EACH (ofconn, struct ofconn, node, &p->all_conns) {
1183         struct ofp_port_status *ops;
1184         struct ofpbuf *b;
1185
1186         ops = make_openflow_xid(sizeof *ops, OFPT_PORT_STATUS, 0, &b);
1187         ops->reason = reason;
1188         ops->desc = ofport->opp;
1189         hton_ofp_phy_port(&ops->desc);
1190         queue_tx(b, ofconn, NULL);
1191     }
1192     if (p->ofhooks->port_changed_cb) {
1193         p->ofhooks->port_changed_cb(reason, &ofport->opp, p->aux);
1194     }
1195 }
1196
1197 static void
1198 ofport_install(struct ofproto *p, struct ofport *ofport)
1199 {
1200     netdev_monitor_add(p->netdev_monitor, ofport->netdev);
1201     port_array_set(&p->ports, ofp_port_to_odp_port(ofport->opp.port_no),
1202                    ofport);
1203     shash_add(&p->port_by_name, (char *) ofport->opp.name, ofport);
1204 }
1205
1206 static void
1207 ofport_remove(struct ofproto *p, struct ofport *ofport)
1208 {
1209     netdev_monitor_remove(p->netdev_monitor, ofport->netdev);
1210     port_array_set(&p->ports, ofp_port_to_odp_port(ofport->opp.port_no), NULL);
1211     shash_delete(&p->port_by_name,
1212                  shash_find(&p->port_by_name, (char *) ofport->opp.name));
1213 }
1214
1215 static void
1216 ofport_free(struct ofport *ofport)
1217 {
1218     if (ofport) {
1219         netdev_close(ofport->netdev);
1220         free(ofport);
1221     }
1222 }
1223
1224 static void
1225 update_port(struct ofproto *p, const char *devname)
1226 {
1227     struct odp_port odp_port;
1228     struct ofport *ofport;
1229     int error;
1230
1231     COVERAGE_INC(ofproto_update_port);
1232     ofport = shash_find_data(&p->port_by_name, devname);
1233     error = dpif_port_query_by_name(p->dpif, devname, &odp_port);
1234     if (!error) {
1235         if (!ofport) {
1236             /* New port. */
1237             if (!ofport_conflicts(p, &odp_port)) {
1238                 ofport = make_ofport(&odp_port);
1239                 if (ofport) {
1240                     ofport_install(p, ofport);
1241                     send_port_status(p, ofport, OFPPR_ADD);
1242                 }
1243             }
1244         } else {
1245             /* Modified port. */
1246             struct ofport *new_ofport = make_ofport(&odp_port);
1247             if (!new_ofport) {
1248                 return;
1249             }
1250
1251             new_ofport->opp.config &= OFPPC_PORT_DOWN;
1252             new_ofport->opp.config |= ofport->opp.config & ~OFPPC_PORT_DOWN;
1253             if (ofport_equal(ofport, new_ofport)) {
1254                 /* False alarm--no change. */
1255                 ofport_free(new_ofport);
1256             } else {
1257                 ofport_remove(p, ofport);
1258                 ofport_install(p, new_ofport);
1259                 ofport_free(ofport);
1260                 send_port_status(p, new_ofport, OFPPR_MODIFY);
1261             }
1262         }
1263     } else if (error == ENOENT || error == ENODEV) {
1264         /* Deleted port. */
1265         if (ofport) {
1266             send_port_status(p, ofport, OFPPR_DELETE);
1267             ofport_remove(p, ofport);
1268             ofport_free(ofport);
1269         }
1270     } else {
1271         VLOG_WARN_RL(&rl, "dpif_port_query_by_name returned unexpected error "
1272                      "%s", strerror(error));
1273         return;
1274     }
1275     refresh_port_groups(p);
1276 }
1277
1278 static int
1279 init_ports(struct ofproto *p)
1280 {
1281     struct odp_port *ports;
1282     size_t n_ports;
1283     size_t i;
1284     int error;
1285
1286     error = dpif_port_list(p->dpif, &ports, &n_ports);
1287     if (error) {
1288         return error;
1289     }
1290
1291     for (i = 0; i < n_ports; i++) {
1292         const struct odp_port *odp_port = &ports[i];
1293         if (!ofport_conflicts(p, odp_port)) {
1294             struct ofport *ofport = make_ofport(odp_port);
1295             if (ofport) {
1296                 ofport_install(p, ofport);
1297             }
1298         }
1299     }
1300     free(ports);
1301     refresh_port_groups(p);
1302     return 0;
1303 }
1304 \f
1305 static struct ofconn *
1306 ofconn_create(struct ofproto *p, struct rconn *rconn)
1307 {
1308     struct ofconn *ofconn = xmalloc(sizeof *ofconn);
1309     list_push_back(&p->all_conns, &ofconn->node);
1310     ofconn->rconn = rconn;
1311     ofconn->pktbuf = NULL;
1312     ofconn->send_flow_exp = false;
1313     ofconn->miss_send_len = 0;
1314     ofconn->packet_in_counter = rconn_packet_counter_create ();
1315     ofconn->reply_counter = rconn_packet_counter_create ();
1316     return ofconn;
1317 }
1318
1319 static void
1320 ofconn_destroy(struct ofconn *ofconn, struct ofproto *p)
1321 {
1322     if (p->executer) {
1323         executer_rconn_closing(p->executer, ofconn->rconn);
1324     }
1325
1326     list_remove(&ofconn->node);
1327     rconn_destroy(ofconn->rconn);
1328     rconn_packet_counter_destroy(ofconn->packet_in_counter);
1329     rconn_packet_counter_destroy(ofconn->reply_counter);
1330     pktbuf_destroy(ofconn->pktbuf);
1331     free(ofconn);
1332 }
1333
1334 static void
1335 ofconn_run(struct ofconn *ofconn, struct ofproto *p)
1336 {
1337     int iteration;
1338
1339     rconn_run(ofconn->rconn);
1340
1341     if (rconn_packet_counter_read (ofconn->reply_counter) < OFCONN_REPLY_MAX) {
1342         /* Limit the number of iterations to prevent other tasks from
1343          * starving. */
1344         for (iteration = 0; iteration < 50; iteration++) {
1345             struct ofpbuf *of_msg = rconn_recv(ofconn->rconn);
1346             if (!of_msg) {
1347                 break;
1348             }
1349             handle_openflow(ofconn, p, of_msg);
1350             ofpbuf_delete(of_msg);
1351         }
1352     }
1353
1354     if (ofconn != p->controller && !rconn_is_alive(ofconn->rconn)) {
1355         ofconn_destroy(ofconn, p);
1356     }
1357 }
1358
1359 static void
1360 ofconn_wait(struct ofconn *ofconn)
1361 {
1362     rconn_run_wait(ofconn->rconn);
1363     if (rconn_packet_counter_read (ofconn->reply_counter) < OFCONN_REPLY_MAX) {
1364         rconn_recv_wait(ofconn->rconn);
1365     } else {
1366         COVERAGE_INC(ofproto_ofconn_stuck);
1367     }
1368 }
1369 \f
1370 /* Caller is responsible for initializing the 'cr' member of the returned
1371  * rule. */
1372 static struct rule *
1373 rule_create(struct rule *super,
1374             const union ofp_action *actions, size_t n_actions,
1375             uint16_t idle_timeout, uint16_t hard_timeout)
1376 {
1377     struct rule *rule = xcalloc(1, sizeof *rule);
1378     rule->idle_timeout = idle_timeout;
1379     rule->hard_timeout = hard_timeout;
1380     rule->used = rule->created = time_msec();
1381     rule->super = super;
1382     if (super) {
1383         list_push_back(&super->list, &rule->list);
1384     } else {
1385         list_init(&rule->list);
1386     }
1387     rule->n_actions = n_actions;
1388     rule->actions = xmemdup(actions, n_actions * sizeof *actions);
1389     return rule;
1390 }
1391
1392 static struct rule *
1393 rule_from_cls_rule(const struct cls_rule *cls_rule)
1394 {
1395     return cls_rule ? CONTAINER_OF(cls_rule, struct rule, cr) : NULL;
1396 }
1397
1398 static void
1399 rule_free(struct rule *rule)
1400 {
1401     free(rule->actions);
1402     free(rule->odp_actions);
1403     free(rule);
1404 }
1405
1406 /* Destroys 'rule'.  If 'rule' is a subrule, also removes it from its
1407  * super-rule's list of subrules.  If 'rule' is a super-rule, also iterates
1408  * through all of its subrules and revalidates them, destroying any that no
1409  * longer has a super-rule (which is probably all of them).
1410  *
1411  * Before calling this function, the caller must make have removed 'rule' from
1412  * the classifier.  If 'rule' is an exact-match rule, the caller is also
1413  * responsible for ensuring that it has been uninstalled from the datapath. */
1414 static void
1415 rule_destroy(struct ofproto *ofproto, struct rule *rule)
1416 {
1417     if (!rule->super) {
1418         struct rule *subrule, *next;
1419         LIST_FOR_EACH_SAFE (subrule, next, struct rule, list, &rule->list) {
1420             revalidate_rule(ofproto, subrule);
1421         }
1422     } else {
1423         list_remove(&rule->list);
1424     }
1425     rule_free(rule);
1426 }
1427
1428 static bool
1429 rule_has_out_port(const struct rule *rule, uint16_t out_port)
1430 {
1431     const union ofp_action *oa;
1432     struct actions_iterator i;
1433
1434     if (out_port == htons(OFPP_NONE)) {
1435         return true;
1436     }
1437     for (oa = actions_first(&i, rule->actions, rule->n_actions); oa;
1438          oa = actions_next(&i)) {
1439         if (oa->type == htons(OFPAT_OUTPUT) && oa->output.port == out_port) {
1440             return true;
1441         }
1442     }
1443     return false;
1444 }
1445
1446 /* Executes the actions indicated by 'rule' on 'packet', which is in flow
1447  * 'flow' and is considered to have arrived on ODP port 'in_port'.
1448  *
1449  * The flow that 'packet' actually contains does not need to actually match
1450  * 'rule'; the actions in 'rule' will be applied to it either way.  Likewise,
1451  * the packet and byte counters for 'rule' will be credited for the packet sent
1452  * out whether or not the packet actually matches 'rule'.
1453  *
1454  * If 'rule' is an exact-match rule and 'flow' actually equals the rule's flow,
1455  * the caller must already have accurately composed ODP actions for it given
1456  * 'packet' using rule_make_actions().  If 'rule' is a wildcard rule, or if
1457  * 'rule' is an exact-match rule but 'flow' is not the rule's flow, then this
1458  * function will compose a set of ODP actions based on 'rule''s OpenFlow
1459  * actions and apply them to 'packet'. */
1460 static void
1461 rule_execute(struct ofproto *ofproto, struct rule *rule,
1462              struct ofpbuf *packet, const flow_t *flow)
1463 {
1464     const union odp_action *actions;
1465     size_t n_actions;
1466     struct odp_actions a;
1467
1468     /* Grab or compose the ODP actions.
1469      *
1470      * The special case for an exact-match 'rule' where 'flow' is not the
1471      * rule's flow is important to avoid, e.g., sending a packet out its input
1472      * port simply because the ODP actions were composed for the wrong
1473      * scenario. */
1474     if (rule->cr.wc.wildcards || !flow_equal(flow, &rule->cr.flow)) {
1475         struct rule *super = rule->super ? rule->super : rule;
1476         if (xlate_actions(super->actions, super->n_actions, flow, ofproto,
1477                           packet, &a, NULL, 0)) {
1478             return;
1479         }
1480         actions = a.actions;
1481         n_actions = a.n_actions;
1482     } else {
1483         actions = rule->odp_actions;
1484         n_actions = rule->n_odp_actions;
1485     }
1486
1487     /* Execute the ODP actions. */
1488     if (!dpif_execute(ofproto->dpif, flow->in_port,
1489                       actions, n_actions, packet)) {
1490         struct odp_flow_stats stats;
1491         flow_extract_stats(flow, packet, &stats);
1492         update_stats(rule, &stats);
1493         rule->used = time_msec();
1494     }
1495 }
1496
1497 static void
1498 rule_insert(struct ofproto *p, struct rule *rule, struct ofpbuf *packet,
1499             uint16_t in_port)
1500 {
1501     struct rule *displaced_rule;
1502
1503     /* Insert the rule in the classifier. */
1504     displaced_rule = rule_from_cls_rule(classifier_insert(&p->cls, &rule->cr));
1505     if (!rule->cr.wc.wildcards) {
1506         rule_make_actions(p, rule, packet);
1507     }
1508
1509     /* Send the packet and credit it to the rule. */
1510     if (packet) {
1511         flow_t flow;
1512         flow_extract(packet, in_port, &flow);
1513         rule_execute(p, rule, packet, &flow);
1514     }
1515
1516     /* Install the rule in the datapath only after sending the packet, to
1517      * avoid packet reordering.  */
1518     if (rule->cr.wc.wildcards) {
1519         COVERAGE_INC(ofproto_add_wc_flow);
1520         p->need_revalidate = true;
1521     } else {
1522         rule_install(p, rule, displaced_rule);
1523     }
1524
1525     /* Free the rule that was displaced, if any. */
1526     if (displaced_rule) {
1527         rule_destroy(p, displaced_rule);
1528     }
1529 }
1530
1531 static struct rule *
1532 rule_create_subrule(struct ofproto *ofproto, struct rule *rule,
1533                     const flow_t *flow)
1534 {
1535     struct rule *subrule = rule_create(rule, NULL, 0,
1536                                        rule->idle_timeout, rule->hard_timeout);
1537     COVERAGE_INC(ofproto_subrule_create);
1538     cls_rule_from_flow(&subrule->cr, flow, 0,
1539                        (rule->cr.priority <= UINT16_MAX ? UINT16_MAX
1540                         : rule->cr.priority));
1541     classifier_insert_exact(&ofproto->cls, &subrule->cr);
1542
1543     return subrule;
1544 }
1545
1546 static void
1547 rule_remove(struct ofproto *ofproto, struct rule *rule)
1548 {
1549     if (rule->cr.wc.wildcards) {
1550         COVERAGE_INC(ofproto_del_wc_flow);
1551         ofproto->need_revalidate = true;
1552     } else {
1553         rule_uninstall(ofproto, rule);
1554     }
1555     classifier_remove(&ofproto->cls, &rule->cr);
1556     rule_destroy(ofproto, rule);
1557 }
1558
1559 /* Returns true if the actions changed, false otherwise. */
1560 static bool
1561 rule_make_actions(struct ofproto *p, struct rule *rule,
1562                   const struct ofpbuf *packet)
1563 {
1564     const struct rule *super;
1565     struct odp_actions a;
1566     size_t actions_len;
1567
1568     assert(!rule->cr.wc.wildcards);
1569
1570     super = rule->super ? rule->super : rule;
1571     rule->tags = 0;
1572     xlate_actions(super->actions, super->n_actions, &rule->cr.flow, p,
1573                   packet, &a, &rule->tags, &rule->may_install);
1574
1575     actions_len = a.n_actions * sizeof *a.actions;
1576     if (rule->n_odp_actions != a.n_actions
1577         || memcmp(rule->odp_actions, a.actions, actions_len)) {
1578         COVERAGE_INC(ofproto_odp_unchanged);
1579         free(rule->odp_actions);
1580         rule->n_odp_actions = a.n_actions;
1581         rule->odp_actions = xmemdup(a.actions, actions_len);
1582         return true;
1583     } else {
1584         return false;
1585     }
1586 }
1587
1588 static int
1589 do_put_flow(struct ofproto *ofproto, struct rule *rule, int flags,
1590             struct odp_flow_put *put)
1591 {
1592     memset(&put->flow.stats, 0, sizeof put->flow.stats);
1593     put->flow.key = rule->cr.flow;
1594     put->flow.actions = rule->odp_actions;
1595     put->flow.n_actions = rule->n_odp_actions;
1596     put->flags = flags;
1597     return dpif_flow_put(ofproto->dpif, put);
1598 }
1599
1600 static void
1601 rule_install(struct ofproto *p, struct rule *rule, struct rule *displaced_rule)
1602 {
1603     assert(!rule->cr.wc.wildcards);
1604
1605     if (rule->may_install) {
1606         struct odp_flow_put put;
1607         if (!do_put_flow(p, rule,
1608                          ODPPF_CREATE | ODPPF_MODIFY | ODPPF_ZERO_STATS,
1609                          &put)) {
1610             rule->installed = true;
1611             if (displaced_rule) {
1612                 update_stats(rule, &put.flow.stats);
1613                 rule_post_uninstall(p, displaced_rule);
1614             }
1615         }
1616     } else if (displaced_rule) {
1617         rule_uninstall(p, displaced_rule);
1618     }
1619 }
1620
1621 static void
1622 rule_reinstall(struct ofproto *ofproto, struct rule *rule)
1623 {
1624     if (rule->installed) {
1625         struct odp_flow_put put;
1626         COVERAGE_INC(ofproto_dp_missed);
1627         do_put_flow(ofproto, rule, ODPPF_CREATE | ODPPF_MODIFY, &put);
1628     } else {
1629         rule_install(ofproto, rule, NULL);
1630     }
1631 }
1632
1633 static void
1634 rule_update_actions(struct ofproto *ofproto, struct rule *rule)
1635 {
1636     bool actions_changed = rule_make_actions(ofproto, rule, NULL);
1637     if (rule->may_install) {
1638         if (rule->installed) {
1639             if (actions_changed) {
1640                 /* XXX should really do rule_post_uninstall() for the *old* set
1641                  * of actions, and distinguish the old stats from the new. */
1642                 struct odp_flow_put put;
1643                 do_put_flow(ofproto, rule, ODPPF_CREATE | ODPPF_MODIFY, &put);
1644             }
1645         } else {
1646             rule_install(ofproto, rule, NULL);
1647         }
1648     } else {
1649         rule_uninstall(ofproto, rule);
1650     }
1651 }
1652
1653 static void
1654 rule_account(struct ofproto *ofproto, struct rule *rule, uint64_t extra_bytes)
1655 {
1656     uint64_t total_bytes = rule->byte_count + extra_bytes;
1657
1658     if (ofproto->ofhooks->account_flow_cb
1659         && total_bytes > rule->accounted_bytes)
1660     {
1661         ofproto->ofhooks->account_flow_cb(
1662             &rule->cr.flow, rule->odp_actions, rule->n_odp_actions,
1663             total_bytes - rule->accounted_bytes, ofproto->aux);
1664         rule->accounted_bytes = total_bytes;
1665     }
1666 }
1667
1668 static void
1669 rule_uninstall(struct ofproto *p, struct rule *rule)
1670 {
1671     assert(!rule->cr.wc.wildcards);
1672     if (rule->installed) {
1673         struct odp_flow odp_flow;
1674
1675         odp_flow.key = rule->cr.flow;
1676         odp_flow.actions = NULL;
1677         odp_flow.n_actions = 0;
1678         if (!dpif_flow_del(p->dpif, &odp_flow)) {
1679             update_stats(rule, &odp_flow.stats);
1680         }
1681         rule->installed = false;
1682
1683         rule_post_uninstall(p, rule);
1684     }
1685 }
1686
1687 static void
1688 rule_post_uninstall(struct ofproto *ofproto, struct rule *rule)
1689 {
1690     struct rule *super = rule->super;
1691
1692     rule_account(ofproto, rule, 0);
1693     if (ofproto->netflow) {
1694         struct ofexpired expired;
1695         expired.flow = rule->cr.flow;
1696         expired.packet_count = rule->packet_count;
1697         expired.byte_count = rule->byte_count;
1698         expired.used = rule->used;
1699         expired.created = rule->created;
1700         expired.tcp_flags = rule->tcp_flags;
1701         expired.ip_tos = rule->ip_tos;
1702         netflow_expire(ofproto->netflow, &expired);
1703     }
1704     if (super) {
1705         super->packet_count += rule->packet_count;
1706         super->byte_count += rule->byte_count;
1707         super->tcp_flags |= rule->tcp_flags;
1708         if (rule->packet_count) {
1709             super->ip_tos = rule->ip_tos;
1710         }
1711     }
1712
1713     /* Reset counters to prevent double counting if the rule ever gets
1714      * reinstalled. */
1715     rule->packet_count = 0;
1716     rule->byte_count = 0;
1717     rule->accounted_bytes = 0;
1718     rule->tcp_flags = 0;
1719     rule->ip_tos = 0;
1720 }
1721 \f
1722 static void
1723 queue_tx(struct ofpbuf *msg, const struct ofconn *ofconn,
1724          struct rconn_packet_counter *counter)
1725 {
1726     update_openflow_length(msg);
1727     if (rconn_send(ofconn->rconn, msg, counter)) {
1728         ofpbuf_delete(msg);
1729     }
1730 }
1731
1732 static void
1733 send_error(const struct ofconn *ofconn, const struct ofp_header *oh,
1734            int error, const void *data, size_t len)
1735 {
1736     struct ofpbuf *buf;
1737     struct ofp_error_msg *oem;
1738
1739     if (!(error >> 16)) {
1740         VLOG_WARN_RL(&rl, "not sending bad error code %d to controller",
1741                      error);
1742         return;
1743     }
1744
1745     COVERAGE_INC(ofproto_error);
1746     oem = make_openflow_xid(len + sizeof *oem, OFPT_ERROR,
1747                             oh ? oh->xid : 0, &buf);
1748     oem->type = htons((unsigned int) error >> 16);
1749     oem->code = htons(error & 0xffff);
1750     memcpy(oem->data, data, len);
1751     queue_tx(buf, ofconn, ofconn->reply_counter);
1752 }
1753
1754 static void
1755 send_error_oh(const struct ofconn *ofconn, const struct ofp_header *oh,
1756               int error)
1757 {
1758     size_t oh_length = ntohs(oh->length);
1759     send_error(ofconn, oh, error, oh, MIN(oh_length, 64));
1760 }
1761
1762 static void
1763 hton_ofp_phy_port(struct ofp_phy_port *opp)
1764 {
1765     opp->port_no = htons(opp->port_no);
1766     opp->config = htonl(opp->config);
1767     opp->state = htonl(opp->state);
1768     opp->curr = htonl(opp->curr);
1769     opp->advertised = htonl(opp->advertised);
1770     opp->supported = htonl(opp->supported);
1771     opp->peer = htonl(opp->peer);
1772 }
1773
1774 static int
1775 handle_echo_request(struct ofconn *ofconn, struct ofp_header *oh)
1776 {
1777     struct ofp_header *rq = oh;
1778     queue_tx(make_echo_reply(rq), ofconn, ofconn->reply_counter);
1779     return 0;
1780 }
1781
1782 static int
1783 handle_features_request(struct ofproto *p, struct ofconn *ofconn,
1784                         struct ofp_header *oh)
1785 {
1786     struct ofp_switch_features *osf;
1787     struct ofpbuf *buf;
1788     unsigned int port_no;
1789     struct ofport *port;
1790
1791     osf = make_openflow_xid(sizeof *osf, OFPT_FEATURES_REPLY, oh->xid, &buf);
1792     osf->datapath_id = htonll(p->datapath_id);
1793     osf->n_buffers = htonl(pktbuf_capacity());
1794     osf->n_tables = 2;
1795     osf->capabilities = htonl(OFPC_FLOW_STATS | OFPC_TABLE_STATS |
1796                               OFPC_PORT_STATS | OFPC_MULTI_PHY_TX);
1797     osf->actions = htonl((1u << OFPAT_OUTPUT) |
1798                          (1u << OFPAT_SET_VLAN_VID) |
1799                          (1u << OFPAT_SET_VLAN_PCP) |
1800                          (1u << OFPAT_STRIP_VLAN) |
1801                          (1u << OFPAT_SET_DL_SRC) |
1802                          (1u << OFPAT_SET_DL_DST) |
1803                          (1u << OFPAT_SET_NW_SRC) |
1804                          (1u << OFPAT_SET_NW_DST) |
1805                          (1u << OFPAT_SET_TP_SRC) |
1806                          (1u << OFPAT_SET_TP_DST));
1807
1808     PORT_ARRAY_FOR_EACH (port, &p->ports, port_no) {
1809         hton_ofp_phy_port(ofpbuf_put(buf, &port->opp, sizeof port->opp));
1810     }
1811
1812     queue_tx(buf, ofconn, ofconn->reply_counter);
1813     return 0;
1814 }
1815
1816 static int
1817 handle_get_config_request(struct ofproto *p, struct ofconn *ofconn,
1818                           struct ofp_header *oh)
1819 {
1820     struct ofpbuf *buf;
1821     struct ofp_switch_config *osc;
1822     uint16_t flags;
1823     bool drop_frags;
1824
1825     /* Figure out flags. */
1826     dpif_get_drop_frags(p->dpif, &drop_frags);
1827     flags = drop_frags ? OFPC_FRAG_DROP : OFPC_FRAG_NORMAL;
1828     if (ofconn->send_flow_exp) {
1829         flags |= OFPC_SEND_FLOW_EXP;
1830     }
1831
1832     /* Send reply. */
1833     osc = make_openflow_xid(sizeof *osc, OFPT_GET_CONFIG_REPLY, oh->xid, &buf);
1834     osc->flags = htons(flags);
1835     osc->miss_send_len = htons(ofconn->miss_send_len);
1836     queue_tx(buf, ofconn, ofconn->reply_counter);
1837
1838     return 0;
1839 }
1840
1841 static int
1842 handle_set_config(struct ofproto *p, struct ofconn *ofconn,
1843                   struct ofp_switch_config *osc)
1844 {
1845     uint16_t flags;
1846     int error;
1847
1848     error = check_ofp_message(&osc->header, OFPT_SET_CONFIG, sizeof *osc);
1849     if (error) {
1850         return error;
1851     }
1852     flags = ntohs(osc->flags);
1853
1854     ofconn->send_flow_exp = (flags & OFPC_SEND_FLOW_EXP) != 0;
1855
1856     if (ofconn == p->controller) {
1857         switch (flags & OFPC_FRAG_MASK) {
1858         case OFPC_FRAG_NORMAL:
1859             dpif_set_drop_frags(p->dpif, false);
1860             break;
1861         case OFPC_FRAG_DROP:
1862             dpif_set_drop_frags(p->dpif, true);
1863             break;
1864         default:
1865             VLOG_WARN_RL(&rl, "requested bad fragment mode (flags=%"PRIx16")",
1866                          osc->flags);
1867             break;
1868         }
1869     }
1870
1871     if ((ntohs(osc->miss_send_len) != 0) != (ofconn->miss_send_len != 0)) {
1872         if (ntohs(osc->miss_send_len) != 0) {
1873             ofconn->pktbuf = pktbuf_create();
1874         } else {
1875             pktbuf_destroy(ofconn->pktbuf);
1876         }
1877     }
1878
1879     ofconn->miss_send_len = ntohs(osc->miss_send_len);
1880
1881     return 0;
1882 }
1883
1884 static void
1885 add_output_group_action(struct odp_actions *actions, uint16_t group)
1886 {
1887     odp_actions_add(actions, ODPAT_OUTPUT_GROUP)->output_group.group = group;
1888 }
1889
1890 static void
1891 add_controller_action(struct odp_actions *actions,
1892                       const struct ofp_action_output *oao)
1893 {
1894     union odp_action *a = odp_actions_add(actions, ODPAT_CONTROLLER);
1895     a->controller.arg = oao->max_len ? ntohs(oao->max_len) : UINT32_MAX;
1896 }
1897
1898 struct action_xlate_ctx {
1899     /* Input. */
1900     const flow_t *flow;         /* Flow to which these actions correspond. */
1901     int recurse;                /* Recursion level, via xlate_table_action. */
1902     struct ofproto *ofproto;
1903     const struct ofpbuf *packet; /* The packet corresponding to 'flow', or a
1904                                   * null pointer if we are revalidating
1905                                   * without a packet to refer to. */
1906
1907     /* Output. */
1908     struct odp_actions *out;    /* Datapath actions. */
1909     tag_type *tags;             /* Tags associated with OFPP_NORMAL actions. */
1910     bool may_setup_flow;        /* True ordinarily; false if the actions must
1911                                  * be reassessed for every packet. */
1912 };
1913
1914 static void do_xlate_actions(const union ofp_action *in, size_t n_in,
1915                              struct action_xlate_ctx *ctx);
1916
1917 static void
1918 add_output_action(struct action_xlate_ctx *ctx, uint16_t port)
1919 {
1920     const struct ofport *ofport = port_array_get(&ctx->ofproto->ports, port);
1921     if (!ofport || !(ofport->opp.config & OFPPC_NO_FWD)) {
1922         odp_actions_add(ctx->out, ODPAT_OUTPUT)->output.port = port;
1923     }
1924 }
1925
1926 static struct rule *
1927 lookup_valid_rule(struct ofproto *ofproto, const flow_t *flow)
1928 {
1929     struct rule *rule;
1930     rule = rule_from_cls_rule(classifier_lookup(&ofproto->cls, flow));
1931
1932     /* The rule we found might not be valid, since we could be in need of
1933      * revalidation.  If it is not valid, don't return it. */
1934     if (rule
1935         && rule->super
1936         && ofproto->need_revalidate
1937         && !revalidate_rule(ofproto, rule)) {
1938         COVERAGE_INC(ofproto_invalidated);
1939         return NULL;
1940     }
1941
1942     return rule;
1943 }
1944
1945 static void
1946 xlate_table_action(struct action_xlate_ctx *ctx, uint16_t in_port)
1947 {
1948     if (!ctx->recurse) {
1949         struct rule *rule;
1950         flow_t flow;
1951
1952         flow = *ctx->flow;
1953         flow.in_port = in_port;
1954
1955         rule = lookup_valid_rule(ctx->ofproto, &flow);
1956         if (rule) {
1957             if (rule->super) {
1958                 rule = rule->super;
1959             }
1960
1961             ctx->recurse++;
1962             do_xlate_actions(rule->actions, rule->n_actions, ctx);
1963             ctx->recurse--;
1964         }
1965     }
1966 }
1967
1968 static void
1969 xlate_output_action(struct action_xlate_ctx *ctx,
1970                     const struct ofp_action_output *oao)
1971 {
1972     uint16_t odp_port;
1973
1974     switch (ntohs(oao->port)) {
1975     case OFPP_IN_PORT:
1976         add_output_action(ctx, ctx->flow->in_port);
1977         break;
1978     case OFPP_TABLE:
1979         xlate_table_action(ctx, ctx->flow->in_port);
1980         break;
1981     case OFPP_NORMAL:
1982         if (!ctx->ofproto->ofhooks->normal_cb(ctx->flow, ctx->packet,
1983                                               ctx->out, ctx->tags,
1984                                               ctx->ofproto->aux)) {
1985             COVERAGE_INC(ofproto_uninstallable);
1986             ctx->may_setup_flow = false;
1987         }
1988         break;
1989     case OFPP_FLOOD:
1990         add_output_group_action(ctx->out, DP_GROUP_FLOOD);
1991         break;
1992     case OFPP_ALL:
1993         add_output_group_action(ctx->out, DP_GROUP_ALL);
1994         break;
1995     case OFPP_CONTROLLER:
1996         add_controller_action(ctx->out, oao);
1997         break;
1998     case OFPP_LOCAL:
1999         add_output_action(ctx, ODPP_LOCAL);
2000         break;
2001     default:
2002         odp_port = ofp_port_to_odp_port(ntohs(oao->port));
2003         if (odp_port != ctx->flow->in_port) {
2004             add_output_action(ctx, odp_port);
2005         }
2006         break;
2007     }
2008 }
2009
2010 static void
2011 xlate_nicira_action(struct action_xlate_ctx *ctx,
2012                     const struct nx_action_header *nah)
2013 {
2014     const struct nx_action_resubmit *nar;
2015     int subtype = ntohs(nah->subtype);
2016
2017     assert(nah->vendor == htonl(NX_VENDOR_ID));
2018     switch (subtype) {
2019     case NXAST_RESUBMIT:
2020         nar = (const struct nx_action_resubmit *) nah;
2021         xlate_table_action(ctx, ofp_port_to_odp_port(ntohs(nar->in_port)));
2022         break;
2023
2024     default:
2025         VLOG_DBG_RL(&rl, "unknown Nicira action type %"PRIu16, subtype);
2026         break;
2027     }
2028 }
2029
2030 static void
2031 do_xlate_actions(const union ofp_action *in, size_t n_in,
2032                  struct action_xlate_ctx *ctx)
2033 {
2034     struct actions_iterator iter;
2035     const union ofp_action *ia;
2036     const struct ofport *port;
2037
2038     port = port_array_get(&ctx->ofproto->ports, ctx->flow->in_port);
2039     if (port && port->opp.config & (OFPPC_NO_RECV | OFPPC_NO_RECV_STP) &&
2040         port->opp.config & (eth_addr_equals(ctx->flow->dl_dst, stp_eth_addr)
2041                             ? OFPPC_NO_RECV_STP : OFPPC_NO_RECV)) {
2042         /* Drop this flow. */
2043         return;
2044     }
2045
2046     for (ia = actions_first(&iter, in, n_in); ia; ia = actions_next(&iter)) {
2047         uint16_t type = ntohs(ia->type);
2048         union odp_action *oa;
2049
2050         switch (type) {
2051         case OFPAT_OUTPUT:
2052             xlate_output_action(ctx, &ia->output);
2053             break;
2054
2055         case OFPAT_SET_VLAN_VID:
2056             oa = odp_actions_add(ctx->out, ODPAT_SET_VLAN_VID);
2057             oa->vlan_vid.vlan_vid = ia->vlan_vid.vlan_vid;
2058             break;
2059
2060         case OFPAT_SET_VLAN_PCP:
2061             oa = odp_actions_add(ctx->out, ODPAT_SET_VLAN_PCP);
2062             oa->vlan_pcp.vlan_pcp = ia->vlan_pcp.vlan_pcp;
2063             break;
2064
2065         case OFPAT_STRIP_VLAN:
2066             odp_actions_add(ctx->out, ODPAT_STRIP_VLAN);
2067             break;
2068
2069         case OFPAT_SET_DL_SRC:
2070             oa = odp_actions_add(ctx->out, ODPAT_SET_DL_SRC);
2071             memcpy(oa->dl_addr.dl_addr,
2072                    ((struct ofp_action_dl_addr *) ia)->dl_addr, ETH_ADDR_LEN);
2073             break;
2074
2075         case OFPAT_SET_DL_DST:
2076             oa = odp_actions_add(ctx->out, ODPAT_SET_DL_DST);
2077             memcpy(oa->dl_addr.dl_addr,
2078                    ((struct ofp_action_dl_addr *) ia)->dl_addr, ETH_ADDR_LEN);
2079             break;
2080
2081         case OFPAT_SET_NW_SRC:
2082             oa = odp_actions_add(ctx->out, ODPAT_SET_NW_SRC);
2083             oa->nw_addr.nw_addr = ia->nw_addr.nw_addr;
2084             break;
2085
2086         case OFPAT_SET_TP_SRC:
2087             oa = odp_actions_add(ctx->out, ODPAT_SET_TP_SRC);
2088             oa->tp_port.tp_port = ia->tp_port.tp_port;
2089             break;
2090
2091         case OFPAT_VENDOR:
2092             xlate_nicira_action(ctx, (const struct nx_action_header *) ia);
2093             break;
2094
2095         default:
2096             VLOG_DBG_RL(&rl, "unknown action type %"PRIu16, type);
2097             break;
2098         }
2099     }
2100 }
2101
2102 static int
2103 xlate_actions(const union ofp_action *in, size_t n_in,
2104               const flow_t *flow, struct ofproto *ofproto,
2105               const struct ofpbuf *packet,
2106               struct odp_actions *out, tag_type *tags, bool *may_setup_flow)
2107 {
2108     tag_type no_tags = 0;
2109     struct action_xlate_ctx ctx;
2110     COVERAGE_INC(ofproto_ofp2odp);
2111     odp_actions_init(out);
2112     ctx.flow = flow;
2113     ctx.recurse = 0;
2114     ctx.ofproto = ofproto;
2115     ctx.packet = packet;
2116     ctx.out = out;
2117     ctx.tags = tags ? tags : &no_tags;
2118     ctx.may_setup_flow = true;
2119     do_xlate_actions(in, n_in, &ctx);
2120     if (may_setup_flow) {
2121         *may_setup_flow = ctx.may_setup_flow;
2122     }
2123     if (odp_actions_overflow(out)) {
2124         odp_actions_init(out);
2125         return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_TOO_MANY);
2126     }
2127     return 0;
2128 }
2129
2130 static int
2131 handle_packet_out(struct ofproto *p, struct ofconn *ofconn,
2132                   struct ofp_header *oh)
2133 {
2134     struct ofp_packet_out *opo;
2135     struct ofpbuf payload, *buffer;
2136     struct odp_actions actions;
2137     int n_actions;
2138     uint16_t in_port;
2139     flow_t flow;
2140     int error;
2141
2142     error = check_ofp_packet_out(oh, &payload, &n_actions, p->max_ports);
2143     if (error) {
2144         return error;
2145     }
2146     opo = (struct ofp_packet_out *) oh;
2147
2148     COVERAGE_INC(ofproto_packet_out);
2149     if (opo->buffer_id != htonl(UINT32_MAX)) {
2150         error = pktbuf_retrieve(ofconn->pktbuf, ntohl(opo->buffer_id),
2151                                 &buffer, &in_port);
2152         if (error) {
2153             return error;
2154         }
2155         payload = *buffer;
2156     } else {
2157         buffer = NULL;
2158     }
2159
2160     flow_extract(&payload, ofp_port_to_odp_port(ntohs(opo->in_port)), &flow);
2161     error = xlate_actions((const union ofp_action *) opo->actions, n_actions,
2162                           &flow, p, &payload, &actions, NULL, NULL);
2163     if (error) {
2164         return error;
2165     }
2166
2167     dpif_execute(p->dpif, flow.in_port, actions.actions, actions.n_actions,
2168                  &payload);
2169     ofpbuf_delete(buffer);
2170
2171     return 0;
2172 }
2173
2174 static void
2175 update_port_config(struct ofproto *p, struct ofport *port,
2176                    uint32_t config, uint32_t mask)
2177 {
2178     mask &= config ^ port->opp.config;
2179     if (mask & OFPPC_PORT_DOWN) {
2180         if (config & OFPPC_PORT_DOWN) {
2181             netdev_turn_flags_off(port->netdev, NETDEV_UP, true);
2182         } else {
2183             netdev_turn_flags_on(port->netdev, NETDEV_UP, true);
2184         }
2185     }
2186 #define REVALIDATE_BITS (OFPPC_NO_RECV | OFPPC_NO_RECV_STP | OFPPC_NO_FWD)
2187     if (mask & REVALIDATE_BITS) {
2188         COVERAGE_INC(ofproto_costly_flags);
2189         port->opp.config ^= mask & REVALIDATE_BITS;
2190         p->need_revalidate = true;
2191     }
2192 #undef REVALIDATE_BITS
2193     if (mask & OFPPC_NO_FLOOD) {
2194         port->opp.config ^= OFPPC_NO_FLOOD;
2195         refresh_port_group(p, DP_GROUP_FLOOD);
2196     }
2197     if (mask & OFPPC_NO_PACKET_IN) {
2198         port->opp.config ^= OFPPC_NO_PACKET_IN;
2199     }
2200 }
2201
2202 static int
2203 handle_port_mod(struct ofproto *p, struct ofp_header *oh)
2204 {
2205     const struct ofp_port_mod *opm;
2206     struct ofport *port;
2207     int error;
2208
2209     error = check_ofp_message(oh, OFPT_PORT_MOD, sizeof *opm);
2210     if (error) {
2211         return error;
2212     }
2213     opm = (struct ofp_port_mod *) oh;
2214
2215     port = port_array_get(&p->ports,
2216                           ofp_port_to_odp_port(ntohs(opm->port_no)));
2217     if (!port) {
2218         return ofp_mkerr(OFPET_PORT_MOD_FAILED, OFPPMFC_BAD_PORT);
2219     } else if (memcmp(port->opp.hw_addr, opm->hw_addr, OFP_ETH_ALEN)) {
2220         return ofp_mkerr(OFPET_PORT_MOD_FAILED, OFPPMFC_BAD_HW_ADDR);
2221     } else {
2222         update_port_config(p, port, ntohl(opm->config), ntohl(opm->mask));
2223         if (opm->advertise) {
2224             netdev_set_advertisements(port->netdev, ntohl(opm->advertise));
2225         }
2226     }
2227     return 0;
2228 }
2229
2230 static struct ofpbuf *
2231 make_stats_reply(uint32_t xid, uint16_t type, size_t body_len)
2232 {
2233     struct ofp_stats_reply *osr;
2234     struct ofpbuf *msg;
2235
2236     msg = ofpbuf_new(MIN(sizeof *osr + body_len, UINT16_MAX));
2237     osr = put_openflow_xid(sizeof *osr, OFPT_STATS_REPLY, xid, msg);
2238     osr->type = type;
2239     osr->flags = htons(0);
2240     return msg;
2241 }
2242
2243 static struct ofpbuf *
2244 start_stats_reply(const struct ofp_stats_request *request, size_t body_len)
2245 {
2246     return make_stats_reply(request->header.xid, request->type, body_len);
2247 }
2248
2249 static void *
2250 append_stats_reply(size_t nbytes, struct ofconn *ofconn, struct ofpbuf **msgp)
2251 {
2252     struct ofpbuf *msg = *msgp;
2253     assert(nbytes <= UINT16_MAX - sizeof(struct ofp_stats_reply));
2254     if (nbytes + msg->size > UINT16_MAX) {
2255         struct ofp_stats_reply *reply = msg->data;
2256         reply->flags = htons(OFPSF_REPLY_MORE);
2257         *msgp = make_stats_reply(reply->header.xid, reply->type, nbytes);
2258         queue_tx(msg, ofconn, ofconn->reply_counter);
2259     }
2260     return ofpbuf_put_uninit(*msgp, nbytes);
2261 }
2262
2263 static int
2264 handle_desc_stats_request(struct ofproto *p, struct ofconn *ofconn,
2265                            struct ofp_stats_request *request)
2266 {
2267     struct ofp_desc_stats *ods;
2268     struct ofpbuf *msg;
2269
2270     msg = start_stats_reply(request, sizeof *ods);
2271     ods = append_stats_reply(sizeof *ods, ofconn, &msg);
2272     strncpy(ods->mfr_desc, p->manufacturer, sizeof ods->mfr_desc);
2273     strncpy(ods->hw_desc, p->hardware, sizeof ods->hw_desc);
2274     strncpy(ods->sw_desc, p->software, sizeof ods->sw_desc);
2275     strncpy(ods->serial_num, p->serial, sizeof ods->serial_num);
2276     queue_tx(msg, ofconn, ofconn->reply_counter);
2277
2278     return 0;
2279 }
2280
2281 static void
2282 count_subrules(struct cls_rule *cls_rule, void *n_subrules_)
2283 {
2284     struct rule *rule = rule_from_cls_rule(cls_rule);
2285     int *n_subrules = n_subrules_;
2286
2287     if (rule->super) {
2288         (*n_subrules)++;
2289     }
2290 }
2291
2292 static int
2293 handle_table_stats_request(struct ofproto *p, struct ofconn *ofconn,
2294                            struct ofp_stats_request *request)
2295 {
2296     struct ofp_table_stats *ots;
2297     struct ofpbuf *msg;
2298     struct odp_stats dpstats;
2299     int n_exact, n_subrules, n_wild;
2300
2301     msg = start_stats_reply(request, sizeof *ots * 2);
2302
2303     /* Count rules of various kinds. */
2304     n_subrules = 0;
2305     classifier_for_each(&p->cls, CLS_INC_EXACT, count_subrules, &n_subrules);
2306     n_exact = classifier_count_exact(&p->cls) - n_subrules;
2307     n_wild = classifier_count(&p->cls) - classifier_count_exact(&p->cls);
2308
2309     /* Hash table. */
2310     dpif_get_dp_stats(p->dpif, &dpstats);
2311     ots = append_stats_reply(sizeof *ots, ofconn, &msg);
2312     memset(ots, 0, sizeof *ots);
2313     ots->table_id = TABLEID_HASH;
2314     strcpy(ots->name, "hash");
2315     ots->wildcards = htonl(0);
2316     ots->max_entries = htonl(dpstats.max_capacity);
2317     ots->active_count = htonl(n_exact);
2318     ots->lookup_count = htonll(dpstats.n_frags + dpstats.n_hit +
2319                                dpstats.n_missed);
2320     ots->matched_count = htonll(dpstats.n_hit); /* XXX */
2321
2322     /* Classifier table. */
2323     ots = append_stats_reply(sizeof *ots, ofconn, &msg);
2324     memset(ots, 0, sizeof *ots);
2325     ots->table_id = TABLEID_CLASSIFIER;
2326     strcpy(ots->name, "classifier");
2327     ots->wildcards = htonl(OFPFW_ALL);
2328     ots->max_entries = htonl(65536);
2329     ots->active_count = htonl(n_wild);
2330     ots->lookup_count = htonll(0);              /* XXX */
2331     ots->matched_count = htonll(0);             /* XXX */
2332
2333     queue_tx(msg, ofconn, ofconn->reply_counter);
2334     return 0;
2335 }
2336
2337 static int
2338 handle_port_stats_request(struct ofproto *p, struct ofconn *ofconn,
2339                           struct ofp_stats_request *request)
2340 {
2341     struct ofp_port_stats *ops;
2342     struct ofpbuf *msg;
2343     struct ofport *port;
2344     unsigned int port_no;
2345
2346     msg = start_stats_reply(request, sizeof *ops * 16);
2347     PORT_ARRAY_FOR_EACH (port, &p->ports, port_no) {
2348         struct netdev_stats stats;
2349
2350         /* Intentionally ignore return value, since errors will set 'stats' to
2351          * all-1s, which is correct for OpenFlow, and netdev_get_stats() will
2352          * log errors. */
2353         netdev_get_stats(port->netdev, &stats);
2354
2355         ops = append_stats_reply(sizeof *ops, ofconn, &msg);
2356         ops->port_no = htons(odp_port_to_ofp_port(port_no));
2357         memset(ops->pad, 0, sizeof ops->pad);
2358         ops->rx_packets = htonll(stats.rx_packets);
2359         ops->tx_packets = htonll(stats.tx_packets);
2360         ops->rx_bytes = htonll(stats.rx_bytes);
2361         ops->tx_bytes = htonll(stats.tx_bytes);
2362         ops->rx_dropped = htonll(stats.rx_dropped);
2363         ops->tx_dropped = htonll(stats.tx_dropped);
2364         ops->rx_errors = htonll(stats.rx_errors);
2365         ops->tx_errors = htonll(stats.tx_errors);
2366         ops->rx_frame_err = htonll(stats.rx_frame_errors);
2367         ops->rx_over_err = htonll(stats.rx_over_errors);
2368         ops->rx_crc_err = htonll(stats.rx_crc_errors);
2369         ops->collisions = htonll(stats.collisions);
2370     }
2371
2372     queue_tx(msg, ofconn, ofconn->reply_counter);
2373     return 0;
2374 }
2375
2376 struct flow_stats_cbdata {
2377     struct ofproto *ofproto;
2378     struct ofconn *ofconn;
2379     uint16_t out_port;
2380     struct ofpbuf *msg;
2381 };
2382
2383 static void
2384 query_stats(struct ofproto *p, struct rule *rule,
2385             uint64_t *packet_countp, uint64_t *byte_countp)
2386 {
2387     uint64_t packet_count, byte_count;
2388     struct rule *subrule;
2389     struct odp_flow *odp_flows;
2390     size_t n_odp_flows;
2391
2392     n_odp_flows = rule->cr.wc.wildcards ? list_size(&rule->list) : 1;
2393     odp_flows = xcalloc(1, n_odp_flows * sizeof *odp_flows);
2394     if (rule->cr.wc.wildcards) {
2395         size_t i = 0;
2396         LIST_FOR_EACH (subrule, struct rule, list, &rule->list) {
2397             odp_flows[i++].key = subrule->cr.flow;
2398         }
2399     } else {
2400         odp_flows[0].key = rule->cr.flow;
2401     }
2402
2403     packet_count = rule->packet_count;
2404     byte_count = rule->byte_count;
2405     if (!dpif_flow_get_multiple(p->dpif, odp_flows, n_odp_flows)) {
2406         size_t i;
2407         for (i = 0; i < n_odp_flows; i++) {
2408             struct odp_flow *odp_flow = &odp_flows[i];
2409             packet_count += odp_flow->stats.n_packets;
2410             byte_count += odp_flow->stats.n_bytes;
2411         }
2412     }
2413     free(odp_flows);
2414
2415     *packet_countp = packet_count;
2416     *byte_countp = byte_count;
2417 }
2418
2419 static void
2420 flow_stats_cb(struct cls_rule *rule_, void *cbdata_)
2421 {
2422     struct rule *rule = rule_from_cls_rule(rule_);
2423     struct flow_stats_cbdata *cbdata = cbdata_;
2424     struct ofp_flow_stats *ofs;
2425     uint64_t packet_count, byte_count;
2426     size_t act_len, len;
2427
2428     if (rule_is_hidden(rule) || !rule_has_out_port(rule, cbdata->out_port)) {
2429         return;
2430     }
2431
2432     act_len = sizeof *rule->actions * rule->n_actions;
2433     len = offsetof(struct ofp_flow_stats, actions) + act_len;
2434
2435     query_stats(cbdata->ofproto, rule, &packet_count, &byte_count);
2436
2437     ofs = append_stats_reply(len, cbdata->ofconn, &cbdata->msg);
2438     ofs->length = htons(len);
2439     ofs->table_id = rule->cr.wc.wildcards ? TABLEID_CLASSIFIER : TABLEID_HASH;
2440     ofs->pad = 0;
2441     flow_to_match(&rule->cr.flow, rule->cr.wc.wildcards, &ofs->match);
2442     ofs->duration = htonl((time_msec() - rule->created) / 1000);
2443     ofs->priority = htons(rule->cr.priority);
2444     ofs->idle_timeout = htons(rule->idle_timeout);
2445     ofs->hard_timeout = htons(rule->hard_timeout);
2446     memset(ofs->pad2, 0, sizeof ofs->pad2);
2447     ofs->packet_count = htonll(packet_count);
2448     ofs->byte_count = htonll(byte_count);
2449     memcpy(ofs->actions, rule->actions, act_len);
2450 }
2451
2452 static int
2453 table_id_to_include(uint8_t table_id)
2454 {
2455     return (table_id == TABLEID_HASH ? CLS_INC_EXACT
2456             : table_id == TABLEID_CLASSIFIER ? CLS_INC_WILD
2457             : table_id == 0xff ? CLS_INC_ALL
2458             : 0);
2459 }
2460
2461 static int
2462 handle_flow_stats_request(struct ofproto *p, struct ofconn *ofconn,
2463                           const struct ofp_stats_request *osr,
2464                           size_t arg_size)
2465 {
2466     struct ofp_flow_stats_request *fsr;
2467     struct flow_stats_cbdata cbdata;
2468     struct cls_rule target;
2469
2470     if (arg_size != sizeof *fsr) {
2471         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LENGTH);
2472     }
2473     fsr = (struct ofp_flow_stats_request *) osr->body;
2474
2475     COVERAGE_INC(ofproto_flows_req);
2476     cbdata.ofproto = p;
2477     cbdata.ofconn = ofconn;
2478     cbdata.out_port = fsr->out_port;
2479     cbdata.msg = start_stats_reply(osr, 1024);
2480     cls_rule_from_match(&target, &fsr->match, 0);
2481     classifier_for_each_match(&p->cls, &target,
2482                               table_id_to_include(fsr->table_id),
2483                               flow_stats_cb, &cbdata);
2484     queue_tx(cbdata.msg, ofconn, ofconn->reply_counter);
2485     return 0;
2486 }
2487
2488 struct aggregate_stats_cbdata {
2489     struct ofproto *ofproto;
2490     uint16_t out_port;
2491     uint64_t packet_count;
2492     uint64_t byte_count;
2493     uint32_t n_flows;
2494 };
2495
2496 static void
2497 aggregate_stats_cb(struct cls_rule *rule_, void *cbdata_)
2498 {
2499     struct rule *rule = rule_from_cls_rule(rule_);
2500     struct aggregate_stats_cbdata *cbdata = cbdata_;
2501     uint64_t packet_count, byte_count;
2502
2503     if (rule_is_hidden(rule) || !rule_has_out_port(rule, cbdata->out_port)) {
2504         return;
2505     }
2506
2507     query_stats(cbdata->ofproto, rule, &packet_count, &byte_count);
2508
2509     cbdata->packet_count += packet_count;
2510     cbdata->byte_count += byte_count;
2511     cbdata->n_flows++;
2512 }
2513
2514 static int
2515 handle_aggregate_stats_request(struct ofproto *p, struct ofconn *ofconn,
2516                                const struct ofp_stats_request *osr,
2517                                size_t arg_size)
2518 {
2519     struct ofp_aggregate_stats_request *asr;
2520     struct ofp_aggregate_stats_reply *reply;
2521     struct aggregate_stats_cbdata cbdata;
2522     struct cls_rule target;
2523     struct ofpbuf *msg;
2524
2525     if (arg_size != sizeof *asr) {
2526         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LENGTH);
2527     }
2528     asr = (struct ofp_aggregate_stats_request *) osr->body;
2529
2530     COVERAGE_INC(ofproto_agg_request);
2531     cbdata.ofproto = p;
2532     cbdata.out_port = asr->out_port;
2533     cbdata.packet_count = 0;
2534     cbdata.byte_count = 0;
2535     cbdata.n_flows = 0;
2536     cls_rule_from_match(&target, &asr->match, 0);
2537     classifier_for_each_match(&p->cls, &target,
2538                               table_id_to_include(asr->table_id),
2539                               aggregate_stats_cb, &cbdata);
2540
2541     msg = start_stats_reply(osr, sizeof *reply);
2542     reply = append_stats_reply(sizeof *reply, ofconn, &msg);
2543     reply->flow_count = htonl(cbdata.n_flows);
2544     reply->packet_count = htonll(cbdata.packet_count);
2545     reply->byte_count = htonll(cbdata.byte_count);
2546     queue_tx(msg, ofconn, ofconn->reply_counter);
2547     return 0;
2548 }
2549
2550 static int
2551 handle_stats_request(struct ofproto *p, struct ofconn *ofconn,
2552                      struct ofp_header *oh)
2553 {
2554     struct ofp_stats_request *osr;
2555     size_t arg_size;
2556     int error;
2557
2558     error = check_ofp_message_array(oh, OFPT_STATS_REQUEST, sizeof *osr,
2559                                     1, &arg_size);
2560     if (error) {
2561         return error;
2562     }
2563     osr = (struct ofp_stats_request *) oh;
2564
2565     switch (ntohs(osr->type)) {
2566     case OFPST_DESC:
2567         return handle_desc_stats_request(p, ofconn, osr);
2568
2569     case OFPST_FLOW:
2570         return handle_flow_stats_request(p, ofconn, osr, arg_size);
2571
2572     case OFPST_AGGREGATE:
2573         return handle_aggregate_stats_request(p, ofconn, osr, arg_size);
2574
2575     case OFPST_TABLE:
2576         return handle_table_stats_request(p, ofconn, osr);
2577
2578     case OFPST_PORT:
2579         return handle_port_stats_request(p, ofconn, osr);
2580
2581     case OFPST_VENDOR:
2582         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_VENDOR);
2583
2584     default:
2585         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_STAT);
2586     }
2587 }
2588
2589 static long long int
2590 msec_from_nsec(uint64_t sec, uint32_t nsec)
2591 {
2592     return !sec ? 0 : sec * 1000 + nsec / 1000000;
2593 }
2594
2595 static void
2596 update_time(struct rule *rule, const struct odp_flow_stats *stats)
2597 {
2598     long long int used = msec_from_nsec(stats->used_sec, stats->used_nsec);
2599     if (used > rule->used) {
2600         rule->used = used;
2601     }
2602 }
2603
2604 static void
2605 update_stats(struct rule *rule, const struct odp_flow_stats *stats)
2606 {
2607     update_time(rule, stats);
2608     rule->packet_count += stats->n_packets;
2609     rule->byte_count += stats->n_bytes;
2610     rule->tcp_flags |= stats->tcp_flags;
2611     if (stats->n_packets) {
2612         rule->ip_tos = stats->ip_tos;
2613     }
2614 }
2615
2616 static int
2617 add_flow(struct ofproto *p, struct ofconn *ofconn,
2618          struct ofp_flow_mod *ofm, size_t n_actions)
2619 {
2620     struct ofpbuf *packet;
2621     struct rule *rule;
2622     uint16_t in_port;
2623     int error;
2624
2625     rule = rule_create(NULL, (const union ofp_action *) ofm->actions,
2626                        n_actions, ntohs(ofm->idle_timeout),
2627                        ntohs(ofm->hard_timeout));
2628     cls_rule_from_match(&rule->cr, &ofm->match, ntohs(ofm->priority));
2629
2630     packet = NULL;
2631     error = 0;
2632     if (ofm->buffer_id != htonl(UINT32_MAX)) {
2633         error = pktbuf_retrieve(ofconn->pktbuf, ntohl(ofm->buffer_id),
2634                                 &packet, &in_port);
2635     }
2636
2637     rule_insert(p, rule, packet, in_port);
2638     ofpbuf_delete(packet);
2639     return error;
2640 }
2641
2642 static int
2643 modify_flow(struct ofproto *p, const struct ofp_flow_mod *ofm,
2644             size_t n_actions, uint16_t command, struct rule *rule)
2645 {
2646     if (rule_is_hidden(rule)) {
2647         return 0;
2648     }
2649
2650     if (command == OFPFC_DELETE) {
2651         rule_remove(p, rule);
2652     } else {
2653         size_t actions_len = n_actions * sizeof *rule->actions;
2654
2655         if (n_actions == rule->n_actions
2656             && !memcmp(ofm->actions, rule->actions, actions_len))
2657         {
2658             return 0;
2659         }
2660
2661         free(rule->actions);
2662         rule->actions = xmemdup(ofm->actions, actions_len);
2663         rule->n_actions = n_actions;
2664
2665         if (rule->cr.wc.wildcards) {
2666             COVERAGE_INC(ofproto_mod_wc_flow);
2667             p->need_revalidate = true;
2668         } else {
2669             rule_update_actions(p, rule);
2670         }
2671     }
2672
2673     return 0;
2674 }
2675
2676 static int
2677 modify_flows_strict(struct ofproto *p, const struct ofp_flow_mod *ofm,
2678                     size_t n_actions, uint16_t command)
2679 {
2680     struct rule *rule;
2681     uint32_t wildcards;
2682     flow_t flow;
2683
2684     flow_from_match(&flow, &wildcards, &ofm->match);
2685     rule = rule_from_cls_rule(classifier_find_rule_exactly(
2686                                   &p->cls, &flow, wildcards,
2687                                   ntohs(ofm->priority)));
2688
2689     if (rule) {
2690         if (command == OFPFC_DELETE
2691             && ofm->out_port != htons(OFPP_NONE)
2692             && !rule_has_out_port(rule, ofm->out_port)) {
2693             return 0;
2694         }
2695
2696         modify_flow(p, ofm, n_actions, command, rule);
2697     }
2698     return 0;
2699 }
2700
2701 struct modify_flows_cbdata {
2702     struct ofproto *ofproto;
2703     const struct ofp_flow_mod *ofm;
2704     uint16_t out_port;
2705     size_t n_actions;
2706     uint16_t command;
2707 };
2708
2709 static void
2710 modify_flows_cb(struct cls_rule *rule_, void *cbdata_)
2711 {
2712     struct rule *rule = rule_from_cls_rule(rule_);
2713     struct modify_flows_cbdata *cbdata = cbdata_;
2714
2715     if (cbdata->out_port != htons(OFPP_NONE)
2716         && !rule_has_out_port(rule, cbdata->out_port)) {
2717         return;
2718     }
2719
2720     modify_flow(cbdata->ofproto, cbdata->ofm, cbdata->n_actions,
2721                 cbdata->command, rule);
2722 }
2723
2724 static int
2725 modify_flows_loose(struct ofproto *p, const struct ofp_flow_mod *ofm,
2726                    size_t n_actions, uint16_t command)
2727 {
2728     struct modify_flows_cbdata cbdata;
2729     struct cls_rule target;
2730
2731     cbdata.ofproto = p;
2732     cbdata.ofm = ofm;
2733     cbdata.out_port = (command == OFPFC_DELETE ? ofm->out_port
2734                        : htons(OFPP_NONE));
2735     cbdata.n_actions = n_actions;
2736     cbdata.command = command;
2737
2738     cls_rule_from_match(&target, &ofm->match, 0);
2739
2740     classifier_for_each_match(&p->cls, &target, CLS_INC_ALL,
2741                               modify_flows_cb, &cbdata);
2742     return 0;
2743 }
2744
2745 static int
2746 handle_flow_mod(struct ofproto *p, struct ofconn *ofconn,
2747                 struct ofp_flow_mod *ofm)
2748 {
2749     size_t n_actions;
2750     int error;
2751
2752     error = check_ofp_message_array(&ofm->header, OFPT_FLOW_MOD, sizeof *ofm,
2753                                     sizeof *ofm->actions, &n_actions);
2754     if (error) {
2755         return error;
2756     }
2757
2758     normalize_match(&ofm->match);
2759     if (!ofm->match.wildcards) {
2760         ofm->priority = htons(UINT16_MAX);
2761     }
2762
2763     error = validate_actions((const union ofp_action *) ofm->actions,
2764                              n_actions, p->max_ports);
2765     if (error) {
2766         return error;
2767     }
2768
2769     switch (ntohs(ofm->command)) {
2770     case OFPFC_ADD:
2771         return add_flow(p, ofconn, ofm, n_actions);
2772
2773     case OFPFC_MODIFY:
2774         return modify_flows_loose(p, ofm, n_actions, OFPFC_MODIFY);
2775
2776     case OFPFC_MODIFY_STRICT:
2777         return modify_flows_strict(p, ofm, n_actions, OFPFC_MODIFY);
2778
2779     case OFPFC_DELETE:
2780         return modify_flows_loose(p, ofm, n_actions, OFPFC_DELETE);
2781
2782     case OFPFC_DELETE_STRICT:
2783         return modify_flows_strict(p, ofm, n_actions, OFPFC_DELETE);
2784
2785     default:
2786         return ofp_mkerr(OFPET_FLOW_MOD_FAILED, OFPFMFC_BAD_COMMAND);
2787     }
2788 }
2789
2790 static void
2791 send_capability_reply(struct ofproto *p, struct ofconn *ofconn, uint32_t xid)
2792 {
2793     struct ofmp_capability_reply *ocr;
2794     struct ofpbuf *b;
2795     char capabilities[] = "com.nicira.mgmt.manager=false\n";
2796
2797     ocr = make_openflow_xid(sizeof(*ocr), OFPT_VENDOR, xid, &b);
2798     ocr->header.header.vendor = htonl(NX_VENDOR_ID);
2799     ocr->header.header.subtype = htonl(NXT_MGMT);
2800     ocr->header.type = htons(OFMPT_CAPABILITY_REPLY);
2801
2802     ocr->format = htonl(OFMPCOF_SIMPLE);
2803     ocr->mgmt_id = htonll(p->mgmt_id);
2804
2805     ofpbuf_put(b, capabilities, strlen(capabilities));
2806
2807     queue_tx(b, ofconn, ofconn->reply_counter);
2808 }
2809
2810 static int
2811 handle_ofmp(struct ofproto *p, struct ofconn *ofconn, 
2812             struct ofmp_header *ofmph)
2813 {
2814     size_t msg_len = ntohs(ofmph->header.header.length);
2815     if (msg_len < sizeof(*ofmph)) {
2816         VLOG_WARN_RL(&rl, "dropping short managment message: %d\n", msg_len);
2817         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LENGTH);
2818     }
2819
2820     if (ofmph->type == htons(OFMPT_CAPABILITY_REQUEST)) {
2821         struct ofmp_capability_request *ofmpcr;
2822
2823         if (msg_len < sizeof(struct ofmp_capability_request)) {
2824             VLOG_WARN_RL(&rl, "dropping short capability request: %d\n", 
2825                     msg_len);
2826             return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LENGTH);
2827         }
2828
2829         ofmpcr = (struct ofmp_capability_request *)ofmph;
2830         if (ofmpcr->format != htonl(OFMPCAF_SIMPLE)) {
2831             /* xxx Find a better type than bad subtype */
2832             return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE);
2833         }
2834
2835         send_capability_reply(p, ofconn, ofmph->header.header.xid);
2836         return 0;
2837     } else {
2838         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE);
2839     }
2840 }
2841
2842 static int
2843 handle_vendor(struct ofproto *p, struct ofconn *ofconn, void *msg)
2844 {
2845     struct ofp_vendor_header *ovh = msg;
2846     struct nicira_header *nh;
2847
2848     if (ntohs(ovh->header.length) < sizeof(struct ofp_vendor_header)) {
2849         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LENGTH);
2850     }
2851     if (ovh->vendor != htonl(NX_VENDOR_ID)) {
2852         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_VENDOR);
2853     }
2854     if (ntohs(ovh->header.length) < sizeof(struct nicira_header)) {
2855         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_LENGTH);
2856     }
2857
2858     nh = msg;
2859     switch (ntohl(nh->subtype)) {
2860     case NXT_STATUS_REQUEST:
2861         return switch_status_handle_request(p->switch_status, ofconn->rconn,
2862                                             msg);
2863
2864     case NXT_ACT_SET_CONFIG:
2865         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE); /* XXX */
2866
2867     case NXT_ACT_GET_CONFIG:
2868         return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE); /* XXX */
2869
2870     case NXT_COMMAND_REQUEST:
2871         if (p->executer) {
2872             return executer_handle_request(p->executer, ofconn->rconn, msg);
2873         }
2874         break;
2875
2876     case NXT_MGMT:
2877         return handle_ofmp(p, ofconn, msg);
2878     }
2879
2880     return ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_SUBTYPE);
2881 }
2882
2883 static void
2884 handle_openflow(struct ofconn *ofconn, struct ofproto *p,
2885                 struct ofpbuf *ofp_msg)
2886 {
2887     struct ofp_header *oh = ofp_msg->data;
2888     int error;
2889
2890     COVERAGE_INC(ofproto_recv_openflow);
2891     switch (oh->type) {
2892     case OFPT_ECHO_REQUEST:
2893         error = handle_echo_request(ofconn, oh);
2894         break;
2895
2896     case OFPT_ECHO_REPLY:
2897         error = 0;
2898         break;
2899
2900     case OFPT_FEATURES_REQUEST:
2901         error = handle_features_request(p, ofconn, oh);
2902         break;
2903
2904     case OFPT_GET_CONFIG_REQUEST:
2905         error = handle_get_config_request(p, ofconn, oh);
2906         break;
2907
2908     case OFPT_SET_CONFIG:
2909         error = handle_set_config(p, ofconn, ofp_msg->data);
2910         break;
2911
2912     case OFPT_PACKET_OUT:
2913         error = handle_packet_out(p, ofconn, ofp_msg->data);
2914         break;
2915
2916     case OFPT_PORT_MOD:
2917         error = handle_port_mod(p, oh);
2918         break;
2919
2920     case OFPT_FLOW_MOD:
2921         error = handle_flow_mod(p, ofconn, ofp_msg->data);
2922         break;
2923
2924     case OFPT_STATS_REQUEST:
2925         error = handle_stats_request(p, ofconn, oh);
2926         break;
2927
2928     case OFPT_VENDOR:
2929         error = handle_vendor(p, ofconn, ofp_msg->data);
2930         break;
2931
2932     default:
2933         if (VLOG_IS_WARN_ENABLED()) {
2934             char *s = ofp_to_string(oh, ntohs(oh->length), 2);
2935             VLOG_DBG_RL(&rl, "OpenFlow message ignored: %s", s);
2936             free(s);
2937         }
2938         error = ofp_mkerr(OFPET_BAD_REQUEST, OFPBRC_BAD_TYPE);
2939         break;
2940     }
2941
2942     if (error) {
2943         send_error_oh(ofconn, ofp_msg->data, error);
2944     }
2945 }
2946 \f
2947 static void
2948 handle_odp_msg(struct ofproto *p, struct ofpbuf *packet)
2949 {
2950     struct odp_msg *msg = packet->data;
2951     uint16_t in_port = odp_port_to_ofp_port(msg->port);
2952     struct rule *rule;
2953     struct ofpbuf payload;
2954     flow_t flow;
2955
2956     /* Handle controller actions. */
2957     if (msg->type == _ODPL_ACTION_NR) {
2958         COVERAGE_INC(ofproto_ctlr_action);
2959         pinsched_send(p->action_sched, in_port, packet,
2960                       send_packet_in_action, p);
2961         return;
2962     }
2963
2964     payload.data = msg + 1;
2965     payload.size = msg->length - sizeof *msg;
2966     flow_extract(&payload, msg->port, &flow);
2967
2968     rule = lookup_valid_rule(p, &flow);
2969     if (!rule) {
2970         /* Don't send a packet-in if OFPPC_NO_PACKET_IN asserted. */
2971         struct ofport *port = port_array_get(&p->ports, msg->port);
2972         if (port) {
2973             if (port->opp.config & OFPPC_NO_PACKET_IN) {
2974                 COVERAGE_INC(ofproto_no_packet_in);
2975                 /* XXX install 'drop' flow entry */
2976                 ofpbuf_delete(packet);
2977                 return;
2978             }
2979         } else {
2980             VLOG_WARN_RL(&rl, "packet-in on unknown port %"PRIu16, msg->port);
2981         }
2982
2983         COVERAGE_INC(ofproto_packet_in);
2984         pinsched_send(p->miss_sched, in_port, packet, send_packet_in_miss, p);
2985         return;
2986     }
2987
2988     if (rule->cr.wc.wildcards) {
2989         rule = rule_create_subrule(p, rule, &flow);
2990         rule_make_actions(p, rule, packet);
2991     } else {
2992         if (!rule->may_install) {
2993             /* The rule is not installable, that is, we need to process every
2994              * packet, so process the current packet and set its actions into
2995              * 'subrule'. */
2996             rule_make_actions(p, rule, packet);
2997         } else {
2998             /* XXX revalidate rule if it needs it */
2999         }
3000     }
3001
3002     rule_execute(p, rule, &payload, &flow);
3003     rule_reinstall(p, rule);
3004     ofpbuf_delete(packet);
3005 }
3006 \f
3007 static void
3008 revalidate_cb(struct cls_rule *sub_, void *cbdata_)
3009 {
3010     struct rule *sub = rule_from_cls_rule(sub_);
3011     struct revalidate_cbdata *cbdata = cbdata_;
3012
3013     if (cbdata->revalidate_all
3014         || (cbdata->revalidate_subrules && sub->super)
3015         || (tag_set_intersects(&cbdata->revalidate_set, sub->tags))) {
3016         revalidate_rule(cbdata->ofproto, sub);
3017     }
3018 }
3019
3020 static bool
3021 revalidate_rule(struct ofproto *p, struct rule *rule)
3022 {
3023     const flow_t *flow = &rule->cr.flow;
3024
3025     COVERAGE_INC(ofproto_revalidate_rule);
3026     if (rule->super) {
3027         struct rule *super;
3028         super = rule_from_cls_rule(classifier_lookup_wild(&p->cls, flow));
3029         if (!super) {
3030             rule_remove(p, rule);
3031             return false;
3032         } else if (super != rule->super) {
3033             COVERAGE_INC(ofproto_revalidate_moved);
3034             list_remove(&rule->list);
3035             list_push_back(&super->list, &rule->list);
3036             rule->super = super;
3037             rule->hard_timeout = super->hard_timeout;
3038             rule->idle_timeout = super->idle_timeout;
3039             rule->created = super->created;
3040             rule->used = 0;
3041         }
3042     }
3043
3044     rule_update_actions(p, rule);
3045     return true;
3046 }
3047
3048 static struct ofpbuf *
3049 compose_flow_exp(const struct rule *rule, long long int now, uint8_t reason)
3050 {
3051     struct ofp_flow_expired *ofe;
3052     struct ofpbuf *buf;
3053
3054     ofe = make_openflow(sizeof *ofe, OFPT_FLOW_EXPIRED, &buf);
3055     flow_to_match(&rule->cr.flow, rule->cr.wc.wildcards, &ofe->match);
3056     ofe->priority = htons(rule->cr.priority);
3057     ofe->reason = reason;
3058     ofe->duration = (now - rule->created) / 1000;
3059     ofe->packet_count = rule->packet_count;
3060     ofe->byte_count = rule->byte_count;
3061
3062     return buf;
3063 }
3064
3065 static void
3066 send_flow_exp(struct ofproto *p, struct rule *rule,
3067               long long int now, uint8_t reason)
3068 {
3069     struct ofconn *ofconn;
3070     struct ofconn *prev;
3071     struct ofpbuf *buf;
3072
3073     /* We limit the maximum number of queued flow expirations it by accounting
3074      * them under the counter for replies.  That works because preventing
3075      * OpenFlow requests from being processed also prevents new flows from
3076      * being added (and expiring).  (It also prevents processing OpenFlow
3077      * requests that would not add new flows, so it is imperfect.) */
3078
3079     prev = NULL;
3080     LIST_FOR_EACH (ofconn, struct ofconn, node, &p->all_conns) {
3081         if (ofconn->send_flow_exp && rconn_is_connected(ofconn->rconn)) {
3082             if (prev) {
3083                 queue_tx(ofpbuf_clone(buf), prev, ofconn->reply_counter);
3084             } else {
3085                 buf = compose_flow_exp(rule, now, reason);
3086             }
3087             prev = ofconn;
3088         }
3089     }
3090     if (prev) {
3091         queue_tx(buf, prev, ofconn->reply_counter);
3092     }
3093 }
3094
3095 static void
3096 uninstall_idle_flow(struct ofproto *ofproto, struct rule *rule)
3097 {
3098     assert(rule->installed);
3099     assert(!rule->cr.wc.wildcards);
3100
3101     if (rule->super) {
3102         rule_remove(ofproto, rule);
3103     } else {
3104         rule_uninstall(ofproto, rule);
3105     }
3106 }
3107
3108 static void
3109 expire_rule(struct cls_rule *cls_rule, void *p_)
3110 {
3111     struct ofproto *p = p_;
3112     struct rule *rule = rule_from_cls_rule(cls_rule);
3113     long long int hard_expire, idle_expire, expire, now;
3114
3115     hard_expire = (rule->hard_timeout
3116                    ? rule->created + rule->hard_timeout * 1000
3117                    : LLONG_MAX);
3118     idle_expire = (rule->idle_timeout
3119                    && (rule->super || list_is_empty(&rule->list))
3120                    ? rule->used + rule->idle_timeout * 1000
3121                    : LLONG_MAX);
3122     expire = MIN(hard_expire, idle_expire);
3123     if (expire == LLONG_MAX) {
3124         if (rule->installed && time_msec() >= rule->used + 5000) {
3125             uninstall_idle_flow(p, rule);
3126         }
3127         return;
3128     }
3129
3130     now = time_msec();
3131     if (now < expire) {
3132         if (rule->installed && now >= rule->used + 5000) {
3133             uninstall_idle_flow(p, rule);
3134         }
3135         return;
3136     }
3137
3138     COVERAGE_INC(ofproto_expired);
3139     if (rule->cr.wc.wildcards) {
3140         /* Update stats.  (This code will be a no-op if the rule expired
3141          * due to an idle timeout, because in that case the rule has no
3142          * subrules left.) */
3143         struct rule *subrule, *next;
3144         LIST_FOR_EACH_SAFE (subrule, next, struct rule, list, &rule->list) {
3145             rule_remove(p, subrule);
3146         }
3147     }
3148
3149     send_flow_exp(p, rule, now,
3150                   (now >= hard_expire
3151                    ? OFPER_HARD_TIMEOUT : OFPER_IDLE_TIMEOUT));
3152     rule_remove(p, rule);
3153 }
3154
3155 static void
3156 update_used(struct ofproto *p)
3157 {
3158     struct odp_flow *flows;
3159     size_t n_flows;
3160     size_t i;
3161     int error;
3162
3163     error = dpif_flow_list_all(p->dpif, &flows, &n_flows);
3164     if (error) {
3165         return;
3166     }
3167
3168     for (i = 0; i < n_flows; i++) {
3169         struct odp_flow *f = &flows[i];
3170         struct rule *rule;
3171
3172         rule = rule_from_cls_rule(
3173             classifier_find_rule_exactly(&p->cls, &f->key, 0, UINT16_MAX));
3174         if (!rule || !rule->installed) {
3175             COVERAGE_INC(ofproto_unexpected_rule);
3176             dpif_flow_del(p->dpif, f);
3177             continue;
3178         }
3179
3180         update_time(rule, &f->stats);
3181         rule_account(p, rule, f->stats.n_bytes);
3182     }
3183     free(flows);
3184 }
3185
3186 static void
3187 do_send_packet_in(struct ofconn *ofconn, uint32_t buffer_id,
3188                   const struct ofpbuf *packet, int send_len)
3189 {
3190     struct ofp_packet_in *opi;
3191     struct ofpbuf payload, *buf;
3192     struct odp_msg *msg;
3193
3194     msg = packet->data;
3195     payload.data = msg + 1;
3196     payload.size = msg->length - sizeof *msg;
3197
3198     send_len = MIN(send_len, payload.size);
3199     buf = ofpbuf_new(sizeof *opi + send_len);
3200     opi = put_openflow_xid(offsetof(struct ofp_packet_in, data),
3201                            OFPT_PACKET_IN, 0, buf);
3202     opi->buffer_id = htonl(buffer_id);
3203     opi->total_len = htons(payload.size);
3204     opi->in_port = htons(odp_port_to_ofp_port(msg->port));
3205     opi->reason = msg->type == _ODPL_ACTION_NR ? OFPR_ACTION : OFPR_NO_MATCH;
3206     ofpbuf_put(buf, payload.data, MIN(send_len, payload.size));
3207     update_openflow_length(buf);
3208     rconn_send_with_limit(ofconn->rconn, buf, ofconn->packet_in_counter, 100);
3209 }
3210
3211 static void
3212 send_packet_in_action(struct ofpbuf *packet, void *p_)
3213 {
3214     struct ofproto *p = p_;
3215     struct ofconn *ofconn;
3216     struct odp_msg *msg;
3217
3218     msg = packet->data;
3219     LIST_FOR_EACH (ofconn, struct ofconn, node, &p->all_conns) {
3220         if (ofconn == p->controller || ofconn->miss_send_len) {
3221             do_send_packet_in(ofconn, UINT32_MAX, packet, msg->arg);
3222         }
3223     }
3224     ofpbuf_delete(packet);
3225 }
3226
3227 static void
3228 send_packet_in_miss(struct ofpbuf *packet, void *p_)
3229 {
3230     struct ofproto *p = p_;
3231     struct ofconn *ofconn;
3232     struct ofpbuf payload;
3233     struct odp_msg *msg;
3234
3235     msg = packet->data;
3236     payload.data = msg + 1;
3237     payload.size = msg->length - sizeof *msg;
3238     LIST_FOR_EACH (ofconn, struct ofconn, node, &p->all_conns) {
3239         if (ofconn->miss_send_len) {
3240             uint32_t buffer_id = pktbuf_save(ofconn->pktbuf, &payload,
3241                                              msg->port);
3242             int send_len = (buffer_id != UINT32_MAX ? ofconn->miss_send_len
3243                             : UINT32_MAX);
3244             do_send_packet_in(ofconn, buffer_id, packet, send_len);
3245         }
3246     }
3247     ofpbuf_delete(packet);
3248 }
3249
3250 static uint64_t
3251 pick_datapath_id(const struct ofproto *ofproto)
3252 {
3253     const struct ofport *port;
3254
3255     port = port_array_get(&ofproto->ports, ODPP_LOCAL);
3256     if (port) {
3257         uint8_t ea[ETH_ADDR_LEN];
3258         int error;
3259
3260         error = netdev_get_etheraddr(port->netdev, ea);
3261         if (!error) {
3262             return eth_addr_to_uint64(ea);
3263         }
3264         VLOG_WARN("could not get MAC address for %s (%s)",
3265                   netdev_get_name(port->netdev), strerror(error));
3266     }
3267     return ofproto->fallback_dpid;
3268 }
3269
3270 static uint64_t
3271 pick_fallback_dpid(void)
3272 {
3273     uint8_t ea[ETH_ADDR_LEN];
3274     eth_addr_random(ea);
3275     ea[0] = 0x00;               /* Set Nicira OUI. */
3276     ea[1] = 0x23;
3277     ea[2] = 0x20;
3278     return eth_addr_to_uint64(ea);
3279 }
3280 \f
3281 static bool
3282 default_normal_ofhook_cb(const flow_t *flow, const struct ofpbuf *packet,
3283                          struct odp_actions *actions, tag_type *tags,
3284                          void *ofproto_)
3285 {
3286     struct ofproto *ofproto = ofproto_;
3287     int out_port;
3288
3289     /* Drop frames for reserved multicast addresses. */
3290     if (eth_addr_is_reserved(flow->dl_dst)) {
3291         return true;
3292     }
3293
3294     /* Learn source MAC (but don't try to learn from revalidation). */
3295     if (packet != NULL) {
3296         tag_type rev_tag = mac_learning_learn(ofproto->ml, flow->dl_src,
3297                                               0, flow->in_port);
3298         if (rev_tag) {
3299             /* The log messages here could actually be useful in debugging,
3300              * so keep the rate limit relatively high. */
3301             static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30, 300);
3302             VLOG_DBG_RL(&rl, "learned that "ETH_ADDR_FMT" is on port %"PRIu16,
3303                         ETH_ADDR_ARGS(flow->dl_src), flow->in_port);
3304             ofproto_revalidate(ofproto, rev_tag);
3305         }
3306     }
3307
3308     /* Determine output port. */
3309     out_port = mac_learning_lookup_tag(ofproto->ml, flow->dl_dst, 0, tags);
3310     if (out_port < 0) {
3311         add_output_group_action(actions, DP_GROUP_FLOOD);
3312     } else if (out_port != flow->in_port) {
3313         odp_actions_add(actions, ODPAT_OUTPUT)->output.port = out_port;
3314     } else {
3315         /* Drop. */
3316     }
3317
3318     return true;
3319 }
3320
3321 static const struct ofhooks default_ofhooks = {
3322     NULL,
3323     default_normal_ofhook_cb,
3324     NULL,
3325     NULL
3326 };