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