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