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