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