ofproto: Start work to enable datapaths with built-in wildcard support.
[sliver-openvswitch.git] / ofproto / wdp-xflow.c
1 /*
2  * Copyright (c) 2010 Nicira Networks.
3  *
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:
7  *
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.
15  */
16
17 #include <config.h>
18
19 #include "wdp-xflow.h"
20
21 #include <errno.h>
22 #include <inttypes.h>
23
24 #include "coverage.h"
25 #include "dhcp.h"
26 #include "netdev.h"
27 #include "netflow.h"
28 #include "ofpbuf.h"
29 #include "openflow/nicira-ext.h"
30 #include "openflow/openflow.h"
31 #include "packets.h"
32 #include "poll-loop.h"
33 #include "port-array.h"
34 #include "shash.h"
35 #include "stp.h"
36 #include "svec.h"
37 #include "timeval.h"
38 #include "util.h"
39 #include "vconn.h"
40 #include "wdp-provider.h"
41 #include "xfif.h"
42 #include "xflow-util.h"
43 #include "xtoxll.h"
44
45 #define THIS_MODULE VLM_wdp_xflow
46 #include "vlog.h"
47
48 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
49 \f
50 /* Maximum numbers of rules. */
51 #define WX_MAX_WILD     65536   /* Wildcarded rules. */
52 #define WX_MAX_EXACT    1048576 /* Exact-match rules. */
53
54 struct wx {
55     struct list list_node;
56     struct wdp wdp;
57     struct xfif *xfif;
58     struct classifier cls;
59     struct netdev_monitor *netdev_monitor;
60     struct port_array ports;    /* Index is ODP port nr; wdp_port->opp.port_no
61                                  * is OFP port nr. */
62     struct shash port_by_name;
63     bool need_revalidate;
64     long long int next_expiration;
65 };
66
67 static struct list all_wx = LIST_INITIALIZER(&all_wx);
68
69 static int wx_port_init(struct wx *);
70 static void wx_port_run(struct wx *);
71 static void wx_port_refresh_groups(struct wx *);
72
73 enum {
74     WX_GROUP_FLOOD = 0,
75     WX_GROUP_ALL = 1
76 };
77
78 static struct wx *
79 wx_cast(const struct wdp *wdp)
80 {
81     return CONTAINER_OF(wdp, struct wx, wdp);
82 }
83
84 static int
85 wx_xlate_actions(struct wx *, const union ofp_action *, size_t n,
86                  const flow_t *flow, const struct ofpbuf *packet,
87                  struct xflow_actions *out, bool *may_set_up_flow);
88 \f
89 struct wx_rule {
90     struct wdp_rule wr;
91
92     uint64_t packet_count;      /* Number of packets received. */
93     uint64_t byte_count;        /* Number of bytes received. */
94     uint64_t accounted_bytes;   /* Number of bytes passed to account_cb. */
95     long long int used;         /* Last-used time (0 if never used). */
96
97     /* If 'super' is non-NULL, this rule is a subrule, that is, it is an
98      * exact-match rule (having cr.wc.wildcards of 0) generated from the
99      * wildcard rule 'super'.  In this case, 'list' is an element of the
100      * super-rule's list.
101      *
102      * If 'super' is NULL, this rule is a super-rule, and 'list' is the head of
103      * a list of subrules.  A super-rule with no wildcards (where
104      * cr.wc.wildcards is 0) will never have any subrules. */
105     struct wx_rule *super;
106     struct list list;
107
108     /* Datapath actions.
109      *
110      * A super-rule with wildcard fields never has XFLOW actions (since the
111      * datapath only supports exact-match flows). */
112     bool installed;             /* Installed in datapath? */
113     bool may_install;           /* True ordinarily; false if actions must
114                                  * be reassessed for every packet. */
115     int n_xflow_actions;
116     union xflow_action *xflow_actions;
117 };
118
119 static void wx_rule_destroy(struct wx *, struct wx_rule *);
120 static void wx_rule_update_actions(struct wx *, struct wx_rule *);
121 static void wx_rule_execute(struct wx *, struct wx_rule *,
122                             struct ofpbuf *packet, const flow_t *);
123 static bool wx_rule_make_actions(struct wx *, struct wx_rule *,
124                                  const struct ofpbuf *packet);
125 static void wx_rule_install(struct wx *, struct wx_rule *,
126                             struct wx_rule *displaced_rule);
127
128 static struct wx_rule *
129 wx_rule_cast(const struct cls_rule *cls_rule)
130 {
131     return cls_rule ? CONTAINER_OF(cls_rule, struct wx_rule, wr.cr) : NULL;
132 }
133
134 /* Returns true if 'rule' is merely an implementation detail that should be
135  * hidden from the client. */
136 static inline bool
137 wx_rule_is_hidden(const struct wx_rule *rule)
138 {
139     return rule->super != NULL;
140 }
141
142 static void
143 wx_rule_free(struct wx_rule *rule)
144 {
145     wdp_rule_uninit(&rule->wr);
146     free(rule->xflow_actions);
147     free(rule);
148 }
149
150 static void
151 wx_rule_account(struct wx *wx OVS_UNUSED, struct wx_rule *rule OVS_UNUSED,
152                 uint64_t extra_bytes OVS_UNUSED)
153 {
154     /* XXX call account_cb hook */
155 }
156
157 static void
158 wx_rule_post_uninstall(struct wx *wx, struct wx_rule *rule)
159 {
160     struct wx_rule *super = rule->super;
161
162     wx_rule_account(wx, rule, 0);
163
164     /* XXX netflow expiration */
165
166     if (super) {
167         super->packet_count += rule->packet_count;
168         super->byte_count += rule->byte_count;
169
170         /* Reset counters to prevent double counting if the rule ever gets
171          * reinstalled. */
172         rule->packet_count = 0;
173         rule->byte_count = 0;
174         rule->accounted_bytes = 0;
175
176         //XXX netflow_flow_clear(&rule->nf_flow);
177     }
178 }
179
180 static long long int
181 xflow_flow_stats_to_msec(const struct xflow_flow_stats *stats)
182 {
183     return (stats->used_sec
184             ? stats->used_sec * 1000 + stats->used_nsec / 1000000
185             : 0);
186 }
187
188 static void
189 wx_rule_update_time(struct wx *wx OVS_UNUSED, struct wx_rule *rule,
190                     const struct xflow_flow_stats *stats)
191 {
192     long long int used = xflow_flow_stats_to_msec(stats);
193     if (used > rule->used) {
194         rule->used = used;
195         if (rule->super && used > rule->super->used) {
196             rule->super->used = used;
197         }
198         //XXX netflow_flow_update_time(ofproto->netflow, &rule->nf_flow, used);
199     }
200 }
201
202 static void
203 wx_rule_update_stats(struct wx *wx, struct wx_rule *rule,
204                      const struct xflow_flow_stats *stats)
205 {
206     if (stats->n_packets) {
207         wx_rule_update_time(wx, rule, stats);
208         rule->packet_count += stats->n_packets;
209         rule->byte_count += stats->n_bytes;
210         /* XXX netflow_flow_update_flags(&rule->nf_flow, stats->ip_tos,
211            stats->tcp_flags); */
212     }
213 }
214
215 static void
216 wx_rule_uninstall(struct wx *wx, struct wx_rule *rule)
217 {
218     assert(!rule->wr.cr.flow.wildcards);
219     if (rule->installed) {
220         struct xflow_flow xflow_flow;
221
222         xflow_key_from_flow(&xflow_flow.key, &rule->wr.cr.flow);
223         xflow_flow.actions = NULL;
224         xflow_flow.n_actions = 0;
225         xflow_flow.flags = 0;
226         if (!xfif_flow_del(wx->xfif, &xflow_flow)) {
227             wx_rule_update_stats(wx, rule, &xflow_flow.stats);
228         }
229         rule->installed = false;
230
231         wx_rule_post_uninstall(wx, rule);
232     }
233 }
234
235 #if 0
236 static bool
237 is_controller_rule(struct wx_rule *rule)
238 {
239     /* If the only action is send to the controller then don't report
240      * NetFlow expiration messages since it is just part of the control
241      * logic for the network and not real traffic. */
242
243     if (rule && rule->super) {
244         struct wdp_rule *super = &rule->super->wr;
245
246         return super->n_actions == 1 &&
247             super->actions[0].type == htons(OFPAT_OUTPUT) &&
248             super->actions[0].output.port == htons(OFPP_CONTROLLER);
249     }
250
251     return false;
252 }
253 #endif
254
255 static void
256 wx_rule_remove(struct wx *wx, struct wx_rule *rule)
257 {
258     if (rule->wr.cr.flow.wildcards) {
259         COVERAGE_INC(wx_del_wc_flow);
260         wx->need_revalidate = true;
261     } else {
262         wx_rule_uninstall(wx, rule);
263     }
264     classifier_remove(&wx->cls, &rule->wr.cr);
265     wx_rule_destroy(wx, rule);
266 }
267
268 static bool
269 wx_rule_revalidate(struct wx *wx, struct wx_rule *rule)
270 {
271     const flow_t *flow = &rule->wr.cr.flow;
272
273     COVERAGE_INC(wx_rule_revalidate);
274     if (rule->super) {
275         struct wx_rule *super;
276         super = wx_rule_cast(classifier_lookup_wild(&wx->cls, flow));
277         if (!super) {
278             wx_rule_remove(wx, rule);
279             return false;
280         } else if (super != rule->super) {
281             COVERAGE_INC(wx_revalidate_moved);
282             list_remove(&rule->list);
283             list_push_back(&super->list, &rule->list);
284             rule->super = super;
285             rule->wr.hard_timeout = super->wr.hard_timeout;
286             rule->wr.idle_timeout = super->wr.idle_timeout;
287             rule->wr.created = super->wr.created;
288             rule->used = 0;
289         }
290     }
291
292     wx_rule_update_actions(wx, rule);
293     return true;
294 }
295
296 /* Destroys 'rule'.  If 'rule' is a subrule, also removes it from its
297  * super-rule's list of subrules.  If 'rule' is a super-rule, also iterates
298  * through all of its subrules and revalidates them, destroying any that no
299  * longer has a super-rule (which is probably all of them).
300  *
301  * Before calling this function, the caller must make have removed 'rule' from
302  * the classifier.  If 'rule' is an exact-match rule, the caller is also
303  * responsible for ensuring that it has been uninstalled from the datapath. */
304 static void
305 wx_rule_destroy(struct wx *wx, struct wx_rule *rule)
306 {
307     if (!rule->super) {
308         struct wx_rule *subrule, *next;
309         LIST_FOR_EACH_SAFE (subrule, next, struct wx_rule, list, &rule->list) {
310             wx_rule_revalidate(wx, subrule);
311         }
312     } else {
313         list_remove(&rule->list);
314     }
315     wx_rule_free(rule);
316 }
317
318 #if 0
319 static bool
320 wx_rule_has_out_port(const struct wx_rule *rule, uint16_t out_port)
321 {
322     const union ofp_action *oa;
323     struct actions_iterator i;
324
325     if (out_port == htons(OFPP_NONE)) {
326         return true;
327     }
328     for (oa = actions_first(&i, rule->wr.actions,
329                             rule->wr.n_actions);
330          oa;
331          oa = actions_next(&i)) {
332         if (oa->type == htons(OFPAT_OUTPUT) && oa->output.port == out_port) {
333             return true;
334         }
335     }
336     return false;
337 }
338 #endif
339
340 /* Caller is responsible for initializing the 'cr' member of the returned
341  * rule. */
342 static struct wx_rule *
343 wx_rule_create(struct wx_rule *super,
344                const union ofp_action *actions, size_t n_actions,
345                uint16_t idle_timeout, uint16_t hard_timeout)
346 {
347     struct wx_rule *rule = xzalloc(sizeof *rule);
348     wdp_rule_init(&rule->wr, actions, n_actions);
349     rule->wr.idle_timeout = idle_timeout;
350     rule->wr.hard_timeout = hard_timeout;
351     rule->used = rule->wr.created;
352     rule->super = super;
353     if (super) {
354         list_push_back(&super->list, &rule->list);
355     } else {
356         list_init(&rule->list);
357     }
358 #if 0
359     netflow_flow_clear(&rule->nf_flow);
360     netflow_flow_update_time(ofproto->netflow, &rule->nf_flow, rule->created);
361 #endif
362
363     return rule;
364 }
365
366 /* Executes the actions indicated by 'rule' on 'packet', which is in flow
367  * 'flow' and is considered to have arrived on XFLOW port 'in_port'.
368  *
369  * The flow that 'packet' actually contains does not need to actually match
370  * 'rule'; the actions in 'rule' will be applied to it either way.  Likewise,
371  * the packet and byte counters for 'rule' will be credited for the packet sent
372  * out whether or not the packet actually matches 'rule'.
373  *
374  * If 'rule' is an exact-match rule and 'flow' actually equals the rule's flow,
375  * the caller must already have accurately composed XFLOW actions for it given
376  * 'packet' using rule_make_actions().  If 'rule' is a wildcard rule, or if
377  * 'rule' is an exact-match rule but 'flow' is not the rule's flow, then this
378  * function will compose a set of XFLOW actions based on 'rule''s OpenFlow
379  * actions and apply them to 'packet'. */
380 static void
381 wx_rule_execute(struct wx *wx, struct wx_rule *rule,
382                 struct ofpbuf *packet, const flow_t *flow)
383 {
384     const union xflow_action *actions;
385     size_t n_actions;
386     struct xflow_actions a;
387
388     /* Grab or compose the XFLOW actions.
389      *
390      * The special case for an exact-match 'rule' where 'flow' is not the
391      * rule's flow is important to avoid, e.g., sending a packet out its input
392      * port simply because the XFLOW actions were composed for the wrong
393      * scenario. */
394     if (rule->wr.cr.flow.wildcards
395         || !flow_equal(flow, &rule->wr.cr.flow))
396     {
397         struct wx_rule *super = rule->super ? rule->super : rule;
398         if (wx_xlate_actions(wx, super->wr.actions, super->wr.n_actions, flow,
399                              packet, &a, NULL)) {
400             return;
401         }
402         actions = a.actions;
403         n_actions = a.n_actions;
404     } else {
405         actions = rule->xflow_actions;
406         n_actions = rule->n_xflow_actions;
407     }
408
409     /* Execute the XFLOW actions. */
410     if (!xfif_execute(wx->xfif, flow->in_port,
411                       actions, n_actions, packet)) {
412         struct xflow_flow_stats stats;
413         flow_extract_stats(flow, packet, &stats);
414         wx_rule_update_stats(wx, rule, &stats);
415         rule->used = time_msec();
416         //XXX netflow_flow_update_time(wx->netflow, &rule->nf_flow, rule->used);
417     }
418 }
419
420 static void
421 wx_rule_insert(struct wx *wx, struct wx_rule *rule, struct ofpbuf *packet,
422                uint16_t in_port)
423 {
424     struct wx_rule *displaced_rule;
425
426     /* Insert the rule in the classifier. */
427     displaced_rule = wx_rule_cast(classifier_insert(&wx->cls, &rule->wr.cr));
428     if (!rule->wr.cr.flow.wildcards) {
429         wx_rule_make_actions(wx, rule, packet);
430     }
431
432     /* Send the packet and credit it to the rule. */
433     if (packet) {
434         flow_t flow;
435         flow_extract(packet, in_port, &flow);
436         wx_rule_execute(wx, rule, packet, &flow);
437     }
438
439     /* Install the rule in the datapath only after sending the packet, to
440      * avoid packet reordering.  */
441     if (rule->wr.cr.flow.wildcards) {
442         COVERAGE_INC(wx_add_wc_flow);
443         wx->need_revalidate = true;
444     } else {
445         wx_rule_install(wx, rule, displaced_rule);
446     }
447
448     /* Free the rule that was displaced, if any. */
449     if (displaced_rule) {
450         wx_rule_destroy(wx, displaced_rule);
451     }
452 }
453
454 static struct wx_rule *
455 wx_rule_create_subrule(struct wx *wx, struct wx_rule *rule, const flow_t *flow)
456 {
457     struct wx_rule *subrule;
458
459     subrule = wx_rule_create(rule, NULL, 0,
460                              rule->wr.idle_timeout,
461                              rule->wr.hard_timeout);
462     COVERAGE_INC(wx_subrule_create);
463     cls_rule_from_flow(&subrule->wr.cr, flow);
464     classifier_insert_exact(&wx->cls, &subrule->wr.cr);
465
466     return subrule;
467 }
468
469 /* Returns true if the actions changed, false otherwise. */
470 static bool
471 wx_rule_make_actions(struct wx *wx, struct wx_rule *rule,
472                      const struct ofpbuf *packet)
473 {
474     const struct wx_rule *super;
475     struct xflow_actions a;
476     size_t actions_len;
477
478     assert(!rule->wr.cr.flow.wildcards);
479
480     super = rule->super ? rule->super : rule;
481     wx_xlate_actions(wx, super->wr.actions, super->wr.n_actions,
482                      &rule->wr.cr.flow, packet, &a, &rule->may_install);
483
484     actions_len = a.n_actions * sizeof *a.actions;
485     if (rule->n_xflow_actions != a.n_actions
486         || memcmp(rule->xflow_actions, a.actions, actions_len)) {
487         COVERAGE_INC(wx_xflow_unchanged);
488         free(rule->xflow_actions);
489         rule->n_xflow_actions = a.n_actions;
490         rule->xflow_actions = xmemdup(a.actions, actions_len);
491         return true;
492     } else {
493         return false;
494     }
495 }
496
497 static int
498 do_put_flow(struct wx *wx, struct wx_rule *rule, int flags,
499             struct xflow_flow_put *put)
500 {
501     memset(&put->flow.stats, 0, sizeof put->flow.stats);
502     xflow_key_from_flow(&put->flow.key, &rule->wr.cr.flow);
503     put->flow.actions = rule->xflow_actions;
504     put->flow.n_actions = rule->n_xflow_actions;
505     put->flow.flags = 0;
506     put->flags = flags;
507     return xfif_flow_put(wx->xfif, put);
508 }
509
510 static void
511 wx_rule_install(struct wx *wx, struct wx_rule *rule, struct wx_rule *displaced_rule)
512 {
513     assert(!rule->wr.cr.flow.wildcards);
514
515     if (rule->may_install) {
516         struct xflow_flow_put put;
517         if (!do_put_flow(wx, rule,
518                          XFLOWPF_CREATE | XFLOWPF_MODIFY | XFLOWPF_ZERO_STATS,
519                          &put)) {
520             rule->installed = true;
521             if (displaced_rule) {
522                 wx_rule_update_stats(wx, displaced_rule, &put.flow.stats);
523                 wx_rule_post_uninstall(wx, displaced_rule);
524             }
525         }
526     } else if (displaced_rule) {
527         wx_rule_uninstall(wx, displaced_rule);
528     }
529 }
530
531 static void
532 wx_rule_reinstall(struct wx *wx, struct wx_rule *rule)
533 {
534     if (rule->installed) {
535         struct xflow_flow_put put;
536         COVERAGE_INC(wx_dp_missed);
537         do_put_flow(wx, rule, XFLOWPF_CREATE | XFLOWPF_MODIFY, &put);
538     } else {
539         wx_rule_install(wx, rule, NULL);
540     }
541 }
542
543 static void
544 wx_rule_update_actions(struct wx *wx, struct wx_rule *rule)
545 {
546     bool actions_changed;
547 #if 0
548     uint16_t new_out_iface, old_out_iface;
549
550     old_out_iface = rule->nf_flow.output_iface;
551 #endif
552     actions_changed = wx_rule_make_actions(wx, rule, NULL);
553
554     if (rule->may_install) {
555         if (rule->installed) {
556             if (actions_changed) {
557                 struct xflow_flow_put put;
558                 do_put_flow(wx, rule, XFLOWPF_CREATE | XFLOWPF_MODIFY
559                             | XFLOWPF_ZERO_STATS, &put);
560                 wx_rule_update_stats(wx, rule, &put.flow.stats);
561 #if 0
562                 /* Temporarily set the old output iface so that NetFlow
563                  * messages have the correct output interface for the old
564                  * stats. */
565                 new_out_iface = rule->nf_flow.output_iface;
566                 rule->nf_flow.output_iface = old_out_iface;
567 #endif
568                 wx_rule_post_uninstall(wx, rule);
569                 //rule->nf_flow.output_iface = new_out_iface;
570             }
571         } else {
572             wx_rule_install(wx, rule, NULL);
573         }
574     } else {
575         wx_rule_uninstall(wx, rule);
576     }
577 }
578 \f
579 static void
580 add_output_group_action(struct xflow_actions *actions, uint16_t group,
581                         uint16_t *nf_output_iface)
582 {
583     xflow_actions_add(actions, XFLOWAT_OUTPUT_GROUP)->output_group.group = group;
584
585     if (group == WX_GROUP_ALL || group == WX_GROUP_FLOOD) {
586         *nf_output_iface = NF_OUT_FLOOD;
587     }
588 }
589
590 static void
591 add_controller_action(struct xflow_actions *actions,
592                       const struct ofp_action_output *oao)
593 {
594     union xflow_action *a = xflow_actions_add(actions, XFLOWAT_CONTROLLER);
595     a->controller.arg = oao->max_len ? ntohs(oao->max_len) : UINT32_MAX;
596 }
597
598 struct wx_xlate_ctx {
599     /* Input. */
600     const flow_t *flow;         /* Flow to which these actions correspond. */
601     int recurse;                /* Recursion level, via xlate_table_action. */
602     struct wx *wx;
603     const struct ofpbuf *packet; /* The packet corresponding to 'flow', or a
604                                   * null pointer if we are revalidating
605                                   * without a packet to refer to. */
606
607     /* Output. */
608     struct xflow_actions *out;    /* Datapath actions. */
609     //tag_type *tags;             /* Tags associated with OFPP_NORMAL actions. */
610     bool may_set_up_flow;       /* True ordinarily; false if the actions must
611                                  * be reassessed for every packet. */
612     uint16_t nf_output_iface;   /* Output interface index for NetFlow. */
613 };
614
615 static void do_xlate_actions(const union ofp_action *in, size_t n_in,
616                              struct wx_xlate_ctx *ctx);
617
618 static void
619 add_output_action(struct wx_xlate_ctx *ctx, uint16_t port)
620 {
621     const struct wdp_port *wdp_port = port_array_get(&ctx->wx->ports, port);
622
623     if (wdp_port) {
624         if (wdp_port->opp.config & OFPPC_NO_FWD) {
625             /* Forwarding disabled on port. */
626             return;
627         }
628     } else {
629         /*
630          * We don't have an ofport record for this port, but it doesn't hurt to
631          * allow forwarding to it anyhow.  Maybe such a port will appear later
632          * and we're pre-populating the flow table.
633          */
634     }
635
636     xflow_actions_add(ctx->out, XFLOWAT_OUTPUT)->output.port = port;
637     //ctx->nf_output_iface = port;
638 }
639
640 static struct wx_rule *
641 wx_rule_lookup_valid(struct wx *wx, const flow_t *flow)
642 {
643     struct wx_rule *rule = wx_rule_cast(classifier_lookup(&wx->cls, flow));
644
645     /* The rule we found might not be valid, since we could be in need of
646      * revalidation.  If it is not valid, don't return it. */
647     if (rule
648         && rule->super
649         && wx->need_revalidate
650         && !wx_rule_revalidate(wx, rule)) {
651         COVERAGE_INC(wx_invalidated);
652         return NULL;
653     }
654
655     return rule;
656 }
657
658 static void
659 xlate_table_action(struct wx_xlate_ctx *ctx, uint16_t in_port)
660 {
661     if (!ctx->recurse) {
662         struct wx_rule *rule;
663         flow_t flow;
664
665         flow = *ctx->flow;
666         flow.in_port = in_port;
667
668         rule = wx_rule_lookup_valid(ctx->wx, &flow);
669         if (rule) {
670             if (rule->super) {
671                 rule = rule->super;
672             }
673
674             ctx->recurse++;
675             do_xlate_actions(rule->wr.actions, rule->wr.n_actions, ctx);
676             ctx->recurse--;
677         }
678     }
679 }
680
681 static void
682 xlate_output_action(struct wx_xlate_ctx *ctx,
683                     const struct ofp_action_output *oao)
684 {
685     uint16_t xflow_port;
686     uint16_t prev_nf_output_iface = ctx->nf_output_iface;
687
688     ctx->nf_output_iface = NF_OUT_DROP;
689
690     switch (ntohs(oao->port)) {
691     case OFPP_IN_PORT:
692         add_output_action(ctx, ctx->flow->in_port);
693         break;
694     case OFPP_TABLE:
695         xlate_table_action(ctx, ctx->flow->in_port);
696         break;
697     case OFPP_NORMAL:
698 #if 0
699         if (!ctx->wx->ofhooks->normal_cb(ctx->flow, ctx->packet,
700                                          ctx->out, ctx->tags,
701                                          &ctx->nf_output_iface,
702                                          ctx->wx->aux)) {
703             COVERAGE_INC(wx_uninstallable);
704             ctx->may_set_up_flow = false;
705         }
706         break;
707 #else
708         /* fall through to flood for now */
709 #endif
710     case OFPP_FLOOD:
711         add_output_group_action(ctx->out, WX_GROUP_FLOOD,
712                                 &ctx->nf_output_iface);
713         break;
714     case OFPP_ALL:
715         add_output_group_action(ctx->out, WX_GROUP_ALL, &ctx->nf_output_iface);
716         break;
717     case OFPP_CONTROLLER:
718         add_controller_action(ctx->out, oao);
719         break;
720     case OFPP_LOCAL:
721         add_output_action(ctx, XFLOWP_LOCAL);
722         break;
723     default:
724         xflow_port = ofp_port_to_xflow_port(ntohs(oao->port));
725         if (xflow_port != ctx->flow->in_port) {
726             add_output_action(ctx, xflow_port);
727         }
728         break;
729     }
730
731     if (prev_nf_output_iface == NF_OUT_FLOOD) {
732         ctx->nf_output_iface = NF_OUT_FLOOD;
733     } else if (ctx->nf_output_iface == NF_OUT_DROP) {
734         ctx->nf_output_iface = prev_nf_output_iface;
735     } else if (prev_nf_output_iface != NF_OUT_DROP &&
736                ctx->nf_output_iface != NF_OUT_FLOOD) {
737         ctx->nf_output_iface = NF_OUT_MULTI;
738     }
739 }
740
741 static void
742 xlate_nicira_action(struct wx_xlate_ctx *ctx,
743                     const struct nx_action_header *nah)
744 {
745     const struct nx_action_resubmit *nar;
746     int subtype = ntohs(nah->subtype);
747
748     assert(nah->vendor == htonl(NX_VENDOR_ID));
749     switch (subtype) {
750     case NXAST_RESUBMIT:
751         nar = (const struct nx_action_resubmit *) nah;
752         xlate_table_action(ctx, ofp_port_to_xflow_port(ntohs(nar->in_port)));
753         break;
754
755     default:
756         VLOG_DBG_RL(&rl, "unknown Nicira action type %"PRIu16, subtype);
757         break;
758     }
759 }
760
761 static void
762 do_xlate_actions(const union ofp_action *in, size_t n_in,
763                  struct wx_xlate_ctx *ctx)
764 {
765     struct actions_iterator iter;
766     const union ofp_action *ia;
767     const struct wdp_port *port;
768
769     port = port_array_get(&ctx->wx->ports, ctx->flow->in_port);
770     if (port && port->opp.config & (OFPPC_NO_RECV | OFPPC_NO_RECV_STP) &&
771         port->opp.config & (eth_addr_equals(ctx->flow->dl_dst, stp_eth_addr)
772                             ? OFPPC_NO_RECV_STP : OFPPC_NO_RECV)) {
773         /* Drop this flow. */
774         return;
775     }
776
777     for (ia = actions_first(&iter, in, n_in); ia; ia = actions_next(&iter)) {
778         uint16_t type = ntohs(ia->type);
779         union xflow_action *oa;
780
781         switch (type) {
782         case OFPAT_OUTPUT:
783             xlate_output_action(ctx, &ia->output);
784             break;
785
786         case OFPAT_SET_VLAN_VID:
787             oa = xflow_actions_add(ctx->out, XFLOWAT_SET_DL_TCI);
788             oa->dl_tci.tci = ia->vlan_vid.vlan_vid & htons(VLAN_VID_MASK);
789             oa->dl_tci.mask = htons(VLAN_VID_MASK);
790             break;
791
792         case OFPAT_SET_VLAN_PCP:
793             oa = xflow_actions_add(ctx->out, XFLOWAT_SET_DL_TCI);
794             oa->dl_tci.tci = htons((ia->vlan_pcp.vlan_pcp << VLAN_PCP_SHIFT)
795                                    & VLAN_PCP_MASK);
796             oa->dl_tci.mask = htons(VLAN_PCP_MASK);
797             break;
798
799         case OFPAT_STRIP_VLAN:
800             xflow_actions_add(ctx->out, XFLOWAT_STRIP_VLAN);
801             break;
802
803         case OFPAT_SET_DL_SRC:
804             oa = xflow_actions_add(ctx->out, XFLOWAT_SET_DL_SRC);
805             memcpy(oa->dl_addr.dl_addr,
806                    ((struct ofp_action_dl_addr *) ia)->dl_addr, ETH_ADDR_LEN);
807             break;
808
809         case OFPAT_SET_DL_DST:
810             oa = xflow_actions_add(ctx->out, XFLOWAT_SET_DL_DST);
811             memcpy(oa->dl_addr.dl_addr,
812                    ((struct ofp_action_dl_addr *) ia)->dl_addr, ETH_ADDR_LEN);
813             break;
814
815         case OFPAT_SET_NW_SRC:
816             oa = xflow_actions_add(ctx->out, XFLOWAT_SET_NW_SRC);
817             oa->nw_addr.nw_addr = ia->nw_addr.nw_addr;
818             break;
819
820         case OFPAT_SET_NW_DST:
821             oa = xflow_actions_add(ctx->out, XFLOWAT_SET_NW_DST);
822             oa->nw_addr.nw_addr = ia->nw_addr.nw_addr;
823             break;
824
825         case OFPAT_SET_NW_TOS:
826             oa = xflow_actions_add(ctx->out, XFLOWAT_SET_NW_TOS);
827             oa->nw_tos.nw_tos = ia->nw_tos.nw_tos;
828             break;
829
830         case OFPAT_SET_TP_SRC:
831             oa = xflow_actions_add(ctx->out, XFLOWAT_SET_TP_SRC);
832             oa->tp_port.tp_port = ia->tp_port.tp_port;
833             break;
834
835         case OFPAT_SET_TP_DST:
836             oa = xflow_actions_add(ctx->out, XFLOWAT_SET_TP_DST);
837             oa->tp_port.tp_port = ia->tp_port.tp_port;
838             break;
839
840         case OFPAT_VENDOR:
841             xlate_nicira_action(ctx, (const struct nx_action_header *) ia);
842             break;
843
844         default:
845             VLOG_DBG_RL(&rl, "unknown action type %"PRIu16, type);
846             break;
847         }
848     }
849 }
850
851 /* Returns true if 'flow' and 'actions' may be set up as a flow in the kernel.
852  * This is true most of the time, but we don't allow flows that would prevent
853  * DHCP replies from being seen by the local port to be set up in the
854  * kernel.
855  *
856  * We only need this, strictly speaking, when in-band control is turned on. */
857 static bool
858 wx_may_set_up(const flow_t *flow, const struct xflow_actions *actions)
859 {
860     if (flow->dl_type == htons(ETH_TYPE_IP)
861         && flow->nw_proto == IP_TYPE_UDP
862         && flow->tp_src == htons(DHCP_SERVER_PORT)
863         && flow->tp_dst == htons(DHCP_CLIENT_PORT)) {
864         int i;
865
866         for (i = 0; i < actions->n_actions; i++) {
867             const struct xflow_action_output *oao = &actions->actions[i].output;
868             if (oao->type == XFLOWAT_OUTPUT && oao->port == XFLOWP_LOCAL) {
869                 return true;
870             }
871         }
872         return false;
873     }
874
875     return true;
876 }
877
878 static int
879 wx_xlate_actions(struct wx *wx, const union ofp_action *in, size_t n_in,
880                  const flow_t *flow, const struct ofpbuf *packet,
881                  struct xflow_actions *out, bool *may_set_up_flow)
882 {
883     //tag_type no_tags = 0;
884     struct wx_xlate_ctx ctx;
885     COVERAGE_INC(wx_ofp2xflow);
886     xflow_actions_init(out);
887     ctx.flow = flow;
888     ctx.recurse = 0;
889     ctx.wx = wx;
890     ctx.packet = packet;
891     ctx.out = out;
892     //ctx.tags = tags ? tags : &no_tags;
893     ctx.may_set_up_flow = true;
894     ctx.nf_output_iface = NF_OUT_DROP;
895     do_xlate_actions(in, n_in, &ctx);
896
897     if (may_set_up_flow) {
898         *may_set_up_flow = ctx.may_set_up_flow && wx_may_set_up(flow, out);
899     }
900 #if 0
901     if (nf_output_iface) {
902         *nf_output_iface = ctx.nf_output_iface;
903     }
904 #endif
905     if (xflow_actions_overflow(out)) {
906         xflow_actions_init(out);
907         return ofp_mkerr(OFPET_BAD_ACTION, OFPBAC_TOO_MANY);
908     }
909     return 0;
910 }
911 \f
912 static void
913 update_used(struct wx *wx)
914 {
915     struct xflow_flow *flows;
916     size_t n_flows;
917     size_t i;
918     int error;
919
920     error = xfif_flow_list_all(wx->xfif, &flows, &n_flows);
921     if (error) {
922         return;
923     }
924
925     for (i = 0; i < n_flows; i++) {
926         struct xflow_flow *f = &flows[i];
927         struct wx_rule *rule;
928         flow_t flow;
929
930         xflow_key_to_flow(&f->key, &flow);
931         rule = wx_rule_cast(classifier_find_rule_exactly(&wx->cls, &flow));
932         if (!rule || !rule->installed) {
933             COVERAGE_INC(wx_unexpected_rule);
934             xfif_flow_del(wx->xfif, f);
935             continue;
936         }
937
938         wx_rule_update_time(wx, rule, &f->stats);
939         wx_rule_account(wx, rule, f->stats.n_bytes);
940     }
941     free(flows);
942 }
943
944 static void
945 uninstall_idle_flow(struct wx *wx, struct wx_rule *rule)
946 {
947     assert(rule->installed);
948     assert(!rule->wr.cr.flow.wildcards);
949
950     if (rule->super) {
951         wx_rule_remove(wx, rule);
952     } else {
953         wx_rule_uninstall(wx, rule);
954     }
955 }
956
957 static void
958 expire_rule(struct cls_rule *cls_rule, void *wx_)
959 {
960     struct wx *wx = wx_;
961     struct wx_rule *rule = wx_rule_cast(cls_rule);
962     long long int hard_expire, idle_expire, expire, now;
963
964     hard_expire = (rule->wr.hard_timeout
965                    ? rule->wr.created + rule->wr.hard_timeout * 1000
966                    : LLONG_MAX);
967     idle_expire = (rule->wr.idle_timeout
968                    && (rule->super || list_is_empty(&rule->list))
969                    ? rule->used + rule->wr.idle_timeout * 1000
970                    : LLONG_MAX);
971     expire = MIN(hard_expire, idle_expire);
972
973     now = time_msec();
974     if (now < expire) {
975         if (rule->installed && now >= rule->used + 5000) {
976             uninstall_idle_flow(wx, rule);
977         } else if (!rule->wr.cr.flow.wildcards) {
978             //XXX active_timeout(wx, rule);
979         }
980
981         return;
982     }
983
984     COVERAGE_INC(wx_expired);
985
986     /* Update stats.  This code will be a no-op if the rule expired
987      * due to an idle timeout. */
988     if (rule->wr.cr.flow.wildcards) {
989         struct wx_rule *subrule, *next;
990         LIST_FOR_EACH_SAFE (subrule, next, struct wx_rule, list, &rule->list) {
991             wx_rule_remove(wx, subrule);
992         }
993     } else {
994         wx_rule_uninstall(wx, rule);
995     }
996
997 #if 0                           /* XXX */
998     if (!wx_rule_is_hidden(rule)) {
999         send_flow_removed(wx, rule, now,
1000                           (now >= hard_expire
1001                            ? OFPRR_HARD_TIMEOUT : OFPRR_IDLE_TIMEOUT));
1002     }
1003 #endif
1004     wx_rule_remove(wx, rule);
1005 }
1006
1007 struct revalidate_cbdata {
1008     struct wx *wx;
1009     bool revalidate_all;        /* Revalidate all exact-match rules? */
1010     bool revalidate_subrules;   /* Revalidate all exact-match subrules? */
1011     //struct tag_set revalidate_set; /* Set of tags to revalidate. */
1012 };
1013
1014 static bool
1015 revalidate_rule(struct wx *wx, struct wx_rule *rule)
1016 {
1017     const flow_t *flow = &rule->wr.cr.flow;
1018
1019     COVERAGE_INC(wx_revalidate_rule);
1020     if (rule->super) {
1021         struct wx_rule *super;
1022         super = wx_rule_cast(classifier_lookup_wild(&wx->cls, flow));
1023         if (!super) {
1024             wx_rule_remove(wx, rule);
1025             return false;
1026         } else if (super != rule->super) {
1027             COVERAGE_INC(wx_revalidate_moved);
1028             list_remove(&rule->list);
1029             list_push_back(&super->list, &rule->list);
1030             rule->super = super;
1031             rule->wr.hard_timeout = super->wr.hard_timeout;
1032             rule->wr.idle_timeout = super->wr.idle_timeout;
1033             rule->wr.created = super->wr.created;
1034             rule->used = 0;
1035         }
1036     }
1037
1038     wx_rule_update_actions(wx, rule);
1039     return true;
1040 }
1041
1042 static void
1043 revalidate_cb(struct cls_rule *sub_, void *cbdata_)
1044 {
1045     struct wx_rule *sub = wx_rule_cast(sub_);
1046     struct revalidate_cbdata *cbdata = cbdata_;
1047
1048     if (cbdata->revalidate_all
1049         || (cbdata->revalidate_subrules && sub->super)
1050         /*|| (tag_set_intersects(&cbdata->revalidate_set, sub->tags))*/) {
1051         revalidate_rule(cbdata->wx, sub);
1052     }
1053 }
1054
1055 static void
1056 wx_run_one(struct wx *wx)
1057 {
1058     wx_port_run(wx);
1059
1060     if (time_msec() >= wx->next_expiration) {
1061         COVERAGE_INC(wx_expiration);
1062         wx->next_expiration = time_msec() + 1000;
1063         update_used(wx);
1064
1065         classifier_for_each(&wx->cls, CLS_INC_ALL, expire_rule, wx);
1066
1067         /* XXX account_checkpoint_cb */
1068     }
1069
1070     if (wx->need_revalidate /*|| !tag_set_is_empty(&p->revalidate_set)*/) {
1071         struct revalidate_cbdata cbdata;
1072         cbdata.wx = wx;
1073         cbdata.revalidate_all = false;
1074         cbdata.revalidate_subrules = wx->need_revalidate;
1075         //cbdata.revalidate_set = wx->revalidate_set;
1076         //tag_set_init(&wx->revalidate_set);
1077         COVERAGE_INC(wx_revalidate);
1078         classifier_for_each(&wx->cls, CLS_INC_EXACT, revalidate_cb, &cbdata);
1079         wx->need_revalidate = false;
1080     }
1081 }
1082
1083 static void
1084 wx_run(void)
1085 {
1086     struct wx *wx;
1087
1088     LIST_FOR_EACH (wx, struct wx, list_node, &all_wx) {
1089         wx_run_one(wx);
1090     }
1091     xf_run();
1092 }
1093
1094 static void
1095 wx_wait_one(struct wx *wx)
1096 {
1097     xfif_port_poll_wait(wx->xfif);
1098     netdev_monitor_poll_wait(wx->netdev_monitor);
1099     if (wx->need_revalidate /*|| !tag_set_is_empty(&p->revalidate_set)*/) {
1100         poll_immediate_wake();
1101     } else if (wx->next_expiration != LLONG_MAX) {
1102         poll_timer_wait(wx->next_expiration - time_msec());
1103     }
1104 }
1105
1106 static void
1107 wx_wait(void)
1108 {
1109     struct wx *wx;
1110
1111     LIST_FOR_EACH (wx, struct wx, list_node, &all_wx) {
1112         wx_wait_one(wx);
1113     }
1114     xf_wait();
1115 }
1116 \f
1117 static int wx_flow_flush(struct wdp *);
1118
1119 static int
1120 wx_enumerate(const struct wdp_class *wdp_class, struct svec *all_wdps)
1121 {
1122     struct svec names = SVEC_EMPTY_INITIALIZER;
1123     int error = xf_enumerate_names(wdp_class->type, &names);
1124     svec_move(all_wdps, &names);
1125     return error;
1126 }
1127
1128 static int
1129 wx_open(const struct wdp_class *wdp_class, const char *name, bool create,
1130         struct wdp **wdpp)
1131 {
1132     struct xfif *xfif;
1133     int error;
1134
1135     error = (create
1136              ? xfif_create_and_open(name, wdp_class->type, &xfif)
1137              : xfif_open(name, wdp_class->type, &xfif));
1138     if (!error) {
1139         struct wx *wx;
1140
1141         wx = xmalloc(sizeof *wx);
1142         list_push_back(&all_wx, &wx->list_node);
1143         wdp_init(&wx->wdp, wdp_class, name, 0, 0);
1144         wx->xfif = xfif;
1145         classifier_init(&wx->cls);
1146         wx->netdev_monitor = netdev_monitor_create();
1147         port_array_init(&wx->ports);
1148         shash_init(&wx->port_by_name);
1149         wx->next_expiration = time_msec() + 1000;
1150
1151         wx_port_init(wx);
1152
1153         *wdpp = &wx->wdp;
1154     }
1155
1156     return error;
1157 }
1158
1159 static void
1160 wx_close(struct wdp *wdp)
1161 {
1162     struct wx *wx = wx_cast(wdp);
1163
1164     wx_flow_flush(wdp);
1165     xfif_close(wx->xfif);
1166     classifier_destroy(&wx->cls);
1167     netdev_monitor_destroy(wx->netdev_monitor);
1168     list_remove(&wx->list_node);
1169     free(wx);
1170 }
1171
1172 static int
1173 wx_get_all_names(const struct wdp *wdp, struct svec *all_names)
1174 {
1175     struct wx *wx = wx_cast(wdp);
1176
1177     return xfif_get_all_names(wx->xfif, all_names);
1178 }
1179
1180 static int
1181 wx_destroy(struct wdp *wdp)
1182 {
1183     struct wx *wx = wx_cast(wdp);
1184
1185     return xfif_delete(wx->xfif);
1186 }
1187
1188 static void
1189 hton_ofp_phy_port(struct ofp_phy_port *opp)
1190 {
1191     opp->port_no = htons(opp->port_no);
1192     opp->config = htonl(opp->config);
1193     opp->state = htonl(opp->state);
1194     opp->curr = htonl(opp->curr);
1195     opp->advertised = htonl(opp->advertised);
1196     opp->supported = htonl(opp->supported);
1197     opp->peer = htonl(opp->peer);
1198 }
1199
1200 static int
1201 wx_get_features(const struct wdp *wdp, struct ofpbuf **featuresp)
1202 {
1203     struct wx *wx = wx_cast(wdp);
1204     struct ofp_switch_features *osf;
1205     struct ofpbuf *buf;
1206     unsigned int port_no;
1207     struct wdp_port *port;
1208
1209     osf = make_openflow(sizeof *osf, OFPT_FEATURES_REPLY, &buf);
1210     osf->n_tables = 2;
1211     osf->capabilities = htonl(OFPC_ARP_MATCH_IP);
1212     osf->actions = htonl((1u << OFPAT_OUTPUT) |
1213                          (1u << OFPAT_SET_VLAN_VID) |
1214                          (1u << OFPAT_SET_VLAN_PCP) |
1215                          (1u << OFPAT_STRIP_VLAN) |
1216                          (1u << OFPAT_SET_DL_SRC) |
1217                          (1u << OFPAT_SET_DL_DST) |
1218                          (1u << OFPAT_SET_NW_SRC) |
1219                          (1u << OFPAT_SET_NW_DST) |
1220                          (1u << OFPAT_SET_NW_TOS) |
1221                          (1u << OFPAT_SET_TP_SRC) |
1222                          (1u << OFPAT_SET_TP_DST));
1223
1224     PORT_ARRAY_FOR_EACH (port, &wx->ports, port_no) {
1225         hton_ofp_phy_port(ofpbuf_put(buf, &port->opp, sizeof port->opp));
1226     }
1227
1228     *featuresp = buf;
1229     return 0;
1230 }
1231
1232 static void
1233 count_subrules(struct cls_rule *cls_rule, void *n_subrules_)
1234 {
1235     struct wx_rule *rule = wx_rule_cast(cls_rule);
1236     int *n_subrules = n_subrules_;
1237
1238     if (rule->super) {
1239         (*n_subrules)++;
1240     }
1241 }
1242
1243 static int
1244 wx_get_stats(const struct wdp *wdp, struct wdp_stats *stats)
1245 {
1246     struct wx *wx = wx_cast(wdp);
1247     struct xflow_stats xflow_stats;
1248     int n_subrules;
1249     int error;
1250
1251     error = xfif_get_xf_stats(wx->xfif, &xflow_stats);
1252
1253     n_subrules = 0;
1254     classifier_for_each(&wx->cls, CLS_INC_EXACT, count_subrules, &n_subrules);
1255
1256     stats->exact.n_flows = classifier_count_exact(&wx->cls) - n_subrules;
1257     stats->exact.cur_capacity = xflow_stats.cur_capacity;
1258     stats->exact.max_capacity = MIN(WX_MAX_EXACT, xflow_stats.max_capacity);
1259     stats->exact.n_hit = xflow_stats.n_hit;
1260     stats->exact.n_missed = xflow_stats.n_missed;
1261     stats->exact.n_lost = xflow_stats.n_lost;
1262
1263     stats->wild.n_flows = classifier_count_wild(&wx->cls);
1264     stats->wild.cur_capacity = WX_MAX_WILD;
1265     stats->wild.max_capacity = WX_MAX_WILD;
1266     stats->wild.n_hit = 0;      /* XXX */
1267     stats->wild.n_missed = 0;   /* XXX */
1268     stats->wild.n_lost = 0;     /* XXX */
1269
1270     stats->n_ports = xflow_stats.n_ports;
1271     stats->max_ports = xflow_stats.max_ports;
1272
1273     stats->n_frags = xflow_stats.n_frags;
1274
1275     stats->max_miss_queue = xflow_stats.max_miss_queue;
1276     stats->max_action_queue = xflow_stats.max_action_queue;
1277     stats->max_sflow_queue = xflow_stats.max_sflow_queue;
1278
1279     return error;
1280 }
1281
1282 static int
1283 wx_get_drop_frags(const struct wdp *wdp, bool *drop_frags)
1284 {
1285     struct wx *wx = wx_cast(wdp);
1286
1287     return xfif_get_drop_frags(wx->xfif, drop_frags);
1288 }
1289
1290 static int
1291 wx_set_drop_frags(struct wdp *wdp, bool drop_frags)
1292 {
1293     struct wx *wx = wx_cast(wdp);
1294
1295     return xfif_set_drop_frags(wx->xfif, drop_frags);
1296 }
1297
1298 static int
1299 wx_port_add(struct wdp *wdp, const char *devname,
1300             bool internal, uint16_t *port_no)
1301 {
1302     struct wx *wx = wx_cast(wdp);
1303     uint16_t xflow_flags = internal ? XFLOW_PORT_INTERNAL : 0;
1304     return xfif_port_add(wx->xfif, devname, xflow_flags, port_no);
1305 }
1306
1307 static int
1308 wx_port_del(struct wdp *wdp, uint16_t port_no)
1309 {
1310     struct wx *wx = wx_cast(wdp);
1311
1312     return xfif_port_del(wx->xfif, port_no);
1313 }
1314
1315 static int
1316 wx_port_query_by_number(const struct wdp *wdp, uint16_t port_no,
1317                         struct wdp_port **portp)
1318 {
1319     struct wx *wx = wx_cast(wdp);
1320
1321     *portp = port_array_get(&wx->ports, ofp_port_to_xflow_port(port_no));
1322     return *portp ? 0 : ENOENT;
1323 }
1324
1325 static int
1326 wx_port_query_by_name(const struct wdp *wdp, const char *devname,
1327                       struct wdp_port **portp)
1328 {
1329     struct wx *wx = wx_cast(wdp);
1330
1331     *portp = shash_find_data(&wx->port_by_name, devname);
1332     return *portp ? 0 : ENOENT;
1333 }
1334
1335 static int
1336 wx_port_set_config(struct wdp *wdp, uint16_t port_no, uint32_t config)
1337 {
1338     struct wx *wx = wx_cast(wdp);
1339     struct wdp_port *port;
1340     uint32_t changes;
1341
1342     port = port_array_get(&wx->ports, ofp_port_to_xflow_port(port_no));
1343     if (!port) {
1344         return ENOENT;
1345     }
1346     changes = config ^ port->opp.config;
1347
1348     if (changes & OFPPC_PORT_DOWN) {
1349         int error;
1350         if (config & OFPPC_PORT_DOWN) {
1351             error = netdev_turn_flags_off(port->netdev, NETDEV_UP, true);
1352         } else {
1353             error = netdev_turn_flags_on(port->netdev, NETDEV_UP, true);
1354         }
1355         if (!error) {
1356             port->opp.config ^= OFPPC_PORT_DOWN;
1357         }
1358     }
1359
1360 #define REVALIDATE_BITS (OFPPC_NO_RECV | OFPPC_NO_RECV_STP | OFPPC_NO_FWD)
1361     if (changes & REVALIDATE_BITS) {
1362         COVERAGE_INC(wx_costly_flags);
1363         port->opp.config ^= changes & REVALIDATE_BITS;
1364         wx->need_revalidate = true;
1365     }
1366 #undef REVALIDATE_BITS
1367
1368     if (changes & OFPPC_NO_FLOOD) {
1369         port->opp.config ^= OFPPC_NO_FLOOD;
1370         wx_port_refresh_groups(wx);
1371     }
1372
1373     if (changes & OFPPC_NO_PACKET_IN) {
1374         port->opp.config ^= OFPPC_NO_PACKET_IN;
1375     }
1376
1377     return 0;
1378 }
1379
1380 static int
1381 wx_port_list(const struct wdp *wdp, struct wdp_port ***portsp,
1382              size_t *n_portsp)
1383 {
1384     struct wx *wx = wx_cast(wdp);
1385     struct wdp_port **ports;
1386     struct wdp_port *port;
1387     unsigned int port_no;
1388     size_t n_ports, i;
1389
1390     *n_portsp = n_ports = port_array_count(&wx->ports);
1391     *portsp = ports = xmalloc(n_ports * sizeof *ports);
1392     i = 0;
1393     PORT_ARRAY_FOR_EACH (port, &wx->ports, port_no) {
1394         ports[i++] = port;
1395     }
1396     assert(i == n_ports);
1397
1398     return 0;
1399 }
1400
1401 static int
1402 wx_port_poll(const struct wdp *wdp, char **devnamep)
1403 {
1404     struct wx *wx = wx_cast(wdp);
1405
1406     return xfif_port_poll(wx->xfif, devnamep);
1407 }
1408
1409 static void
1410 wx_port_poll_wait(const struct wdp *wdp)
1411 {
1412     struct wx *wx = wx_cast(wdp);
1413
1414     xfif_port_poll_wait(wx->xfif);
1415 }
1416
1417 static struct wdp_rule *
1418 wx_flow_get(const struct wdp *wdp, const flow_t *flow)
1419 {
1420     struct wx *wx = wx_cast(wdp);
1421     struct wx_rule *rule;
1422
1423     rule = wx_rule_cast(classifier_find_rule_exactly(&wx->cls, flow));
1424     return rule && !wx_rule_is_hidden(rule) ? &rule->wr : NULL;
1425 }
1426
1427 static struct wdp_rule *
1428 wx_flow_match(const struct wdp *wdp, const flow_t *flow)
1429 {
1430     struct wx *wx = wx_cast(wdp);
1431     struct wx_rule *rule;
1432
1433     rule = wx_rule_cast(classifier_lookup(&wx->cls, flow));
1434     if (rule) {
1435         if (wx_rule_is_hidden(rule)) {
1436             rule = rule->super;
1437         }
1438         return &rule->wr;
1439     } else {
1440         return NULL;
1441     }
1442 }
1443
1444 struct wx_for_each_thunk_aux {
1445     wdp_flow_cb_func *client_callback;
1446     void *client_aux;
1447 };
1448
1449 static void
1450 wx_for_each_thunk(struct cls_rule *cls_rule, void *aux_)
1451 {
1452     struct wx_for_each_thunk_aux *aux = aux_;
1453     struct wx_rule *rule = wx_rule_cast(cls_rule);
1454
1455     if (!wx_rule_is_hidden(rule)) {
1456         aux->client_callback(&rule->wr, aux->client_aux);
1457     }
1458 }
1459
1460 static void
1461 wx_flow_for_each_match(const struct wdp *wdp, const flow_t *target,
1462                        int include,
1463                        wdp_flow_cb_func *client_callback, void *client_aux)
1464 {
1465     struct wx *wx = wx_cast(wdp);
1466     struct wx_for_each_thunk_aux aux;
1467
1468     aux.client_callback = client_callback;
1469     aux.client_aux = client_aux;
1470     classifier_for_each_match(&wx->cls, target, include,
1471                               wx_for_each_thunk, &aux);
1472 }
1473
1474 /* Obtains statistic counters for 'rule' within 'wx' and stores them into
1475  * '*stats'.  If 'rule' is a wildcarded rule, the returned statistic include
1476  * statistics for all of 'rule''s subrules. */
1477 static void
1478 query_stats(struct wx *wx, struct wx_rule *rule, struct wdp_flow_stats *stats)
1479 {
1480     struct wx_rule *subrule;
1481     struct xflow_flow *xflow_flows;
1482     size_t n_xflow_flows;
1483
1484     /* Start from historical data for 'rule' itself that are no longer tracked
1485      * by the datapath.  This counts, for example, subrules that have
1486      * expired. */
1487     stats->n_packets = rule->packet_count;
1488     stats->n_bytes = rule->byte_count;
1489     stats->inserted = rule->wr.created;
1490     stats->used = LLONG_MIN;
1491     stats->tcp_flags = 0;
1492     stats->ip_tos = 0;
1493
1494     /* Prepare to ask the datapath for statistics on 'rule', or if it is
1495      * wildcarded then on all of its subrules.
1496      *
1497      * Also, add any statistics that are not tracked by the datapath for each
1498      * subrule.  This includes, for example, statistics for packets that were
1499      * executed "by hand" by ofproto via xfif_execute() but must be accounted
1500      * to a flow. */
1501     n_xflow_flows = rule->wr.cr.flow.wildcards ? list_size(&rule->list) : 1;
1502     xflow_flows = xzalloc(n_xflow_flows * sizeof *xflow_flows);
1503     if (rule->wr.cr.flow.wildcards) {
1504         size_t i = 0;
1505         LIST_FOR_EACH (subrule, struct wx_rule, list, &rule->list) {
1506             xflow_key_from_flow(&xflow_flows[i++].key, &subrule->wr.cr.flow);
1507             stats->n_packets += subrule->packet_count;
1508             stats->n_bytes += subrule->byte_count;
1509         }
1510     } else {
1511         xflow_key_from_flow(&xflow_flows[0].key, &rule->wr.cr.flow);
1512     }
1513
1514     /* Fetch up-to-date statistics from the datapath and add them in. */
1515     if (!xfif_flow_get_multiple(wx->xfif, xflow_flows, n_xflow_flows)) {
1516         size_t i;
1517         for (i = 0; i < n_xflow_flows; i++) {
1518             struct xflow_flow *xflow_flow = &xflow_flows[i];
1519             long long int used;
1520
1521             stats->n_packets += xflow_flow->stats.n_packets;
1522             stats->n_bytes += xflow_flow->stats.n_bytes;
1523             used = xflow_flow_stats_to_msec(&xflow_flow->stats);
1524             if (used > stats->used) {
1525                 stats->used = used;
1526                 if (xflow_flow->key.dl_type == htons(ETH_TYPE_IP)
1527                     && xflow_flow->key.nw_proto == IP_TYPE_TCP) {
1528                     stats->ip_tos = xflow_flow->stats.ip_tos;
1529                 }
1530             }
1531             stats->tcp_flags |= xflow_flow->stats.tcp_flags;
1532         }
1533     }
1534     free(xflow_flows);
1535 }
1536
1537 static int
1538 wx_flow_get_stats(const struct wdp *wdp,
1539                   const struct wdp_rule *wdp_rule,
1540                   struct wdp_flow_stats *stats)
1541 {
1542     struct wx *wx = wx_cast(wdp);
1543     struct wx_rule *rule = wx_rule_cast(&wdp_rule->cr);
1544
1545     query_stats(wx, rule, stats);
1546     return 0;
1547 }
1548
1549 static bool
1550 wx_flow_overlaps(const struct wdp *wdp, const flow_t *flow)
1551 {
1552     struct wx *wx = wx_cast(wdp);
1553
1554     /* XXX overlap with a subrule? */
1555     return classifier_rule_overlaps(&wx->cls, flow);
1556 }
1557
1558 static int
1559 wx_flow_put(struct wdp *wdp, const struct wdp_flow_put *put,
1560             struct wdp_flow_stats *old_stats, struct wdp_rule **rulep)
1561 {
1562     struct wx *wx = wx_cast(wdp);
1563     struct wx_rule *rule;
1564
1565     rule = wx_rule_cast(classifier_find_rule_exactly(&wx->cls, put->flow));
1566     if (rule && wx_rule_is_hidden(rule)) {
1567         rule = NULL;
1568     }
1569
1570     if (rule) {
1571         if (!(put->flags & WDP_PUT_MODIFY)) {
1572             return EEXIST;
1573         }
1574     } else {
1575         if (!(put->flags & WDP_PUT_CREATE)) {
1576             return EINVAL;
1577         }
1578         if ((put->flow->wildcards
1579              ? classifier_count_wild(&wx->cls) >= WX_MAX_WILD
1580              : classifier_count_exact(&wx->cls) >= WX_MAX_EXACT)) {
1581             /* XXX subrules should not count against exact-match limit */
1582             return ENOBUFS;
1583         }
1584     }
1585
1586     rule = wx_rule_create(NULL, put->actions, put->n_actions,
1587                           put->idle_timeout, put->hard_timeout);
1588     cls_rule_from_flow(&rule->wr.cr, put->flow);
1589     wx_rule_insert(wx, rule, NULL, 0);
1590
1591     if (old_stats) {
1592         /* XXX */
1593         memset(old_stats, 0, sizeof *old_stats);
1594     }
1595     if (rulep) {
1596         *rulep = &rule->wr;
1597     }
1598
1599     return 0;
1600 }
1601
1602 static int
1603 wx_flow_delete(struct wdp *wdp, struct wdp_rule *wdp_rule,
1604                struct wdp_flow_stats *final_stats)
1605 {
1606     struct wx *wx = wx_cast(wdp);
1607     struct wx_rule *rule = wx_rule_cast(&wdp_rule->cr);
1608
1609     wx_rule_remove(wx, rule);
1610     if (final_stats) {
1611         memset(final_stats, 0, sizeof *final_stats); /* XXX */
1612     }
1613     return 0;
1614 }
1615
1616 static void
1617 wx_flush_rule(struct cls_rule *cls_rule, void *wx_)
1618 {
1619     struct wx_rule *rule = wx_rule_cast(cls_rule);
1620     struct wx *wx = wx_;
1621
1622     /* Mark the flow as not installed, even though it might really be
1623      * installed, so that wx_rule_remove() doesn't bother trying to uninstall
1624      * it.  There is no point in uninstalling it individually since we are
1625      * about to blow away all the flows with xfif_flow_flush(). */
1626     rule->installed = false;
1627
1628     wx_rule_remove(wx, rule);
1629 }
1630
1631 static int
1632 wx_flow_flush(struct wdp *wdp)
1633 {
1634     struct wx *wx = wx_cast(wdp);
1635
1636     COVERAGE_INC(wx_flow_flush);
1637     classifier_for_each(&wx->cls, CLS_INC_ALL, wx_flush_rule, wx);
1638     xfif_flow_flush(wx->xfif);
1639     return 0;
1640 }
1641
1642 static int
1643 wx_execute(struct wdp *wdp, uint16_t in_port,
1644            const union ofp_action actions[], int n_actions,
1645            const struct ofpbuf *packet)
1646 {
1647     struct wx *wx = wx_cast(wdp);
1648     struct xflow_actions xflow_actions;
1649     flow_t flow;
1650     int error;
1651
1652     flow_extract((struct ofpbuf *) packet, in_port, &flow);
1653     error = wx_xlate_actions(wx, actions, n_actions, &flow, packet,
1654                              &xflow_actions, NULL);
1655     if (error) {
1656         return error;
1657     }
1658     xfif_execute(wx->xfif, ofp_port_to_xflow_port(in_port),
1659                  xflow_actions.actions, xflow_actions.n_actions, packet);
1660     return 0;
1661 }
1662
1663 static int
1664 wx_flow_inject(struct wdp *wdp, struct wdp_rule *wdp_rule,
1665                uint16_t in_port, const struct ofpbuf *packet)
1666 {
1667     struct wx_rule *rule = wx_rule_cast(&wdp_rule->cr);
1668     int error;
1669
1670     error = wx_execute(wdp, in_port, rule->wr.actions, rule->wr.n_actions,
1671                        packet);
1672     if (!error) {
1673         rule->packet_count++;
1674         rule->byte_count += packet->size;
1675         rule->used = time_msec();
1676     }
1677     return error;
1678 }
1679
1680 static int
1681 wx_recv_get_mask(const struct wdp *wdp, int *listen_mask)
1682 {
1683     struct wx *wx = wx_cast(wdp);
1684     int xflow_listen_mask;
1685     int error;
1686
1687     error = xfif_recv_get_mask(wx->xfif, &xflow_listen_mask);
1688     if (!error) {
1689         *listen_mask = 0;
1690         if (xflow_listen_mask & XFLOWL_MISS) {
1691             *listen_mask |= 1 << WDP_CHAN_MISS;
1692         }
1693         if (xflow_listen_mask & XFLOWL_ACTION) {
1694             *listen_mask |= 1 << WDP_CHAN_ACTION;
1695         }
1696         if (xflow_listen_mask & XFLOWL_SFLOW) {
1697             *listen_mask |= 1 << WDP_CHAN_SFLOW;
1698         }
1699     }
1700     return error;
1701 }
1702
1703 static int
1704 wx_recv_set_mask(struct wdp *wdp, int listen_mask)
1705 {
1706     struct wx *wx = wx_cast(wdp);
1707     int xflow_listen_mask;
1708
1709     xflow_listen_mask = 0;
1710     if (listen_mask & (1 << WDP_CHAN_MISS)) {
1711         xflow_listen_mask |= XFLOWL_MISS;
1712     }
1713     if (listen_mask & (1 << WDP_CHAN_ACTION)) {
1714         xflow_listen_mask |= XFLOWL_ACTION;
1715     }
1716     if (listen_mask & (1 << WDP_CHAN_SFLOW)) {
1717         xflow_listen_mask |= XFLOWL_SFLOW;
1718     }
1719
1720     return xfif_recv_set_mask(wx->xfif, xflow_listen_mask);
1721 }
1722
1723 static int
1724 wx_get_sflow_probability(const struct wdp *wdp, uint32_t *probability)
1725 {
1726     struct wx *wx = wx_cast(wdp);
1727
1728     return xfif_get_sflow_probability(wx->xfif, probability);
1729 }
1730
1731 static int
1732 wx_set_sflow_probability(struct wdp *wdp, uint32_t probability)
1733 {
1734     struct wx *wx = wx_cast(wdp);
1735
1736     return xfif_set_sflow_probability(wx->xfif, probability);
1737 }
1738
1739 static int
1740 wx_translate_xflow_msg(struct xflow_msg *msg, struct ofpbuf *payload,
1741                        struct wdp_packet *packet)
1742 {
1743     packet->in_port = xflow_port_to_ofp_port(msg->port);
1744     packet->send_len = 0;
1745
1746     switch (msg->type) {
1747     case _XFLOWL_MISS_NR:
1748         packet->channel = WDP_CHAN_MISS;
1749         packet->payload = payload;
1750         return 0;
1751
1752     case _XFLOWL_ACTION_NR:
1753         packet->channel = WDP_CHAN_ACTION;
1754         packet->payload = payload;
1755         packet->send_len = msg->arg;
1756         return 0;
1757
1758     case _XFLOWL_SFLOW_NR:
1759         /* XXX */
1760         ofpbuf_delete(payload);
1761         return ENOSYS;
1762
1763     default:
1764         VLOG_WARN_RL(&rl, "received XFLOW message of unexpected type %"PRIu32,
1765                      msg->type);
1766         ofpbuf_delete(payload);
1767         return ENOSYS;
1768     }
1769 }
1770
1771 static const uint8_t *
1772 get_local_mac(const struct wx *wx)
1773 {
1774     const struct wdp_port *port = port_array_get(&wx->ports, XFLOWP_LOCAL);
1775     return port ? port->opp.hw_addr : NULL;
1776 }
1777
1778 /* Returns true if 'packet' is a DHCP reply to the local port.  Such a reply
1779  * should be sent to the local port regardless of the flow table.
1780  *
1781  * We only need this, strictly speaking, when in-band control is turned on. */
1782 static bool
1783 wx_is_local_dhcp_reply(const struct wx *wx,
1784                        const flow_t *flow, const struct ofpbuf *packet)
1785 {
1786     if (flow->dl_type == htons(ETH_TYPE_IP)
1787         && flow->nw_proto == IP_TYPE_UDP
1788         && flow->tp_src == htons(DHCP_SERVER_PORT)
1789         && flow->tp_dst == htons(DHCP_CLIENT_PORT)
1790         && packet->l7)
1791     {
1792         const uint8_t *local_mac = get_local_mac(wx);
1793         struct dhcp_header *dhcp = ofpbuf_at(
1794             packet, (char *)packet->l7 - (char *)packet->data, sizeof *dhcp);
1795         return dhcp && local_mac && eth_addr_equals(dhcp->chaddr, local_mac);
1796     }
1797
1798     return false;
1799 }
1800
1801 static bool
1802 wx_explode_rule(struct wx *wx, struct xflow_msg *msg, struct ofpbuf *payload)
1803 {
1804     struct wx_rule *rule;
1805     flow_t flow;
1806
1807     flow_extract(payload, xflow_port_to_ofp_port(msg->port), &flow);
1808
1809     if (wx_is_local_dhcp_reply(wx, &flow, payload)) {
1810         union xflow_action action;
1811
1812         memset(&action, 0, sizeof(action));
1813         action.output.type = XFLOWAT_OUTPUT;
1814         action.output.port = XFLOWP_LOCAL;
1815         xfif_execute(wx->xfif, msg->port, &action, 1, payload);
1816     }
1817
1818     rule = wx_rule_lookup_valid(wx, &flow);
1819     if (!rule) {
1820         return false;
1821     }
1822
1823     if (rule->wr.cr.flow.wildcards) {
1824         rule = wx_rule_create_subrule(wx, rule, &flow);
1825         wx_rule_make_actions(wx, rule, payload);
1826     } else {
1827         if (!rule->may_install) {
1828             /* The rule is not installable, that is, we need to process every
1829              * packet, so process the current packet and set its actions into
1830              * 'subrule'. */
1831             wx_rule_make_actions(wx, rule, payload);
1832         } else {
1833             /* XXX revalidate rule if it needs it */
1834         }
1835     }
1836
1837     wx_rule_execute(wx, rule, payload, &flow);
1838     wx_rule_reinstall(wx, rule);
1839
1840     return true;
1841 }
1842
1843 static int
1844 wx_recv(struct wdp *wdp, struct wdp_packet *packet)
1845 {
1846     struct wx *wx = wx_cast(wdp);
1847     int i;
1848
1849     /* XXX need to avoid 50*50 potential cost for caller. */
1850     for (i = 0; i < 50; i++) {
1851         struct xflow_msg *msg;
1852         struct ofpbuf *buf;
1853         int error;
1854
1855         error = xfif_recv(wx->xfif, &buf);
1856         if (error) {
1857             return error;
1858         }
1859
1860         msg = ofpbuf_pull(buf, sizeof *msg);
1861         if (msg->type != _XFLOWL_MISS_NR || !wx_explode_rule(wx, msg, buf)) {
1862             return wx_translate_xflow_msg(msg, buf, packet);
1863         }
1864         ofpbuf_delete(buf);
1865     }
1866     return EAGAIN;
1867 }
1868
1869 static void
1870 wx_recv_wait(struct wdp *wdp)
1871 {
1872     struct wx *wx = wx_cast(wdp);
1873
1874     xfif_recv_wait(wx->xfif);
1875 }
1876 \f
1877 static void wx_port_update(struct wx *, const char *devname);
1878 static void wx_port_reinit(struct wx *);
1879
1880 static void
1881 wx_port_process_change(struct wx *wx, int error, char *devname)
1882 {
1883     if (error == ENOBUFS) {
1884         wx_port_reinit(wx);
1885     } else if (!error) {
1886         wx_port_update(wx, devname);
1887         free(devname);
1888     }
1889 }
1890
1891 static void
1892 wx_port_run(struct wx *wx)
1893 {
1894     char *devname;
1895     int error;
1896
1897     while ((error = xfif_port_poll(wx->xfif, &devname)) != EAGAIN) {
1898         wx_port_process_change(wx, error, devname);
1899     }
1900     while ((error = netdev_monitor_poll(wx->netdev_monitor,
1901                                         &devname)) != EAGAIN) {
1902         wx_port_process_change(wx, error, devname);
1903     }
1904 }
1905
1906 static size_t
1907 wx_port_refresh_group(struct wx *wx, unsigned int group)
1908 {
1909     uint16_t *ports;
1910     size_t n_ports;
1911     struct wdp_port *port;
1912     unsigned int port_no;
1913
1914     assert(group == WX_GROUP_ALL || group == WX_GROUP_FLOOD);
1915
1916     ports = xmalloc(port_array_count(&wx->ports) * sizeof *ports);
1917     n_ports = 0;
1918     PORT_ARRAY_FOR_EACH (port, &wx->ports, port_no) {
1919         if (group == WX_GROUP_ALL || !(port->opp.config & OFPPC_NO_FLOOD)) {
1920             ports[n_ports++] = port_no;
1921         }
1922     }
1923     xfif_port_group_set(wx->xfif, group, ports, n_ports);
1924     free(ports);
1925
1926     return n_ports;
1927 }
1928
1929 static void
1930 wx_port_refresh_groups(struct wx *wx)
1931 {
1932     wx_port_refresh_group(wx, WX_GROUP_FLOOD);
1933     wx_port_refresh_group(wx, WX_GROUP_ALL);
1934 }
1935
1936 static void
1937 wx_port_reinit(struct wx *wx)
1938 {
1939     struct svec devnames;
1940     struct wdp_port *wdp_port;
1941     unsigned int port_no;
1942     struct xflow_port *xflow_ports;
1943     size_t n_xflow_ports;
1944     size_t i;
1945
1946     svec_init(&devnames);
1947     PORT_ARRAY_FOR_EACH (wdp_port, &wx->ports, port_no) {
1948         svec_add (&devnames, (char *) wdp_port->opp.name);
1949     }
1950     xfif_port_list(wx->xfif, &xflow_ports, &n_xflow_ports);
1951     for (i = 0; i < n_xflow_ports; i++) {
1952         svec_add(&devnames, xflow_ports[i].devname);
1953     }
1954     free(xflow_ports);
1955
1956     svec_sort_unique(&devnames);
1957     for (i = 0; i < devnames.n; i++) {
1958         wx_port_update(wx, devnames.names[i]);
1959     }
1960     svec_destroy(&devnames);
1961
1962     wx_port_refresh_groups(wx);
1963 }
1964
1965 static struct wdp_port *
1966 make_wdp_port(const struct xflow_port *xflow_port)
1967 {
1968     struct netdev_options netdev_options;
1969     enum netdev_flags flags;
1970     struct wdp_port *wdp_port;
1971     struct netdev *netdev;
1972     bool carrier;
1973     int error;
1974
1975     memset(&netdev_options, 0, sizeof netdev_options);
1976     netdev_options.name = xflow_port->devname;
1977     netdev_options.ethertype = NETDEV_ETH_TYPE_NONE;
1978     netdev_options.may_create = true;
1979     netdev_options.may_open = true;
1980
1981     error = netdev_open(&netdev_options, &netdev);
1982     if (error) {
1983         VLOG_WARN_RL(&rl, "ignoring port %s (%"PRIu16") because netdev %s "
1984                      "cannot be opened (%s)",
1985                      xflow_port->devname, xflow_port->port,
1986                      xflow_port->devname, strerror(error));
1987         return NULL;
1988     }
1989
1990     wdp_port = xmalloc(sizeof *wdp_port);
1991     wdp_port->netdev = netdev;
1992     wdp_port->opp.port_no = xflow_port_to_ofp_port(xflow_port->port);
1993     netdev_get_etheraddr(netdev, wdp_port->opp.hw_addr);
1994     strncpy((char *) wdp_port->opp.name, xflow_port->devname,
1995             sizeof wdp_port->opp.name);
1996     wdp_port->opp.name[sizeof wdp_port->opp.name - 1] = '\0';
1997
1998     netdev_get_flags(netdev, &flags);
1999     wdp_port->opp.config = flags & NETDEV_UP ? 0 : OFPPC_PORT_DOWN;
2000
2001     netdev_get_carrier(netdev, &carrier);
2002     wdp_port->opp.state = carrier ? 0 : OFPPS_LINK_DOWN;
2003
2004     netdev_get_features(netdev,
2005                         &wdp_port->opp.curr, &wdp_port->opp.advertised,
2006                         &wdp_port->opp.supported, &wdp_port->opp.peer);
2007
2008     wdp_port->devname = xstrdup(xflow_port->devname);
2009     wdp_port->internal = (xflow_port->flags & XFLOW_PORT_INTERNAL) != 0;
2010     return wdp_port;
2011 }
2012
2013 static bool
2014 wx_port_conflicts(const struct wx *wx, const struct xflow_port *xflow_port)
2015 {
2016     if (port_array_get(&wx->ports, xflow_port->port)) {
2017         VLOG_WARN_RL(&rl, "ignoring duplicate port %"PRIu16" in datapath",
2018                      xflow_port->port);
2019         return true;
2020     } else if (shash_find(&wx->port_by_name, xflow_port->devname)) {
2021         VLOG_WARN_RL(&rl, "ignoring duplicate device %s in datapath",
2022                      xflow_port->devname);
2023         return true;
2024     } else {
2025         return false;
2026     }
2027 }
2028
2029 static int
2030 wdp_port_equal(const struct wdp_port *a_, const struct wdp_port *b_)
2031 {
2032     const struct ofp_phy_port *a = &a_->opp;
2033     const struct ofp_phy_port *b = &b_->opp;
2034
2035     BUILD_ASSERT_DECL(sizeof *a == 48); /* Detect ofp_phy_port changes. */
2036     return (a->port_no == b->port_no
2037             && !memcmp(a->hw_addr, b->hw_addr, sizeof a->hw_addr)
2038             && !strcmp((char *) a->name, (char *) b->name)
2039             && a->state == b->state
2040             && a->config == b->config
2041             && a->curr == b->curr
2042             && a->advertised == b->advertised
2043             && a->supported == b->supported
2044             && a->peer == b->peer);
2045 }
2046
2047 static void
2048 wx_port_install(struct wx *wx, struct wdp_port *wdp_port)
2049 {
2050     uint16_t xflow_port = ofp_port_to_xflow_port(wdp_port->opp.port_no);
2051     const char *netdev_name = (const char *) wdp_port->opp.name;
2052
2053     netdev_monitor_add(wx->netdev_monitor, wdp_port->netdev);
2054     port_array_set(&wx->ports, xflow_port, wdp_port);
2055     shash_add(&wx->port_by_name, netdev_name, wdp_port);
2056 }
2057
2058 static void
2059 wx_port_remove(struct wx *wx, struct wdp_port *wdp_port)
2060 {
2061     uint16_t xflow_port = ofp_port_to_xflow_port(wdp_port->opp.port_no);
2062
2063     netdev_monitor_remove(wx->netdev_monitor, wdp_port->netdev);
2064     port_array_set(&wx->ports, xflow_port, NULL);
2065     shash_delete(&wx->port_by_name,
2066                  shash_find(&wx->port_by_name, (char *) wdp_port->opp.name));
2067 }
2068
2069 static void
2070 wx_port_free(struct wdp_port *wdp_port)
2071 {
2072     if (wdp_port) {
2073         netdev_close(wdp_port->netdev);
2074         free(wdp_port);
2075     }
2076 }
2077
2078 static void
2079 wx_port_update(struct wx *wx, const char *devname)
2080 {
2081     struct xflow_port xflow_port;
2082     struct wdp_port *old_wdp_port;
2083     struct wdp_port *new_wdp_port;
2084     int error;
2085
2086     COVERAGE_INC(wx_update_port);
2087
2088     /* Query the datapath for port information. */
2089     error = xfif_port_query_by_name(wx->xfif, devname, &xflow_port);
2090
2091     /* Find the old wdp_port. */
2092     old_wdp_port = shash_find_data(&wx->port_by_name, devname);
2093     if (!error) {
2094         if (!old_wdp_port) {
2095             /* There's no port named 'devname' but there might be a port with
2096              * the same port number.  This could happen if a port is deleted
2097              * and then a new one added in its place very quickly, or if a port
2098              * is renamed.  In the former case we want to send an OFPPR_DELETE
2099              * and an OFPPR_ADD, and in the latter case we want to send a
2100              * single OFPPR_MODIFY.  We can distinguish the cases by comparing
2101              * the old port's ifindex against the new port, or perhaps less
2102              * reliably but more portably by comparing the old port's MAC
2103              * against the new port's MAC.  However, this code isn't that smart
2104              * and always sends an OFPPR_MODIFY (XXX). */
2105             old_wdp_port = port_array_get(&wx->ports, xflow_port.port);
2106         }
2107     } else if (error != ENOENT && error != ENODEV) {
2108         VLOG_WARN_RL(&rl, "xfif_port_query_by_name returned unexpected error "
2109                      "%s", strerror(error));
2110         return;
2111     }
2112
2113     /* Create a new wdp_port. */
2114     new_wdp_port = !error ? make_wdp_port(&xflow_port) : NULL;
2115
2116     /* Eliminate a few pathological cases. */
2117     if (!old_wdp_port && !new_wdp_port) {
2118         return;
2119     } else if (old_wdp_port && new_wdp_port) {
2120         /* Most of the 'config' bits are OpenFlow soft state, but
2121          * OFPPC_PORT_DOWN is maintained by the kernel.  So transfer the
2122          * OpenFlow bits from old_wdp_port.  (make_wdp_port() only sets
2123          * OFPPC_PORT_DOWN and leaves the other bits 0.)  */
2124         new_wdp_port->opp.config |= old_wdp_port->opp.config & ~OFPPC_PORT_DOWN;
2125
2126         if (wdp_port_equal(old_wdp_port, new_wdp_port)) {
2127             /* False alarm--no change. */
2128             wx_port_free(new_wdp_port);
2129             return;
2130         }
2131     }
2132
2133     /* Now deal with the normal cases. */
2134     if (old_wdp_port) {
2135         wx_port_remove(wx, old_wdp_port);
2136     }
2137     if (new_wdp_port) {
2138         wx_port_install(wx, new_wdp_port);
2139     }
2140     wx_port_free(old_wdp_port);
2141 }
2142
2143 static int
2144 wx_port_init(struct wx *wx)
2145 {
2146     struct xflow_port *ports;
2147     size_t n_ports;
2148     size_t i;
2149     int error;
2150
2151     error = xfif_port_list(wx->xfif, &ports, &n_ports);
2152     if (error) {
2153         return error;
2154     }
2155
2156     for (i = 0; i < n_ports; i++) {
2157         const struct xflow_port *xflow_port = &ports[i];
2158         if (!wx_port_conflicts(wx, xflow_port)) {
2159             struct wdp_port *wdp_port = make_wdp_port(xflow_port);
2160             if (wdp_port) {
2161                 wx_port_install(wx, wdp_port);
2162             }
2163         }
2164     }
2165     free(ports);
2166     wx_port_refresh_groups(wx);
2167     return 0;
2168 }
2169 \f
2170 void
2171 wdp_xflow_register(void)
2172 {
2173     static const struct wdp_class wdp_xflow_class = {
2174         NULL,                   /* name */
2175         wx_run,
2176         wx_wait,
2177         wx_enumerate,
2178         wx_open,
2179         wx_close,
2180         wx_get_all_names,
2181         wx_destroy,
2182         wx_get_features,
2183         wx_get_stats,
2184         wx_get_drop_frags,
2185         wx_set_drop_frags,
2186         wx_port_add,
2187         wx_port_del,
2188         wx_port_query_by_number,
2189         wx_port_query_by_name,
2190         wx_port_list,
2191         wx_port_set_config,
2192         wx_port_poll,
2193         wx_port_poll_wait,
2194         wx_flow_get,
2195         wx_flow_match,
2196         wx_flow_for_each_match,
2197         wx_flow_get_stats,
2198         wx_flow_overlaps,
2199         wx_flow_put,
2200         wx_flow_delete,
2201         wx_flow_flush,
2202         wx_flow_inject,
2203         wx_execute,
2204         wx_recv_get_mask,
2205         wx_recv_set_mask,
2206         wx_get_sflow_probability,
2207         wx_set_sflow_probability,
2208         wx_recv,
2209         wx_recv_wait,
2210     };
2211
2212     static bool inited = false;
2213
2214     struct svec types;
2215     const char *type;
2216     bool registered;
2217     int i;
2218
2219     if (inited) {
2220         return;
2221     }
2222     inited = true;
2223
2224     svec_init(&types);
2225     xf_enumerate_types(&types);
2226
2227     registered = false;
2228     SVEC_FOR_EACH (i, type, &types) {
2229         struct wdp_class *class;
2230
2231         class = xmalloc(sizeof *class);
2232         *class = wdp_xflow_class;
2233         class->type = xstrdup(type);
2234         if (registered) {
2235             class->run = NULL;
2236             class->wait = NULL;
2237         }
2238         if (!wdp_register_provider(class)) {
2239             registered = true;
2240         }
2241     }
2242
2243     svec_destroy(&types);
2244 }