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