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