]> git.proxmox.com Git - mirror_ovs.git/blob - ofproto/ofproto.c
e062732762aa44e6db6117fe857eb2bf94a5cd6d
[mirror_ovs.git] / ofproto / ofproto.c
1 /*
2 * Copyright (c) 2009-2015 Nicira, Inc.
3 * Copyright (c) 2010 Jean Tourrilhes - HP-Labs.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18 #include <config.h>
19 #include "ofproto.h"
20 #include <errno.h>
21 #include <inttypes.h>
22 #include <stdbool.h>
23 #include <stdlib.h>
24 #include <unistd.h>
25 #include "bitmap.h"
26 #include "byte-order.h"
27 #include "classifier.h"
28 #include "connectivity.h"
29 #include "connmgr.h"
30 #include "coverage.h"
31 #include "dynamic-string.h"
32 #include "hash.h"
33 #include "hmap.h"
34 #include "meta-flow.h"
35 #include "netdev.h"
36 #include "nx-match.h"
37 #include "ofp-actions.h"
38 #include "ofp-errors.h"
39 #include "ofp-msgs.h"
40 #include "ofp-print.h"
41 #include "ofp-util.h"
42 #include "ofpbuf.h"
43 #include "ofproto-provider.h"
44 #include "openflow/nicira-ext.h"
45 #include "openflow/openflow.h"
46 #include "ovs-rcu.h"
47 #include "dp-packet.h"
48 #include "packets.h"
49 #include "pinsched.h"
50 #include "pktbuf.h"
51 #include "poll-loop.h"
52 #include "random.h"
53 #include "seq.h"
54 #include "shash.h"
55 #include "simap.h"
56 #include "smap.h"
57 #include "sset.h"
58 #include "timeval.h"
59 #include "unaligned.h"
60 #include "unixctl.h"
61 #include "openvswitch/vlog.h"
62 #include "bundles.h"
63
64 VLOG_DEFINE_THIS_MODULE(ofproto);
65
66 COVERAGE_DEFINE(ofproto_flush);
67 COVERAGE_DEFINE(ofproto_packet_out);
68 COVERAGE_DEFINE(ofproto_queue_req);
69 COVERAGE_DEFINE(ofproto_recv_openflow);
70 COVERAGE_DEFINE(ofproto_reinit_ports);
71 COVERAGE_DEFINE(ofproto_update_port);
72
73 /* Default fields to use for prefix tries in each flow table, unless something
74 * else is configured. */
75 const enum mf_field_id default_prefix_fields[2] =
76 { MFF_IPV4_DST, MFF_IPV4_SRC };
77
78 /* oftable. */
79 static void oftable_init(struct oftable *);
80 static void oftable_destroy(struct oftable *);
81
82 static void oftable_set_name(struct oftable *, const char *name);
83
84 static enum ofperr evict_rules_from_table(struct oftable *,
85 unsigned int extra_space)
86 OVS_REQUIRES(ofproto_mutex);
87 static void oftable_disable_eviction(struct oftable *);
88 static void oftable_enable_eviction(struct oftable *,
89 const struct mf_subfield *fields,
90 size_t n_fields);
91
92 static void oftable_remove_rule(struct rule *rule) OVS_REQUIRES(ofproto_mutex);
93
94 /* A set of rules within a single OpenFlow table (oftable) that have the same
95 * values for the oftable's eviction_fields. A rule to be evicted, when one is
96 * needed, is taken from the eviction group that contains the greatest number
97 * of rules.
98 *
99 * An oftable owns any number of eviction groups, each of which contains any
100 * number of rules.
101 *
102 * Membership in an eviction group is imprecise, based on the hash of the
103 * oftable's eviction_fields (in the eviction_group's id_node.hash member).
104 * That is, if two rules have different eviction_fields, but those
105 * eviction_fields hash to the same value, then they will belong to the same
106 * eviction_group anyway.
107 *
108 * (When eviction is not enabled on an oftable, we don't track any eviction
109 * groups, to save time and space.) */
110 struct eviction_group {
111 struct hmap_node id_node; /* In oftable's "eviction_groups_by_id". */
112 struct heap_node size_node; /* In oftable's "eviction_groups_by_size". */
113 struct heap rules; /* Contains "struct rule"s. */
114 };
115
116 static bool choose_rule_to_evict(struct oftable *table, struct rule **rulep)
117 OVS_REQUIRES(ofproto_mutex);
118 static uint32_t rule_eviction_priority(struct ofproto *ofproto, struct rule *)
119 OVS_REQUIRES(ofproto_mutex);;
120 static void eviction_group_add_rule(struct rule *)
121 OVS_REQUIRES(ofproto_mutex);
122 static void eviction_group_remove_rule(struct rule *)
123 OVS_REQUIRES(ofproto_mutex);
124
125 /* Criteria that flow_mod and other operations use for selecting rules on
126 * which to operate. */
127 struct rule_criteria {
128 /* An OpenFlow table or 255 for all tables. */
129 uint8_t table_id;
130
131 /* OpenFlow matching criteria. Interpreted different in "loose" way by
132 * collect_rules_loose() and "strict" way by collect_rules_strict(), as
133 * defined in the OpenFlow spec. */
134 struct cls_rule cr;
135
136 /* Matching criteria for the OpenFlow cookie. Consider a bit B in a rule's
137 * cookie and the corresponding bits C in 'cookie' and M in 'cookie_mask'.
138 * The rule will not be selected if M is 1 and B != C. */
139 ovs_be64 cookie;
140 ovs_be64 cookie_mask;
141
142 /* Selection based on actions within a rule:
143 *
144 * If out_port != OFPP_ANY, selects only rules that output to out_port.
145 * If out_group != OFPG_ALL, select only rules that output to out_group. */
146 ofp_port_t out_port;
147 uint32_t out_group;
148
149 /* If true, collects only rules that are modifiable. */
150 bool include_hidden;
151 bool include_readonly;
152 };
153
154 static void rule_criteria_init(struct rule_criteria *, uint8_t table_id,
155 const struct match *match, int priority,
156 ovs_be64 cookie, ovs_be64 cookie_mask,
157 ofp_port_t out_port, uint32_t out_group);
158 static void rule_criteria_require_rw(struct rule_criteria *,
159 bool can_write_readonly);
160 static void rule_criteria_destroy(struct rule_criteria *);
161
162 static enum ofperr collect_rules_loose(struct ofproto *,
163 const struct rule_criteria *,
164 struct rule_collection *);
165
166 /* A packet that needs to be passed to rule_execute().
167 *
168 * (We can't do this immediately from ofopgroup_complete() because that holds
169 * ofproto_mutex, which rule_execute() needs released.) */
170 struct rule_execute {
171 struct ovs_list list_node; /* In struct ofproto's "rule_executes" list. */
172 struct rule *rule; /* Owns a reference to the rule. */
173 ofp_port_t in_port;
174 struct dp_packet *packet; /* Owns the packet. */
175 };
176
177 static void run_rule_executes(struct ofproto *) OVS_EXCLUDED(ofproto_mutex);
178 static void destroy_rule_executes(struct ofproto *);
179
180 struct learned_cookie {
181 union {
182 /* In struct ofproto's 'learned_cookies' hmap. */
183 struct hmap_node hmap_node OVS_GUARDED_BY(ofproto_mutex);
184
185 /* In 'dead_cookies' list when removed from hmap. */
186 struct ovs_list list_node;
187 } u;
188
189 /* Key. */
190 ovs_be64 cookie OVS_GUARDED_BY(ofproto_mutex);
191 uint8_t table_id OVS_GUARDED_BY(ofproto_mutex);
192
193 /* Number of references from "learn" actions.
194 *
195 * When this drops to 0, all of the flows in 'table_id' with the specified
196 * 'cookie' are deleted. */
197 int n OVS_GUARDED_BY(ofproto_mutex);
198 };
199
200 static const struct ofpact_learn *next_learn_with_delete(
201 const struct rule_actions *, const struct ofpact_learn *start);
202
203 static void learned_cookies_inc(struct ofproto *, const struct rule_actions *)
204 OVS_REQUIRES(ofproto_mutex);
205 static void learned_cookies_dec(struct ofproto *, const struct rule_actions *,
206 struct ovs_list *dead_cookies)
207 OVS_REQUIRES(ofproto_mutex);
208 static void learned_cookies_flush(struct ofproto *, struct ovs_list *dead_cookies)
209 OVS_REQUIRES(ofproto_mutex);
210
211 /* ofport. */
212 static void ofport_destroy__(struct ofport *) OVS_EXCLUDED(ofproto_mutex);
213 static void ofport_destroy(struct ofport *);
214
215 static void update_port(struct ofproto *, const char *devname);
216 static int init_ports(struct ofproto *);
217 static void reinit_ports(struct ofproto *);
218
219 static long long int ofport_get_usage(const struct ofproto *,
220 ofp_port_t ofp_port);
221 static void ofport_set_usage(struct ofproto *, ofp_port_t ofp_port,
222 long long int last_used);
223 static void ofport_remove_usage(struct ofproto *, ofp_port_t ofp_port);
224
225 /* Ofport usage.
226 *
227 * Keeps track of the currently used and recently used ofport values and is
228 * used to prevent immediate recycling of ofport values. */
229 struct ofport_usage {
230 struct hmap_node hmap_node; /* In struct ofproto's "ofport_usage" hmap. */
231 ofp_port_t ofp_port; /* OpenFlow port number. */
232 long long int last_used; /* Last time the 'ofp_port' was used. LLONG_MAX
233 represents in-use ofports. */
234 };
235
236 /* rule. */
237 static void ofproto_rule_send_removed(struct rule *, uint8_t reason);
238 static bool rule_is_readonly(const struct rule *);
239 static void ofproto_rule_remove__(struct ofproto *, struct rule *)
240 OVS_REQUIRES(ofproto_mutex);
241
242 /* The source of a flow_mod request, in the code that processes flow_mods.
243 *
244 * A flow table modification request can be generated externally, via OpenFlow,
245 * or internally through a function call. This structure indicates the source
246 * of an OpenFlow-generated flow_mod. For an internal flow_mod, it isn't
247 * meaningful and thus supplied as NULL. */
248 struct flow_mod_requester {
249 struct ofconn *ofconn; /* Connection on which flow_mod arrived. */
250 ovs_be32 xid; /* OpenFlow xid of flow_mod request. */
251 };
252
253 /* OpenFlow. */
254 static enum ofperr add_flow(struct ofproto *, struct ofputil_flow_mod *,
255 const struct flow_mod_requester *);
256
257 static enum ofperr modify_flows__(struct ofproto *, struct ofputil_flow_mod *,
258 const struct rule_collection *,
259 const struct flow_mod_requester *);
260 static void delete_flows__(const struct rule_collection *,
261 enum ofp_flow_removed_reason,
262 const struct flow_mod_requester *)
263 OVS_REQUIRES(ofproto_mutex);
264
265 static enum ofperr send_buffered_packet(struct ofconn *, uint32_t buffer_id,
266 struct rule *)
267 OVS_REQUIRES(ofproto_mutex);
268
269 static bool ofproto_group_exists__(const struct ofproto *ofproto,
270 uint32_t group_id)
271 OVS_REQ_RDLOCK(ofproto->groups_rwlock);
272 static bool ofproto_group_exists(const struct ofproto *ofproto,
273 uint32_t group_id)
274 OVS_EXCLUDED(ofproto->groups_rwlock);
275 static enum ofperr add_group(struct ofproto *, struct ofputil_group_mod *);
276 static void handle_openflow(struct ofconn *, const struct ofpbuf *);
277 static enum ofperr handle_flow_mod__(struct ofproto *,
278 struct ofputil_flow_mod *,
279 const struct flow_mod_requester *)
280 OVS_EXCLUDED(ofproto_mutex);
281 static void calc_duration(long long int start, long long int now,
282 uint32_t *sec, uint32_t *nsec);
283
284 /* ofproto. */
285 static uint64_t pick_datapath_id(const struct ofproto *);
286 static uint64_t pick_fallback_dpid(void);
287 static void ofproto_destroy__(struct ofproto *);
288 static void update_mtu(struct ofproto *, struct ofport *);
289 static void meter_delete(struct ofproto *, uint32_t first, uint32_t last);
290 static void meter_insert_rule(struct rule *);
291
292 /* unixctl. */
293 static void ofproto_unixctl_init(void);
294
295 /* All registered ofproto classes, in probe order. */
296 static const struct ofproto_class **ofproto_classes;
297 static size_t n_ofproto_classes;
298 static size_t allocated_ofproto_classes;
299
300 /* Global lock that protects all flow table operations. */
301 struct ovs_mutex ofproto_mutex = OVS_MUTEX_INITIALIZER;
302
303 unsigned ofproto_flow_limit = OFPROTO_FLOW_LIMIT_DEFAULT;
304 unsigned ofproto_max_idle = OFPROTO_MAX_IDLE_DEFAULT;
305
306 size_t n_handlers, n_revalidators;
307 size_t n_dpdk_rxqs;
308 char *pmd_cpu_mask;
309
310 /* Map from datapath name to struct ofproto, for use by unixctl commands. */
311 static struct hmap all_ofprotos = HMAP_INITIALIZER(&all_ofprotos);
312
313 /* Initial mappings of port to OpenFlow number mappings. */
314 static struct shash init_ofp_ports = SHASH_INITIALIZER(&init_ofp_ports);
315
316 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
317
318 /* The default value of true waits for flow restore. */
319 static bool flow_restore_wait = true;
320
321 /* Must be called to initialize the ofproto library.
322 *
323 * The caller may pass in 'iface_hints', which contains an shash of
324 * "iface_hint" elements indexed by the interface's name. The provider
325 * may use these hints to describe the startup configuration in order to
326 * reinitialize its state. The caller owns the provided data, so a
327 * provider will make copies of anything required. An ofproto provider
328 * will remove any existing state that is not described by the hint, and
329 * may choose to remove it all. */
330 void
331 ofproto_init(const struct shash *iface_hints)
332 {
333 struct shash_node *node;
334 size_t i;
335
336 ofproto_class_register(&ofproto_dpif_class);
337
338 /* Make a local copy, since we don't own 'iface_hints' elements. */
339 SHASH_FOR_EACH(node, iface_hints) {
340 const struct iface_hint *orig_hint = node->data;
341 struct iface_hint *new_hint = xmalloc(sizeof *new_hint);
342 const char *br_type = ofproto_normalize_type(orig_hint->br_type);
343
344 new_hint->br_name = xstrdup(orig_hint->br_name);
345 new_hint->br_type = xstrdup(br_type);
346 new_hint->ofp_port = orig_hint->ofp_port;
347
348 shash_add(&init_ofp_ports, node->name, new_hint);
349 }
350
351 for (i = 0; i < n_ofproto_classes; i++) {
352 ofproto_classes[i]->init(&init_ofp_ports);
353 }
354 }
355
356 /* 'type' should be a normalized datapath type, as returned by
357 * ofproto_normalize_type(). Returns the corresponding ofproto_class
358 * structure, or a null pointer if there is none registered for 'type'. */
359 static const struct ofproto_class *
360 ofproto_class_find__(const char *type)
361 {
362 size_t i;
363
364 for (i = 0; i < n_ofproto_classes; i++) {
365 const struct ofproto_class *class = ofproto_classes[i];
366 struct sset types;
367 bool found;
368
369 sset_init(&types);
370 class->enumerate_types(&types);
371 found = sset_contains(&types, type);
372 sset_destroy(&types);
373
374 if (found) {
375 return class;
376 }
377 }
378 VLOG_WARN("unknown datapath type %s", type);
379 return NULL;
380 }
381
382 /* Registers a new ofproto class. After successful registration, new ofprotos
383 * of that type can be created using ofproto_create(). */
384 int
385 ofproto_class_register(const struct ofproto_class *new_class)
386 {
387 size_t i;
388
389 for (i = 0; i < n_ofproto_classes; i++) {
390 if (ofproto_classes[i] == new_class) {
391 return EEXIST;
392 }
393 }
394
395 if (n_ofproto_classes >= allocated_ofproto_classes) {
396 ofproto_classes = x2nrealloc(ofproto_classes,
397 &allocated_ofproto_classes,
398 sizeof *ofproto_classes);
399 }
400 ofproto_classes[n_ofproto_classes++] = new_class;
401 return 0;
402 }
403
404 /* Unregisters a datapath provider. 'type' must have been previously
405 * registered and not currently be in use by any ofprotos. After
406 * unregistration new datapaths of that type cannot be opened using
407 * ofproto_create(). */
408 int
409 ofproto_class_unregister(const struct ofproto_class *class)
410 {
411 size_t i;
412
413 for (i = 0; i < n_ofproto_classes; i++) {
414 if (ofproto_classes[i] == class) {
415 for (i++; i < n_ofproto_classes; i++) {
416 ofproto_classes[i - 1] = ofproto_classes[i];
417 }
418 n_ofproto_classes--;
419 return 0;
420 }
421 }
422 VLOG_WARN("attempted to unregister an ofproto class that is not "
423 "registered");
424 return EAFNOSUPPORT;
425 }
426
427 /* Clears 'types' and enumerates all registered ofproto types into it. The
428 * caller must first initialize the sset. */
429 void
430 ofproto_enumerate_types(struct sset *types)
431 {
432 size_t i;
433
434 sset_clear(types);
435 for (i = 0; i < n_ofproto_classes; i++) {
436 ofproto_classes[i]->enumerate_types(types);
437 }
438 }
439
440 /* Returns the fully spelled out name for the given ofproto 'type'.
441 *
442 * Normalized type string can be compared with strcmp(). Unnormalized type
443 * string might be the same even if they have different spellings. */
444 const char *
445 ofproto_normalize_type(const char *type)
446 {
447 return type && type[0] ? type : "system";
448 }
449
450 /* Clears 'names' and enumerates the names of all known created ofprotos with
451 * the given 'type'. The caller must first initialize the sset. Returns 0 if
452 * successful, otherwise a positive errno value.
453 *
454 * Some kinds of datapaths might not be practically enumerable. This is not
455 * considered an error. */
456 int
457 ofproto_enumerate_names(const char *type, struct sset *names)
458 {
459 const struct ofproto_class *class = ofproto_class_find__(type);
460 return class ? class->enumerate_names(type, names) : EAFNOSUPPORT;
461 }
462
463 int
464 ofproto_create(const char *datapath_name, const char *datapath_type,
465 struct ofproto **ofprotop)
466 {
467 const struct ofproto_class *class;
468 struct ofproto *ofproto;
469 int error;
470 int i;
471
472 *ofprotop = NULL;
473
474 ofproto_unixctl_init();
475
476 datapath_type = ofproto_normalize_type(datapath_type);
477 class = ofproto_class_find__(datapath_type);
478 if (!class) {
479 VLOG_WARN("could not create datapath %s of unknown type %s",
480 datapath_name, datapath_type);
481 return EAFNOSUPPORT;
482 }
483
484 ofproto = class->alloc();
485 if (!ofproto) {
486 VLOG_ERR("failed to allocate datapath %s of type %s",
487 datapath_name, datapath_type);
488 return ENOMEM;
489 }
490
491 /* Initialize. */
492 ovs_mutex_lock(&ofproto_mutex);
493 memset(ofproto, 0, sizeof *ofproto);
494 ofproto->ofproto_class = class;
495 ofproto->name = xstrdup(datapath_name);
496 ofproto->type = xstrdup(datapath_type);
497 hmap_insert(&all_ofprotos, &ofproto->hmap_node,
498 hash_string(ofproto->name, 0));
499 ofproto->datapath_id = 0;
500 ofproto->forward_bpdu = false;
501 ofproto->fallback_dpid = pick_fallback_dpid();
502 ofproto->mfr_desc = NULL;
503 ofproto->hw_desc = NULL;
504 ofproto->sw_desc = NULL;
505 ofproto->serial_desc = NULL;
506 ofproto->dp_desc = NULL;
507 ofproto->frag_handling = OFPC_FRAG_NORMAL;
508 hmap_init(&ofproto->ports);
509 hmap_init(&ofproto->ofport_usage);
510 shash_init(&ofproto->port_by_name);
511 simap_init(&ofproto->ofp_requests);
512 ofproto->max_ports = ofp_to_u16(OFPP_MAX);
513 ofproto->eviction_group_timer = LLONG_MIN;
514 ofproto->tables = NULL;
515 ofproto->n_tables = 0;
516 hindex_init(&ofproto->cookies);
517 hmap_init(&ofproto->learned_cookies);
518 list_init(&ofproto->expirable);
519 ofproto->connmgr = connmgr_create(ofproto, datapath_name, datapath_name);
520 guarded_list_init(&ofproto->rule_executes);
521 ofproto->vlan_bitmap = NULL;
522 ofproto->vlans_changed = false;
523 ofproto->min_mtu = INT_MAX;
524 ovs_rwlock_init(&ofproto->groups_rwlock);
525 hmap_init(&ofproto->groups);
526 ovs_mutex_unlock(&ofproto_mutex);
527 ofproto->ogf.types = 0xf;
528 ofproto->ogf.capabilities = OFPGFC_CHAINING | OFPGFC_SELECT_LIVENESS |
529 OFPGFC_SELECT_WEIGHT;
530 for (i = 0; i < 4; i++) {
531 ofproto->ogf.max_groups[i] = OFPG_MAX;
532 ofproto->ogf.ofpacts[i] = (UINT64_C(1) << N_OFPACTS) - 1;
533 }
534
535 error = ofproto->ofproto_class->construct(ofproto);
536 if (error) {
537 VLOG_ERR("failed to open datapath %s: %s",
538 datapath_name, ovs_strerror(error));
539 connmgr_destroy(ofproto->connmgr);
540 ofproto_destroy__(ofproto);
541 return error;
542 }
543
544 /* Check that hidden tables, if any, are at the end. */
545 ovs_assert(ofproto->n_tables);
546 for (i = 0; i + 1 < ofproto->n_tables; i++) {
547 enum oftable_flags flags = ofproto->tables[i].flags;
548 enum oftable_flags next_flags = ofproto->tables[i + 1].flags;
549
550 ovs_assert(!(flags & OFTABLE_HIDDEN) || next_flags & OFTABLE_HIDDEN);
551 }
552
553 ofproto->datapath_id = pick_datapath_id(ofproto);
554 init_ports(ofproto);
555
556 /* Initialize meters table. */
557 if (ofproto->ofproto_class->meter_get_features) {
558 ofproto->ofproto_class->meter_get_features(ofproto,
559 &ofproto->meter_features);
560 } else {
561 memset(&ofproto->meter_features, 0, sizeof ofproto->meter_features);
562 }
563 ofproto->meters = xzalloc((ofproto->meter_features.max_meters + 1)
564 * sizeof(struct meter *));
565
566 *ofprotop = ofproto;
567 return 0;
568 }
569
570 /* Must be called (only) by an ofproto implementation in its constructor
571 * function. See the large comment on 'construct' in struct ofproto_class for
572 * details. */
573 void
574 ofproto_init_tables(struct ofproto *ofproto, int n_tables)
575 {
576 struct oftable *table;
577
578 ovs_assert(!ofproto->n_tables);
579 ovs_assert(n_tables >= 1 && n_tables <= 255);
580
581 ofproto->n_tables = n_tables;
582 ofproto->tables = xmalloc(n_tables * sizeof *ofproto->tables);
583 OFPROTO_FOR_EACH_TABLE (table, ofproto) {
584 oftable_init(table);
585 }
586 }
587
588 /* To be optionally called (only) by an ofproto implementation in its
589 * constructor function. See the large comment on 'construct' in struct
590 * ofproto_class for details.
591 *
592 * Sets the maximum number of ports to 'max_ports'. The ofproto generic layer
593 * will then ensure that actions passed into the ofproto implementation will
594 * not refer to OpenFlow ports numbered 'max_ports' or higher. If this
595 * function is not called, there will be no such restriction.
596 *
597 * Reserved ports numbered OFPP_MAX and higher are special and not subject to
598 * the 'max_ports' restriction. */
599 void
600 ofproto_init_max_ports(struct ofproto *ofproto, uint16_t max_ports)
601 {
602 ovs_assert(max_ports <= ofp_to_u16(OFPP_MAX));
603 ofproto->max_ports = max_ports;
604 }
605
606 uint64_t
607 ofproto_get_datapath_id(const struct ofproto *ofproto)
608 {
609 return ofproto->datapath_id;
610 }
611
612 void
613 ofproto_set_datapath_id(struct ofproto *p, uint64_t datapath_id)
614 {
615 uint64_t old_dpid = p->datapath_id;
616 p->datapath_id = datapath_id ? datapath_id : pick_datapath_id(p);
617 if (p->datapath_id != old_dpid) {
618 /* Force all active connections to reconnect, since there is no way to
619 * notify a controller that the datapath ID has changed. */
620 ofproto_reconnect_controllers(p);
621 }
622 }
623
624 void
625 ofproto_set_controllers(struct ofproto *p,
626 const struct ofproto_controller *controllers,
627 size_t n_controllers, uint32_t allowed_versions)
628 {
629 connmgr_set_controllers(p->connmgr, controllers, n_controllers,
630 allowed_versions);
631 }
632
633 void
634 ofproto_set_fail_mode(struct ofproto *p, enum ofproto_fail_mode fail_mode)
635 {
636 connmgr_set_fail_mode(p->connmgr, fail_mode);
637 }
638
639 /* Drops the connections between 'ofproto' and all of its controllers, forcing
640 * them to reconnect. */
641 void
642 ofproto_reconnect_controllers(struct ofproto *ofproto)
643 {
644 connmgr_reconnect(ofproto->connmgr);
645 }
646
647 /* Sets the 'n' TCP port addresses in 'extras' as ones to which 'ofproto''s
648 * in-band control should guarantee access, in the same way that in-band
649 * control guarantees access to OpenFlow controllers. */
650 void
651 ofproto_set_extra_in_band_remotes(struct ofproto *ofproto,
652 const struct sockaddr_in *extras, size_t n)
653 {
654 connmgr_set_extra_in_band_remotes(ofproto->connmgr, extras, n);
655 }
656
657 /* Sets the OpenFlow queue used by flows set up by in-band control on
658 * 'ofproto' to 'queue_id'. If 'queue_id' is negative, then in-band control
659 * flows will use the default queue. */
660 void
661 ofproto_set_in_band_queue(struct ofproto *ofproto, int queue_id)
662 {
663 connmgr_set_in_band_queue(ofproto->connmgr, queue_id);
664 }
665
666 /* Sets the number of flows at which eviction from the kernel flow table
667 * will occur. */
668 void
669 ofproto_set_flow_limit(unsigned limit)
670 {
671 ofproto_flow_limit = limit;
672 }
673
674 /* Sets the maximum idle time for flows in the datapath before they are
675 * expired. */
676 void
677 ofproto_set_max_idle(unsigned max_idle)
678 {
679 ofproto_max_idle = max_idle;
680 }
681
682 /* If forward_bpdu is true, the NORMAL action will forward frames with
683 * reserved (e.g. STP) destination Ethernet addresses. if forward_bpdu is false,
684 * the NORMAL action will drop these frames. */
685 void
686 ofproto_set_forward_bpdu(struct ofproto *ofproto, bool forward_bpdu)
687 {
688 bool old_val = ofproto->forward_bpdu;
689 ofproto->forward_bpdu = forward_bpdu;
690 if (old_val != ofproto->forward_bpdu) {
691 if (ofproto->ofproto_class->forward_bpdu_changed) {
692 ofproto->ofproto_class->forward_bpdu_changed(ofproto);
693 }
694 }
695 }
696
697 /* Sets the MAC aging timeout for the OFPP_NORMAL action on 'ofproto' to
698 * 'idle_time', in seconds, and the maximum number of MAC table entries to
699 * 'max_entries'. */
700 void
701 ofproto_set_mac_table_config(struct ofproto *ofproto, unsigned idle_time,
702 size_t max_entries)
703 {
704 if (ofproto->ofproto_class->set_mac_table_config) {
705 ofproto->ofproto_class->set_mac_table_config(ofproto, idle_time,
706 max_entries);
707 }
708 }
709
710 /* Multicast snooping configuration. */
711
712 /* Configures multicast snooping on 'ofproto' using the settings
713 * defined in 's'. If 's' is NULL, disables multicast snooping.
714 *
715 * Returns 0 if successful, otherwise a positive errno value. */
716 int
717 ofproto_set_mcast_snooping(struct ofproto *ofproto,
718 const struct ofproto_mcast_snooping_settings *s)
719 {
720 return (ofproto->ofproto_class->set_mcast_snooping
721 ? ofproto->ofproto_class->set_mcast_snooping(ofproto, s)
722 : EOPNOTSUPP);
723 }
724
725 /* Configures multicast snooping flood settings on 'ofp_port' of 'ofproto'.
726 *
727 * Returns 0 if successful, otherwise a positive errno value.*/
728 int
729 ofproto_port_set_mcast_snooping(struct ofproto *ofproto, void *aux,
730 const struct ofproto_mcast_snooping_port_settings *s)
731 {
732 return (ofproto->ofproto_class->set_mcast_snooping_port
733 ? ofproto->ofproto_class->set_mcast_snooping_port(ofproto, aux, s)
734 : EOPNOTSUPP);
735 }
736
737 void
738 ofproto_set_n_dpdk_rxqs(int n_rxqs)
739 {
740 n_dpdk_rxqs = MAX(n_rxqs, 0);
741 }
742
743 void
744 ofproto_set_cpu_mask(const char *cmask)
745 {
746 free(pmd_cpu_mask);
747
748 pmd_cpu_mask = cmask ? xstrdup(cmask) : NULL;
749 }
750
751 void
752 ofproto_set_threads(int n_handlers_, int n_revalidators_)
753 {
754 int threads = MAX(count_cpu_cores(), 2);
755
756 n_revalidators = MAX(n_revalidators_, 0);
757 n_handlers = MAX(n_handlers_, 0);
758
759 if (!n_revalidators) {
760 n_revalidators = n_handlers
761 ? MAX(threads - (int) n_handlers, 1)
762 : threads / 4 + 1;
763 }
764
765 if (!n_handlers) {
766 n_handlers = MAX(threads - (int) n_revalidators, 1);
767 }
768 }
769
770 void
771 ofproto_set_dp_desc(struct ofproto *p, const char *dp_desc)
772 {
773 free(p->dp_desc);
774 p->dp_desc = dp_desc ? xstrdup(dp_desc) : NULL;
775 }
776
777 int
778 ofproto_set_snoops(struct ofproto *ofproto, const struct sset *snoops)
779 {
780 return connmgr_set_snoops(ofproto->connmgr, snoops);
781 }
782
783 int
784 ofproto_set_netflow(struct ofproto *ofproto,
785 const struct netflow_options *nf_options)
786 {
787 if (nf_options && sset_is_empty(&nf_options->collectors)) {
788 nf_options = NULL;
789 }
790
791 if (ofproto->ofproto_class->set_netflow) {
792 return ofproto->ofproto_class->set_netflow(ofproto, nf_options);
793 } else {
794 return nf_options ? EOPNOTSUPP : 0;
795 }
796 }
797
798 int
799 ofproto_set_sflow(struct ofproto *ofproto,
800 const struct ofproto_sflow_options *oso)
801 {
802 if (oso && sset_is_empty(&oso->targets)) {
803 oso = NULL;
804 }
805
806 if (ofproto->ofproto_class->set_sflow) {
807 return ofproto->ofproto_class->set_sflow(ofproto, oso);
808 } else {
809 return oso ? EOPNOTSUPP : 0;
810 }
811 }
812
813 int
814 ofproto_set_ipfix(struct ofproto *ofproto,
815 const struct ofproto_ipfix_bridge_exporter_options *bo,
816 const struct ofproto_ipfix_flow_exporter_options *fo,
817 size_t n_fo)
818 {
819 if (ofproto->ofproto_class->set_ipfix) {
820 return ofproto->ofproto_class->set_ipfix(ofproto, bo, fo, n_fo);
821 } else {
822 return (bo || fo) ? EOPNOTSUPP : 0;
823 }
824 }
825
826 void
827 ofproto_set_flow_restore_wait(bool flow_restore_wait_db)
828 {
829 flow_restore_wait = flow_restore_wait_db;
830 }
831
832 bool
833 ofproto_get_flow_restore_wait(void)
834 {
835 return flow_restore_wait;
836 }
837
838 \f
839 /* Spanning Tree Protocol (STP) configuration. */
840
841 /* Configures STP on 'ofproto' using the settings defined in 's'. If
842 * 's' is NULL, disables STP.
843 *
844 * Returns 0 if successful, otherwise a positive errno value. */
845 int
846 ofproto_set_stp(struct ofproto *ofproto,
847 const struct ofproto_stp_settings *s)
848 {
849 return (ofproto->ofproto_class->set_stp
850 ? ofproto->ofproto_class->set_stp(ofproto, s)
851 : EOPNOTSUPP);
852 }
853
854 /* Retrieves STP status of 'ofproto' and stores it in 's'. If the
855 * 'enabled' member of 's' is false, then the other members are not
856 * meaningful.
857 *
858 * Returns 0 if successful, otherwise a positive errno value. */
859 int
860 ofproto_get_stp_status(struct ofproto *ofproto,
861 struct ofproto_stp_status *s)
862 {
863 return (ofproto->ofproto_class->get_stp_status
864 ? ofproto->ofproto_class->get_stp_status(ofproto, s)
865 : EOPNOTSUPP);
866 }
867
868 /* Configures STP on 'ofp_port' of 'ofproto' using the settings defined
869 * in 's'. The caller is responsible for assigning STP port numbers
870 * (using the 'port_num' member in the range of 1 through 255, inclusive)
871 * and ensuring there are no duplicates. If the 's' is NULL, then STP
872 * is disabled on the port.
873 *
874 * Returns 0 if successful, otherwise a positive errno value.*/
875 int
876 ofproto_port_set_stp(struct ofproto *ofproto, ofp_port_t ofp_port,
877 const struct ofproto_port_stp_settings *s)
878 {
879 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
880 if (!ofport) {
881 VLOG_WARN("%s: cannot configure STP on nonexistent port %"PRIu16,
882 ofproto->name, ofp_port);
883 return ENODEV;
884 }
885
886 return (ofproto->ofproto_class->set_stp_port
887 ? ofproto->ofproto_class->set_stp_port(ofport, s)
888 : EOPNOTSUPP);
889 }
890
891 /* Retrieves STP port status of 'ofp_port' on 'ofproto' and stores it in
892 * 's'. If the 'enabled' member in 's' is false, then the other members
893 * are not meaningful.
894 *
895 * Returns 0 if successful, otherwise a positive errno value.*/
896 int
897 ofproto_port_get_stp_status(struct ofproto *ofproto, ofp_port_t ofp_port,
898 struct ofproto_port_stp_status *s)
899 {
900 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
901 if (!ofport) {
902 VLOG_WARN_RL(&rl, "%s: cannot get STP status on nonexistent "
903 "port %"PRIu16, ofproto->name, ofp_port);
904 return ENODEV;
905 }
906
907 return (ofproto->ofproto_class->get_stp_port_status
908 ? ofproto->ofproto_class->get_stp_port_status(ofport, s)
909 : EOPNOTSUPP);
910 }
911
912 /* Retrieves STP port statistics of 'ofp_port' on 'ofproto' and stores it in
913 * 's'. If the 'enabled' member in 's' is false, then the other members
914 * are not meaningful.
915 *
916 * Returns 0 if successful, otherwise a positive errno value.*/
917 int
918 ofproto_port_get_stp_stats(struct ofproto *ofproto, ofp_port_t ofp_port,
919 struct ofproto_port_stp_stats *s)
920 {
921 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
922 if (!ofport) {
923 VLOG_WARN_RL(&rl, "%s: cannot get STP stats on nonexistent "
924 "port %"PRIu16, ofproto->name, ofp_port);
925 return ENODEV;
926 }
927
928 return (ofproto->ofproto_class->get_stp_port_stats
929 ? ofproto->ofproto_class->get_stp_port_stats(ofport, s)
930 : EOPNOTSUPP);
931 }
932
933 /* Rapid Spanning Tree Protocol (RSTP) configuration. */
934
935 /* Configures RSTP on 'ofproto' using the settings defined in 's'. If
936 * 's' is NULL, disables RSTP.
937 *
938 * Returns 0 if successful, otherwise a positive errno value. */
939 int
940 ofproto_set_rstp(struct ofproto *ofproto,
941 const struct ofproto_rstp_settings *s)
942 {
943 if (!ofproto->ofproto_class->set_rstp) {
944 return EOPNOTSUPP;
945 }
946 ofproto->ofproto_class->set_rstp(ofproto, s);
947 return 0;
948 }
949
950 /* Retrieves RSTP status of 'ofproto' and stores it in 's'. If the
951 * 'enabled' member of 's' is false, then the other members are not
952 * meaningful.
953 *
954 * Returns 0 if successful, otherwise a positive errno value. */
955 int
956 ofproto_get_rstp_status(struct ofproto *ofproto,
957 struct ofproto_rstp_status *s)
958 {
959 if (!ofproto->ofproto_class->get_rstp_status) {
960 return EOPNOTSUPP;
961 }
962 ofproto->ofproto_class->get_rstp_status(ofproto, s);
963 return 0;
964 }
965
966 /* Configures RSTP on 'ofp_port' of 'ofproto' using the settings defined
967 * in 's'. The caller is responsible for assigning RSTP port numbers
968 * (using the 'port_num' member in the range of 1 through 255, inclusive)
969 * and ensuring there are no duplicates. If the 's' is NULL, then RSTP
970 * is disabled on the port.
971 *
972 * Returns 0 if successful, otherwise a positive errno value.*/
973 int
974 ofproto_port_set_rstp(struct ofproto *ofproto, ofp_port_t ofp_port,
975 const struct ofproto_port_rstp_settings *s)
976 {
977 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
978 if (!ofport) {
979 VLOG_WARN("%s: cannot configure RSTP on nonexistent port %"PRIu16,
980 ofproto->name, ofp_port);
981 return ENODEV;
982 }
983
984 if (!ofproto->ofproto_class->set_rstp_port) {
985 return EOPNOTSUPP;
986 }
987 ofproto->ofproto_class->set_rstp_port(ofport, s);
988 return 0;
989 }
990
991 /* Retrieves RSTP port status of 'ofp_port' on 'ofproto' and stores it in
992 * 's'. If the 'enabled' member in 's' is false, then the other members
993 * are not meaningful.
994 *
995 * Returns 0 if successful, otherwise a positive errno value.*/
996 int
997 ofproto_port_get_rstp_status(struct ofproto *ofproto, ofp_port_t ofp_port,
998 struct ofproto_port_rstp_status *s)
999 {
1000 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1001 if (!ofport) {
1002 VLOG_WARN_RL(&rl, "%s: cannot get RSTP status on nonexistent "
1003 "port %"PRIu16, ofproto->name, ofp_port);
1004 return ENODEV;
1005 }
1006
1007 if (!ofproto->ofproto_class->get_rstp_port_status) {
1008 return EOPNOTSUPP;
1009 }
1010 ofproto->ofproto_class->get_rstp_port_status(ofport, s);
1011 return 0;
1012 }
1013 \f
1014 /* Queue DSCP configuration. */
1015
1016 /* Registers meta-data associated with the 'n_qdscp' Qualities of Service
1017 * 'queues' attached to 'ofport'. This data is not intended to be sufficient
1018 * to implement QoS. Instead, it is used to implement features which require
1019 * knowledge of what queues exist on a port, and some basic information about
1020 * them.
1021 *
1022 * Returns 0 if successful, otherwise a positive errno value. */
1023 int
1024 ofproto_port_set_queues(struct ofproto *ofproto, ofp_port_t ofp_port,
1025 const struct ofproto_port_queue *queues,
1026 size_t n_queues)
1027 {
1028 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1029
1030 if (!ofport) {
1031 VLOG_WARN("%s: cannot set queues on nonexistent port %"PRIu16,
1032 ofproto->name, ofp_port);
1033 return ENODEV;
1034 }
1035
1036 return (ofproto->ofproto_class->set_queues
1037 ? ofproto->ofproto_class->set_queues(ofport, queues, n_queues)
1038 : EOPNOTSUPP);
1039 }
1040 \f
1041 /* LLDP configuration. */
1042 void
1043 ofproto_port_set_lldp(struct ofproto *ofproto,
1044 ofp_port_t ofp_port,
1045 const struct smap *cfg)
1046 {
1047 struct ofport *ofport;
1048 int error;
1049
1050 ofport = ofproto_get_port(ofproto, ofp_port);
1051 if (!ofport) {
1052 VLOG_WARN("%s: cannot configure LLDP on nonexistent port %"PRIu16,
1053 ofproto->name, ofp_port);
1054 return;
1055 }
1056 error = (ofproto->ofproto_class->set_lldp
1057 ? ofproto->ofproto_class->set_lldp(ofport, cfg)
1058 : EOPNOTSUPP);
1059 if (error) {
1060 VLOG_WARN("%s: lldp configuration on port %"PRIu16" (%s) failed (%s)",
1061 ofproto->name, ofp_port, netdev_get_name(ofport->netdev),
1062 ovs_strerror(error));
1063 }
1064 }
1065
1066 int
1067 ofproto_set_aa(struct ofproto *ofproto, void *aux OVS_UNUSED,
1068 const struct aa_settings *s)
1069 {
1070 if (!ofproto->ofproto_class->set_aa) {
1071 return EOPNOTSUPP;
1072 }
1073 ofproto->ofproto_class->set_aa(ofproto, s);
1074 return 0;
1075 }
1076
1077 int
1078 ofproto_aa_mapping_register(struct ofproto *ofproto, void *aux,
1079 const struct aa_mapping_settings *s)
1080 {
1081 if (!ofproto->ofproto_class->aa_mapping_set) {
1082 return EOPNOTSUPP;
1083 }
1084 ofproto->ofproto_class->aa_mapping_set(ofproto, aux, s);
1085 return 0;
1086 }
1087
1088 int
1089 ofproto_aa_mapping_unregister(struct ofproto *ofproto, void *aux)
1090 {
1091 if (!ofproto->ofproto_class->aa_mapping_unset) {
1092 return EOPNOTSUPP;
1093 }
1094 ofproto->ofproto_class->aa_mapping_unset(ofproto, aux);
1095 return 0;
1096 }
1097
1098 int
1099 ofproto_aa_vlan_get_queued(struct ofproto *ofproto,
1100 struct ovs_list *list)
1101 {
1102 if (!ofproto->ofproto_class->aa_vlan_get_queued) {
1103 return EOPNOTSUPP;
1104 }
1105 ofproto->ofproto_class->aa_vlan_get_queued(ofproto, list);
1106 return 0;
1107 }
1108
1109 unsigned int
1110 ofproto_aa_vlan_get_queue_size(struct ofproto *ofproto)
1111 {
1112 if (!ofproto->ofproto_class->aa_vlan_get_queue_size) {
1113 return EOPNOTSUPP;
1114 }
1115 return ofproto->ofproto_class->aa_vlan_get_queue_size(ofproto);
1116 }
1117
1118 /* Connectivity Fault Management configuration. */
1119
1120 /* Clears the CFM configuration from 'ofp_port' on 'ofproto'. */
1121 void
1122 ofproto_port_clear_cfm(struct ofproto *ofproto, ofp_port_t ofp_port)
1123 {
1124 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1125 if (ofport && ofproto->ofproto_class->set_cfm) {
1126 ofproto->ofproto_class->set_cfm(ofport, NULL);
1127 }
1128 }
1129
1130 /* Configures connectivity fault management on 'ofp_port' in 'ofproto'. Takes
1131 * basic configuration from the configuration members in 'cfm', and the remote
1132 * maintenance point ID from remote_mpid. Ignores the statistics members of
1133 * 'cfm'.
1134 *
1135 * This function has no effect if 'ofproto' does not have a port 'ofp_port'. */
1136 void
1137 ofproto_port_set_cfm(struct ofproto *ofproto, ofp_port_t ofp_port,
1138 const struct cfm_settings *s)
1139 {
1140 struct ofport *ofport;
1141 int error;
1142
1143 ofport = ofproto_get_port(ofproto, ofp_port);
1144 if (!ofport) {
1145 VLOG_WARN("%s: cannot configure CFM on nonexistent port %"PRIu16,
1146 ofproto->name, ofp_port);
1147 return;
1148 }
1149
1150 /* XXX: For configuration simplicity, we only support one remote_mpid
1151 * outside of the CFM module. It's not clear if this is the correct long
1152 * term solution or not. */
1153 error = (ofproto->ofproto_class->set_cfm
1154 ? ofproto->ofproto_class->set_cfm(ofport, s)
1155 : EOPNOTSUPP);
1156 if (error) {
1157 VLOG_WARN("%s: CFM configuration on port %"PRIu16" (%s) failed (%s)",
1158 ofproto->name, ofp_port, netdev_get_name(ofport->netdev),
1159 ovs_strerror(error));
1160 }
1161 }
1162
1163 /* Configures BFD on 'ofp_port' in 'ofproto'. This function has no effect if
1164 * 'ofproto' does not have a port 'ofp_port'. */
1165 void
1166 ofproto_port_set_bfd(struct ofproto *ofproto, ofp_port_t ofp_port,
1167 const struct smap *cfg)
1168 {
1169 struct ofport *ofport;
1170 int error;
1171
1172 ofport = ofproto_get_port(ofproto, ofp_port);
1173 if (!ofport) {
1174 VLOG_WARN("%s: cannot configure bfd on nonexistent port %"PRIu16,
1175 ofproto->name, ofp_port);
1176 return;
1177 }
1178
1179 error = (ofproto->ofproto_class->set_bfd
1180 ? ofproto->ofproto_class->set_bfd(ofport, cfg)
1181 : EOPNOTSUPP);
1182 if (error) {
1183 VLOG_WARN("%s: bfd configuration on port %"PRIu16" (%s) failed (%s)",
1184 ofproto->name, ofp_port, netdev_get_name(ofport->netdev),
1185 ovs_strerror(error));
1186 }
1187 }
1188
1189 /* Checks the status change of BFD on 'ofport'.
1190 *
1191 * Returns true if 'ofproto_class' does not support 'bfd_status_changed'. */
1192 bool
1193 ofproto_port_bfd_status_changed(struct ofproto *ofproto, ofp_port_t ofp_port)
1194 {
1195 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1196 return (ofport && ofproto->ofproto_class->bfd_status_changed
1197 ? ofproto->ofproto_class->bfd_status_changed(ofport)
1198 : true);
1199 }
1200
1201 /* Populates 'status' with the status of BFD on 'ofport'. Returns 0 on
1202 * success. Returns a positive errno otherwise. Has no effect if 'ofp_port'
1203 * is not an OpenFlow port in 'ofproto'.
1204 *
1205 * The caller must provide and own '*status'. */
1206 int
1207 ofproto_port_get_bfd_status(struct ofproto *ofproto, ofp_port_t ofp_port,
1208 struct smap *status)
1209 {
1210 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1211 return (ofport && ofproto->ofproto_class->get_bfd_status
1212 ? ofproto->ofproto_class->get_bfd_status(ofport, status)
1213 : EOPNOTSUPP);
1214 }
1215
1216 /* Checks the status of LACP negotiation for 'ofp_port' within ofproto.
1217 * Returns 1 if LACP partner information for 'ofp_port' is up-to-date,
1218 * 0 if LACP partner information is not current (generally indicating a
1219 * connectivity problem), or -1 if LACP is not enabled on 'ofp_port'. */
1220 int
1221 ofproto_port_is_lacp_current(struct ofproto *ofproto, ofp_port_t ofp_port)
1222 {
1223 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1224 return (ofport && ofproto->ofproto_class->port_is_lacp_current
1225 ? ofproto->ofproto_class->port_is_lacp_current(ofport)
1226 : -1);
1227 }
1228
1229 int
1230 ofproto_port_get_lacp_stats(const struct ofport *port, struct lacp_slave_stats *stats)
1231 {
1232 struct ofproto *ofproto = port->ofproto;
1233 int error;
1234
1235 if (ofproto->ofproto_class->port_get_lacp_stats) {
1236 error = ofproto->ofproto_class->port_get_lacp_stats(port, stats);
1237 } else {
1238 error = EOPNOTSUPP;
1239 }
1240
1241 return error;
1242 }
1243 \f
1244 /* Bundles. */
1245
1246 /* Registers a "bundle" associated with client data pointer 'aux' in 'ofproto'.
1247 * A bundle is the same concept as a Port in OVSDB, that is, it consists of one
1248 * or more "slave" devices (Interfaces, in OVSDB) along with a VLAN
1249 * configuration plus, if there is more than one slave, a bonding
1250 * configuration.
1251 *
1252 * If 'aux' is already registered then this function updates its configuration
1253 * to 's'. Otherwise, this function registers a new bundle.
1254 *
1255 * Bundles only affect the NXAST_AUTOPATH action and output to the OFPP_NORMAL
1256 * port. */
1257 int
1258 ofproto_bundle_register(struct ofproto *ofproto, void *aux,
1259 const struct ofproto_bundle_settings *s)
1260 {
1261 return (ofproto->ofproto_class->bundle_set
1262 ? ofproto->ofproto_class->bundle_set(ofproto, aux, s)
1263 : EOPNOTSUPP);
1264 }
1265
1266 /* Unregisters the bundle registered on 'ofproto' with auxiliary data 'aux'.
1267 * If no such bundle has been registered, this has no effect. */
1268 int
1269 ofproto_bundle_unregister(struct ofproto *ofproto, void *aux)
1270 {
1271 return ofproto_bundle_register(ofproto, aux, NULL);
1272 }
1273
1274 \f
1275 /* Registers a mirror associated with client data pointer 'aux' in 'ofproto'.
1276 * If 'aux' is already registered then this function updates its configuration
1277 * to 's'. Otherwise, this function registers a new mirror. */
1278 int
1279 ofproto_mirror_register(struct ofproto *ofproto, void *aux,
1280 const struct ofproto_mirror_settings *s)
1281 {
1282 return (ofproto->ofproto_class->mirror_set
1283 ? ofproto->ofproto_class->mirror_set(ofproto, aux, s)
1284 : EOPNOTSUPP);
1285 }
1286
1287 /* Unregisters the mirror registered on 'ofproto' with auxiliary data 'aux'.
1288 * If no mirror has been registered, this has no effect. */
1289 int
1290 ofproto_mirror_unregister(struct ofproto *ofproto, void *aux)
1291 {
1292 return ofproto_mirror_register(ofproto, aux, NULL);
1293 }
1294
1295 /* Retrieves statistics from mirror associated with client data pointer
1296 * 'aux' in 'ofproto'. Stores packet and byte counts in 'packets' and
1297 * 'bytes', respectively. If a particular counters is not supported,
1298 * the appropriate argument is set to UINT64_MAX.
1299 */
1300 int
1301 ofproto_mirror_get_stats(struct ofproto *ofproto, void *aux,
1302 uint64_t *packets, uint64_t *bytes)
1303 {
1304 if (!ofproto->ofproto_class->mirror_get_stats) {
1305 *packets = *bytes = UINT64_MAX;
1306 return EOPNOTSUPP;
1307 }
1308
1309 return ofproto->ofproto_class->mirror_get_stats(ofproto, aux,
1310 packets, bytes);
1311 }
1312
1313 /* Configures the VLANs whose bits are set to 1 in 'flood_vlans' as VLANs on
1314 * which all packets are flooded, instead of using MAC learning. If
1315 * 'flood_vlans' is NULL, then MAC learning applies to all VLANs.
1316 *
1317 * Flood VLANs affect only the treatment of packets output to the OFPP_NORMAL
1318 * port. */
1319 int
1320 ofproto_set_flood_vlans(struct ofproto *ofproto, unsigned long *flood_vlans)
1321 {
1322 return (ofproto->ofproto_class->set_flood_vlans
1323 ? ofproto->ofproto_class->set_flood_vlans(ofproto, flood_vlans)
1324 : EOPNOTSUPP);
1325 }
1326
1327 /* Returns true if 'aux' is a registered bundle that is currently in use as the
1328 * output for a mirror. */
1329 bool
1330 ofproto_is_mirror_output_bundle(const struct ofproto *ofproto, void *aux)
1331 {
1332 return (ofproto->ofproto_class->is_mirror_output_bundle
1333 ? ofproto->ofproto_class->is_mirror_output_bundle(ofproto, aux)
1334 : false);
1335 }
1336 \f
1337 /* Configuration of OpenFlow tables. */
1338
1339 /* Returns the number of OpenFlow tables in 'ofproto'. */
1340 int
1341 ofproto_get_n_tables(const struct ofproto *ofproto)
1342 {
1343 return ofproto->n_tables;
1344 }
1345
1346 /* Returns the number of Controller visible OpenFlow tables
1347 * in 'ofproto'. This number will exclude Hidden tables.
1348 * This funtion's return value should be less or equal to that of
1349 * ofproto_get_n_tables() . */
1350 uint8_t
1351 ofproto_get_n_visible_tables(const struct ofproto *ofproto)
1352 {
1353 uint8_t n = ofproto->n_tables;
1354
1355 /* Count only non-hidden tables in the number of tables. (Hidden tables,
1356 * if present, are always at the end.) */
1357 while(n && (ofproto->tables[n - 1].flags & OFTABLE_HIDDEN)) {
1358 n--;
1359 }
1360
1361 return n;
1362 }
1363
1364 /* Configures the OpenFlow table in 'ofproto' with id 'table_id' with the
1365 * settings from 's'. 'table_id' must be in the range 0 through the number of
1366 * OpenFlow tables in 'ofproto' minus 1, inclusive.
1367 *
1368 * For read-only tables, only the name may be configured. */
1369 void
1370 ofproto_configure_table(struct ofproto *ofproto, int table_id,
1371 const struct ofproto_table_settings *s)
1372 {
1373 struct oftable *table;
1374
1375 ovs_assert(table_id >= 0 && table_id < ofproto->n_tables);
1376 table = &ofproto->tables[table_id];
1377
1378 oftable_set_name(table, s->name);
1379
1380 if (table->flags & OFTABLE_READONLY) {
1381 return;
1382 }
1383
1384 if (s->groups) {
1385 oftable_enable_eviction(table, s->groups, s->n_groups);
1386 } else {
1387 oftable_disable_eviction(table);
1388 }
1389
1390 table->max_flows = s->max_flows;
1391
1392 if (classifier_set_prefix_fields(&table->cls,
1393 s->prefix_fields, s->n_prefix_fields)) {
1394 /* XXX: Trigger revalidation. */
1395 }
1396
1397 ovs_mutex_lock(&ofproto_mutex);
1398 evict_rules_from_table(table, 0);
1399 ovs_mutex_unlock(&ofproto_mutex);
1400 }
1401 \f
1402 bool
1403 ofproto_has_snoops(const struct ofproto *ofproto)
1404 {
1405 return connmgr_has_snoops(ofproto->connmgr);
1406 }
1407
1408 void
1409 ofproto_get_snoops(const struct ofproto *ofproto, struct sset *snoops)
1410 {
1411 connmgr_get_snoops(ofproto->connmgr, snoops);
1412 }
1413
1414 /* Deletes 'rule' from 'ofproto'.
1415 *
1416 * Within an ofproto implementation, this function allows an ofproto
1417 * implementation to destroy any rules that remain when its ->destruct()
1418 * function is called. This function is not suitable for use elsewhere in an
1419 * ofproto implementation.
1420 *
1421 * This function implements steps 4.4 and 4.5 in the section titled "Rule Life
1422 * Cycle" in ofproto-provider.h. */
1423 void
1424 ofproto_rule_delete(struct ofproto *ofproto, struct rule *rule)
1425 OVS_EXCLUDED(ofproto_mutex)
1426 {
1427 /* This skips the ofmonitor and flow-removed notifications because the
1428 * switch is being deleted and any OpenFlow channels have been or soon will
1429 * be killed. */
1430 ovs_mutex_lock(&ofproto_mutex);
1431 oftable_remove_rule(rule);
1432 ofproto->ofproto_class->rule_delete(rule);
1433 ovs_mutex_unlock(&ofproto_mutex);
1434 }
1435
1436 static void
1437 ofproto_flush__(struct ofproto *ofproto)
1438 OVS_EXCLUDED(ofproto_mutex)
1439 {
1440 struct oftable *table;
1441
1442 /* This will flush all datapath flows. */
1443 if (ofproto->ofproto_class->flush) {
1444 ofproto->ofproto_class->flush(ofproto);
1445 }
1446
1447 /* XXX: There is a small race window here, where new datapath flows can be
1448 * created by upcall handlers based on the existing flow table. We can not
1449 * call ofproto class flush while holding 'ofproto_mutex' to prevent this,
1450 * as then we could deadlock on syncing with the handler threads waiting on
1451 * the same mutex. */
1452
1453 ovs_mutex_lock(&ofproto_mutex);
1454 OFPROTO_FOR_EACH_TABLE (table, ofproto) {
1455 struct rule_collection rules;
1456 struct rule *rule;
1457
1458 if (table->flags & OFTABLE_HIDDEN) {
1459 continue;
1460 }
1461
1462 rule_collection_init(&rules);
1463
1464 CLS_FOR_EACH (rule, cr, &table->cls) {
1465 rule_collection_add(&rules, rule);
1466 }
1467 delete_flows__(&rules, OFPRR_DELETE, NULL);
1468 rule_collection_destroy(&rules);
1469 }
1470 /* XXX: Concurrent handler threads may insert new learned flows based on
1471 * learn actions of the now deleted flows right after we release
1472 * 'ofproto_mutex'. */
1473 ovs_mutex_unlock(&ofproto_mutex);
1474 }
1475
1476 static void delete_group(struct ofproto *ofproto, uint32_t group_id);
1477
1478 static void
1479 ofproto_destroy__(struct ofproto *ofproto)
1480 OVS_EXCLUDED(ofproto_mutex)
1481 {
1482 struct oftable *table;
1483
1484 destroy_rule_executes(ofproto);
1485 delete_group(ofproto, OFPG_ALL);
1486
1487 guarded_list_destroy(&ofproto->rule_executes);
1488 ovs_rwlock_destroy(&ofproto->groups_rwlock);
1489 hmap_destroy(&ofproto->groups);
1490
1491 hmap_remove(&all_ofprotos, &ofproto->hmap_node);
1492 free(ofproto->name);
1493 free(ofproto->type);
1494 free(ofproto->mfr_desc);
1495 free(ofproto->hw_desc);
1496 free(ofproto->sw_desc);
1497 free(ofproto->serial_desc);
1498 free(ofproto->dp_desc);
1499 hmap_destroy(&ofproto->ports);
1500 hmap_destroy(&ofproto->ofport_usage);
1501 shash_destroy(&ofproto->port_by_name);
1502 simap_destroy(&ofproto->ofp_requests);
1503
1504 OFPROTO_FOR_EACH_TABLE (table, ofproto) {
1505 oftable_destroy(table);
1506 }
1507 free(ofproto->tables);
1508
1509 ovs_assert(hindex_is_empty(&ofproto->cookies));
1510 hindex_destroy(&ofproto->cookies);
1511
1512 ovs_assert(hmap_is_empty(&ofproto->learned_cookies));
1513 hmap_destroy(&ofproto->learned_cookies);
1514
1515 free(ofproto->vlan_bitmap);
1516
1517 ofproto->ofproto_class->dealloc(ofproto);
1518 }
1519
1520 void
1521 ofproto_destroy(struct ofproto *p)
1522 OVS_EXCLUDED(ofproto_mutex)
1523 {
1524 struct ofport *ofport, *next_ofport;
1525 struct ofport_usage *usage, *next_usage;
1526
1527 if (!p) {
1528 return;
1529 }
1530
1531 if (p->meters) {
1532 meter_delete(p, 1, p->meter_features.max_meters);
1533 p->meter_features.max_meters = 0;
1534 free(p->meters);
1535 p->meters = NULL;
1536 }
1537
1538 ofproto_flush__(p);
1539 HMAP_FOR_EACH_SAFE (ofport, next_ofport, hmap_node, &p->ports) {
1540 ofport_destroy(ofport);
1541 }
1542
1543 HMAP_FOR_EACH_SAFE (usage, next_usage, hmap_node, &p->ofport_usage) {
1544 hmap_remove(&p->ofport_usage, &usage->hmap_node);
1545 free(usage);
1546 }
1547
1548 p->ofproto_class->destruct(p);
1549
1550 /* We should not postpone this because it involves deleting a listening
1551 * socket which we may want to reopen soon. 'connmgr' should not be used
1552 * by other threads */
1553 connmgr_destroy(p->connmgr);
1554
1555 /* Destroying rules is deferred, must have 'ofproto' around for them. */
1556 ovsrcu_postpone(ofproto_destroy__, p);
1557 }
1558
1559 /* Destroys the datapath with the respective 'name' and 'type'. With the Linux
1560 * kernel datapath, for example, this destroys the datapath in the kernel, and
1561 * with the netdev-based datapath, it tears down the data structures that
1562 * represent the datapath.
1563 *
1564 * The datapath should not be currently open as an ofproto. */
1565 int
1566 ofproto_delete(const char *name, const char *type)
1567 {
1568 const struct ofproto_class *class = ofproto_class_find__(type);
1569 return (!class ? EAFNOSUPPORT
1570 : !class->del ? EACCES
1571 : class->del(type, name));
1572 }
1573
1574 static void
1575 process_port_change(struct ofproto *ofproto, int error, char *devname)
1576 {
1577 if (error == ENOBUFS) {
1578 reinit_ports(ofproto);
1579 } else if (!error) {
1580 update_port(ofproto, devname);
1581 free(devname);
1582 }
1583 }
1584
1585 int
1586 ofproto_type_run(const char *datapath_type)
1587 {
1588 const struct ofproto_class *class;
1589 int error;
1590
1591 datapath_type = ofproto_normalize_type(datapath_type);
1592 class = ofproto_class_find__(datapath_type);
1593
1594 error = class->type_run ? class->type_run(datapath_type) : 0;
1595 if (error && error != EAGAIN) {
1596 VLOG_ERR_RL(&rl, "%s: type_run failed (%s)",
1597 datapath_type, ovs_strerror(error));
1598 }
1599 return error;
1600 }
1601
1602 void
1603 ofproto_type_wait(const char *datapath_type)
1604 {
1605 const struct ofproto_class *class;
1606
1607 datapath_type = ofproto_normalize_type(datapath_type);
1608 class = ofproto_class_find__(datapath_type);
1609
1610 if (class->type_wait) {
1611 class->type_wait(datapath_type);
1612 }
1613 }
1614
1615 int
1616 ofproto_run(struct ofproto *p)
1617 {
1618 int error;
1619 uint64_t new_seq;
1620
1621 error = p->ofproto_class->run(p);
1622 if (error && error != EAGAIN) {
1623 VLOG_ERR_RL(&rl, "%s: run failed (%s)", p->name, ovs_strerror(error));
1624 }
1625
1626 run_rule_executes(p);
1627
1628 /* Restore the eviction group heap invariant occasionally. */
1629 if (p->eviction_group_timer < time_msec()) {
1630 size_t i;
1631
1632 p->eviction_group_timer = time_msec() + 1000;
1633
1634 for (i = 0; i < p->n_tables; i++) {
1635 struct oftable *table = &p->tables[i];
1636 struct eviction_group *evg;
1637 struct rule *rule;
1638
1639 if (!table->eviction_fields) {
1640 continue;
1641 }
1642
1643 if (classifier_count(&table->cls) > 100000) {
1644 static struct vlog_rate_limit count_rl =
1645 VLOG_RATE_LIMIT_INIT(1, 1);
1646 VLOG_WARN_RL(&count_rl, "Table %"PRIuSIZE" has an excessive"
1647 " number of rules: %d", i,
1648 classifier_count(&table->cls));
1649 }
1650
1651 ovs_mutex_lock(&ofproto_mutex);
1652 CLS_FOR_EACH (rule, cr, &table->cls) {
1653 if (rule->idle_timeout || rule->hard_timeout) {
1654 if (!rule->eviction_group) {
1655 eviction_group_add_rule(rule);
1656 } else {
1657 heap_raw_change(&rule->evg_node,
1658 rule_eviction_priority(p, rule));
1659 }
1660 }
1661 }
1662
1663 HEAP_FOR_EACH (evg, size_node, &table->eviction_groups_by_size) {
1664 heap_rebuild(&evg->rules);
1665 }
1666 ovs_mutex_unlock(&ofproto_mutex);
1667 }
1668 }
1669
1670 if (p->ofproto_class->port_poll) {
1671 char *devname;
1672
1673 while ((error = p->ofproto_class->port_poll(p, &devname)) != EAGAIN) {
1674 process_port_change(p, error, devname);
1675 }
1676 }
1677
1678 new_seq = seq_read(connectivity_seq_get());
1679 if (new_seq != p->change_seq) {
1680 struct sset devnames;
1681 const char *devname;
1682 struct ofport *ofport;
1683
1684 /* Update OpenFlow port status for any port whose netdev has changed.
1685 *
1686 * Refreshing a given 'ofport' can cause an arbitrary ofport to be
1687 * destroyed, so it's not safe to update ports directly from the
1688 * HMAP_FOR_EACH loop, or even to use HMAP_FOR_EACH_SAFE. Instead, we
1689 * need this two-phase approach. */
1690 sset_init(&devnames);
1691 HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
1692 uint64_t port_change_seq;
1693
1694 port_change_seq = netdev_get_change_seq(ofport->netdev);
1695 if (ofport->change_seq != port_change_seq) {
1696 ofport->change_seq = port_change_seq;
1697 sset_add(&devnames, netdev_get_name(ofport->netdev));
1698 }
1699 }
1700 SSET_FOR_EACH (devname, &devnames) {
1701 update_port(p, devname);
1702 }
1703 sset_destroy(&devnames);
1704
1705 p->change_seq = new_seq;
1706 }
1707
1708 connmgr_run(p->connmgr, handle_openflow);
1709
1710 return error;
1711 }
1712
1713 void
1714 ofproto_wait(struct ofproto *p)
1715 {
1716 p->ofproto_class->wait(p);
1717 if (p->ofproto_class->port_poll_wait) {
1718 p->ofproto_class->port_poll_wait(p);
1719 }
1720 seq_wait(connectivity_seq_get(), p->change_seq);
1721 connmgr_wait(p->connmgr);
1722 }
1723
1724 bool
1725 ofproto_is_alive(const struct ofproto *p)
1726 {
1727 return connmgr_has_controllers(p->connmgr);
1728 }
1729
1730 /* Adds some memory usage statistics for 'ofproto' into 'usage', for use with
1731 * memory_report(). */
1732 void
1733 ofproto_get_memory_usage(const struct ofproto *ofproto, struct simap *usage)
1734 {
1735 const struct oftable *table;
1736 unsigned int n_rules;
1737
1738 simap_increase(usage, "ports", hmap_count(&ofproto->ports));
1739
1740 n_rules = 0;
1741 OFPROTO_FOR_EACH_TABLE (table, ofproto) {
1742 n_rules += classifier_count(&table->cls);
1743 }
1744 simap_increase(usage, "rules", n_rules);
1745
1746 if (ofproto->ofproto_class->get_memory_usage) {
1747 ofproto->ofproto_class->get_memory_usage(ofproto, usage);
1748 }
1749
1750 connmgr_get_memory_usage(ofproto->connmgr, usage);
1751 }
1752
1753 void
1754 ofproto_type_get_memory_usage(const char *datapath_type, struct simap *usage)
1755 {
1756 const struct ofproto_class *class;
1757
1758 datapath_type = ofproto_normalize_type(datapath_type);
1759 class = ofproto_class_find__(datapath_type);
1760
1761 if (class && class->type_get_memory_usage) {
1762 class->type_get_memory_usage(datapath_type, usage);
1763 }
1764 }
1765
1766 void
1767 ofproto_get_ofproto_controller_info(const struct ofproto *ofproto,
1768 struct shash *info)
1769 {
1770 connmgr_get_controller_info(ofproto->connmgr, info);
1771 }
1772
1773 void
1774 ofproto_free_ofproto_controller_info(struct shash *info)
1775 {
1776 connmgr_free_controller_info(info);
1777 }
1778
1779 /* Makes a deep copy of 'old' into 'port'. */
1780 void
1781 ofproto_port_clone(struct ofproto_port *port, const struct ofproto_port *old)
1782 {
1783 port->name = xstrdup(old->name);
1784 port->type = xstrdup(old->type);
1785 port->ofp_port = old->ofp_port;
1786 }
1787
1788 /* Frees memory allocated to members of 'ofproto_port'.
1789 *
1790 * Do not call this function on an ofproto_port obtained from
1791 * ofproto_port_dump_next(): that function retains ownership of the data in the
1792 * ofproto_port. */
1793 void
1794 ofproto_port_destroy(struct ofproto_port *ofproto_port)
1795 {
1796 free(ofproto_port->name);
1797 free(ofproto_port->type);
1798 }
1799
1800 /* Initializes 'dump' to begin dumping the ports in an ofproto.
1801 *
1802 * This function provides no status indication. An error status for the entire
1803 * dump operation is provided when it is completed by calling
1804 * ofproto_port_dump_done().
1805 */
1806 void
1807 ofproto_port_dump_start(struct ofproto_port_dump *dump,
1808 const struct ofproto *ofproto)
1809 {
1810 dump->ofproto = ofproto;
1811 dump->error = ofproto->ofproto_class->port_dump_start(ofproto,
1812 &dump->state);
1813 }
1814
1815 /* Attempts to retrieve another port from 'dump', which must have been created
1816 * with ofproto_port_dump_start(). On success, stores a new ofproto_port into
1817 * 'port' and returns true. On failure, returns false.
1818 *
1819 * Failure might indicate an actual error or merely that the last port has been
1820 * dumped. An error status for the entire dump operation is provided when it
1821 * is completed by calling ofproto_port_dump_done().
1822 *
1823 * The ofproto owns the data stored in 'port'. It will remain valid until at
1824 * least the next time 'dump' is passed to ofproto_port_dump_next() or
1825 * ofproto_port_dump_done(). */
1826 bool
1827 ofproto_port_dump_next(struct ofproto_port_dump *dump,
1828 struct ofproto_port *port)
1829 {
1830 const struct ofproto *ofproto = dump->ofproto;
1831
1832 if (dump->error) {
1833 return false;
1834 }
1835
1836 dump->error = ofproto->ofproto_class->port_dump_next(ofproto, dump->state,
1837 port);
1838 if (dump->error) {
1839 ofproto->ofproto_class->port_dump_done(ofproto, dump->state);
1840 return false;
1841 }
1842 return true;
1843 }
1844
1845 /* Completes port table dump operation 'dump', which must have been created
1846 * with ofproto_port_dump_start(). Returns 0 if the dump operation was
1847 * error-free, otherwise a positive errno value describing the problem. */
1848 int
1849 ofproto_port_dump_done(struct ofproto_port_dump *dump)
1850 {
1851 const struct ofproto *ofproto = dump->ofproto;
1852 if (!dump->error) {
1853 dump->error = ofproto->ofproto_class->port_dump_done(ofproto,
1854 dump->state);
1855 }
1856 return dump->error == EOF ? 0 : dump->error;
1857 }
1858
1859 /* Returns the type to pass to netdev_open() when a datapath of type
1860 * 'datapath_type' has a port of type 'port_type', for a few special
1861 * cases when a netdev type differs from a port type. For example, when
1862 * using the userspace datapath, a port of type "internal" needs to be
1863 * opened as "tap".
1864 *
1865 * Returns either 'type' itself or a string literal, which must not be
1866 * freed. */
1867 const char *
1868 ofproto_port_open_type(const char *datapath_type, const char *port_type)
1869 {
1870 const struct ofproto_class *class;
1871
1872 datapath_type = ofproto_normalize_type(datapath_type);
1873 class = ofproto_class_find__(datapath_type);
1874 if (!class) {
1875 return port_type;
1876 }
1877
1878 return (class->port_open_type
1879 ? class->port_open_type(datapath_type, port_type)
1880 : port_type);
1881 }
1882
1883 /* Attempts to add 'netdev' as a port on 'ofproto'. If 'ofp_portp' is
1884 * non-null and '*ofp_portp' is not OFPP_NONE, attempts to use that as
1885 * the port's OpenFlow port number.
1886 *
1887 * If successful, returns 0 and sets '*ofp_portp' to the new port's
1888 * OpenFlow port number (if 'ofp_portp' is non-null). On failure,
1889 * returns a positive errno value and sets '*ofp_portp' to OFPP_NONE (if
1890 * 'ofp_portp' is non-null). */
1891 int
1892 ofproto_port_add(struct ofproto *ofproto, struct netdev *netdev,
1893 ofp_port_t *ofp_portp)
1894 {
1895 ofp_port_t ofp_port = ofp_portp ? *ofp_portp : OFPP_NONE;
1896 int error;
1897
1898 error = ofproto->ofproto_class->port_add(ofproto, netdev);
1899 if (!error) {
1900 const char *netdev_name = netdev_get_name(netdev);
1901
1902 simap_put(&ofproto->ofp_requests, netdev_name,
1903 ofp_to_u16(ofp_port));
1904 update_port(ofproto, netdev_name);
1905 }
1906 if (ofp_portp) {
1907 *ofp_portp = OFPP_NONE;
1908 if (!error) {
1909 struct ofproto_port ofproto_port;
1910
1911 error = ofproto_port_query_by_name(ofproto,
1912 netdev_get_name(netdev),
1913 &ofproto_port);
1914 if (!error) {
1915 *ofp_portp = ofproto_port.ofp_port;
1916 ofproto_port_destroy(&ofproto_port);
1917 }
1918 }
1919 }
1920 return error;
1921 }
1922
1923 /* Looks up a port named 'devname' in 'ofproto'. On success, returns 0 and
1924 * initializes '*port' appropriately; on failure, returns a positive errno
1925 * value.
1926 *
1927 * The caller owns the data in 'ofproto_port' and must free it with
1928 * ofproto_port_destroy() when it is no longer needed. */
1929 int
1930 ofproto_port_query_by_name(const struct ofproto *ofproto, const char *devname,
1931 struct ofproto_port *port)
1932 {
1933 int error;
1934
1935 error = ofproto->ofproto_class->port_query_by_name(ofproto, devname, port);
1936 if (error) {
1937 memset(port, 0, sizeof *port);
1938 }
1939 return error;
1940 }
1941
1942 /* Deletes port number 'ofp_port' from the datapath for 'ofproto'.
1943 * Returns 0 if successful, otherwise a positive errno. */
1944 int
1945 ofproto_port_del(struct ofproto *ofproto, ofp_port_t ofp_port)
1946 {
1947 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
1948 const char *name = ofport ? netdev_get_name(ofport->netdev) : "<unknown>";
1949 struct simap_node *ofp_request_node;
1950 int error;
1951
1952 ofp_request_node = simap_find(&ofproto->ofp_requests, name);
1953 if (ofp_request_node) {
1954 simap_delete(&ofproto->ofp_requests, ofp_request_node);
1955 }
1956
1957 error = ofproto->ofproto_class->port_del(ofproto, ofp_port);
1958 if (!error && ofport) {
1959 /* 'name' is the netdev's name and update_port() is going to close the
1960 * netdev. Just in case update_port() refers to 'name' after it
1961 * destroys 'ofport', make a copy of it around the update_port()
1962 * call. */
1963 char *devname = xstrdup(name);
1964 update_port(ofproto, devname);
1965 free(devname);
1966 }
1967 return error;
1968 }
1969
1970 static void
1971 flow_mod_init(struct ofputil_flow_mod *fm,
1972 const struct match *match, int priority,
1973 const struct ofpact *ofpacts, size_t ofpacts_len,
1974 enum ofp_flow_mod_command command)
1975 {
1976 memset(fm, 0, sizeof *fm);
1977 fm->match = *match;
1978 fm->priority = priority;
1979 fm->cookie = 0;
1980 fm->new_cookie = 0;
1981 fm->modify_cookie = false;
1982 fm->table_id = 0;
1983 fm->command = command;
1984 fm->idle_timeout = 0;
1985 fm->hard_timeout = 0;
1986 fm->importance = 0;
1987 fm->buffer_id = UINT32_MAX;
1988 fm->out_port = OFPP_ANY;
1989 fm->out_group = OFPG_ANY;
1990 fm->flags = 0;
1991 fm->ofpacts = CONST_CAST(struct ofpact *, ofpacts);
1992 fm->ofpacts_len = ofpacts_len;
1993 fm->delete_reason = OFPRR_DELETE;
1994 }
1995
1996 static int
1997 simple_flow_mod(struct ofproto *ofproto,
1998 const struct match *match, int priority,
1999 const struct ofpact *ofpacts, size_t ofpacts_len,
2000 enum ofp_flow_mod_command command)
2001 {
2002 struct ofputil_flow_mod fm;
2003
2004 flow_mod_init(&fm, match, priority, ofpacts, ofpacts_len, command);
2005
2006 return handle_flow_mod__(ofproto, &fm, NULL);
2007 }
2008
2009 /* Adds a flow to OpenFlow flow table 0 in 'p' that matches 'cls_rule' and
2010 * performs the 'n_actions' actions in 'actions'. The new flow will not
2011 * timeout.
2012 *
2013 * If cls_rule->priority is in the range of priorities supported by OpenFlow
2014 * (0...65535, inclusive) then the flow will be visible to OpenFlow
2015 * controllers; otherwise, it will be hidden.
2016 *
2017 * The caller retains ownership of 'cls_rule' and 'ofpacts'.
2018 *
2019 * This is a helper function for in-band control and fail-open. */
2020 void
2021 ofproto_add_flow(struct ofproto *ofproto, const struct match *match,
2022 int priority,
2023 const struct ofpact *ofpacts, size_t ofpacts_len)
2024 OVS_EXCLUDED(ofproto_mutex)
2025 {
2026 const struct rule *rule;
2027 bool must_add;
2028
2029 /* First do a cheap check whether the rule we're looking for already exists
2030 * with the actions that we want. If it does, then we're done. */
2031 rule = rule_from_cls_rule(classifier_find_match_exactly(
2032 &ofproto->tables[0].cls, match, priority));
2033 if (rule) {
2034 const struct rule_actions *actions = rule_get_actions(rule);
2035 must_add = !ofpacts_equal(actions->ofpacts, actions->ofpacts_len,
2036 ofpacts, ofpacts_len);
2037 } else {
2038 must_add = true;
2039 }
2040
2041 /* If there's no such rule or the rule doesn't have the actions we want,
2042 * fall back to a executing a full flow mod. We can't optimize this at
2043 * all because we didn't take enough locks above to ensure that the flow
2044 * table didn't already change beneath us. */
2045 if (must_add) {
2046 simple_flow_mod(ofproto, match, priority, ofpacts, ofpacts_len,
2047 OFPFC_MODIFY_STRICT);
2048 }
2049 }
2050
2051 /* Executes the flow modification specified in 'fm'. Returns 0 on success, an
2052 * OFPERR_* OpenFlow error code on failure, or OFPROTO_POSTPONE if the
2053 * operation cannot be initiated now but may be retried later.
2054 *
2055 * This is a helper function for in-band control and fail-open and the "learn"
2056 * action. */
2057 int
2058 ofproto_flow_mod(struct ofproto *ofproto, struct ofputil_flow_mod *fm)
2059 OVS_EXCLUDED(ofproto_mutex)
2060 {
2061 /* Optimize for the most common case of a repeated learn action.
2062 * If an identical flow already exists we only need to update its
2063 * 'modified' time. */
2064 if (fm->command == OFPFC_MODIFY_STRICT && fm->table_id != OFPTT_ALL
2065 && !(fm->flags & OFPUTIL_FF_RESET_COUNTS)) {
2066 struct oftable *table = &ofproto->tables[fm->table_id];
2067 struct rule *rule;
2068 bool done = false;
2069
2070 rule = rule_from_cls_rule(classifier_find_match_exactly(&table->cls,
2071 &fm->match,
2072 fm->priority));
2073 if (rule) {
2074 /* Reading many of the rule fields and writing on 'modified'
2075 * requires the rule->mutex. Also, rule->actions may change
2076 * if rule->mutex is not held. */
2077 const struct rule_actions *actions;
2078
2079 ovs_mutex_lock(&rule->mutex);
2080 actions = rule_get_actions(rule);
2081 if (rule->idle_timeout == fm->idle_timeout
2082 && rule->hard_timeout == fm->hard_timeout
2083 && rule->importance == fm->importance
2084 && rule->flags == (fm->flags & OFPUTIL_FF_STATE)
2085 && (!fm->modify_cookie || (fm->new_cookie == rule->flow_cookie))
2086 && ofpacts_equal(fm->ofpacts, fm->ofpacts_len,
2087 actions->ofpacts, actions->ofpacts_len)) {
2088 /* Rule already exists and need not change, only update the
2089 modified timestamp. */
2090 rule->modified = time_msec();
2091 done = true;
2092 }
2093 ovs_mutex_unlock(&rule->mutex);
2094 }
2095
2096 if (done) {
2097 return 0;
2098 }
2099 }
2100
2101 return handle_flow_mod__(ofproto, fm, NULL);
2102 }
2103
2104 /* Searches for a rule with matching criteria exactly equal to 'target' in
2105 * ofproto's table 0 and, if it finds one, deletes it.
2106 *
2107 * This is a helper function for in-band control and fail-open. */
2108 void
2109 ofproto_delete_flow(struct ofproto *ofproto,
2110 const struct match *target, int priority)
2111 OVS_EXCLUDED(ofproto_mutex)
2112 {
2113 struct classifier *cls = &ofproto->tables[0].cls;
2114 struct rule *rule;
2115
2116 /* First do a cheap check whether the rule we're looking for has already
2117 * been deleted. If so, then we're done. */
2118 rule = rule_from_cls_rule(classifier_find_match_exactly(cls, target,
2119 priority));
2120 if (!rule) {
2121 return;
2122 }
2123
2124 /* Execute a flow mod. We can't optimize this at all because we didn't
2125 * take enough locks above to ensure that the flow table didn't already
2126 * change beneath us. */
2127 simple_flow_mod(ofproto, target, priority, NULL, 0, OFPFC_DELETE_STRICT);
2128 }
2129
2130 /* Delete all of the flows from all of ofproto's flow tables, then reintroduce
2131 * the flows required by in-band control and fail-open. */
2132 void
2133 ofproto_flush_flows(struct ofproto *ofproto)
2134 {
2135 COVERAGE_INC(ofproto_flush);
2136 ofproto_flush__(ofproto);
2137 connmgr_flushed(ofproto->connmgr);
2138 }
2139 \f
2140 static void
2141 reinit_ports(struct ofproto *p)
2142 {
2143 struct ofproto_port_dump dump;
2144 struct sset devnames;
2145 struct ofport *ofport;
2146 struct ofproto_port ofproto_port;
2147 const char *devname;
2148
2149 COVERAGE_INC(ofproto_reinit_ports);
2150
2151 sset_init(&devnames);
2152 HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
2153 sset_add(&devnames, netdev_get_name(ofport->netdev));
2154 }
2155 OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, p) {
2156 sset_add(&devnames, ofproto_port.name);
2157 }
2158
2159 SSET_FOR_EACH (devname, &devnames) {
2160 update_port(p, devname);
2161 }
2162 sset_destroy(&devnames);
2163 }
2164
2165 static ofp_port_t
2166 alloc_ofp_port(struct ofproto *ofproto, const char *netdev_name)
2167 {
2168 uint16_t port_idx;
2169
2170 port_idx = simap_get(&ofproto->ofp_requests, netdev_name);
2171 port_idx = port_idx ? port_idx : UINT16_MAX;
2172
2173 if (port_idx >= ofproto->max_ports
2174 || ofport_get_usage(ofproto, u16_to_ofp(port_idx)) == LLONG_MAX) {
2175 uint16_t lru_ofport = 0, end_port_no = ofproto->alloc_port_no;
2176 long long int last_used_at, lru = LLONG_MAX;
2177
2178 /* Search for a free OpenFlow port number. We try not to
2179 * immediately reuse them to prevent problems due to old
2180 * flows.
2181 *
2182 * We limit the automatically assigned port numbers to the lower half
2183 * of the port range, to reserve the upper half for assignment by
2184 * controllers. */
2185 for (;;) {
2186 if (++ofproto->alloc_port_no >= MIN(ofproto->max_ports, 32768)) {
2187 ofproto->alloc_port_no = 1;
2188 }
2189 last_used_at = ofport_get_usage(ofproto,
2190 u16_to_ofp(ofproto->alloc_port_no));
2191 if (!last_used_at) {
2192 port_idx = ofproto->alloc_port_no;
2193 break;
2194 } else if ( last_used_at < time_msec() - 60*60*1000) {
2195 /* If the port with ofport 'ofproto->alloc_port_no' was deleted
2196 * more than an hour ago, consider it usable. */
2197 ofport_remove_usage(ofproto,
2198 u16_to_ofp(ofproto->alloc_port_no));
2199 port_idx = ofproto->alloc_port_no;
2200 break;
2201 } else if (last_used_at < lru) {
2202 lru = last_used_at;
2203 lru_ofport = ofproto->alloc_port_no;
2204 }
2205
2206 if (ofproto->alloc_port_no == end_port_no) {
2207 if (lru_ofport) {
2208 port_idx = lru_ofport;
2209 break;
2210 }
2211 return OFPP_NONE;
2212 }
2213 }
2214 }
2215 ofport_set_usage(ofproto, u16_to_ofp(port_idx), LLONG_MAX);
2216 return u16_to_ofp(port_idx);
2217 }
2218
2219 static void
2220 dealloc_ofp_port(struct ofproto *ofproto, ofp_port_t ofp_port)
2221 {
2222 if (ofp_to_u16(ofp_port) < ofproto->max_ports) {
2223 ofport_set_usage(ofproto, ofp_port, time_msec());
2224 }
2225 }
2226
2227 /* Opens and returns a netdev for 'ofproto_port' in 'ofproto', or a null
2228 * pointer if the netdev cannot be opened. On success, also fills in
2229 * '*pp'. */
2230 static struct netdev *
2231 ofport_open(struct ofproto *ofproto,
2232 struct ofproto_port *ofproto_port,
2233 struct ofputil_phy_port *pp)
2234 {
2235 enum netdev_flags flags;
2236 struct netdev *netdev;
2237 int error;
2238
2239 error = netdev_open(ofproto_port->name, ofproto_port->type, &netdev);
2240 if (error) {
2241 VLOG_WARN_RL(&rl, "%s: ignoring port %s (%"PRIu16") because netdev %s "
2242 "cannot be opened (%s)",
2243 ofproto->name,
2244 ofproto_port->name, ofproto_port->ofp_port,
2245 ofproto_port->name, ovs_strerror(error));
2246 return NULL;
2247 }
2248
2249 if (ofproto_port->ofp_port == OFPP_NONE) {
2250 if (!strcmp(ofproto->name, ofproto_port->name)) {
2251 ofproto_port->ofp_port = OFPP_LOCAL;
2252 } else {
2253 ofproto_port->ofp_port = alloc_ofp_port(ofproto,
2254 ofproto_port->name);
2255 }
2256 }
2257 pp->port_no = ofproto_port->ofp_port;
2258 netdev_get_etheraddr(netdev, pp->hw_addr);
2259 ovs_strlcpy(pp->name, ofproto_port->name, sizeof pp->name);
2260 netdev_get_flags(netdev, &flags);
2261 pp->config = flags & NETDEV_UP ? 0 : OFPUTIL_PC_PORT_DOWN;
2262 pp->state = netdev_get_carrier(netdev) ? 0 : OFPUTIL_PS_LINK_DOWN;
2263 netdev_get_features(netdev, &pp->curr, &pp->advertised,
2264 &pp->supported, &pp->peer);
2265 pp->curr_speed = netdev_features_to_bps(pp->curr, 0) / 1000;
2266 pp->max_speed = netdev_features_to_bps(pp->supported, 0) / 1000;
2267
2268 return netdev;
2269 }
2270
2271 /* Returns true if most fields of 'a' and 'b' are equal. Differences in name,
2272 * port number, and 'config' bits other than OFPUTIL_PC_PORT_DOWN are
2273 * disregarded. */
2274 static bool
2275 ofport_equal(const struct ofputil_phy_port *a,
2276 const struct ofputil_phy_port *b)
2277 {
2278 return (eth_addr_equals(a->hw_addr, b->hw_addr)
2279 && a->state == b->state
2280 && !((a->config ^ b->config) & OFPUTIL_PC_PORT_DOWN)
2281 && a->curr == b->curr
2282 && a->advertised == b->advertised
2283 && a->supported == b->supported
2284 && a->peer == b->peer
2285 && a->curr_speed == b->curr_speed
2286 && a->max_speed == b->max_speed);
2287 }
2288
2289 /* Adds an ofport to 'p' initialized based on the given 'netdev' and 'opp'.
2290 * The caller must ensure that 'p' does not have a conflicting ofport (that is,
2291 * one with the same name or port number). */
2292 static void
2293 ofport_install(struct ofproto *p,
2294 struct netdev *netdev, const struct ofputil_phy_port *pp)
2295 {
2296 const char *netdev_name = netdev_get_name(netdev);
2297 struct ofport *ofport;
2298 int error;
2299
2300 /* Create ofport. */
2301 ofport = p->ofproto_class->port_alloc();
2302 if (!ofport) {
2303 error = ENOMEM;
2304 goto error;
2305 }
2306 ofport->ofproto = p;
2307 ofport->netdev = netdev;
2308 ofport->change_seq = netdev_get_change_seq(netdev);
2309 ofport->pp = *pp;
2310 ofport->ofp_port = pp->port_no;
2311 ofport->created = time_msec();
2312
2313 /* Add port to 'p'. */
2314 hmap_insert(&p->ports, &ofport->hmap_node,
2315 hash_ofp_port(ofport->ofp_port));
2316 shash_add(&p->port_by_name, netdev_name, ofport);
2317
2318 update_mtu(p, ofport);
2319
2320 /* Let the ofproto_class initialize its private data. */
2321 error = p->ofproto_class->port_construct(ofport);
2322 if (error) {
2323 goto error;
2324 }
2325 connmgr_send_port_status(p->connmgr, NULL, pp, OFPPR_ADD);
2326 return;
2327
2328 error:
2329 VLOG_WARN_RL(&rl, "%s: could not add port %s (%s)",
2330 p->name, netdev_name, ovs_strerror(error));
2331 if (ofport) {
2332 ofport_destroy__(ofport);
2333 } else {
2334 netdev_close(netdev);
2335 }
2336 }
2337
2338 /* Removes 'ofport' from 'p' and destroys it. */
2339 static void
2340 ofport_remove(struct ofport *ofport)
2341 {
2342 connmgr_send_port_status(ofport->ofproto->connmgr, NULL, &ofport->pp,
2343 OFPPR_DELETE);
2344 ofport_destroy(ofport);
2345 }
2346
2347 /* If 'ofproto' contains an ofport named 'name', removes it from 'ofproto' and
2348 * destroys it. */
2349 static void
2350 ofport_remove_with_name(struct ofproto *ofproto, const char *name)
2351 {
2352 struct ofport *port = shash_find_data(&ofproto->port_by_name, name);
2353 if (port) {
2354 ofport_remove(port);
2355 }
2356 }
2357
2358 /* Updates 'port' with new 'pp' description.
2359 *
2360 * Does not handle a name or port number change. The caller must implement
2361 * such a change as a delete followed by an add. */
2362 static void
2363 ofport_modified(struct ofport *port, struct ofputil_phy_port *pp)
2364 {
2365 memcpy(port->pp.hw_addr, pp->hw_addr, ETH_ADDR_LEN);
2366 port->pp.config = ((port->pp.config & ~OFPUTIL_PC_PORT_DOWN)
2367 | (pp->config & OFPUTIL_PC_PORT_DOWN));
2368 port->pp.state = ((port->pp.state & ~OFPUTIL_PS_LINK_DOWN)
2369 | (pp->state & OFPUTIL_PS_LINK_DOWN));
2370 port->pp.curr = pp->curr;
2371 port->pp.advertised = pp->advertised;
2372 port->pp.supported = pp->supported;
2373 port->pp.peer = pp->peer;
2374 port->pp.curr_speed = pp->curr_speed;
2375 port->pp.max_speed = pp->max_speed;
2376
2377 connmgr_send_port_status(port->ofproto->connmgr, NULL,
2378 &port->pp, OFPPR_MODIFY);
2379 }
2380
2381 /* Update OpenFlow 'state' in 'port' and notify controller. */
2382 void
2383 ofproto_port_set_state(struct ofport *port, enum ofputil_port_state state)
2384 {
2385 if (port->pp.state != state) {
2386 port->pp.state = state;
2387 connmgr_send_port_status(port->ofproto->connmgr, NULL,
2388 &port->pp, OFPPR_MODIFY);
2389 }
2390 }
2391
2392 void
2393 ofproto_port_unregister(struct ofproto *ofproto, ofp_port_t ofp_port)
2394 {
2395 struct ofport *port = ofproto_get_port(ofproto, ofp_port);
2396 if (port) {
2397 if (port->ofproto->ofproto_class->set_realdev) {
2398 port->ofproto->ofproto_class->set_realdev(port, 0, 0);
2399 }
2400 if (port->ofproto->ofproto_class->set_stp_port) {
2401 port->ofproto->ofproto_class->set_stp_port(port, NULL);
2402 }
2403 if (port->ofproto->ofproto_class->set_rstp_port) {
2404 port->ofproto->ofproto_class->set_rstp_port(port, NULL);
2405 }
2406 if (port->ofproto->ofproto_class->set_cfm) {
2407 port->ofproto->ofproto_class->set_cfm(port, NULL);
2408 }
2409 if (port->ofproto->ofproto_class->bundle_remove) {
2410 port->ofproto->ofproto_class->bundle_remove(port);
2411 }
2412 }
2413 }
2414
2415 static void
2416 ofport_destroy__(struct ofport *port)
2417 {
2418 struct ofproto *ofproto = port->ofproto;
2419 const char *name = netdev_get_name(port->netdev);
2420
2421 hmap_remove(&ofproto->ports, &port->hmap_node);
2422 shash_delete(&ofproto->port_by_name,
2423 shash_find(&ofproto->port_by_name, name));
2424
2425 netdev_close(port->netdev);
2426 ofproto->ofproto_class->port_dealloc(port);
2427 }
2428
2429 static void
2430 ofport_destroy(struct ofport *port)
2431 {
2432 if (port) {
2433 dealloc_ofp_port(port->ofproto, port->ofp_port);
2434 port->ofproto->ofproto_class->port_destruct(port);
2435 ofport_destroy__(port);
2436 }
2437 }
2438
2439 struct ofport *
2440 ofproto_get_port(const struct ofproto *ofproto, ofp_port_t ofp_port)
2441 {
2442 struct ofport *port;
2443
2444 HMAP_FOR_EACH_IN_BUCKET (port, hmap_node, hash_ofp_port(ofp_port),
2445 &ofproto->ports) {
2446 if (port->ofp_port == ofp_port) {
2447 return port;
2448 }
2449 }
2450 return NULL;
2451 }
2452
2453 static long long int
2454 ofport_get_usage(const struct ofproto *ofproto, ofp_port_t ofp_port)
2455 {
2456 struct ofport_usage *usage;
2457
2458 HMAP_FOR_EACH_IN_BUCKET (usage, hmap_node, hash_ofp_port(ofp_port),
2459 &ofproto->ofport_usage) {
2460 if (usage->ofp_port == ofp_port) {
2461 return usage->last_used;
2462 }
2463 }
2464 return 0;
2465 }
2466
2467 static void
2468 ofport_set_usage(struct ofproto *ofproto, ofp_port_t ofp_port,
2469 long long int last_used)
2470 {
2471 struct ofport_usage *usage;
2472 HMAP_FOR_EACH_IN_BUCKET (usage, hmap_node, hash_ofp_port(ofp_port),
2473 &ofproto->ofport_usage) {
2474 if (usage->ofp_port == ofp_port) {
2475 usage->last_used = last_used;
2476 return;
2477 }
2478 }
2479 ovs_assert(last_used == LLONG_MAX);
2480
2481 usage = xmalloc(sizeof *usage);
2482 usage->ofp_port = ofp_port;
2483 usage->last_used = last_used;
2484 hmap_insert(&ofproto->ofport_usage, &usage->hmap_node,
2485 hash_ofp_port(ofp_port));
2486 }
2487
2488 static void
2489 ofport_remove_usage(struct ofproto *ofproto, ofp_port_t ofp_port)
2490 {
2491 struct ofport_usage *usage;
2492 HMAP_FOR_EACH_IN_BUCKET (usage, hmap_node, hash_ofp_port(ofp_port),
2493 &ofproto->ofport_usage) {
2494 if (usage->ofp_port == ofp_port) {
2495 hmap_remove(&ofproto->ofport_usage, &usage->hmap_node);
2496 free(usage);
2497 break;
2498 }
2499 }
2500 }
2501
2502 int
2503 ofproto_port_get_stats(const struct ofport *port, struct netdev_stats *stats)
2504 {
2505 struct ofproto *ofproto = port->ofproto;
2506 int error;
2507
2508 if (ofproto->ofproto_class->port_get_stats) {
2509 error = ofproto->ofproto_class->port_get_stats(port, stats);
2510 } else {
2511 error = EOPNOTSUPP;
2512 }
2513
2514 return error;
2515 }
2516
2517 static void
2518 update_port(struct ofproto *ofproto, const char *name)
2519 {
2520 struct ofproto_port ofproto_port;
2521 struct ofputil_phy_port pp;
2522 struct netdev *netdev;
2523 struct ofport *port;
2524
2525 COVERAGE_INC(ofproto_update_port);
2526
2527 /* Fetch 'name''s location and properties from the datapath. */
2528 netdev = (!ofproto_port_query_by_name(ofproto, name, &ofproto_port)
2529 ? ofport_open(ofproto, &ofproto_port, &pp)
2530 : NULL);
2531
2532 if (netdev) {
2533 port = ofproto_get_port(ofproto, ofproto_port.ofp_port);
2534 if (port && !strcmp(netdev_get_name(port->netdev), name)) {
2535 struct netdev *old_netdev = port->netdev;
2536
2537 /* 'name' hasn't changed location. Any properties changed? */
2538 if (!ofport_equal(&port->pp, &pp)) {
2539 ofport_modified(port, &pp);
2540 }
2541
2542 update_mtu(ofproto, port);
2543
2544 /* Install the newly opened netdev in case it has changed.
2545 * Don't close the old netdev yet in case port_modified has to
2546 * remove a retained reference to it.*/
2547 port->netdev = netdev;
2548 port->change_seq = netdev_get_change_seq(netdev);
2549
2550 if (port->ofproto->ofproto_class->port_modified) {
2551 port->ofproto->ofproto_class->port_modified(port);
2552 }
2553
2554 netdev_close(old_netdev);
2555 } else {
2556 /* If 'port' is nonnull then its name differs from 'name' and thus
2557 * we should delete it. If we think there's a port named 'name'
2558 * then its port number must be wrong now so delete it too. */
2559 if (port) {
2560 ofport_remove(port);
2561 }
2562 ofport_remove_with_name(ofproto, name);
2563 ofport_install(ofproto, netdev, &pp);
2564 }
2565 } else {
2566 /* Any port named 'name' is gone now. */
2567 ofport_remove_with_name(ofproto, name);
2568 }
2569 ofproto_port_destroy(&ofproto_port);
2570 }
2571
2572 static int
2573 init_ports(struct ofproto *p)
2574 {
2575 struct ofproto_port_dump dump;
2576 struct ofproto_port ofproto_port;
2577 struct shash_node *node, *next;
2578
2579 OFPROTO_PORT_FOR_EACH (&ofproto_port, &dump, p) {
2580 const char *name = ofproto_port.name;
2581
2582 if (shash_find(&p->port_by_name, name)) {
2583 VLOG_WARN_RL(&rl, "%s: ignoring duplicate device %s in datapath",
2584 p->name, name);
2585 } else {
2586 struct ofputil_phy_port pp;
2587 struct netdev *netdev;
2588
2589 /* Check if an OpenFlow port number had been requested. */
2590 node = shash_find(&init_ofp_ports, name);
2591 if (node) {
2592 const struct iface_hint *iface_hint = node->data;
2593 simap_put(&p->ofp_requests, name,
2594 ofp_to_u16(iface_hint->ofp_port));
2595 }
2596
2597 netdev = ofport_open(p, &ofproto_port, &pp);
2598 if (netdev) {
2599 ofport_install(p, netdev, &pp);
2600 if (ofp_to_u16(ofproto_port.ofp_port) < p->max_ports) {
2601 p->alloc_port_no = MAX(p->alloc_port_no,
2602 ofp_to_u16(ofproto_port.ofp_port));
2603 }
2604 }
2605 }
2606 }
2607
2608 SHASH_FOR_EACH_SAFE(node, next, &init_ofp_ports) {
2609 struct iface_hint *iface_hint = node->data;
2610
2611 if (!strcmp(iface_hint->br_name, p->name)) {
2612 free(iface_hint->br_name);
2613 free(iface_hint->br_type);
2614 free(iface_hint);
2615 shash_delete(&init_ofp_ports, node);
2616 }
2617 }
2618
2619 return 0;
2620 }
2621
2622 /* Find the minimum MTU of all non-datapath devices attached to 'p'.
2623 * Returns ETH_PAYLOAD_MAX or the minimum of the ports. */
2624 static int
2625 find_min_mtu(struct ofproto *p)
2626 {
2627 struct ofport *ofport;
2628 int mtu = 0;
2629
2630 HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
2631 struct netdev *netdev = ofport->netdev;
2632 int dev_mtu;
2633
2634 /* Skip any internal ports, since that's what we're trying to
2635 * set. */
2636 if (!strcmp(netdev_get_type(netdev), "internal")) {
2637 continue;
2638 }
2639
2640 if (netdev_get_mtu(netdev, &dev_mtu)) {
2641 continue;
2642 }
2643 if (!mtu || dev_mtu < mtu) {
2644 mtu = dev_mtu;
2645 }
2646 }
2647
2648 return mtu ? mtu: ETH_PAYLOAD_MAX;
2649 }
2650
2651 /* Update MTU of all datapath devices on 'p' to the minimum of the
2652 * non-datapath ports in event of 'port' added or changed. */
2653 static void
2654 update_mtu(struct ofproto *p, struct ofport *port)
2655 {
2656 struct ofport *ofport;
2657 struct netdev *netdev = port->netdev;
2658 int dev_mtu, old_min;
2659
2660 if (netdev_get_mtu(netdev, &dev_mtu)) {
2661 port->mtu = 0;
2662 return;
2663 }
2664 if (!strcmp(netdev_get_type(port->netdev), "internal")) {
2665 if (dev_mtu > p->min_mtu) {
2666 if (!netdev_set_mtu(port->netdev, p->min_mtu)) {
2667 dev_mtu = p->min_mtu;
2668 }
2669 }
2670 port->mtu = dev_mtu;
2671 return;
2672 }
2673
2674 /* For non-internal port find new min mtu. */
2675 old_min = p->min_mtu;
2676 port->mtu = dev_mtu;
2677 p->min_mtu = find_min_mtu(p);
2678 if (p->min_mtu == old_min) {
2679 return;
2680 }
2681
2682 HMAP_FOR_EACH (ofport, hmap_node, &p->ports) {
2683 struct netdev *netdev = ofport->netdev;
2684
2685 if (!strcmp(netdev_get_type(netdev), "internal")) {
2686 if (!netdev_set_mtu(netdev, p->min_mtu)) {
2687 ofport->mtu = p->min_mtu;
2688 }
2689 }
2690 }
2691 }
2692 \f
2693 static void
2694 ofproto_rule_destroy__(struct rule *rule)
2695 OVS_NO_THREAD_SAFETY_ANALYSIS
2696 {
2697 cls_rule_destroy(CONST_CAST(struct cls_rule *, &rule->cr));
2698 rule_actions_destroy(rule_get_actions(rule));
2699 ovs_mutex_destroy(&rule->mutex);
2700 rule->ofproto->ofproto_class->rule_dealloc(rule);
2701 }
2702
2703 static void
2704 rule_destroy_cb(struct rule *rule)
2705 {
2706 rule->ofproto->ofproto_class->rule_destruct(rule);
2707 ofproto_rule_destroy__(rule);
2708 }
2709
2710 void
2711 ofproto_rule_ref(struct rule *rule)
2712 {
2713 if (rule) {
2714 ovs_refcount_ref(&rule->ref_count);
2715 }
2716 }
2717
2718 bool
2719 ofproto_rule_try_ref(struct rule *rule)
2720 {
2721 if (rule) {
2722 return ovs_refcount_try_ref_rcu(&rule->ref_count);
2723 }
2724 return false;
2725 }
2726
2727 /* Decrements 'rule''s ref_count and schedules 'rule' to be destroyed if the
2728 * ref_count reaches 0.
2729 *
2730 * Use of RCU allows short term use (between RCU quiescent periods) without
2731 * keeping a reference. A reference must be taken if the rule needs to
2732 * stay around accross the RCU quiescent periods. */
2733 void
2734 ofproto_rule_unref(struct rule *rule)
2735 {
2736 if (rule && ovs_refcount_unref_relaxed(&rule->ref_count) == 1) {
2737 ovsrcu_postpone(rule_destroy_cb, rule);
2738 }
2739 }
2740
2741 void
2742 ofproto_group_ref(struct ofgroup *group)
2743 {
2744 if (group) {
2745 ovs_refcount_ref(&group->ref_count);
2746 }
2747 }
2748
2749 void
2750 ofproto_group_unref(struct ofgroup *group)
2751 {
2752 if (group && ovs_refcount_unref(&group->ref_count) == 1) {
2753 group->ofproto->ofproto_class->group_destruct(group);
2754 ofputil_bucket_list_destroy(&group->buckets);
2755 group->ofproto->ofproto_class->group_dealloc(group);
2756 }
2757 }
2758
2759 static uint32_t get_provider_meter_id(const struct ofproto *,
2760 uint32_t of_meter_id);
2761
2762 /* Creates and returns a new 'struct rule_actions', whose actions are a copy
2763 * of from the 'ofpacts_len' bytes of 'ofpacts'. */
2764 const struct rule_actions *
2765 rule_actions_create(const struct ofpact *ofpacts, size_t ofpacts_len)
2766 {
2767 struct rule_actions *actions;
2768
2769 actions = xmalloc(sizeof *actions + ofpacts_len);
2770 actions->ofpacts_len = ofpacts_len;
2771 actions->has_meter = ofpacts_get_meter(ofpacts, ofpacts_len) != 0;
2772 memcpy(actions->ofpacts, ofpacts, ofpacts_len);
2773
2774 actions->has_learn_with_delete = (next_learn_with_delete(actions, NULL)
2775 != NULL);
2776
2777 return actions;
2778 }
2779
2780 /* Free the actions after the RCU quiescent period is reached. */
2781 void
2782 rule_actions_destroy(const struct rule_actions *actions)
2783 {
2784 if (actions) {
2785 ovsrcu_postpone(free, CONST_CAST(struct rule_actions *, actions));
2786 }
2787 }
2788
2789 /* Returns true if 'rule' has an OpenFlow OFPAT_OUTPUT or OFPAT_ENQUEUE action
2790 * that outputs to 'port' (output to OFPP_FLOOD and OFPP_ALL doesn't count). */
2791 bool
2792 ofproto_rule_has_out_port(const struct rule *rule, ofp_port_t port)
2793 OVS_REQUIRES(ofproto_mutex)
2794 {
2795 if (port == OFPP_ANY) {
2796 return true;
2797 } else {
2798 const struct rule_actions *actions = rule_get_actions(rule);
2799 return ofpacts_output_to_port(actions->ofpacts,
2800 actions->ofpacts_len, port);
2801 }
2802 }
2803
2804 /* Returns true if 'rule' has group and equals group_id. */
2805 static bool
2806 ofproto_rule_has_out_group(const struct rule *rule, uint32_t group_id)
2807 OVS_REQUIRES(ofproto_mutex)
2808 {
2809 if (group_id == OFPG_ANY) {
2810 return true;
2811 } else {
2812 const struct rule_actions *actions = rule_get_actions(rule);
2813 return ofpacts_output_to_group(actions->ofpacts,
2814 actions->ofpacts_len, group_id);
2815 }
2816 }
2817
2818 static void
2819 rule_execute_destroy(struct rule_execute *e)
2820 {
2821 ofproto_rule_unref(e->rule);
2822 list_remove(&e->list_node);
2823 free(e);
2824 }
2825
2826 /* Executes all "rule_execute" operations queued up in ofproto->rule_executes,
2827 * by passing them to the ofproto provider. */
2828 static void
2829 run_rule_executes(struct ofproto *ofproto)
2830 OVS_EXCLUDED(ofproto_mutex)
2831 {
2832 struct rule_execute *e, *next;
2833 struct ovs_list executes;
2834
2835 guarded_list_pop_all(&ofproto->rule_executes, &executes);
2836 LIST_FOR_EACH_SAFE (e, next, list_node, &executes) {
2837 struct flow flow;
2838
2839 flow_extract(e->packet, &flow);
2840 flow.in_port.ofp_port = e->in_port;
2841 ofproto->ofproto_class->rule_execute(e->rule, &flow, e->packet);
2842
2843 rule_execute_destroy(e);
2844 }
2845 }
2846
2847 /* Destroys and discards all "rule_execute" operations queued up in
2848 * ofproto->rule_executes. */
2849 static void
2850 destroy_rule_executes(struct ofproto *ofproto)
2851 {
2852 struct rule_execute *e, *next;
2853 struct ovs_list executes;
2854
2855 guarded_list_pop_all(&ofproto->rule_executes, &executes);
2856 LIST_FOR_EACH_SAFE (e, next, list_node, &executes) {
2857 dp_packet_delete(e->packet);
2858 rule_execute_destroy(e);
2859 }
2860 }
2861
2862 static bool
2863 rule_is_readonly(const struct rule *rule)
2864 {
2865 const struct oftable *table = &rule->ofproto->tables[rule->table_id];
2866 return (table->flags & OFTABLE_READONLY) != 0;
2867 }
2868 \f
2869 static uint32_t
2870 hash_learned_cookie(ovs_be64 cookie_, uint8_t table_id)
2871 {
2872 uint64_t cookie = (OVS_FORCE uint64_t) cookie_;
2873 return hash_3words(cookie, cookie >> 32, table_id);
2874 }
2875
2876 static void
2877 learned_cookies_update_one__(struct ofproto *ofproto,
2878 const struct ofpact_learn *learn,
2879 int delta, struct ovs_list *dead_cookies)
2880 OVS_REQUIRES(ofproto_mutex)
2881 {
2882 uint32_t hash = hash_learned_cookie(learn->cookie, learn->table_id);
2883 struct learned_cookie *c;
2884
2885 HMAP_FOR_EACH_WITH_HASH (c, u.hmap_node, hash, &ofproto->learned_cookies) {
2886 if (c->cookie == learn->cookie && c->table_id == learn->table_id) {
2887 c->n += delta;
2888 ovs_assert(c->n >= 0);
2889
2890 if (!c->n) {
2891 hmap_remove(&ofproto->learned_cookies, &c->u.hmap_node);
2892 list_push_back(dead_cookies, &c->u.list_node);
2893 }
2894
2895 return;
2896 }
2897 }
2898
2899 ovs_assert(delta > 0);
2900 c = xmalloc(sizeof *c);
2901 hmap_insert(&ofproto->learned_cookies, &c->u.hmap_node, hash);
2902 c->cookie = learn->cookie;
2903 c->table_id = learn->table_id;
2904 c->n = delta;
2905 }
2906
2907 static const struct ofpact_learn *
2908 next_learn_with_delete(const struct rule_actions *actions,
2909 const struct ofpact_learn *start)
2910 {
2911 const struct ofpact *pos;
2912
2913 for (pos = start ? ofpact_next(&start->ofpact) : actions->ofpacts;
2914 pos < ofpact_end(actions->ofpacts, actions->ofpacts_len);
2915 pos = ofpact_next(pos)) {
2916 if (pos->type == OFPACT_LEARN) {
2917 const struct ofpact_learn *learn = ofpact_get_LEARN(pos);
2918 if (learn->flags & NX_LEARN_F_DELETE_LEARNED) {
2919 return learn;
2920 }
2921 }
2922 }
2923
2924 return NULL;
2925 }
2926
2927 static void
2928 learned_cookies_update__(struct ofproto *ofproto,
2929 const struct rule_actions *actions,
2930 int delta, struct ovs_list *dead_cookies)
2931 OVS_REQUIRES(ofproto_mutex)
2932 {
2933 if (actions->has_learn_with_delete) {
2934 const struct ofpact_learn *learn;
2935
2936 for (learn = next_learn_with_delete(actions, NULL); learn;
2937 learn = next_learn_with_delete(actions, learn)) {
2938 learned_cookies_update_one__(ofproto, learn, delta, dead_cookies);
2939 }
2940 }
2941 }
2942
2943 static void
2944 learned_cookies_inc(struct ofproto *ofproto,
2945 const struct rule_actions *actions)
2946 OVS_REQUIRES(ofproto_mutex)
2947 {
2948 learned_cookies_update__(ofproto, actions, +1, NULL);
2949 }
2950
2951 static void
2952 learned_cookies_dec(struct ofproto *ofproto,
2953 const struct rule_actions *actions,
2954 struct ovs_list *dead_cookies)
2955 OVS_REQUIRES(ofproto_mutex)
2956 {
2957 learned_cookies_update__(ofproto, actions, -1, dead_cookies);
2958 }
2959
2960 static void
2961 learned_cookies_flush(struct ofproto *ofproto, struct ovs_list *dead_cookies)
2962 OVS_REQUIRES(ofproto_mutex)
2963 {
2964 struct learned_cookie *c;
2965
2966 LIST_FOR_EACH_POP (c, u.list_node, dead_cookies) {
2967 struct rule_criteria criteria;
2968 struct rule_collection rules;
2969 struct match match;
2970
2971 match_init_catchall(&match);
2972 rule_criteria_init(&criteria, c->table_id, &match, 0,
2973 c->cookie, OVS_BE64_MAX, OFPP_ANY, OFPG_ANY);
2974 rule_criteria_require_rw(&criteria, false);
2975 collect_rules_loose(ofproto, &criteria, &rules);
2976 delete_flows__(&rules, OFPRR_DELETE, NULL);
2977 rule_criteria_destroy(&criteria);
2978 rule_collection_destroy(&rules);
2979
2980 free(c);
2981 }
2982 }
2983 \f
2984 static enum ofperr
2985 handle_echo_request(struct ofconn *ofconn, const struct ofp_header *oh)
2986 {
2987 ofconn_send_reply(ofconn, make_echo_reply(oh));
2988 return 0;
2989 }
2990
2991 static void
2992 query_tables(struct ofproto *ofproto,
2993 struct ofputil_table_features **featuresp,
2994 struct ofputil_table_stats **statsp)
2995 {
2996 struct mf_bitmap rw_fields = oxm_writable_fields();
2997 struct mf_bitmap match = oxm_matchable_fields();
2998 struct mf_bitmap mask = oxm_maskable_fields();
2999
3000 struct ofputil_table_features *features;
3001 struct ofputil_table_stats *stats;
3002 int i;
3003
3004 features = *featuresp = xcalloc(ofproto->n_tables, sizeof *features);
3005 for (i = 0; i < ofproto->n_tables; i++) {
3006 struct ofputil_table_features *f = &features[i];
3007
3008 f->table_id = i;
3009 sprintf(f->name, "table%d", i);
3010 f->metadata_match = OVS_BE64_MAX;
3011 f->metadata_write = OVS_BE64_MAX;
3012 atomic_read_relaxed(&ofproto->tables[i].miss_config, &f->miss_config);
3013 f->max_entries = 1000000;
3014
3015 bool more_tables = false;
3016 for (int j = i + 1; j < ofproto->n_tables; j++) {
3017 if (!(ofproto->tables[j].flags & OFTABLE_HIDDEN)) {
3018 bitmap_set1(f->nonmiss.next, j);
3019 more_tables = true;
3020 }
3021 }
3022 f->nonmiss.instructions = (1u << N_OVS_INSTRUCTIONS) - 1;
3023 if (!more_tables) {
3024 f->nonmiss.instructions &= ~(1u << OVSINST_OFPIT11_GOTO_TABLE);
3025 }
3026 f->nonmiss.write.ofpacts = (UINT64_C(1) << N_OFPACTS) - 1;
3027 f->nonmiss.write.set_fields = rw_fields;
3028 f->nonmiss.apply = f->nonmiss.write;
3029 f->miss = f->nonmiss;
3030
3031 f->match = match;
3032 f->mask = mask;
3033 f->wildcard = match;
3034 }
3035
3036 if (statsp) {
3037 stats = *statsp = xcalloc(ofproto->n_tables, sizeof *stats);
3038 for (i = 0; i < ofproto->n_tables; i++) {
3039 struct ofputil_table_stats *s = &stats[i];
3040 struct classifier *cls = &ofproto->tables[i].cls;
3041
3042 s->table_id = i;
3043 s->active_count = classifier_count(cls);
3044 if (i == 0) {
3045 s->active_count -= connmgr_count_hidden_rules(
3046 ofproto->connmgr);
3047 }
3048 }
3049 } else {
3050 stats = NULL;
3051 }
3052
3053 ofproto->ofproto_class->query_tables(ofproto, features, stats);
3054
3055 for (i = 0; i < ofproto->n_tables; i++) {
3056 const struct oftable *table = &ofproto->tables[i];
3057 struct ofputil_table_features *f = &features[i];
3058
3059 if (table->name) {
3060 ovs_strzcpy(f->name, table->name, sizeof f->name);
3061 }
3062
3063 if (table->max_flows < f->max_entries) {
3064 f->max_entries = table->max_flows;
3065 }
3066 }
3067 }
3068
3069 static void
3070 query_switch_features(struct ofproto *ofproto,
3071 bool *arp_match_ip, uint64_t *ofpacts)
3072 {
3073 struct ofputil_table_features *features, *f;
3074
3075 *arp_match_ip = false;
3076 *ofpacts = 0;
3077
3078 query_tables(ofproto, &features, NULL);
3079 for (f = features; f < &features[ofproto->n_tables]; f++) {
3080 *ofpacts |= f->nonmiss.apply.ofpacts | f->miss.apply.ofpacts;
3081 if (bitmap_is_set(f->match.bm, MFF_ARP_SPA) ||
3082 bitmap_is_set(f->match.bm, MFF_ARP_TPA)) {
3083 *arp_match_ip = true;
3084 }
3085 }
3086 free(features);
3087
3088 /* Sanity check. */
3089 ovs_assert(*ofpacts & (UINT64_C(1) << OFPACT_OUTPUT));
3090 }
3091
3092 static enum ofperr
3093 handle_features_request(struct ofconn *ofconn, const struct ofp_header *oh)
3094 {
3095 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3096 struct ofputil_switch_features features;
3097 struct ofport *port;
3098 bool arp_match_ip;
3099 struct ofpbuf *b;
3100
3101 query_switch_features(ofproto, &arp_match_ip, &features.ofpacts);
3102
3103 features.datapath_id = ofproto->datapath_id;
3104 features.n_buffers = pktbuf_capacity();
3105 features.n_tables = ofproto_get_n_visible_tables(ofproto);
3106 features.capabilities = (OFPUTIL_C_FLOW_STATS | OFPUTIL_C_TABLE_STATS |
3107 OFPUTIL_C_PORT_STATS | OFPUTIL_C_QUEUE_STATS |
3108 OFPUTIL_C_GROUP_STATS);
3109 if (arp_match_ip) {
3110 features.capabilities |= OFPUTIL_C_ARP_MATCH_IP;
3111 }
3112 /* FIXME: Fill in proper features.auxiliary_id for auxiliary connections */
3113 features.auxiliary_id = 0;
3114 b = ofputil_encode_switch_features(&features, ofconn_get_protocol(ofconn),
3115 oh->xid);
3116 HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
3117 ofputil_put_switch_features_port(&port->pp, b);
3118 }
3119
3120 ofconn_send_reply(ofconn, b);
3121 return 0;
3122 }
3123
3124 static enum ofperr
3125 handle_get_config_request(struct ofconn *ofconn, const struct ofp_header *oh)
3126 {
3127 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3128 struct ofp_switch_config *osc;
3129 enum ofp_config_flags flags;
3130 struct ofpbuf *buf;
3131
3132 /* Send reply. */
3133 buf = ofpraw_alloc_reply(OFPRAW_OFPT_GET_CONFIG_REPLY, oh, 0);
3134 osc = ofpbuf_put_uninit(buf, sizeof *osc);
3135 flags = ofproto->frag_handling;
3136 /* OFPC_INVALID_TTL_TO_CONTROLLER is deprecated in OF 1.3 */
3137 if (oh->version < OFP13_VERSION
3138 && ofconn_get_invalid_ttl_to_controller(ofconn)) {
3139 flags |= OFPC_INVALID_TTL_TO_CONTROLLER;
3140 }
3141 osc->flags = htons(flags);
3142 osc->miss_send_len = htons(ofconn_get_miss_send_len(ofconn));
3143 ofconn_send_reply(ofconn, buf);
3144
3145 return 0;
3146 }
3147
3148 static enum ofperr
3149 handle_set_config(struct ofconn *ofconn, const struct ofp_header *oh)
3150 {
3151 const struct ofp_switch_config *osc = ofpmsg_body(oh);
3152 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3153 uint16_t flags = ntohs(osc->flags);
3154
3155 if (ofconn_get_type(ofconn) != OFCONN_PRIMARY
3156 || ofconn_get_role(ofconn) != OFPCR12_ROLE_SLAVE) {
3157 enum ofp_config_flags cur = ofproto->frag_handling;
3158 enum ofp_config_flags next = flags & OFPC_FRAG_MASK;
3159
3160 ovs_assert((cur & OFPC_FRAG_MASK) == cur);
3161 if (cur != next) {
3162 if (ofproto->ofproto_class->set_frag_handling(ofproto, next)) {
3163 ofproto->frag_handling = next;
3164 } else {
3165 VLOG_WARN_RL(&rl, "%s: unsupported fragment handling mode %s",
3166 ofproto->name,
3167 ofputil_frag_handling_to_string(next));
3168 }
3169 }
3170 }
3171 /* OFPC_INVALID_TTL_TO_CONTROLLER is deprecated in OF 1.3 */
3172 ofconn_set_invalid_ttl_to_controller(ofconn,
3173 (oh->version < OFP13_VERSION
3174 && flags & OFPC_INVALID_TTL_TO_CONTROLLER));
3175
3176 ofconn_set_miss_send_len(ofconn, ntohs(osc->miss_send_len));
3177
3178 return 0;
3179 }
3180
3181 /* Checks whether 'ofconn' is a slave controller. If so, returns an OpenFlow
3182 * error message code for the caller to propagate upward. Otherwise, returns
3183 * 0.
3184 *
3185 * The log message mentions 'msg_type'. */
3186 static enum ofperr
3187 reject_slave_controller(struct ofconn *ofconn)
3188 {
3189 if (ofconn_get_type(ofconn) == OFCONN_PRIMARY
3190 && ofconn_get_role(ofconn) == OFPCR12_ROLE_SLAVE) {
3191 return OFPERR_OFPBRC_IS_SLAVE;
3192 } else {
3193 return 0;
3194 }
3195 }
3196
3197 /* Checks that the 'ofpacts_len' bytes of action in 'ofpacts' are appropriate
3198 * for 'ofproto':
3199 *
3200 * - If they use a meter, then 'ofproto' has that meter configured.
3201 *
3202 * - If they use any groups, then 'ofproto' has that group configured.
3203 *
3204 * Returns 0 if successful, otherwise an OpenFlow error. */
3205 static enum ofperr
3206 ofproto_check_ofpacts(struct ofproto *ofproto,
3207 const struct ofpact ofpacts[], size_t ofpacts_len)
3208 {
3209 const struct ofpact *a;
3210 uint32_t mid;
3211
3212 mid = ofpacts_get_meter(ofpacts, ofpacts_len);
3213 if (mid && get_provider_meter_id(ofproto, mid) == UINT32_MAX) {
3214 return OFPERR_OFPMMFC_INVALID_METER;
3215 }
3216
3217 OFPACT_FOR_EACH (a, ofpacts, ofpacts_len) {
3218 if (a->type == OFPACT_GROUP
3219 && !ofproto_group_exists(ofproto, ofpact_get_GROUP(a)->group_id)) {
3220 return OFPERR_OFPBAC_BAD_OUT_GROUP;
3221 }
3222 }
3223
3224 return 0;
3225 }
3226
3227 static enum ofperr
3228 handle_packet_out(struct ofconn *ofconn, const struct ofp_header *oh)
3229 {
3230 struct ofproto *p = ofconn_get_ofproto(ofconn);
3231 struct ofputil_packet_out po;
3232 struct dp_packet *payload;
3233 uint64_t ofpacts_stub[1024 / 8];
3234 struct ofpbuf ofpacts;
3235 struct flow flow;
3236 enum ofperr error;
3237
3238 COVERAGE_INC(ofproto_packet_out);
3239
3240 error = reject_slave_controller(ofconn);
3241 if (error) {
3242 goto exit;
3243 }
3244
3245 /* Decode message. */
3246 ofpbuf_use_stub(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
3247 error = ofputil_decode_packet_out(&po, oh, &ofpacts);
3248 if (error) {
3249 goto exit_free_ofpacts;
3250 }
3251 if (ofp_to_u16(po.in_port) >= p->max_ports
3252 && ofp_to_u16(po.in_port) < ofp_to_u16(OFPP_MAX)) {
3253 error = OFPERR_OFPBRC_BAD_PORT;
3254 goto exit_free_ofpacts;
3255 }
3256
3257 /* Get payload. */
3258 if (po.buffer_id != UINT32_MAX) {
3259 error = ofconn_pktbuf_retrieve(ofconn, po.buffer_id, &payload, NULL);
3260 if (error || !payload) {
3261 goto exit_free_ofpacts;
3262 }
3263 } else {
3264 /* Ensure that the L3 header is 32-bit aligned. */
3265 payload = dp_packet_clone_data_with_headroom(po.packet, po.packet_len, 2);
3266 }
3267
3268 /* Verify actions against packet, then send packet if successful. */
3269 flow_extract(payload, &flow);
3270 flow.in_port.ofp_port = po.in_port;
3271 error = ofproto_check_ofpacts(p, po.ofpacts, po.ofpacts_len);
3272 if (!error) {
3273 error = p->ofproto_class->packet_out(p, payload, &flow,
3274 po.ofpacts, po.ofpacts_len);
3275 }
3276 dp_packet_delete(payload);
3277
3278 exit_free_ofpacts:
3279 ofpbuf_uninit(&ofpacts);
3280 exit:
3281 return error;
3282 }
3283
3284 static void
3285 update_port_config(struct ofconn *ofconn, struct ofport *port,
3286 enum ofputil_port_config config,
3287 enum ofputil_port_config mask)
3288 {
3289 enum ofputil_port_config toggle = (config ^ port->pp.config) & mask;
3290
3291 if (toggle & OFPUTIL_PC_PORT_DOWN
3292 && (config & OFPUTIL_PC_PORT_DOWN
3293 ? netdev_turn_flags_off(port->netdev, NETDEV_UP, NULL)
3294 : netdev_turn_flags_on(port->netdev, NETDEV_UP, NULL))) {
3295 /* We tried to bring the port up or down, but it failed, so don't
3296 * update the "down" bit. */
3297 toggle &= ~OFPUTIL_PC_PORT_DOWN;
3298 }
3299
3300 if (toggle) {
3301 enum ofputil_port_config old_config = port->pp.config;
3302 port->pp.config ^= toggle;
3303 port->ofproto->ofproto_class->port_reconfigured(port, old_config);
3304 connmgr_send_port_status(port->ofproto->connmgr, ofconn, &port->pp,
3305 OFPPR_MODIFY);
3306 }
3307 }
3308
3309 static enum ofperr
3310 handle_port_mod(struct ofconn *ofconn, const struct ofp_header *oh)
3311 {
3312 struct ofproto *p = ofconn_get_ofproto(ofconn);
3313 struct ofputil_port_mod pm;
3314 struct ofport *port;
3315 enum ofperr error;
3316
3317 error = reject_slave_controller(ofconn);
3318 if (error) {
3319 return error;
3320 }
3321
3322 error = ofputil_decode_port_mod(oh, &pm, false);
3323 if (error) {
3324 return error;
3325 }
3326
3327 port = ofproto_get_port(p, pm.port_no);
3328 if (!port) {
3329 return OFPERR_OFPPMFC_BAD_PORT;
3330 } else if (!eth_addr_equals(port->pp.hw_addr, pm.hw_addr)) {
3331 return OFPERR_OFPPMFC_BAD_HW_ADDR;
3332 } else {
3333 update_port_config(ofconn, port, pm.config, pm.mask);
3334 if (pm.advertise) {
3335 netdev_set_advertisements(port->netdev, pm.advertise);
3336 }
3337 }
3338 return 0;
3339 }
3340
3341 static enum ofperr
3342 handle_desc_stats_request(struct ofconn *ofconn,
3343 const struct ofp_header *request)
3344 {
3345 static const char *default_mfr_desc = "Nicira, Inc.";
3346 static const char *default_hw_desc = "Open vSwitch";
3347 static const char *default_sw_desc = VERSION;
3348 static const char *default_serial_desc = "None";
3349 static const char *default_dp_desc = "None";
3350
3351 struct ofproto *p = ofconn_get_ofproto(ofconn);
3352 struct ofp_desc_stats *ods;
3353 struct ofpbuf *msg;
3354
3355 msg = ofpraw_alloc_stats_reply(request, 0);
3356 ods = ofpbuf_put_zeros(msg, sizeof *ods);
3357 ovs_strlcpy(ods->mfr_desc, p->mfr_desc ? p->mfr_desc : default_mfr_desc,
3358 sizeof ods->mfr_desc);
3359 ovs_strlcpy(ods->hw_desc, p->hw_desc ? p->hw_desc : default_hw_desc,
3360 sizeof ods->hw_desc);
3361 ovs_strlcpy(ods->sw_desc, p->sw_desc ? p->sw_desc : default_sw_desc,
3362 sizeof ods->sw_desc);
3363 ovs_strlcpy(ods->serial_num,
3364 p->serial_desc ? p->serial_desc : default_serial_desc,
3365 sizeof ods->serial_num);
3366 ovs_strlcpy(ods->dp_desc, p->dp_desc ? p->dp_desc : default_dp_desc,
3367 sizeof ods->dp_desc);
3368 ofconn_send_reply(ofconn, msg);
3369
3370 return 0;
3371 }
3372
3373 static enum ofperr
3374 handle_table_stats_request(struct ofconn *ofconn,
3375 const struct ofp_header *request)
3376 {
3377 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3378 struct ofputil_table_features *features;
3379 struct ofputil_table_stats *stats;
3380 struct ofpbuf *reply;
3381 size_t i;
3382
3383 query_tables(ofproto, &features, &stats);
3384
3385 reply = ofputil_encode_table_stats_reply(request);
3386 for (i = 0; i < ofproto->n_tables; i++) {
3387 if (!(ofproto->tables[i].flags & OFTABLE_HIDDEN)) {
3388 ofputil_append_table_stats_reply(reply, &stats[i], &features[i]);
3389 }
3390 }
3391 ofconn_send_reply(ofconn, reply);
3392
3393 free(features);
3394 free(stats);
3395
3396 return 0;
3397 }
3398
3399 static enum ofperr
3400 handle_table_features_request(struct ofconn *ofconn,
3401 const struct ofp_header *request)
3402 {
3403 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3404 struct ofputil_table_features *features;
3405 struct ovs_list replies;
3406 struct ofpbuf msg;
3407 size_t i;
3408
3409 ofpbuf_use_const(&msg, request, ntohs(request->length));
3410 ofpraw_pull_assert(&msg);
3411 if (msg.size || ofpmp_more(request)) {
3412 return OFPERR_OFPTFFC_EPERM;
3413 }
3414
3415 query_tables(ofproto, &features, NULL);
3416
3417 ofpmp_init(&replies, request);
3418 for (i = 0; i < ofproto->n_tables; i++) {
3419 if (!(ofproto->tables[i].flags & OFTABLE_HIDDEN)) {
3420 ofputil_append_table_features_reply(&features[i], &replies);
3421 }
3422 }
3423 ofconn_send_replies(ofconn, &replies);
3424
3425 free(features);
3426
3427 return 0;
3428 }
3429
3430 static void
3431 append_port_stat(struct ofport *port, struct ovs_list *replies)
3432 {
3433 struct ofputil_port_stats ops = { .port_no = port->pp.port_no };
3434
3435 calc_duration(port->created, time_msec(),
3436 &ops.duration_sec, &ops.duration_nsec);
3437
3438 /* Intentionally ignore return value, since errors will set
3439 * 'stats' to all-1s, which is correct for OpenFlow, and
3440 * netdev_get_stats() will log errors. */
3441 ofproto_port_get_stats(port, &ops.stats);
3442
3443 ofputil_append_port_stat(replies, &ops);
3444 }
3445
3446 static void
3447 handle_port_request(struct ofconn *ofconn,
3448 const struct ofp_header *request, ofp_port_t port_no,
3449 void (*cb)(struct ofport *, struct ovs_list *replies))
3450 {
3451 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3452 struct ofport *port;
3453 struct ovs_list replies;
3454
3455 ofpmp_init(&replies, request);
3456 if (port_no != OFPP_ANY) {
3457 port = ofproto_get_port(ofproto, port_no);
3458 if (port) {
3459 cb(port, &replies);
3460 }
3461 } else {
3462 HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
3463 cb(port, &replies);
3464 }
3465 }
3466
3467 ofconn_send_replies(ofconn, &replies);
3468 }
3469
3470 static enum ofperr
3471 handle_port_stats_request(struct ofconn *ofconn,
3472 const struct ofp_header *request)
3473 {
3474 ofp_port_t port_no;
3475 enum ofperr error;
3476
3477 error = ofputil_decode_port_stats_request(request, &port_no);
3478 if (!error) {
3479 handle_port_request(ofconn, request, port_no, append_port_stat);
3480 }
3481 return error;
3482 }
3483
3484 static void
3485 append_port_desc(struct ofport *port, struct ovs_list *replies)
3486 {
3487 ofputil_append_port_desc_stats_reply(&port->pp, replies);
3488 }
3489
3490 static enum ofperr
3491 handle_port_desc_stats_request(struct ofconn *ofconn,
3492 const struct ofp_header *request)
3493 {
3494 ofp_port_t port_no;
3495 enum ofperr error;
3496
3497 error = ofputil_decode_port_desc_stats_request(request, &port_no);
3498 if (!error) {
3499 handle_port_request(ofconn, request, port_no, append_port_desc);
3500 }
3501 return error;
3502 }
3503
3504 static uint32_t
3505 hash_cookie(ovs_be64 cookie)
3506 {
3507 return hash_uint64((OVS_FORCE uint64_t)cookie);
3508 }
3509
3510 static void
3511 cookies_insert(struct ofproto *ofproto, struct rule *rule)
3512 OVS_REQUIRES(ofproto_mutex)
3513 {
3514 hindex_insert(&ofproto->cookies, &rule->cookie_node,
3515 hash_cookie(rule->flow_cookie));
3516 }
3517
3518 static void
3519 cookies_remove(struct ofproto *ofproto, struct rule *rule)
3520 OVS_REQUIRES(ofproto_mutex)
3521 {
3522 hindex_remove(&ofproto->cookies, &rule->cookie_node);
3523 }
3524
3525 static void
3526 calc_duration(long long int start, long long int now,
3527 uint32_t *sec, uint32_t *nsec)
3528 {
3529 long long int msecs = now - start;
3530 *sec = msecs / 1000;
3531 *nsec = (msecs % 1000) * (1000 * 1000);
3532 }
3533
3534 /* Checks whether 'table_id' is 0xff or a valid table ID in 'ofproto'. Returns
3535 * true if 'table_id' is OK, false otherwise. */
3536 static bool
3537 check_table_id(const struct ofproto *ofproto, uint8_t table_id)
3538 {
3539 return table_id == OFPTT_ALL || table_id < ofproto->n_tables;
3540 }
3541
3542 static struct oftable *
3543 next_visible_table(const struct ofproto *ofproto, uint8_t table_id)
3544 {
3545 struct oftable *table;
3546
3547 for (table = &ofproto->tables[table_id];
3548 table < &ofproto->tables[ofproto->n_tables];
3549 table++) {
3550 if (!(table->flags & OFTABLE_HIDDEN)) {
3551 return table;
3552 }
3553 }
3554
3555 return NULL;
3556 }
3557
3558 static struct oftable *
3559 first_matching_table(const struct ofproto *ofproto, uint8_t table_id)
3560 {
3561 if (table_id == 0xff) {
3562 return next_visible_table(ofproto, 0);
3563 } else if (table_id < ofproto->n_tables) {
3564 return &ofproto->tables[table_id];
3565 } else {
3566 return NULL;
3567 }
3568 }
3569
3570 static struct oftable *
3571 next_matching_table(const struct ofproto *ofproto,
3572 const struct oftable *table, uint8_t table_id)
3573 {
3574 return (table_id == 0xff
3575 ? next_visible_table(ofproto, (table - ofproto->tables) + 1)
3576 : NULL);
3577 }
3578
3579 /* Assigns TABLE to each oftable, in turn, that matches TABLE_ID in OFPROTO:
3580 *
3581 * - If TABLE_ID is 0xff, this iterates over every classifier table in
3582 * OFPROTO, skipping tables marked OFTABLE_HIDDEN.
3583 *
3584 * - If TABLE_ID is the number of a table in OFPROTO, then the loop iterates
3585 * only once, for that table. (This can be used to access tables marked
3586 * OFTABLE_HIDDEN.)
3587 *
3588 * - Otherwise, TABLE_ID isn't valid for OFPROTO, so the loop won't be
3589 * entered at all. (Perhaps you should have validated TABLE_ID with
3590 * check_table_id().)
3591 *
3592 * All parameters are evaluated multiple times.
3593 */
3594 #define FOR_EACH_MATCHING_TABLE(TABLE, TABLE_ID, OFPROTO) \
3595 for ((TABLE) = first_matching_table(OFPROTO, TABLE_ID); \
3596 (TABLE) != NULL; \
3597 (TABLE) = next_matching_table(OFPROTO, TABLE, TABLE_ID))
3598
3599 /* Initializes 'criteria' in a straightforward way based on the other
3600 * parameters.
3601 *
3602 * By default, the criteria include flows that are read-only, on the assumption
3603 * that the collected flows won't be modified. Call rule_criteria_require_rw()
3604 * if flows will be modified.
3605 *
3606 * For "loose" matching, the 'priority' parameter is unimportant and may be
3607 * supplied as 0. */
3608 static void
3609 rule_criteria_init(struct rule_criteria *criteria, uint8_t table_id,
3610 const struct match *match, int priority,
3611 ovs_be64 cookie, ovs_be64 cookie_mask,
3612 ofp_port_t out_port, uint32_t out_group)
3613 {
3614 criteria->table_id = table_id;
3615 cls_rule_init(&criteria->cr, match, priority);
3616 criteria->cookie = cookie;
3617 criteria->cookie_mask = cookie_mask;
3618 criteria->out_port = out_port;
3619 criteria->out_group = out_group;
3620
3621 /* We ordinarily want to skip hidden rules, but there has to be a way for
3622 * code internal to OVS to modify and delete them, so if the criteria
3623 * specify a priority that can only be for a hidden flow, then allow hidden
3624 * rules to be selected. (This doesn't allow OpenFlow clients to meddle
3625 * with hidden flows because OpenFlow uses only a 16-bit field to specify
3626 * priority.) */
3627 criteria->include_hidden = priority > UINT16_MAX;
3628
3629 /* We assume that the criteria are being used to collect flows for reading
3630 * but not modification. Thus, we should collect read-only flows. */
3631 criteria->include_readonly = true;
3632 }
3633
3634 /* By default, criteria initialized by rule_criteria_init() will match flows
3635 * that are read-only, on the assumption that the collected flows won't be
3636 * modified. Call this function to match only flows that are be modifiable.
3637 *
3638 * Specify 'can_write_readonly' as false in ordinary circumstances, true if the
3639 * caller has special privileges that allow it to modify even "read-only"
3640 * flows. */
3641 static void
3642 rule_criteria_require_rw(struct rule_criteria *criteria,
3643 bool can_write_readonly)
3644 {
3645 criteria->include_readonly = can_write_readonly;
3646 }
3647
3648 static void
3649 rule_criteria_destroy(struct rule_criteria *criteria)
3650 {
3651 cls_rule_destroy(&criteria->cr);
3652 }
3653
3654 void
3655 rule_collection_init(struct rule_collection *rules)
3656 {
3657 rules->rules = rules->stub;
3658 rules->n = 0;
3659 rules->capacity = ARRAY_SIZE(rules->stub);
3660 }
3661
3662 void
3663 rule_collection_add(struct rule_collection *rules, struct rule *rule)
3664 {
3665 if (rules->n >= rules->capacity) {
3666 size_t old_size, new_size;
3667
3668 old_size = rules->capacity * sizeof *rules->rules;
3669 rules->capacity *= 2;
3670 new_size = rules->capacity * sizeof *rules->rules;
3671
3672 if (rules->rules == rules->stub) {
3673 rules->rules = xmalloc(new_size);
3674 memcpy(rules->rules, rules->stub, old_size);
3675 } else {
3676 rules->rules = xrealloc(rules->rules, new_size);
3677 }
3678 }
3679
3680 rules->rules[rules->n++] = rule;
3681 }
3682
3683 void
3684 rule_collection_ref(struct rule_collection *rules)
3685 OVS_REQUIRES(ofproto_mutex)
3686 {
3687 size_t i;
3688
3689 for (i = 0; i < rules->n; i++) {
3690 ofproto_rule_ref(rules->rules[i]);
3691 }
3692 }
3693
3694 void
3695 rule_collection_unref(struct rule_collection *rules)
3696 {
3697 size_t i;
3698
3699 for (i = 0; i < rules->n; i++) {
3700 ofproto_rule_unref(rules->rules[i]);
3701 }
3702 }
3703
3704 void
3705 rule_collection_destroy(struct rule_collection *rules)
3706 {
3707 if (rules->rules != rules->stub) {
3708 free(rules->rules);
3709 }
3710
3711 /* Make repeated destruction harmless. */
3712 rule_collection_init(rules);
3713 }
3714
3715 /* Checks whether 'rule' matches 'c' and, if so, adds it to 'rules'. This
3716 * function verifies most of the criteria in 'c' itself, but the caller must
3717 * check 'c->cr' itself.
3718 *
3719 * Increments '*n_readonly' if 'rule' wasn't added because it's read-only (and
3720 * 'c' only includes modifiable rules). */
3721 static void
3722 collect_rule(struct rule *rule, const struct rule_criteria *c,
3723 struct rule_collection *rules, size_t *n_readonly)
3724 OVS_REQUIRES(ofproto_mutex)
3725 {
3726 if ((c->table_id == rule->table_id || c->table_id == 0xff)
3727 && ofproto_rule_has_out_port(rule, c->out_port)
3728 && ofproto_rule_has_out_group(rule, c->out_group)
3729 && !((rule->flow_cookie ^ c->cookie) & c->cookie_mask)
3730 && (!rule_is_hidden(rule) || c->include_hidden)) {
3731 /* Rule matches all the criteria... */
3732 if (!rule_is_readonly(rule) || c->include_readonly) {
3733 /* ...add it. */
3734 rule_collection_add(rules, rule);
3735 } else {
3736 /* ...except it's read-only. */
3737 ++*n_readonly;
3738 }
3739 }
3740 }
3741
3742 /* Searches 'ofproto' for rules that match the criteria in 'criteria'. Matches
3743 * on classifiers rules are done in the "loose" way required for OpenFlow
3744 * OFPFC_MODIFY and OFPFC_DELETE requests. Puts the selected rules on list
3745 * 'rules'.
3746 *
3747 * Returns 0 on success, otherwise an OpenFlow error code. */
3748 static enum ofperr
3749 collect_rules_loose(struct ofproto *ofproto,
3750 const struct rule_criteria *criteria,
3751 struct rule_collection *rules)
3752 OVS_REQUIRES(ofproto_mutex)
3753 {
3754 struct oftable *table;
3755 enum ofperr error = 0;
3756 size_t n_readonly = 0;
3757
3758 rule_collection_init(rules);
3759
3760 if (!check_table_id(ofproto, criteria->table_id)) {
3761 error = OFPERR_OFPBRC_BAD_TABLE_ID;
3762 goto exit;
3763 }
3764
3765 if (criteria->cookie_mask == OVS_BE64_MAX) {
3766 struct rule *rule;
3767
3768 HINDEX_FOR_EACH_WITH_HASH (rule, cookie_node,
3769 hash_cookie(criteria->cookie),
3770 &ofproto->cookies) {
3771 if (cls_rule_is_loose_match(&rule->cr, &criteria->cr.match)) {
3772 collect_rule(rule, criteria, rules, &n_readonly);
3773 }
3774 }
3775 } else {
3776 FOR_EACH_MATCHING_TABLE (table, criteria->table_id, ofproto) {
3777 struct rule *rule;
3778
3779 CLS_FOR_EACH_TARGET (rule, cr, &table->cls, &criteria->cr) {
3780 collect_rule(rule, criteria, rules, &n_readonly);
3781 }
3782 }
3783 }
3784
3785 exit:
3786 if (!error && !rules->n && n_readonly) {
3787 /* We didn't find any rules to modify. We did find some read-only
3788 * rules that we're not allowed to modify, so report that. */
3789 error = OFPERR_OFPBRC_EPERM;
3790 }
3791 if (error) {
3792 rule_collection_destroy(rules);
3793 }
3794 return error;
3795 }
3796
3797 /* Searches 'ofproto' for rules that match the criteria in 'criteria'. Matches
3798 * on classifiers rules are done in the "strict" way required for OpenFlow
3799 * OFPFC_MODIFY_STRICT and OFPFC_DELETE_STRICT requests. Puts the selected
3800 * rules on list 'rules'.
3801 *
3802 * Returns 0 on success, otherwise an OpenFlow error code. */
3803 static enum ofperr
3804 collect_rules_strict(struct ofproto *ofproto,
3805 const struct rule_criteria *criteria,
3806 struct rule_collection *rules)
3807 OVS_REQUIRES(ofproto_mutex)
3808 {
3809 struct oftable *table;
3810 size_t n_readonly = 0;
3811 int error = 0;
3812
3813 rule_collection_init(rules);
3814
3815 if (!check_table_id(ofproto, criteria->table_id)) {
3816 error = OFPERR_OFPBRC_BAD_TABLE_ID;
3817 goto exit;
3818 }
3819
3820 if (criteria->cookie_mask == OVS_BE64_MAX) {
3821 struct rule *rule;
3822
3823 HINDEX_FOR_EACH_WITH_HASH (rule, cookie_node,
3824 hash_cookie(criteria->cookie),
3825 &ofproto->cookies) {
3826 if (cls_rule_equal(&rule->cr, &criteria->cr)) {
3827 collect_rule(rule, criteria, rules, &n_readonly);
3828 }
3829 }
3830 } else {
3831 FOR_EACH_MATCHING_TABLE (table, criteria->table_id, ofproto) {
3832 struct rule *rule;
3833
3834 rule = rule_from_cls_rule(classifier_find_rule_exactly(
3835 &table->cls, &criteria->cr));
3836 if (rule) {
3837 collect_rule(rule, criteria, rules, &n_readonly);
3838 }
3839 }
3840 }
3841
3842 exit:
3843 if (!error && !rules->n && n_readonly) {
3844 /* We didn't find any rules to modify. We did find some read-only
3845 * rules that we're not allowed to modify, so report that. */
3846 error = OFPERR_OFPBRC_EPERM;
3847 }
3848 if (error) {
3849 rule_collection_destroy(rules);
3850 }
3851 return error;
3852 }
3853
3854 /* Returns 'age_ms' (a duration in milliseconds), converted to seconds and
3855 * forced into the range of a uint16_t. */
3856 static int
3857 age_secs(long long int age_ms)
3858 {
3859 return (age_ms < 0 ? 0
3860 : age_ms >= UINT16_MAX * 1000 ? UINT16_MAX
3861 : (unsigned int) age_ms / 1000);
3862 }
3863
3864 static enum ofperr
3865 handle_flow_stats_request(struct ofconn *ofconn,
3866 const struct ofp_header *request)
3867 OVS_EXCLUDED(ofproto_mutex)
3868 {
3869 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
3870 struct ofputil_flow_stats_request fsr;
3871 struct rule_criteria criteria;
3872 struct rule_collection rules;
3873 struct ovs_list replies;
3874 enum ofperr error;
3875 size_t i;
3876
3877 error = ofputil_decode_flow_stats_request(&fsr, request);
3878 if (error) {
3879 return error;
3880 }
3881
3882 rule_criteria_init(&criteria, fsr.table_id, &fsr.match, 0, fsr.cookie,
3883 fsr.cookie_mask, fsr.out_port, fsr.out_group);
3884
3885 ovs_mutex_lock(&ofproto_mutex);
3886 error = collect_rules_loose(ofproto, &criteria, &rules);
3887 rule_criteria_destroy(&criteria);
3888 if (!error) {
3889 rule_collection_ref(&rules);
3890 }
3891 ovs_mutex_unlock(&ofproto_mutex);
3892
3893 if (error) {
3894 return error;
3895 }
3896
3897 ofpmp_init(&replies, request);
3898 for (i = 0; i < rules.n; i++) {
3899 struct rule *rule = rules.rules[i];
3900 long long int now = time_msec();
3901 struct ofputil_flow_stats fs;
3902 long long int created, used, modified;
3903 const struct rule_actions *actions;
3904 enum ofputil_flow_mod_flags flags;
3905
3906 ovs_mutex_lock(&rule->mutex);
3907 fs.cookie = rule->flow_cookie;
3908 fs.idle_timeout = rule->idle_timeout;
3909 fs.hard_timeout = rule->hard_timeout;
3910 fs.importance = rule->importance;
3911 created = rule->created;
3912 modified = rule->modified;
3913 actions = rule_get_actions(rule);
3914 flags = rule->flags;
3915 ovs_mutex_unlock(&rule->mutex);
3916
3917 ofproto->ofproto_class->rule_get_stats(rule, &fs.packet_count,
3918 &fs.byte_count, &used);
3919
3920 minimatch_expand(&rule->cr.match, &fs.match);
3921 fs.table_id = rule->table_id;
3922 calc_duration(created, now, &fs.duration_sec, &fs.duration_nsec);
3923 fs.priority = rule->cr.priority;
3924 fs.idle_age = age_secs(now - used);
3925 fs.hard_age = age_secs(now - modified);
3926 fs.ofpacts = actions->ofpacts;
3927 fs.ofpacts_len = actions->ofpacts_len;
3928
3929 fs.flags = flags;
3930 ofputil_append_flow_stats_reply(&fs, &replies);
3931 }
3932
3933 rule_collection_unref(&rules);
3934 rule_collection_destroy(&rules);
3935
3936 ofconn_send_replies(ofconn, &replies);
3937
3938 return 0;
3939 }
3940
3941 static void
3942 flow_stats_ds(struct rule *rule, struct ds *results)
3943 {
3944 uint64_t packet_count, byte_count;
3945 const struct rule_actions *actions;
3946 long long int created, used;
3947
3948 rule->ofproto->ofproto_class->rule_get_stats(rule, &packet_count,
3949 &byte_count, &used);
3950
3951 ovs_mutex_lock(&rule->mutex);
3952 actions = rule_get_actions(rule);
3953 created = rule->created;
3954 ovs_mutex_unlock(&rule->mutex);
3955
3956 if (rule->table_id != 0) {
3957 ds_put_format(results, "table_id=%"PRIu8", ", rule->table_id);
3958 }
3959 ds_put_format(results, "duration=%llds, ", (time_msec() - created) / 1000);
3960 ds_put_format(results, "n_packets=%"PRIu64", ", packet_count);
3961 ds_put_format(results, "n_bytes=%"PRIu64", ", byte_count);
3962 cls_rule_format(&rule->cr, results);
3963 ds_put_char(results, ',');
3964
3965 ds_put_cstr(results, "actions=");
3966 ofpacts_format(actions->ofpacts, actions->ofpacts_len, results);
3967
3968 ds_put_cstr(results, "\n");
3969 }
3970
3971 /* Adds a pretty-printed description of all flows to 'results', including
3972 * hidden flows (e.g., set up by in-band control). */
3973 void
3974 ofproto_get_all_flows(struct ofproto *p, struct ds *results)
3975 {
3976 struct oftable *table;
3977
3978 OFPROTO_FOR_EACH_TABLE (table, p) {
3979 struct rule *rule;
3980
3981 CLS_FOR_EACH (rule, cr, &table->cls) {
3982 flow_stats_ds(rule, results);
3983 }
3984 }
3985 }
3986
3987 /* Obtains the NetFlow engine type and engine ID for 'ofproto' into
3988 * '*engine_type' and '*engine_id', respectively. */
3989 void
3990 ofproto_get_netflow_ids(const struct ofproto *ofproto,
3991 uint8_t *engine_type, uint8_t *engine_id)
3992 {
3993 ofproto->ofproto_class->get_netflow_ids(ofproto, engine_type, engine_id);
3994 }
3995
3996 /* Checks the status change of CFM on 'ofport'.
3997 *
3998 * Returns true if 'ofproto_class' does not support 'cfm_status_changed'. */
3999 bool
4000 ofproto_port_cfm_status_changed(struct ofproto *ofproto, ofp_port_t ofp_port)
4001 {
4002 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
4003 return (ofport && ofproto->ofproto_class->cfm_status_changed
4004 ? ofproto->ofproto_class->cfm_status_changed(ofport)
4005 : true);
4006 }
4007
4008 /* Checks the status of CFM configured on 'ofp_port' within 'ofproto'.
4009 * Returns 0 if the port's CFM status was successfully stored into
4010 * '*status'. Returns positive errno if the port did not have CFM
4011 * configured.
4012 *
4013 * The caller must provide and own '*status', and must free 'status->rmps'.
4014 * '*status' is indeterminate if the return value is non-zero. */
4015 int
4016 ofproto_port_get_cfm_status(const struct ofproto *ofproto, ofp_port_t ofp_port,
4017 struct cfm_status *status)
4018 {
4019 struct ofport *ofport = ofproto_get_port(ofproto, ofp_port);
4020 return (ofport && ofproto->ofproto_class->get_cfm_status
4021 ? ofproto->ofproto_class->get_cfm_status(ofport, status)
4022 : EOPNOTSUPP);
4023 }
4024
4025 static enum ofperr
4026 handle_aggregate_stats_request(struct ofconn *ofconn,
4027 const struct ofp_header *oh)
4028 OVS_EXCLUDED(ofproto_mutex)
4029 {
4030 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
4031 struct ofputil_flow_stats_request request;
4032 struct ofputil_aggregate_stats stats;
4033 bool unknown_packets, unknown_bytes;
4034 struct rule_criteria criteria;
4035 struct rule_collection rules;
4036 struct ofpbuf *reply;
4037 enum ofperr error;
4038 size_t i;
4039
4040 error = ofputil_decode_flow_stats_request(&request, oh);
4041 if (error) {
4042 return error;
4043 }
4044
4045 rule_criteria_init(&criteria, request.table_id, &request.match, 0,
4046 request.cookie, request.cookie_mask,
4047 request.out_port, request.out_group);
4048
4049 ovs_mutex_lock(&ofproto_mutex);
4050 error = collect_rules_loose(ofproto, &criteria, &rules);
4051 rule_criteria_destroy(&criteria);
4052 if (!error) {
4053 rule_collection_ref(&rules);
4054 }
4055 ovs_mutex_unlock(&ofproto_mutex);
4056
4057 if (error) {
4058 return error;
4059 }
4060
4061 memset(&stats, 0, sizeof stats);
4062 unknown_packets = unknown_bytes = false;
4063 for (i = 0; i < rules.n; i++) {
4064 struct rule *rule = rules.rules[i];
4065 uint64_t packet_count;
4066 uint64_t byte_count;
4067 long long int used;
4068
4069 ofproto->ofproto_class->rule_get_stats(rule, &packet_count,
4070 &byte_count, &used);
4071
4072 if (packet_count == UINT64_MAX) {
4073 unknown_packets = true;
4074 } else {
4075 stats.packet_count += packet_count;
4076 }
4077
4078 if (byte_count == UINT64_MAX) {
4079 unknown_bytes = true;
4080 } else {
4081 stats.byte_count += byte_count;
4082 }
4083
4084 stats.flow_count++;
4085 }
4086 if (unknown_packets) {
4087 stats.packet_count = UINT64_MAX;
4088 }
4089 if (unknown_bytes) {
4090 stats.byte_count = UINT64_MAX;
4091 }
4092
4093 rule_collection_unref(&rules);
4094 rule_collection_destroy(&rules);
4095
4096 reply = ofputil_encode_aggregate_stats_reply(&stats, oh);
4097 ofconn_send_reply(ofconn, reply);
4098
4099 return 0;
4100 }
4101
4102 struct queue_stats_cbdata {
4103 struct ofport *ofport;
4104 struct ovs_list replies;
4105 long long int now;
4106 };
4107
4108 static void
4109 put_queue_stats(struct queue_stats_cbdata *cbdata, uint32_t queue_id,
4110 const struct netdev_queue_stats *stats)
4111 {
4112 struct ofputil_queue_stats oqs;
4113
4114 oqs.port_no = cbdata->ofport->pp.port_no;
4115 oqs.queue_id = queue_id;
4116 oqs.tx_bytes = stats->tx_bytes;
4117 oqs.tx_packets = stats->tx_packets;
4118 oqs.tx_errors = stats->tx_errors;
4119 if (stats->created != LLONG_MIN) {
4120 calc_duration(stats->created, cbdata->now,
4121 &oqs.duration_sec, &oqs.duration_nsec);
4122 } else {
4123 oqs.duration_sec = oqs.duration_nsec = UINT32_MAX;
4124 }
4125 ofputil_append_queue_stat(&cbdata->replies, &oqs);
4126 }
4127
4128 static void
4129 handle_queue_stats_dump_cb(uint32_t queue_id,
4130 struct netdev_queue_stats *stats,
4131 void *cbdata_)
4132 {
4133 struct queue_stats_cbdata *cbdata = cbdata_;
4134
4135 put_queue_stats(cbdata, queue_id, stats);
4136 }
4137
4138 static enum ofperr
4139 handle_queue_stats_for_port(struct ofport *port, uint32_t queue_id,
4140 struct queue_stats_cbdata *cbdata)
4141 {
4142 cbdata->ofport = port;
4143 if (queue_id == OFPQ_ALL) {
4144 netdev_dump_queue_stats(port->netdev,
4145 handle_queue_stats_dump_cb, cbdata);
4146 } else {
4147 struct netdev_queue_stats stats;
4148
4149 if (!netdev_get_queue_stats(port->netdev, queue_id, &stats)) {
4150 put_queue_stats(cbdata, queue_id, &stats);
4151 } else {
4152 return OFPERR_OFPQOFC_BAD_QUEUE;
4153 }
4154 }
4155 return 0;
4156 }
4157
4158 static enum ofperr
4159 handle_queue_stats_request(struct ofconn *ofconn,
4160 const struct ofp_header *rq)
4161 {
4162 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
4163 struct queue_stats_cbdata cbdata;
4164 struct ofport *port;
4165 enum ofperr error;
4166 struct ofputil_queue_stats_request oqsr;
4167
4168 COVERAGE_INC(ofproto_queue_req);
4169
4170 ofpmp_init(&cbdata.replies, rq);
4171 cbdata.now = time_msec();
4172
4173 error = ofputil_decode_queue_stats_request(rq, &oqsr);
4174 if (error) {
4175 return error;
4176 }
4177
4178 if (oqsr.port_no == OFPP_ANY) {
4179 error = OFPERR_OFPQOFC_BAD_QUEUE;
4180 HMAP_FOR_EACH (port, hmap_node, &ofproto->ports) {
4181 if (!handle_queue_stats_for_port(port, oqsr.queue_id, &cbdata)) {
4182 error = 0;
4183 }
4184 }
4185 } else {
4186 port = ofproto_get_port(ofproto, oqsr.port_no);
4187 error = (port
4188 ? handle_queue_stats_for_port(port, oqsr.queue_id, &cbdata)
4189 : OFPERR_OFPQOFC_BAD_PORT);
4190 }
4191 if (!error) {
4192 ofconn_send_replies(ofconn, &cbdata.replies);
4193 } else {
4194 ofpbuf_list_delete(&cbdata.replies);
4195 }
4196
4197 return error;
4198 }
4199
4200 static enum ofperr
4201 evict_rules_from_table(struct oftable *table, unsigned int extra_space)
4202 OVS_REQUIRES(ofproto_mutex)
4203 {
4204 enum ofperr error = 0;
4205 struct rule_collection rules;
4206 unsigned int count = classifier_count(&table->cls) + extra_space;
4207 unsigned int max_flows = table->max_flows;
4208
4209 rule_collection_init(&rules);
4210
4211 while (count-- > max_flows) {
4212 struct rule *rule;
4213
4214 if (!choose_rule_to_evict(table, &rule)) {
4215 error = OFPERR_OFPFMFC_TABLE_FULL;
4216 break;
4217 } else {
4218 eviction_group_remove_rule(rule);
4219 rule_collection_add(&rules, rule);
4220 }
4221 }
4222 delete_flows__(&rules, OFPRR_EVICTION, NULL);
4223 rule_collection_destroy(&rules);
4224
4225 return error;
4226 }
4227
4228 static bool
4229 is_conjunction(const struct ofpact *ofpacts, size_t ofpacts_len)
4230 {
4231 return ofpacts_len > 0 && ofpacts->type == OFPACT_CONJUNCTION;
4232 }
4233
4234 static void
4235 get_conjunctions(const struct ofputil_flow_mod *fm,
4236 struct cls_conjunction **conjsp, size_t *n_conjsp)
4237 OVS_REQUIRES(ofproto_mutex)
4238 {
4239 struct cls_conjunction *conjs = NULL;
4240 int n_conjs = 0;
4241
4242 if (is_conjunction(fm->ofpacts, fm->ofpacts_len)) {
4243 const struct ofpact *ofpact;
4244 int i;
4245
4246 n_conjs = 0;
4247 OFPACT_FOR_EACH (ofpact, fm->ofpacts, fm->ofpacts_len) {
4248 n_conjs++;
4249 }
4250
4251 conjs = xzalloc(n_conjs * sizeof *conjs);
4252 i = 0;
4253 OFPACT_FOR_EACH (ofpact, fm->ofpacts, fm->ofpacts_len) {
4254 struct ofpact_conjunction *oc = ofpact_get_CONJUNCTION(ofpact);
4255 conjs[i].clause = oc->clause;
4256 conjs[i].n_clauses = oc->n_clauses;
4257 conjs[i].id = oc->id;
4258 i++;
4259 }
4260 }
4261
4262 *conjsp = conjs;
4263 *n_conjsp = n_conjs;
4264 }
4265
4266 static void
4267 set_conjunctions(struct rule *rule, const struct cls_conjunction *conjs,
4268 size_t n_conjs)
4269 OVS_REQUIRES(ofproto_mutex)
4270 {
4271 struct cls_rule *cr = CONST_CAST(struct cls_rule *, &rule->cr);
4272
4273 cls_rule_set_conjunctions(cr, conjs, n_conjs);
4274 }
4275
4276 /* Implements OFPFC_ADD and the cases for OFPFC_MODIFY and OFPFC_MODIFY_STRICT
4277 * in which no matching flow already exists in the flow table.
4278 *
4279 * Adds the flow specified by 'ofm', which is followed by 'n_actions'
4280 * ofp_actions, to the ofproto's flow table. Returns 0 on success, an OpenFlow
4281 * error code on failure, or OFPROTO_POSTPONE if the operation cannot be
4282 * initiated now but may be retried later.
4283 *
4284 * The caller retains ownership of 'fm->ofpacts'.
4285 *
4286 * 'ofconn' is used to retrieve the packet buffer specified in ofm->buffer_id,
4287 * if any. */
4288 static enum ofperr
4289 add_flow(struct ofproto *ofproto, struct ofputil_flow_mod *fm,
4290 const struct flow_mod_requester *req)
4291 OVS_REQUIRES(ofproto_mutex)
4292 {
4293 const struct rule_actions *actions;
4294 struct oftable *table;
4295 struct cls_rule cr;
4296 struct rule *rule;
4297 uint8_t table_id;
4298 int error = 0;
4299
4300 if (!check_table_id(ofproto, fm->table_id)) {
4301 error = OFPERR_OFPBRC_BAD_TABLE_ID;
4302 return error;
4303 }
4304
4305 /* Pick table. */
4306 if (fm->table_id == 0xff) {
4307 if (ofproto->ofproto_class->rule_choose_table) {
4308 error = ofproto->ofproto_class->rule_choose_table(ofproto,
4309 &fm->match,
4310 &table_id);
4311 if (error) {
4312 return error;
4313 }
4314 ovs_assert(table_id < ofproto->n_tables);
4315 } else {
4316 table_id = 0;
4317 }
4318 } else if (fm->table_id < ofproto->n_tables) {
4319 table_id = fm->table_id;
4320 } else {
4321 return OFPERR_OFPBRC_BAD_TABLE_ID;
4322 }
4323
4324 table = &ofproto->tables[table_id];
4325 if (table->flags & OFTABLE_READONLY
4326 && !(fm->flags & OFPUTIL_FF_NO_READONLY)) {
4327 return OFPERR_OFPBRC_EPERM;
4328 }
4329
4330 if (!(fm->flags & OFPUTIL_FF_HIDDEN_FIELDS)) {
4331 if (!match_has_default_hidden_fields(&fm->match)) {
4332 VLOG_WARN_RL(&rl, "%s: (add_flow) only internal flows can set "
4333 "non-default values to hidden fields", ofproto->name);
4334 return OFPERR_OFPBRC_EPERM;
4335 }
4336 }
4337
4338 cls_rule_init(&cr, &fm->match, fm->priority);
4339
4340 /* Transform "add" into "modify" if there's an existing identical flow. */
4341 rule = rule_from_cls_rule(classifier_find_rule_exactly(&table->cls, &cr));
4342 if (rule) {
4343 struct rule_collection rules;
4344
4345 cls_rule_destroy(&cr);
4346
4347 rule_collection_init(&rules);
4348 rule_collection_add(&rules, rule);
4349 fm->modify_cookie = true;
4350 error = modify_flows__(ofproto, fm, &rules, req);
4351 rule_collection_destroy(&rules);
4352
4353 return error;
4354 }
4355
4356 /* Check for overlap, if requested. */
4357 if (fm->flags & OFPUTIL_FF_CHECK_OVERLAP) {
4358 if (classifier_rule_overlaps(&table->cls, &cr)) {
4359 cls_rule_destroy(&cr);
4360 return OFPERR_OFPFMFC_OVERLAP;
4361 }
4362 }
4363
4364 /* If necessary, evict an existing rule to clear out space. */
4365 error = evict_rules_from_table(table, 1);
4366 if (error) {
4367 cls_rule_destroy(&cr);
4368 return error;
4369 }
4370
4371 /* Allocate new rule. */
4372 rule = ofproto->ofproto_class->rule_alloc();
4373 if (!rule) {
4374 cls_rule_destroy(&cr);
4375 VLOG_WARN_RL(&rl, "%s: failed to create rule (%s)",
4376 ofproto->name, ovs_strerror(error));
4377 return ENOMEM;
4378 }
4379
4380 /* Initialize base state. */
4381 *CONST_CAST(struct ofproto **, &rule->ofproto) = ofproto;
4382 cls_rule_move(CONST_CAST(struct cls_rule *, &rule->cr), &cr);
4383 ovs_refcount_init(&rule->ref_count);
4384 rule->flow_cookie = fm->new_cookie;
4385 rule->created = rule->modified = time_msec();
4386
4387 ovs_mutex_init(&rule->mutex);
4388 ovs_mutex_lock(&rule->mutex);
4389 rule->idle_timeout = fm->idle_timeout;
4390 rule->hard_timeout = fm->hard_timeout;
4391 rule->importance = fm->importance;
4392 ovs_mutex_unlock(&rule->mutex);
4393
4394 *CONST_CAST(uint8_t *, &rule->table_id) = table - ofproto->tables;
4395 rule->flags = fm->flags & OFPUTIL_FF_STATE;
4396 actions = rule_actions_create(fm->ofpacts, fm->ofpacts_len);
4397 ovsrcu_set(&rule->actions, actions);
4398 list_init(&rule->meter_list_node);
4399 rule->eviction_group = NULL;
4400 list_init(&rule->expirable);
4401 rule->monitor_flags = 0;
4402 rule->add_seqno = 0;
4403 rule->modify_seqno = 0;
4404
4405 /* Construct rule, initializing derived state. */
4406 error = ofproto->ofproto_class->rule_construct(rule);
4407 if (error) {
4408 ofproto_rule_destroy__(rule);
4409 return error;
4410 }
4411
4412 if (fm->hard_timeout || fm->idle_timeout) {
4413 list_insert(&ofproto->expirable, &rule->expirable);
4414 }
4415 cookies_insert(ofproto, rule);
4416 eviction_group_add_rule(rule);
4417 if (actions->has_meter) {
4418 meter_insert_rule(rule);
4419 }
4420
4421 classifier_defer(&table->cls);
4422
4423 struct cls_conjunction *conjs;
4424 size_t n_conjs;
4425 get_conjunctions(fm, &conjs, &n_conjs);
4426 classifier_insert(&table->cls, &rule->cr, conjs, n_conjs);
4427 free(conjs);
4428
4429 error = ofproto->ofproto_class->rule_insert(rule);
4430 if (error) {
4431 oftable_remove_rule(rule);
4432 ofproto_rule_unref(rule);
4433 return error;
4434 }
4435 classifier_publish(&table->cls);
4436
4437 learned_cookies_inc(ofproto, actions);
4438
4439 if (minimask_get_vid_mask(&rule->cr.match.mask) == VLAN_VID_MASK) {
4440 if (ofproto->vlan_bitmap) {
4441 uint16_t vid = miniflow_get_vid(&rule->cr.match.flow);
4442 if (!bitmap_is_set(ofproto->vlan_bitmap, vid)) {
4443 bitmap_set1(ofproto->vlan_bitmap, vid);
4444 ofproto->vlans_changed = true;
4445 }
4446 } else {
4447 ofproto->vlans_changed = true;
4448 }
4449 }
4450
4451 ofmonitor_report(ofproto->connmgr, rule, NXFME_ADDED, 0,
4452 req ? req->ofconn : NULL, req ? req->xid : 0, NULL);
4453
4454 return req ? send_buffered_packet(req->ofconn, fm->buffer_id, rule) : 0;
4455 }
4456 \f
4457 /* OFPFC_MODIFY and OFPFC_MODIFY_STRICT. */
4458
4459 /* Modifies the rules listed in 'rules', changing their actions to match those
4460 * in 'fm'.
4461 *
4462 * 'ofconn' is used to retrieve the packet buffer specified in fm->buffer_id,
4463 * if any.
4464 *
4465 * Returns 0 on success, otherwise an OpenFlow error code. */
4466 static enum ofperr
4467 modify_flows__(struct ofproto *ofproto, struct ofputil_flow_mod *fm,
4468 const struct rule_collection *rules,
4469 const struct flow_mod_requester *req)
4470 OVS_REQUIRES(ofproto_mutex)
4471 {
4472 struct ovs_list dead_cookies = OVS_LIST_INITIALIZER(&dead_cookies);
4473 enum nx_flow_update_event event;
4474 size_t i;
4475
4476 if (ofproto->ofproto_class->rule_premodify_actions) {
4477 for (i = 0; i < rules->n; i++) {
4478 struct rule *rule = rules->rules[i];
4479 enum ofperr error;
4480
4481 error = ofproto->ofproto_class->rule_premodify_actions(
4482 rule, fm->ofpacts, fm->ofpacts_len);
4483 if (error) {
4484 return error;
4485 }
4486 }
4487 }
4488
4489 event = fm->command == OFPFC_ADD ? NXFME_ADDED : NXFME_MODIFIED;
4490 for (i = 0; i < rules->n; i++) {
4491 struct rule *rule = rules->rules[i];
4492
4493 /* 'fm' says that */
4494 bool change_cookie = (fm->modify_cookie
4495 && fm->new_cookie != OVS_BE64_MAX
4496 && fm->new_cookie != rule->flow_cookie);
4497
4498 const struct rule_actions *actions = rule_get_actions(rule);
4499 bool change_actions = !ofpacts_equal(fm->ofpacts, fm->ofpacts_len,
4500 actions->ofpacts,
4501 actions->ofpacts_len);
4502
4503 bool reset_counters = (fm->flags & OFPUTIL_FF_RESET_COUNTS) != 0;
4504
4505 long long int now = time_msec();
4506
4507 if (change_cookie) {
4508 cookies_remove(ofproto, rule);
4509 }
4510
4511 ovs_mutex_lock(&rule->mutex);
4512 if (fm->command == OFPFC_ADD) {
4513 rule->idle_timeout = fm->idle_timeout;
4514 rule->hard_timeout = fm->hard_timeout;
4515 rule->importance = fm->importance;
4516 rule->flags = fm->flags & OFPUTIL_FF_STATE;
4517 rule->created = now;
4518 }
4519 if (change_cookie) {
4520 rule->flow_cookie = fm->new_cookie;
4521 }
4522 rule->modified = now;
4523 ovs_mutex_unlock(&rule->mutex);
4524
4525 if (change_cookie) {
4526 cookies_insert(ofproto, rule);
4527 }
4528 if (fm->command == OFPFC_ADD) {
4529 if (fm->idle_timeout || fm->hard_timeout || fm->importance) {
4530 if (!rule->eviction_group) {
4531 eviction_group_add_rule(rule);
4532 }
4533 } else {
4534 eviction_group_remove_rule(rule);
4535 }
4536 }
4537
4538 if (change_actions) {
4539 /* We have to change the actions. The rule's conjunctive match set
4540 * is a function of its actions, so we need to update that too. The
4541 * conjunctive match set is used in the lookup process to figure
4542 * which (if any) collection of conjunctive sets the packet matches
4543 * with. However, a rule with conjunction actions is never to be
4544 * returned as a classifier lookup result. To make sure a rule with
4545 * conjunction actions is not returned as a lookup result, we update
4546 * them in a carefully chosen order:
4547 *
4548 * - If we're adding a conjunctive match set where there wasn't one
4549 * before, we have to make the conjunctive match set available to
4550 * lookups before the rule's actions are changed, as otherwise
4551 * rule with a conjunction action could be returned as a lookup
4552 * result.
4553 *
4554 * - To clear some nonempty conjunctive set, we set the rule's
4555 * actions first, so that a lookup can't return a rule with
4556 * conjunction actions.
4557 *
4558 * - Otherwise, order doesn't matter for changing one nonempty
4559 * conjunctive match set to some other nonempty set, since the
4560 * rule's actions are not seen by the classifier, and hence don't
4561 * matter either before or after the change. */
4562 struct cls_conjunction *conjs;
4563 size_t n_conjs;
4564 get_conjunctions(fm, &conjs, &n_conjs);
4565
4566 if (n_conjs) {
4567 set_conjunctions(rule, conjs, n_conjs);
4568 }
4569 ovsrcu_set(&rule->actions, rule_actions_create(fm->ofpacts,
4570 fm->ofpacts_len));
4571 if (!conjs) {
4572 set_conjunctions(rule, conjs, n_conjs);
4573 }
4574
4575 free(conjs);
4576 }
4577
4578 if (change_actions || reset_counters) {
4579 ofproto->ofproto_class->rule_modify_actions(rule, reset_counters);
4580 }
4581
4582 if (event != NXFME_MODIFIED || change_actions || change_cookie) {
4583 ofmonitor_report(ofproto->connmgr, rule, event, 0,
4584 req ? req->ofconn : NULL, req ? req->xid : 0,
4585 change_actions ? actions : NULL);
4586 }
4587
4588 if (change_actions) {
4589 learned_cookies_inc(ofproto, rule_get_actions(rule));
4590 learned_cookies_dec(ofproto, actions, &dead_cookies);
4591 rule_actions_destroy(actions);
4592 }
4593 }
4594 learned_cookies_flush(ofproto, &dead_cookies);
4595
4596 if (fm->buffer_id != UINT32_MAX && req) {
4597 return send_buffered_packet(req->ofconn, fm->buffer_id,
4598 rules->rules[0]);
4599 }
4600
4601 return 0;
4602 }
4603
4604 static enum ofperr
4605 modify_flows_add(struct ofproto *ofproto, struct ofputil_flow_mod *fm,
4606 const struct flow_mod_requester *req)
4607 OVS_REQUIRES(ofproto_mutex)
4608 {
4609 if (fm->cookie_mask != htonll(0) || fm->new_cookie == OVS_BE64_MAX) {
4610 return 0;
4611 }
4612 return add_flow(ofproto, fm, req);
4613 }
4614
4615 /* Implements OFPFC_MODIFY. Returns 0 on success or an OpenFlow error code on
4616 * failure.
4617 *
4618 * 'ofconn' is used to retrieve the packet buffer specified in fm->buffer_id,
4619 * if any. */
4620 static enum ofperr
4621 modify_flows_loose(struct ofproto *ofproto, struct ofputil_flow_mod *fm,
4622 const struct flow_mod_requester *req)
4623 OVS_REQUIRES(ofproto_mutex)
4624 {
4625 struct rule_criteria criteria;
4626 struct rule_collection rules;
4627 int error;
4628
4629 rule_criteria_init(&criteria, fm->table_id, &fm->match, 0,
4630 fm->cookie, fm->cookie_mask, OFPP_ANY, OFPG11_ANY);
4631 rule_criteria_require_rw(&criteria,
4632 (fm->flags & OFPUTIL_FF_NO_READONLY) != 0);
4633 error = collect_rules_loose(ofproto, &criteria, &rules);
4634 rule_criteria_destroy(&criteria);
4635
4636 if (!error) {
4637 error = (rules.n > 0
4638 ? modify_flows__(ofproto, fm, &rules, req)
4639 : modify_flows_add(ofproto, fm, req));
4640 }
4641
4642 rule_collection_destroy(&rules);
4643
4644 return error;
4645 }
4646
4647 /* Implements OFPFC_MODIFY_STRICT. Returns 0 on success or an OpenFlow error
4648 * code on failure. */
4649 static enum ofperr
4650 modify_flow_strict(struct ofproto *ofproto, struct ofputil_flow_mod *fm,
4651 const struct flow_mod_requester *req)
4652 OVS_REQUIRES(ofproto_mutex)
4653 {
4654 struct rule_criteria criteria;
4655 struct rule_collection rules;
4656 int error;
4657
4658 rule_criteria_init(&criteria, fm->table_id, &fm->match, fm->priority,
4659 fm->cookie, fm->cookie_mask, OFPP_ANY, OFPG11_ANY);
4660 rule_criteria_require_rw(&criteria,
4661 (fm->flags & OFPUTIL_FF_NO_READONLY) != 0);
4662 error = collect_rules_strict(ofproto, &criteria, &rules);
4663 rule_criteria_destroy(&criteria);
4664
4665 if (!error) {
4666 if (rules.n == 0) {
4667 error = modify_flows_add(ofproto, fm, req);
4668 } else if (rules.n == 1) {
4669 error = modify_flows__(ofproto, fm, &rules, req);
4670 }
4671 }
4672
4673 rule_collection_destroy(&rules);
4674
4675 return error;
4676 }
4677 \f
4678 /* OFPFC_DELETE implementation. */
4679
4680 /* Deletes the rules listed in 'rules'. */
4681 static void
4682 delete_flows__(const struct rule_collection *rules,
4683 enum ofp_flow_removed_reason reason,
4684 const struct flow_mod_requester *req)
4685 OVS_REQUIRES(ofproto_mutex)
4686 {
4687 if (rules->n) {
4688 struct ovs_list dead_cookies = OVS_LIST_INITIALIZER(&dead_cookies);
4689 struct ofproto *ofproto = rules->rules[0]->ofproto;
4690 struct rule *rule, *next;
4691 size_t i;
4692
4693 for (i = 0, next = rules->rules[0];
4694 rule = next, next = (++i < rules->n) ? rules->rules[i] : NULL,
4695 rule; ) {
4696 struct classifier *cls = &ofproto->tables[rule->table_id].cls;
4697 uint8_t next_table = next ? next->table_id : UINT8_MAX;
4698
4699 ofproto_rule_send_removed(rule, reason);
4700
4701 ofmonitor_report(ofproto->connmgr, rule, NXFME_DELETED, reason,
4702 req ? req->ofconn : NULL, req ? req->xid : 0,
4703 NULL);
4704
4705 if (next_table == rule->table_id) {
4706 classifier_defer(cls);
4707 }
4708 classifier_remove(cls, &rule->cr);
4709 if (next_table != rule->table_id) {
4710 classifier_publish(cls);
4711 }
4712 ofproto_rule_remove__(ofproto, rule);
4713
4714 ofproto->ofproto_class->rule_delete(rule);
4715
4716 learned_cookies_dec(ofproto, rule_get_actions(rule),
4717 &dead_cookies);
4718
4719 ofproto_rule_unref(rule);
4720 }
4721 learned_cookies_flush(ofproto, &dead_cookies);
4722 ofmonitor_flush(ofproto->connmgr);
4723 }
4724 }
4725
4726 /* Implements OFPFC_DELETE. */
4727 static enum ofperr
4728 delete_flows_loose(struct ofproto *ofproto,
4729 const struct ofputil_flow_mod *fm,
4730 const struct flow_mod_requester *req)
4731 OVS_REQUIRES(ofproto_mutex)
4732 {
4733 struct rule_criteria criteria;
4734 struct rule_collection rules;
4735 enum ofperr error;
4736
4737 rule_criteria_init(&criteria, fm->table_id, &fm->match, 0,
4738 fm->cookie, fm->cookie_mask,
4739 fm->out_port, fm->out_group);
4740 rule_criteria_require_rw(&criteria,
4741 (fm->flags & OFPUTIL_FF_NO_READONLY) != 0);
4742 error = collect_rules_loose(ofproto, &criteria, &rules);
4743 rule_criteria_destroy(&criteria);
4744
4745 if (!error) {
4746 delete_flows__(&rules, fm->delete_reason, req);
4747 }
4748 rule_collection_destroy(&rules);
4749
4750 return error;
4751 }
4752
4753 /* Implements OFPFC_DELETE_STRICT. */
4754 static enum ofperr
4755 delete_flow_strict(struct ofproto *ofproto, const struct ofputil_flow_mod *fm,
4756 const struct flow_mod_requester *req)
4757 OVS_REQUIRES(ofproto_mutex)
4758 {
4759 struct rule_criteria criteria;
4760 struct rule_collection rules;
4761 enum ofperr error;
4762
4763 rule_criteria_init(&criteria, fm->table_id, &fm->match, fm->priority,
4764 fm->cookie, fm->cookie_mask,
4765 fm->out_port, fm->out_group);
4766 rule_criteria_require_rw(&criteria,
4767 (fm->flags & OFPUTIL_FF_NO_READONLY) != 0);
4768 error = collect_rules_strict(ofproto, &criteria, &rules);
4769 rule_criteria_destroy(&criteria);
4770
4771 if (!error) {
4772 delete_flows__(&rules, fm->delete_reason, req);
4773 }
4774 rule_collection_destroy(&rules);
4775
4776 return error;
4777 }
4778
4779 static void
4780 ofproto_rule_send_removed(struct rule *rule, uint8_t reason)
4781 OVS_REQUIRES(ofproto_mutex)
4782 {
4783 struct ofputil_flow_removed fr;
4784 long long int used;
4785
4786 if (rule_is_hidden(rule) ||
4787 !(rule->flags & OFPUTIL_FF_SEND_FLOW_REM)) {
4788 return;
4789 }
4790
4791 minimatch_expand(&rule->cr.match, &fr.match);
4792 fr.priority = rule->cr.priority;
4793 fr.cookie = rule->flow_cookie;
4794 fr.reason = reason;
4795 fr.table_id = rule->table_id;
4796 calc_duration(rule->created, time_msec(),
4797 &fr.duration_sec, &fr.duration_nsec);
4798 ovs_mutex_lock(&rule->mutex);
4799 fr.idle_timeout = rule->idle_timeout;
4800 fr.hard_timeout = rule->hard_timeout;
4801 ovs_mutex_unlock(&rule->mutex);
4802 rule->ofproto->ofproto_class->rule_get_stats(rule, &fr.packet_count,
4803 &fr.byte_count, &used);
4804
4805 connmgr_send_flow_removed(rule->ofproto->connmgr, &fr);
4806 }
4807
4808 /* Sends an OpenFlow "flow removed" message with the given 'reason' (either
4809 * OFPRR_HARD_TIMEOUT or OFPRR_IDLE_TIMEOUT), and then removes 'rule' from its
4810 * ofproto.
4811 *
4812 * ofproto implementation ->run() functions should use this function to expire
4813 * OpenFlow flows. */
4814 void
4815 ofproto_rule_expire(struct rule *rule, uint8_t reason)
4816 OVS_REQUIRES(ofproto_mutex)
4817 {
4818 struct rule_collection rules;
4819
4820 rules.rules = rules.stub;
4821 rules.n = 1;
4822 rules.stub[0] = rule;
4823 delete_flows__(&rules, reason, NULL);
4824 }
4825
4826 /* Reduces '*timeout' to no more than 'max'. A value of zero in either case
4827 * means "infinite". */
4828 static void
4829 reduce_timeout(uint16_t max, uint16_t *timeout)
4830 {
4831 if (max && (!*timeout || *timeout > max)) {
4832 *timeout = max;
4833 }
4834 }
4835
4836 /* If 'idle_timeout' is nonzero, and 'rule' has no idle timeout or an idle
4837 * timeout greater than 'idle_timeout', lowers 'rule''s idle timeout to
4838 * 'idle_timeout' seconds. Similarly for 'hard_timeout'.
4839 *
4840 * Suitable for implementing OFPACT_FIN_TIMEOUT. */
4841 void
4842 ofproto_rule_reduce_timeouts(struct rule *rule,
4843 uint16_t idle_timeout, uint16_t hard_timeout)
4844 OVS_EXCLUDED(ofproto_mutex, rule->mutex)
4845 {
4846 if (!idle_timeout && !hard_timeout) {
4847 return;
4848 }
4849
4850 ovs_mutex_lock(&ofproto_mutex);
4851 if (list_is_empty(&rule->expirable)) {
4852 list_insert(&rule->ofproto->expirable, &rule->expirable);
4853 }
4854 ovs_mutex_unlock(&ofproto_mutex);
4855
4856 ovs_mutex_lock(&rule->mutex);
4857 reduce_timeout(idle_timeout, &rule->idle_timeout);
4858 reduce_timeout(hard_timeout, &rule->hard_timeout);
4859 ovs_mutex_unlock(&rule->mutex);
4860 }
4861 \f
4862 static enum ofperr
4863 handle_flow_mod(struct ofconn *ofconn, const struct ofp_header *oh)
4864 OVS_EXCLUDED(ofproto_mutex)
4865 {
4866 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
4867 struct ofputil_flow_mod fm;
4868 uint64_t ofpacts_stub[1024 / 8];
4869 struct ofpbuf ofpacts;
4870 enum ofperr error;
4871
4872 error = reject_slave_controller(ofconn);
4873 if (error) {
4874 goto exit;
4875 }
4876
4877 ofpbuf_use_stub(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
4878 error = ofputil_decode_flow_mod(&fm, oh, ofconn_get_protocol(ofconn),
4879 &ofpacts,
4880 u16_to_ofp(ofproto->max_ports),
4881 ofproto->n_tables);
4882 if (!error) {
4883 error = ofproto_check_ofpacts(ofproto, fm.ofpacts, fm.ofpacts_len);
4884 }
4885 if (!error) {
4886 struct flow_mod_requester req;
4887
4888 req.ofconn = ofconn;
4889 req.xid = oh->xid;
4890 error = handle_flow_mod__(ofproto, &fm, &req);
4891 }
4892 if (error) {
4893 goto exit_free_ofpacts;
4894 }
4895
4896 ofconn_report_flow_mod(ofconn, fm.command);
4897
4898 exit_free_ofpacts:
4899 ofpbuf_uninit(&ofpacts);
4900 exit:
4901 return error;
4902 }
4903
4904 static enum ofperr
4905 handle_flow_mod__(struct ofproto *ofproto, struct ofputil_flow_mod *fm,
4906 const struct flow_mod_requester *req)
4907 OVS_EXCLUDED(ofproto_mutex)
4908 {
4909 enum ofperr error;
4910
4911 ovs_mutex_lock(&ofproto_mutex);
4912 switch (fm->command) {
4913 case OFPFC_ADD:
4914 error = add_flow(ofproto, fm, req);
4915 break;
4916
4917 case OFPFC_MODIFY:
4918 error = modify_flows_loose(ofproto, fm, req);
4919 break;
4920
4921 case OFPFC_MODIFY_STRICT:
4922 error = modify_flow_strict(ofproto, fm, req);
4923 break;
4924
4925 case OFPFC_DELETE:
4926 error = delete_flows_loose(ofproto, fm, req);
4927 break;
4928
4929 case OFPFC_DELETE_STRICT:
4930 error = delete_flow_strict(ofproto, fm, req);
4931 break;
4932
4933 default:
4934 if (fm->command > 0xff) {
4935 VLOG_WARN_RL(&rl, "%s: flow_mod has explicit table_id but "
4936 "flow_mod_table_id extension is not enabled",
4937 ofproto->name);
4938 }
4939 error = OFPERR_OFPFMFC_BAD_COMMAND;
4940 break;
4941 }
4942 ofmonitor_flush(ofproto->connmgr);
4943 ovs_mutex_unlock(&ofproto_mutex);
4944
4945 run_rule_executes(ofproto);
4946 return error;
4947 }
4948
4949 static enum ofperr
4950 handle_role_request(struct ofconn *ofconn, const struct ofp_header *oh)
4951 {
4952 struct ofputil_role_request request;
4953 struct ofputil_role_request reply;
4954 struct ofpbuf *buf;
4955 enum ofperr error;
4956
4957 error = ofputil_decode_role_message(oh, &request);
4958 if (error) {
4959 return error;
4960 }
4961
4962 if (request.role != OFPCR12_ROLE_NOCHANGE) {
4963 if (request.have_generation_id
4964 && !ofconn_set_master_election_id(ofconn, request.generation_id)) {
4965 return OFPERR_OFPRRFC_STALE;
4966 }
4967
4968 ofconn_set_role(ofconn, request.role);
4969 }
4970
4971 reply.role = ofconn_get_role(ofconn);
4972 reply.have_generation_id = ofconn_get_master_election_id(
4973 ofconn, &reply.generation_id);
4974 buf = ofputil_encode_role_reply(oh, &reply);
4975 ofconn_send_reply(ofconn, buf);
4976
4977 return 0;
4978 }
4979
4980 static enum ofperr
4981 handle_nxt_flow_mod_table_id(struct ofconn *ofconn,
4982 const struct ofp_header *oh)
4983 {
4984 const struct nx_flow_mod_table_id *msg = ofpmsg_body(oh);
4985 enum ofputil_protocol cur, next;
4986
4987 cur = ofconn_get_protocol(ofconn);
4988 next = ofputil_protocol_set_tid(cur, msg->set != 0);
4989 ofconn_set_protocol(ofconn, next);
4990
4991 return 0;
4992 }
4993
4994 static enum ofperr
4995 handle_nxt_set_flow_format(struct ofconn *ofconn, const struct ofp_header *oh)
4996 {
4997 const struct nx_set_flow_format *msg = ofpmsg_body(oh);
4998 enum ofputil_protocol cur, next;
4999 enum ofputil_protocol next_base;
5000
5001 next_base = ofputil_nx_flow_format_to_protocol(ntohl(msg->format));
5002 if (!next_base) {
5003 return OFPERR_OFPBRC_EPERM;
5004 }
5005
5006 cur = ofconn_get_protocol(ofconn);
5007 next = ofputil_protocol_set_base(cur, next_base);
5008 ofconn_set_protocol(ofconn, next);
5009
5010 return 0;
5011 }
5012
5013 static enum ofperr
5014 handle_nxt_set_packet_in_format(struct ofconn *ofconn,
5015 const struct ofp_header *oh)
5016 {
5017 const struct nx_set_packet_in_format *msg = ofpmsg_body(oh);
5018 uint32_t format;
5019
5020 format = ntohl(msg->format);
5021 if (format != NXPIF_OPENFLOW10 && format != NXPIF_NXM) {
5022 return OFPERR_OFPBRC_EPERM;
5023 }
5024
5025 ofconn_set_packet_in_format(ofconn, format);
5026 return 0;
5027 }
5028
5029 static enum ofperr
5030 handle_nxt_set_async_config(struct ofconn *ofconn, const struct ofp_header *oh)
5031 {
5032 const struct nx_async_config *msg = ofpmsg_body(oh);
5033 uint32_t master[OAM_N_TYPES];
5034 uint32_t slave[OAM_N_TYPES];
5035
5036 master[OAM_PACKET_IN] = ntohl(msg->packet_in_mask[0]);
5037 master[OAM_PORT_STATUS] = ntohl(msg->port_status_mask[0]);
5038 master[OAM_FLOW_REMOVED] = ntohl(msg->flow_removed_mask[0]);
5039
5040 slave[OAM_PACKET_IN] = ntohl(msg->packet_in_mask[1]);
5041 slave[OAM_PORT_STATUS] = ntohl(msg->port_status_mask[1]);
5042 slave[OAM_FLOW_REMOVED] = ntohl(msg->flow_removed_mask[1]);
5043
5044 ofconn_set_async_config(ofconn, master, slave);
5045 if (ofconn_get_type(ofconn) == OFCONN_SERVICE &&
5046 !ofconn_get_miss_send_len(ofconn)) {
5047 ofconn_set_miss_send_len(ofconn, OFP_DEFAULT_MISS_SEND_LEN);
5048 }
5049
5050 return 0;
5051 }
5052
5053 static enum ofperr
5054 handle_nxt_get_async_request(struct ofconn *ofconn, const struct ofp_header *oh)
5055 {
5056 struct ofpbuf *buf;
5057 uint32_t master[OAM_N_TYPES];
5058 uint32_t slave[OAM_N_TYPES];
5059 struct nx_async_config *msg;
5060
5061 ofconn_get_async_config(ofconn, master, slave);
5062 buf = ofpraw_alloc_reply(OFPRAW_OFPT13_GET_ASYNC_REPLY, oh, 0);
5063 msg = ofpbuf_put_zeros(buf, sizeof *msg);
5064
5065 msg->packet_in_mask[0] = htonl(master[OAM_PACKET_IN]);
5066 msg->port_status_mask[0] = htonl(master[OAM_PORT_STATUS]);
5067 msg->flow_removed_mask[0] = htonl(master[OAM_FLOW_REMOVED]);
5068
5069 msg->packet_in_mask[1] = htonl(slave[OAM_PACKET_IN]);
5070 msg->port_status_mask[1] = htonl(slave[OAM_PORT_STATUS]);
5071 msg->flow_removed_mask[1] = htonl(slave[OAM_FLOW_REMOVED]);
5072
5073 ofconn_send_reply(ofconn, buf);
5074
5075 return 0;
5076 }
5077
5078 static enum ofperr
5079 handle_nxt_set_controller_id(struct ofconn *ofconn,
5080 const struct ofp_header *oh)
5081 {
5082 const struct nx_controller_id *nci = ofpmsg_body(oh);
5083
5084 if (!is_all_zeros(nci->zero, sizeof nci->zero)) {
5085 return OFPERR_NXBRC_MUST_BE_ZERO;
5086 }
5087
5088 ofconn_set_controller_id(ofconn, ntohs(nci->controller_id));
5089 return 0;
5090 }
5091
5092 static enum ofperr
5093 handle_barrier_request(struct ofconn *ofconn, const struct ofp_header *oh)
5094 {
5095 struct ofpbuf *buf;
5096
5097 buf = ofpraw_alloc_reply((oh->version == OFP10_VERSION
5098 ? OFPRAW_OFPT10_BARRIER_REPLY
5099 : OFPRAW_OFPT11_BARRIER_REPLY), oh, 0);
5100 ofconn_send_reply(ofconn, buf);
5101 return 0;
5102 }
5103
5104 static void
5105 ofproto_compose_flow_refresh_update(const struct rule *rule,
5106 enum nx_flow_monitor_flags flags,
5107 struct ovs_list *msgs)
5108 OVS_REQUIRES(ofproto_mutex)
5109 {
5110 const struct rule_actions *actions;
5111 struct ofputil_flow_update fu;
5112 struct match match;
5113
5114 fu.event = (flags & (NXFMF_INITIAL | NXFMF_ADD)
5115 ? NXFME_ADDED : NXFME_MODIFIED);
5116 fu.reason = 0;
5117 ovs_mutex_lock(&rule->mutex);
5118 fu.idle_timeout = rule->idle_timeout;
5119 fu.hard_timeout = rule->hard_timeout;
5120 ovs_mutex_unlock(&rule->mutex);
5121 fu.table_id = rule->table_id;
5122 fu.cookie = rule->flow_cookie;
5123 minimatch_expand(&rule->cr.match, &match);
5124 fu.match = &match;
5125 fu.priority = rule->cr.priority;
5126
5127 actions = flags & NXFMF_ACTIONS ? rule_get_actions(rule) : NULL;
5128 fu.ofpacts = actions ? actions->ofpacts : NULL;
5129 fu.ofpacts_len = actions ? actions->ofpacts_len : 0;
5130
5131 if (list_is_empty(msgs)) {
5132 ofputil_start_flow_update(msgs);
5133 }
5134 ofputil_append_flow_update(&fu, msgs);
5135 }
5136
5137 void
5138 ofmonitor_compose_refresh_updates(struct rule_collection *rules,
5139 struct ovs_list *msgs)
5140 OVS_REQUIRES(ofproto_mutex)
5141 {
5142 size_t i;
5143
5144 for (i = 0; i < rules->n; i++) {
5145 struct rule *rule = rules->rules[i];
5146 enum nx_flow_monitor_flags flags = rule->monitor_flags;
5147 rule->monitor_flags = 0;
5148
5149 ofproto_compose_flow_refresh_update(rule, flags, msgs);
5150 }
5151 }
5152
5153 static void
5154 ofproto_collect_ofmonitor_refresh_rule(const struct ofmonitor *m,
5155 struct rule *rule, uint64_t seqno,
5156 struct rule_collection *rules)
5157 OVS_REQUIRES(ofproto_mutex)
5158 {
5159 enum nx_flow_monitor_flags update;
5160
5161 if (rule_is_hidden(rule)) {
5162 return;
5163 }
5164
5165 if (!ofproto_rule_has_out_port(rule, m->out_port)) {
5166 return;
5167 }
5168
5169 if (seqno) {
5170 if (rule->add_seqno > seqno) {
5171 update = NXFMF_ADD | NXFMF_MODIFY;
5172 } else if (rule->modify_seqno > seqno) {
5173 update = NXFMF_MODIFY;
5174 } else {
5175 return;
5176 }
5177
5178 if (!(m->flags & update)) {
5179 return;
5180 }
5181 } else {
5182 update = NXFMF_INITIAL;
5183 }
5184
5185 if (!rule->monitor_flags) {
5186 rule_collection_add(rules, rule);
5187 }
5188 rule->monitor_flags |= update | (m->flags & NXFMF_ACTIONS);
5189 }
5190
5191 static void
5192 ofproto_collect_ofmonitor_refresh_rules(const struct ofmonitor *m,
5193 uint64_t seqno,
5194 struct rule_collection *rules)
5195 OVS_REQUIRES(ofproto_mutex)
5196 {
5197 const struct ofproto *ofproto = ofconn_get_ofproto(m->ofconn);
5198 const struct oftable *table;
5199 struct cls_rule target;
5200
5201 cls_rule_init_from_minimatch(&target, &m->match, 0);
5202 FOR_EACH_MATCHING_TABLE (table, m->table_id, ofproto) {
5203 struct rule *rule;
5204
5205 CLS_FOR_EACH_TARGET (rule, cr, &table->cls, &target) {
5206 ofproto_collect_ofmonitor_refresh_rule(m, rule, seqno, rules);
5207 }
5208 }
5209 cls_rule_destroy(&target);
5210 }
5211
5212 static void
5213 ofproto_collect_ofmonitor_initial_rules(struct ofmonitor *m,
5214 struct rule_collection *rules)
5215 OVS_REQUIRES(ofproto_mutex)
5216 {
5217 if (m->flags & NXFMF_INITIAL) {
5218 ofproto_collect_ofmonitor_refresh_rules(m, 0, rules);
5219 }
5220 }
5221
5222 void
5223 ofmonitor_collect_resume_rules(struct ofmonitor *m,
5224 uint64_t seqno, struct rule_collection *rules)
5225 OVS_REQUIRES(ofproto_mutex)
5226 {
5227 ofproto_collect_ofmonitor_refresh_rules(m, seqno, rules);
5228 }
5229
5230 static enum ofperr
5231 flow_monitor_delete(struct ofconn *ofconn, uint32_t id)
5232 OVS_REQUIRES(ofproto_mutex)
5233 {
5234 struct ofmonitor *m;
5235 enum ofperr error;
5236
5237 m = ofmonitor_lookup(ofconn, id);
5238 if (m) {
5239 ofmonitor_destroy(m);
5240 error = 0;
5241 } else {
5242 error = OFPERR_OFPMOFC_UNKNOWN_MONITOR;
5243 }
5244
5245 return error;
5246 }
5247
5248 static enum ofperr
5249 handle_flow_monitor_request(struct ofconn *ofconn, const struct ofp_header *oh)
5250 OVS_EXCLUDED(ofproto_mutex)
5251 {
5252 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5253 struct ofmonitor **monitors;
5254 size_t n_monitors, allocated_monitors;
5255 struct rule_collection rules;
5256 struct ovs_list replies;
5257 enum ofperr error;
5258 struct ofpbuf b;
5259 size_t i;
5260
5261 ofpbuf_use_const(&b, oh, ntohs(oh->length));
5262 monitors = NULL;
5263 n_monitors = allocated_monitors = 0;
5264
5265 ovs_mutex_lock(&ofproto_mutex);
5266 for (;;) {
5267 struct ofputil_flow_monitor_request request;
5268 struct ofmonitor *m;
5269 int retval;
5270
5271 retval = ofputil_decode_flow_monitor_request(&request, &b);
5272 if (retval == EOF) {
5273 break;
5274 } else if (retval) {
5275 error = retval;
5276 goto error;
5277 }
5278
5279 if (request.table_id != 0xff
5280 && request.table_id >= ofproto->n_tables) {
5281 error = OFPERR_OFPBRC_BAD_TABLE_ID;
5282 goto error;
5283 }
5284
5285 error = ofmonitor_create(&request, ofconn, &m);
5286 if (error) {
5287 goto error;
5288 }
5289
5290 if (n_monitors >= allocated_monitors) {
5291 monitors = x2nrealloc(monitors, &allocated_monitors,
5292 sizeof *monitors);
5293 }
5294 monitors[n_monitors++] = m;
5295 }
5296
5297 rule_collection_init(&rules);
5298 for (i = 0; i < n_monitors; i++) {
5299 ofproto_collect_ofmonitor_initial_rules(monitors[i], &rules);
5300 }
5301
5302 ofpmp_init(&replies, oh);
5303 ofmonitor_compose_refresh_updates(&rules, &replies);
5304 ovs_mutex_unlock(&ofproto_mutex);
5305
5306 rule_collection_destroy(&rules);
5307
5308 ofconn_send_replies(ofconn, &replies);
5309 free(monitors);
5310
5311 return 0;
5312
5313 error:
5314 for (i = 0; i < n_monitors; i++) {
5315 ofmonitor_destroy(monitors[i]);
5316 }
5317 free(monitors);
5318 ovs_mutex_unlock(&ofproto_mutex);
5319
5320 return error;
5321 }
5322
5323 static enum ofperr
5324 handle_flow_monitor_cancel(struct ofconn *ofconn, const struct ofp_header *oh)
5325 OVS_EXCLUDED(ofproto_mutex)
5326 {
5327 enum ofperr error;
5328 uint32_t id;
5329
5330 id = ofputil_decode_flow_monitor_cancel(oh);
5331
5332 ovs_mutex_lock(&ofproto_mutex);
5333 error = flow_monitor_delete(ofconn, id);
5334 ovs_mutex_unlock(&ofproto_mutex);
5335
5336 return error;
5337 }
5338
5339 /* Meters implementation.
5340 *
5341 * Meter table entry, indexed by the OpenFlow meter_id.
5342 * 'created' is used to compute the duration for meter stats.
5343 * 'list rules' is needed so that we can delete the dependent rules when the
5344 * meter table entry is deleted.
5345 * 'provider_meter_id' is for the provider's private use.
5346 */
5347 struct meter {
5348 long long int created; /* Time created. */
5349 struct ovs_list rules; /* List of "struct rule_dpif"s. */
5350 ofproto_meter_id provider_meter_id;
5351 uint16_t flags; /* Meter flags. */
5352 uint16_t n_bands; /* Number of meter bands. */
5353 struct ofputil_meter_band *bands;
5354 };
5355
5356 /*
5357 * This is used in instruction validation at flow set-up time,
5358 * as flows may not use non-existing meters.
5359 * Return value of UINT32_MAX signifies an invalid meter.
5360 */
5361 static uint32_t
5362 get_provider_meter_id(const struct ofproto *ofproto, uint32_t of_meter_id)
5363 {
5364 if (of_meter_id && of_meter_id <= ofproto->meter_features.max_meters) {
5365 const struct meter *meter = ofproto->meters[of_meter_id];
5366 if (meter) {
5367 return meter->provider_meter_id.uint32;
5368 }
5369 }
5370 return UINT32_MAX;
5371 }
5372
5373 /* Finds the meter invoked by 'rule''s actions and adds 'rule' to the meter's
5374 * list of rules. */
5375 static void
5376 meter_insert_rule(struct rule *rule)
5377 {
5378 const struct rule_actions *a = rule_get_actions(rule);
5379 uint32_t meter_id = ofpacts_get_meter(a->ofpacts, a->ofpacts_len);
5380 struct meter *meter = rule->ofproto->meters[meter_id];
5381
5382 list_insert(&meter->rules, &rule->meter_list_node);
5383 }
5384
5385 static void
5386 meter_update(struct meter *meter, const struct ofputil_meter_config *config)
5387 {
5388 free(meter->bands);
5389
5390 meter->flags = config->flags;
5391 meter->n_bands = config->n_bands;
5392 meter->bands = xmemdup(config->bands,
5393 config->n_bands * sizeof *meter->bands);
5394 }
5395
5396 static struct meter *
5397 meter_create(const struct ofputil_meter_config *config,
5398 ofproto_meter_id provider_meter_id)
5399 {
5400 struct meter *meter;
5401
5402 meter = xzalloc(sizeof *meter);
5403 meter->provider_meter_id = provider_meter_id;
5404 meter->created = time_msec();
5405 list_init(&meter->rules);
5406
5407 meter_update(meter, config);
5408
5409 return meter;
5410 }
5411
5412 static void
5413 meter_delete(struct ofproto *ofproto, uint32_t first, uint32_t last)
5414 OVS_REQUIRES(ofproto_mutex)
5415 {
5416 uint32_t mid;
5417 for (mid = first; mid <= last; ++mid) {
5418 struct meter *meter = ofproto->meters[mid];
5419 if (meter) {
5420 ofproto->meters[mid] = NULL;
5421 ofproto->ofproto_class->meter_del(ofproto,
5422 meter->provider_meter_id);
5423 free(meter->bands);
5424 free(meter);
5425 }
5426 }
5427 }
5428
5429 static enum ofperr
5430 handle_add_meter(struct ofproto *ofproto, struct ofputil_meter_mod *mm)
5431 {
5432 ofproto_meter_id provider_meter_id = { UINT32_MAX };
5433 struct meter **meterp = &ofproto->meters[mm->meter.meter_id];
5434 enum ofperr error;
5435
5436 if (*meterp) {
5437 return OFPERR_OFPMMFC_METER_EXISTS;
5438 }
5439
5440 error = ofproto->ofproto_class->meter_set(ofproto, &provider_meter_id,
5441 &mm->meter);
5442 if (!error) {
5443 ovs_assert(provider_meter_id.uint32 != UINT32_MAX);
5444 *meterp = meter_create(&mm->meter, provider_meter_id);
5445 }
5446 return error;
5447 }
5448
5449 static enum ofperr
5450 handle_modify_meter(struct ofproto *ofproto, struct ofputil_meter_mod *mm)
5451 {
5452 struct meter *meter = ofproto->meters[mm->meter.meter_id];
5453 enum ofperr error;
5454 uint32_t provider_meter_id;
5455
5456 if (!meter) {
5457 return OFPERR_OFPMMFC_UNKNOWN_METER;
5458 }
5459
5460 provider_meter_id = meter->provider_meter_id.uint32;
5461 error = ofproto->ofproto_class->meter_set(ofproto,
5462 &meter->provider_meter_id,
5463 &mm->meter);
5464 ovs_assert(meter->provider_meter_id.uint32 == provider_meter_id);
5465 if (!error) {
5466 meter_update(meter, &mm->meter);
5467 }
5468 return error;
5469 }
5470
5471 static enum ofperr
5472 handle_delete_meter(struct ofconn *ofconn, struct ofputil_meter_mod *mm)
5473 OVS_EXCLUDED(ofproto_mutex)
5474 {
5475 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5476 uint32_t meter_id = mm->meter.meter_id;
5477 struct rule_collection rules;
5478 enum ofperr error = 0;
5479 uint32_t first, last;
5480
5481 if (meter_id == OFPM13_ALL) {
5482 first = 1;
5483 last = ofproto->meter_features.max_meters;
5484 } else {
5485 if (!meter_id || meter_id > ofproto->meter_features.max_meters) {
5486 return 0;
5487 }
5488 first = last = meter_id;
5489 }
5490
5491 /* First delete the rules that use this meter. If any of those rules are
5492 * currently being modified, postpone the whole operation until later. */
5493 rule_collection_init(&rules);
5494 ovs_mutex_lock(&ofproto_mutex);
5495 for (meter_id = first; meter_id <= last; ++meter_id) {
5496 struct meter *meter = ofproto->meters[meter_id];
5497 if (meter && !list_is_empty(&meter->rules)) {
5498 struct rule *rule;
5499
5500 LIST_FOR_EACH (rule, meter_list_node, &meter->rules) {
5501 rule_collection_add(&rules, rule);
5502 }
5503 }
5504 }
5505 delete_flows__(&rules, OFPRR_METER_DELETE, NULL);
5506
5507 /* Delete the meters. */
5508 meter_delete(ofproto, first, last);
5509
5510 ovs_mutex_unlock(&ofproto_mutex);
5511 rule_collection_destroy(&rules);
5512
5513 return error;
5514 }
5515
5516 static enum ofperr
5517 handle_meter_mod(struct ofconn *ofconn, const struct ofp_header *oh)
5518 {
5519 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5520 struct ofputil_meter_mod mm;
5521 uint64_t bands_stub[256 / 8];
5522 struct ofpbuf bands;
5523 uint32_t meter_id;
5524 enum ofperr error;
5525
5526 error = reject_slave_controller(ofconn);
5527 if (error) {
5528 return error;
5529 }
5530
5531 ofpbuf_use_stub(&bands, bands_stub, sizeof bands_stub);
5532
5533 error = ofputil_decode_meter_mod(oh, &mm, &bands);
5534 if (error) {
5535 goto exit_free_bands;
5536 }
5537
5538 meter_id = mm.meter.meter_id;
5539
5540 if (mm.command != OFPMC13_DELETE) {
5541 /* Fails also when meters are not implemented by the provider. */
5542 if (meter_id == 0 || meter_id > OFPM13_MAX) {
5543 error = OFPERR_OFPMMFC_INVALID_METER;
5544 goto exit_free_bands;
5545 } else if (meter_id > ofproto->meter_features.max_meters) {
5546 error = OFPERR_OFPMMFC_OUT_OF_METERS;
5547 goto exit_free_bands;
5548 }
5549 if (mm.meter.n_bands > ofproto->meter_features.max_bands) {
5550 error = OFPERR_OFPMMFC_OUT_OF_BANDS;
5551 goto exit_free_bands;
5552 }
5553 }
5554
5555 switch (mm.command) {
5556 case OFPMC13_ADD:
5557 error = handle_add_meter(ofproto, &mm);
5558 break;
5559
5560 case OFPMC13_MODIFY:
5561 error = handle_modify_meter(ofproto, &mm);
5562 break;
5563
5564 case OFPMC13_DELETE:
5565 error = handle_delete_meter(ofconn, &mm);
5566 break;
5567
5568 default:
5569 error = OFPERR_OFPMMFC_BAD_COMMAND;
5570 break;
5571 }
5572
5573 exit_free_bands:
5574 ofpbuf_uninit(&bands);
5575 return error;
5576 }
5577
5578 static enum ofperr
5579 handle_meter_features_request(struct ofconn *ofconn,
5580 const struct ofp_header *request)
5581 {
5582 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5583 struct ofputil_meter_features features;
5584 struct ofpbuf *b;
5585
5586 if (ofproto->ofproto_class->meter_get_features) {
5587 ofproto->ofproto_class->meter_get_features(ofproto, &features);
5588 } else {
5589 memset(&features, 0, sizeof features);
5590 }
5591 b = ofputil_encode_meter_features_reply(&features, request);
5592
5593 ofconn_send_reply(ofconn, b);
5594 return 0;
5595 }
5596
5597 static enum ofperr
5598 handle_meter_request(struct ofconn *ofconn, const struct ofp_header *request,
5599 enum ofptype type)
5600 {
5601 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5602 struct ovs_list replies;
5603 uint64_t bands_stub[256 / 8];
5604 struct ofpbuf bands;
5605 uint32_t meter_id, first, last;
5606
5607 ofputil_decode_meter_request(request, &meter_id);
5608
5609 if (meter_id == OFPM13_ALL) {
5610 first = 1;
5611 last = ofproto->meter_features.max_meters;
5612 } else {
5613 if (!meter_id || meter_id > ofproto->meter_features.max_meters ||
5614 !ofproto->meters[meter_id]) {
5615 return OFPERR_OFPMMFC_UNKNOWN_METER;
5616 }
5617 first = last = meter_id;
5618 }
5619
5620 ofpbuf_use_stub(&bands, bands_stub, sizeof bands_stub);
5621 ofpmp_init(&replies, request);
5622
5623 for (meter_id = first; meter_id <= last; ++meter_id) {
5624 struct meter *meter = ofproto->meters[meter_id];
5625 if (!meter) {
5626 continue; /* Skip non-existing meters. */
5627 }
5628 if (type == OFPTYPE_METER_STATS_REQUEST) {
5629 struct ofputil_meter_stats stats;
5630
5631 stats.meter_id = meter_id;
5632
5633 /* Provider sets the packet and byte counts, we do the rest. */
5634 stats.flow_count = list_size(&meter->rules);
5635 calc_duration(meter->created, time_msec(),
5636 &stats.duration_sec, &stats.duration_nsec);
5637 stats.n_bands = meter->n_bands;
5638 ofpbuf_clear(&bands);
5639 stats.bands
5640 = ofpbuf_put_uninit(&bands,
5641 meter->n_bands * sizeof *stats.bands);
5642
5643 if (!ofproto->ofproto_class->meter_get(ofproto,
5644 meter->provider_meter_id,
5645 &stats)) {
5646 ofputil_append_meter_stats(&replies, &stats);
5647 }
5648 } else { /* type == OFPTYPE_METER_CONFIG_REQUEST */
5649 struct ofputil_meter_config config;
5650
5651 config.meter_id = meter_id;
5652 config.flags = meter->flags;
5653 config.n_bands = meter->n_bands;
5654 config.bands = meter->bands;
5655 ofputil_append_meter_config(&replies, &config);
5656 }
5657 }
5658
5659 ofconn_send_replies(ofconn, &replies);
5660 ofpbuf_uninit(&bands);
5661 return 0;
5662 }
5663
5664 static bool
5665 ofproto_group_lookup__(const struct ofproto *ofproto, uint32_t group_id,
5666 struct ofgroup **group)
5667 OVS_REQ_RDLOCK(ofproto->groups_rwlock)
5668 {
5669 HMAP_FOR_EACH_IN_BUCKET (*group, hmap_node,
5670 hash_int(group_id, 0), &ofproto->groups) {
5671 if ((*group)->group_id == group_id) {
5672 return true;
5673 }
5674 }
5675
5676 return false;
5677 }
5678
5679 /* If the group exists, this function increments the groups's reference count.
5680 *
5681 * Make sure to call ofproto_group_unref() after no longer needing to maintain
5682 * a reference to the group. */
5683 bool
5684 ofproto_group_lookup(const struct ofproto *ofproto, uint32_t group_id,
5685 struct ofgroup **group)
5686 {
5687 bool found;
5688
5689 ovs_rwlock_rdlock(&ofproto->groups_rwlock);
5690 found = ofproto_group_lookup__(ofproto, group_id, group);
5691 if (found) {
5692 ofproto_group_ref(*group);
5693 }
5694 ovs_rwlock_unlock(&ofproto->groups_rwlock);
5695 return found;
5696 }
5697
5698 static bool
5699 ofproto_group_exists__(const struct ofproto *ofproto, uint32_t group_id)
5700 OVS_REQ_RDLOCK(ofproto->groups_rwlock)
5701 {
5702 struct ofgroup *grp;
5703
5704 HMAP_FOR_EACH_IN_BUCKET (grp, hmap_node,
5705 hash_int(group_id, 0), &ofproto->groups) {
5706 if (grp->group_id == group_id) {
5707 return true;
5708 }
5709 }
5710 return false;
5711 }
5712
5713 static bool
5714 ofproto_group_exists(const struct ofproto *ofproto, uint32_t group_id)
5715 OVS_EXCLUDED(ofproto->groups_rwlock)
5716 {
5717 bool exists;
5718
5719 ovs_rwlock_rdlock(&ofproto->groups_rwlock);
5720 exists = ofproto_group_exists__(ofproto, group_id);
5721 ovs_rwlock_unlock(&ofproto->groups_rwlock);
5722
5723 return exists;
5724 }
5725
5726 static uint32_t
5727 group_get_ref_count(struct ofgroup *group)
5728 OVS_EXCLUDED(ofproto_mutex)
5729 {
5730 struct ofproto *ofproto = CONST_CAST(struct ofproto *, group->ofproto);
5731 struct rule_criteria criteria;
5732 struct rule_collection rules;
5733 struct match match;
5734 enum ofperr error;
5735 uint32_t count;
5736
5737 match_init_catchall(&match);
5738 rule_criteria_init(&criteria, 0xff, &match, 0, htonll(0), htonll(0),
5739 OFPP_ANY, group->group_id);
5740 ovs_mutex_lock(&ofproto_mutex);
5741 error = collect_rules_loose(ofproto, &criteria, &rules);
5742 ovs_mutex_unlock(&ofproto_mutex);
5743 rule_criteria_destroy(&criteria);
5744
5745 count = !error && rules.n < UINT32_MAX ? rules.n : UINT32_MAX;
5746
5747 rule_collection_destroy(&rules);
5748 return count;
5749 }
5750
5751 static void
5752 append_group_stats(struct ofgroup *group, struct ovs_list *replies)
5753 {
5754 struct ofputil_group_stats ogs;
5755 const struct ofproto *ofproto = group->ofproto;
5756 long long int now = time_msec();
5757 int error;
5758
5759 ogs.bucket_stats = xmalloc(group->n_buckets * sizeof *ogs.bucket_stats);
5760
5761 /* Provider sets the packet and byte counts, we do the rest. */
5762 ogs.ref_count = group_get_ref_count(group);
5763 ogs.n_buckets = group->n_buckets;
5764
5765 error = (ofproto->ofproto_class->group_get_stats
5766 ? ofproto->ofproto_class->group_get_stats(group, &ogs)
5767 : EOPNOTSUPP);
5768 if (error) {
5769 ogs.packet_count = UINT64_MAX;
5770 ogs.byte_count = UINT64_MAX;
5771 memset(ogs.bucket_stats, 0xff,
5772 ogs.n_buckets * sizeof *ogs.bucket_stats);
5773 }
5774
5775 ogs.group_id = group->group_id;
5776 calc_duration(group->created, now, &ogs.duration_sec, &ogs.duration_nsec);
5777
5778 ofputil_append_group_stats(replies, &ogs);
5779
5780 free(ogs.bucket_stats);
5781 }
5782
5783 static void
5784 handle_group_request(struct ofconn *ofconn,
5785 const struct ofp_header *request, uint32_t group_id,
5786 void (*cb)(struct ofgroup *, struct ovs_list *replies))
5787 {
5788 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
5789 struct ofgroup *group;
5790 struct ovs_list replies;
5791
5792 ofpmp_init(&replies, request);
5793 if (group_id == OFPG_ALL) {
5794 ovs_rwlock_rdlock(&ofproto->groups_rwlock);
5795 HMAP_FOR_EACH (group, hmap_node, &ofproto->groups) {
5796 cb(group, &replies);
5797 }
5798 ovs_rwlock_unlock(&ofproto->groups_rwlock);
5799 } else {
5800 if (ofproto_group_lookup(ofproto, group_id, &group)) {
5801 cb(group, &replies);
5802 ofproto_group_unref(group);
5803 }
5804 }
5805 ofconn_send_replies(ofconn, &replies);
5806 }
5807
5808 static enum ofperr
5809 handle_group_stats_request(struct ofconn *ofconn,
5810 const struct ofp_header *request)
5811 {
5812 uint32_t group_id;
5813 enum ofperr error;
5814
5815 error = ofputil_decode_group_stats_request(request, &group_id);
5816 if (error) {
5817 return error;
5818 }
5819
5820 handle_group_request(ofconn, request, group_id, append_group_stats);
5821 return 0;
5822 }
5823
5824 static void
5825 append_group_desc(struct ofgroup *group, struct ovs_list *replies)
5826 {
5827 struct ofputil_group_desc gds;
5828
5829 gds.group_id = group->group_id;
5830 gds.type = group->type;
5831 gds.props = group->props;
5832
5833 ofputil_append_group_desc_reply(&gds, &group->buckets, replies);
5834 }
5835
5836 static enum ofperr
5837 handle_group_desc_stats_request(struct ofconn *ofconn,
5838 const struct ofp_header *request)
5839 {
5840 handle_group_request(ofconn, request,
5841 ofputil_decode_group_desc_request(request),
5842 append_group_desc);
5843 return 0;
5844 }
5845
5846 static enum ofperr
5847 handle_group_features_stats_request(struct ofconn *ofconn,
5848 const struct ofp_header *request)
5849 {
5850 struct ofproto *p = ofconn_get_ofproto(ofconn);
5851 struct ofpbuf *msg;
5852
5853 msg = ofputil_encode_group_features_reply(&p->ogf, request);
5854 if (msg) {
5855 ofconn_send_reply(ofconn, msg);
5856 }
5857
5858 return 0;
5859 }
5860
5861 static enum ofperr
5862 handle_queue_get_config_request(struct ofconn *ofconn,
5863 const struct ofp_header *oh)
5864 {
5865 struct ofproto *p = ofconn_get_ofproto(ofconn);
5866 struct netdev_queue_dump queue_dump;
5867 struct ofport *ofport;
5868 unsigned int queue_id;
5869 struct ofpbuf *reply;
5870 struct smap details;
5871 ofp_port_t request;
5872 enum ofperr error;
5873
5874 error = ofputil_decode_queue_get_config_request(oh, &request);
5875 if (error) {
5876 return error;
5877 }
5878
5879 ofport = ofproto_get_port(p, request);
5880 if (!ofport) {
5881 return OFPERR_OFPQOFC_BAD_PORT;
5882 }
5883
5884 reply = ofputil_encode_queue_get_config_reply(oh);
5885
5886 smap_init(&details);
5887 NETDEV_QUEUE_FOR_EACH (&queue_id, &details, &queue_dump, ofport->netdev) {
5888 struct ofputil_queue_config queue;
5889
5890 /* None of the existing queues have compatible properties, so we
5891 * hard-code omitting min_rate and max_rate. */
5892 queue.queue_id = queue_id;
5893 queue.min_rate = UINT16_MAX;
5894 queue.max_rate = UINT16_MAX;
5895 ofputil_append_queue_get_config_reply(reply, &queue);
5896 }
5897 smap_destroy(&details);
5898
5899 ofconn_send_reply(ofconn, reply);
5900
5901 return 0;
5902 }
5903
5904 static enum ofperr
5905 init_group(struct ofproto *ofproto, struct ofputil_group_mod *gm,
5906 struct ofgroup **ofgroup)
5907 {
5908 enum ofperr error;
5909 const long long int now = time_msec();
5910
5911 if (gm->group_id > OFPG_MAX) {
5912 return OFPERR_OFPGMFC_INVALID_GROUP;
5913 }
5914 if (gm->type > OFPGT11_FF) {
5915 return OFPERR_OFPGMFC_BAD_TYPE;
5916 }
5917
5918 *ofgroup = ofproto->ofproto_class->group_alloc();
5919 if (!*ofgroup) {
5920 VLOG_WARN_RL(&rl, "%s: failed to allocate group", ofproto->name);
5921 return OFPERR_OFPGMFC_OUT_OF_GROUPS;
5922 }
5923
5924 (*ofgroup)->ofproto = ofproto;
5925 *CONST_CAST(uint32_t *, &((*ofgroup)->group_id)) = gm->group_id;
5926 *CONST_CAST(enum ofp11_group_type *, &(*ofgroup)->type) = gm->type;
5927 *CONST_CAST(long long int *, &((*ofgroup)->created)) = now;
5928 *CONST_CAST(long long int *, &((*ofgroup)->modified)) = now;
5929 ovs_refcount_init(&(*ofgroup)->ref_count);
5930
5931 list_move(&(*ofgroup)->buckets, &gm->buckets);
5932 *CONST_CAST(uint32_t *, &(*ofgroup)->n_buckets) =
5933 list_size(&(*ofgroup)->buckets);
5934
5935 memcpy(CONST_CAST(struct ofputil_group_props *, &(*ofgroup)->props),
5936 &gm->props, sizeof (struct ofputil_group_props));
5937
5938 /* Construct called BEFORE any locks are held. */
5939 error = ofproto->ofproto_class->group_construct(*ofgroup);
5940 if (error) {
5941 ofputil_bucket_list_destroy(&(*ofgroup)->buckets);
5942 ofproto->ofproto_class->group_dealloc(*ofgroup);
5943 }
5944 return error;
5945 }
5946
5947 /* Implements the OFPGC11_ADD operation specified by 'gm', adding a group to
5948 * 'ofproto''s group table. Returns 0 on success or an OpenFlow error code on
5949 * failure. */
5950 static enum ofperr
5951 add_group(struct ofproto *ofproto, struct ofputil_group_mod *gm)
5952 {
5953 struct ofgroup *ofgroup;
5954 enum ofperr error;
5955
5956 /* Allocate new group and initialize it. */
5957 error = init_group(ofproto, gm, &ofgroup);
5958 if (error) {
5959 return error;
5960 }
5961
5962 /* We wrlock as late as possible to minimize the time we jam any other
5963 * threads: No visible state changes before acquiring the lock. */
5964 ovs_rwlock_wrlock(&ofproto->groups_rwlock);
5965
5966 if (ofproto->n_groups[gm->type] >= ofproto->ogf.max_groups[gm->type]) {
5967 error = OFPERR_OFPGMFC_OUT_OF_GROUPS;
5968 goto unlock_out;
5969 }
5970
5971 if (ofproto_group_exists__(ofproto, gm->group_id)) {
5972 error = OFPERR_OFPGMFC_GROUP_EXISTS;
5973 goto unlock_out;
5974 }
5975
5976 if (!error) {
5977 /* Insert new group. */
5978 hmap_insert(&ofproto->groups, &ofgroup->hmap_node,
5979 hash_int(ofgroup->group_id, 0));
5980 ofproto->n_groups[ofgroup->type]++;
5981
5982 ovs_rwlock_unlock(&ofproto->groups_rwlock);
5983 return error;
5984 }
5985
5986 unlock_out:
5987 ovs_rwlock_unlock(&ofproto->groups_rwlock);
5988 ofproto->ofproto_class->group_destruct(ofgroup);
5989 ofputil_bucket_list_destroy(&ofgroup->buckets);
5990 ofproto->ofproto_class->group_dealloc(ofgroup);
5991
5992 return error;
5993 }
5994
5995 /* Adds all of the buckets from 'ofgroup' to 'new_ofgroup'. The buckets
5996 * already in 'new_ofgroup' will be placed just after the (copy of the) bucket
5997 * in 'ofgroup' with bucket ID 'command_bucket_id'. Special
5998 * 'command_bucket_id' values OFPG15_BUCKET_FIRST and OFPG15_BUCKET_LAST are
5999 * also honored. */
6000 static enum ofperr
6001 copy_buckets_for_insert_bucket(const struct ofgroup *ofgroup,
6002 struct ofgroup *new_ofgroup,
6003 uint32_t command_bucket_id)
6004 {
6005 struct ofputil_bucket *last = NULL;
6006
6007 if (command_bucket_id <= OFPG15_BUCKET_MAX) {
6008 /* Check here to ensure that a bucket corresponding to
6009 * command_bucket_id exists in the old bucket list.
6010 *
6011 * The subsequent search of below of new_ofgroup covers
6012 * both buckets in the old bucket list and buckets added
6013 * by the insert buckets group mod message this function processes. */
6014 if (!ofputil_bucket_find(&ofgroup->buckets, command_bucket_id)) {
6015 return OFPERR_OFPGMFC_UNKNOWN_BUCKET;
6016 }
6017
6018 if (!list_is_empty(&new_ofgroup->buckets)) {
6019 last = ofputil_bucket_list_back(&new_ofgroup->buckets);
6020 }
6021 }
6022
6023 ofputil_bucket_clone_list(&new_ofgroup->buckets, &ofgroup->buckets, NULL);
6024
6025 if (ofputil_bucket_check_duplicate_id(&ofgroup->buckets)) {
6026 VLOG_WARN_RL(&rl, "Duplicate bucket id");
6027 return OFPERR_OFPGMFC_BUCKET_EXISTS;
6028 }
6029
6030 /* Rearrange list according to command_bucket_id */
6031 if (command_bucket_id == OFPG15_BUCKET_LAST) {
6032 struct ofputil_bucket *new_first;
6033 const struct ofputil_bucket *first;
6034
6035 first = ofputil_bucket_list_front(&ofgroup->buckets);
6036 new_first = ofputil_bucket_find(&new_ofgroup->buckets,
6037 first->bucket_id);
6038
6039 list_splice(new_ofgroup->buckets.next, &new_first->list_node,
6040 &new_ofgroup->buckets);
6041 } else if (command_bucket_id <= OFPG15_BUCKET_MAX && last) {
6042 struct ofputil_bucket *after;
6043
6044 /* Presence of bucket is checked above so after should never be NULL */
6045 after = ofputil_bucket_find(&new_ofgroup->buckets, command_bucket_id);
6046
6047 list_splice(after->list_node.next, new_ofgroup->buckets.next,
6048 last->list_node.next);
6049 }
6050
6051 return 0;
6052 }
6053
6054 /* Appends all of the a copy of all the buckets from 'ofgroup' to 'new_ofgroup'
6055 * with the exception of the bucket whose bucket id is 'command_bucket_id'.
6056 * Special 'command_bucket_id' values OFPG15_BUCKET_FIRST, OFPG15_BUCKET_LAST
6057 * and OFPG15_BUCKET_ALL are also honored. */
6058 static enum ofperr
6059 copy_buckets_for_remove_bucket(const struct ofgroup *ofgroup,
6060 struct ofgroup *new_ofgroup,
6061 uint32_t command_bucket_id)
6062 {
6063 const struct ofputil_bucket *skip = NULL;
6064
6065 if (command_bucket_id == OFPG15_BUCKET_ALL) {
6066 return 0;
6067 }
6068
6069 if (command_bucket_id == OFPG15_BUCKET_FIRST) {
6070 if (!list_is_empty(&ofgroup->buckets)) {
6071 skip = ofputil_bucket_list_front(&ofgroup->buckets);
6072 }
6073 } else if (command_bucket_id == OFPG15_BUCKET_LAST) {
6074 if (!list_is_empty(&ofgroup->buckets)) {
6075 skip = ofputil_bucket_list_back(&ofgroup->buckets);
6076 }
6077 } else {
6078 skip = ofputil_bucket_find(&ofgroup->buckets, command_bucket_id);
6079 if (!skip) {
6080 return OFPERR_OFPGMFC_UNKNOWN_BUCKET;
6081 }
6082 }
6083
6084 ofputil_bucket_clone_list(&new_ofgroup->buckets, &ofgroup->buckets, skip);
6085
6086 return 0;
6087 }
6088
6089 /* Implements OFPGC11_MODIFY, OFPGC15_INSERT_BUCKET and
6090 * OFPGC15_REMOVE_BUCKET. Returns 0 on success or an OpenFlow error code
6091 * on failure.
6092 *
6093 * Note that the group is re-created and then replaces the old group in
6094 * ofproto's ofgroup hash map. Thus, the group is never altered while users of
6095 * the xlate module hold a pointer to the group. */
6096 static enum ofperr
6097 modify_group(struct ofproto *ofproto, struct ofputil_group_mod *gm)
6098 {
6099 struct ofgroup *ofgroup, *new_ofgroup, *retiring;
6100 enum ofperr error;
6101
6102 error = init_group(ofproto, gm, &new_ofgroup);
6103 if (error) {
6104 return error;
6105 }
6106
6107 retiring = new_ofgroup;
6108
6109 ovs_rwlock_wrlock(&ofproto->groups_rwlock);
6110 if (!ofproto_group_lookup__(ofproto, gm->group_id, &ofgroup)) {
6111 error = OFPERR_OFPGMFC_UNKNOWN_GROUP;
6112 goto out;
6113 }
6114
6115 /* Ofproto's group write lock is held now. */
6116 if (ofgroup->type != gm->type
6117 && ofproto->n_groups[gm->type] >= ofproto->ogf.max_groups[gm->type]) {
6118 error = OFPERR_OFPGMFC_OUT_OF_GROUPS;
6119 goto out;
6120 }
6121
6122 /* Manipulate bucket list for bucket commands */
6123 if (gm->command == OFPGC15_INSERT_BUCKET) {
6124 error = copy_buckets_for_insert_bucket(ofgroup, new_ofgroup,
6125 gm->command_bucket_id);
6126 } else if (gm->command == OFPGC15_REMOVE_BUCKET) {
6127 error = copy_buckets_for_remove_bucket(ofgroup, new_ofgroup,
6128 gm->command_bucket_id);
6129 }
6130 if (error) {
6131 goto out;
6132 }
6133
6134 /* The group creation time does not change during modification. */
6135 *CONST_CAST(long long int *, &(new_ofgroup->created)) = ofgroup->created;
6136 *CONST_CAST(long long int *, &(new_ofgroup->modified)) = time_msec();
6137
6138 error = ofproto->ofproto_class->group_modify(new_ofgroup);
6139 if (error) {
6140 goto out;
6141 }
6142
6143 retiring = ofgroup;
6144 /* Replace ofgroup in ofproto's groups hash map with new_ofgroup. */
6145 hmap_remove(&ofproto->groups, &ofgroup->hmap_node);
6146 hmap_insert(&ofproto->groups, &new_ofgroup->hmap_node,
6147 hash_int(new_ofgroup->group_id, 0));
6148 if (ofgroup->type != new_ofgroup->type) {
6149 ofproto->n_groups[ofgroup->type]--;
6150 ofproto->n_groups[new_ofgroup->type]++;
6151 }
6152
6153 out:
6154 ofproto_group_unref(retiring);
6155 ovs_rwlock_unlock(&ofproto->groups_rwlock);
6156 return error;
6157 }
6158
6159 static void
6160 delete_group__(struct ofproto *ofproto, struct ofgroup *ofgroup)
6161 OVS_RELEASES(ofproto->groups_rwlock)
6162 {
6163 struct match match;
6164 struct ofputil_flow_mod fm;
6165
6166 /* Delete all flow entries containing this group in a group action */
6167 match_init_catchall(&match);
6168 flow_mod_init(&fm, &match, 0, NULL, 0, OFPFC_DELETE);
6169 fm.delete_reason = OFPRR_GROUP_DELETE;
6170 fm.out_group = ofgroup->group_id;
6171 handle_flow_mod__(ofproto, &fm, NULL);
6172
6173 hmap_remove(&ofproto->groups, &ofgroup->hmap_node);
6174 /* No-one can find this group any more. */
6175 ofproto->n_groups[ofgroup->type]--;
6176 ovs_rwlock_unlock(&ofproto->groups_rwlock);
6177 ofproto_group_unref(ofgroup);
6178 }
6179
6180 /* Implements OFPGC11_DELETE. */
6181 static void
6182 delete_group(struct ofproto *ofproto, uint32_t group_id)
6183 {
6184 struct ofgroup *ofgroup;
6185
6186 ovs_rwlock_wrlock(&ofproto->groups_rwlock);
6187 if (group_id == OFPG_ALL) {
6188 for (;;) {
6189 struct hmap_node *node = hmap_first(&ofproto->groups);
6190 if (!node) {
6191 break;
6192 }
6193 ofgroup = CONTAINER_OF(node, struct ofgroup, hmap_node);
6194 delete_group__(ofproto, ofgroup);
6195 /* Lock for each node separately, so that we will not jam the
6196 * other threads for too long time. */
6197 ovs_rwlock_wrlock(&ofproto->groups_rwlock);
6198 }
6199 } else {
6200 HMAP_FOR_EACH_IN_BUCKET (ofgroup, hmap_node,
6201 hash_int(group_id, 0), &ofproto->groups) {
6202 if (ofgroup->group_id == group_id) {
6203 delete_group__(ofproto, ofgroup);
6204 return;
6205 }
6206 }
6207 }
6208 ovs_rwlock_unlock(&ofproto->groups_rwlock);
6209 }
6210
6211 static enum ofperr
6212 handle_group_mod(struct ofconn *ofconn, const struct ofp_header *oh)
6213 {
6214 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
6215 struct ofputil_group_mod gm;
6216 enum ofperr error;
6217
6218 error = reject_slave_controller(ofconn);
6219 if (error) {
6220 return error;
6221 }
6222
6223 error = ofputil_decode_group_mod(oh, &gm);
6224 if (error) {
6225 return error;
6226 }
6227
6228 switch (gm.command) {
6229 case OFPGC11_ADD:
6230 return add_group(ofproto, &gm);
6231
6232 case OFPGC11_MODIFY:
6233 return modify_group(ofproto, &gm);
6234
6235 case OFPGC11_DELETE:
6236 delete_group(ofproto, gm.group_id);
6237 return 0;
6238
6239 case OFPGC15_INSERT_BUCKET:
6240 return modify_group(ofproto, &gm);
6241
6242 case OFPGC15_REMOVE_BUCKET:
6243 return modify_group(ofproto, &gm);
6244
6245 default:
6246 if (gm.command > OFPGC11_DELETE) {
6247 VLOG_WARN_RL(&rl, "%s: Invalid group_mod command type %d",
6248 ofproto->name, gm.command);
6249 }
6250 return OFPERR_OFPGMFC_BAD_COMMAND;
6251 }
6252 }
6253
6254 enum ofputil_table_miss
6255 ofproto_table_get_miss_config(const struct ofproto *ofproto, uint8_t table_id)
6256 {
6257 enum ofputil_table_miss value;
6258
6259 atomic_read_relaxed(&ofproto->tables[table_id].miss_config, &value);
6260 return value;
6261 }
6262
6263 static enum ofperr
6264 table_mod(struct ofproto *ofproto, const struct ofputil_table_mod *tm)
6265 {
6266 if (!check_table_id(ofproto, tm->table_id)) {
6267 return OFPERR_OFPTMFC_BAD_TABLE;
6268 } else if (tm->miss_config != OFPUTIL_TABLE_MISS_DEFAULT) {
6269 if (tm->table_id == OFPTT_ALL) {
6270 int i;
6271 for (i = 0; i < ofproto->n_tables; i++) {
6272 atomic_store_relaxed(&ofproto->tables[i].miss_config,
6273 tm->miss_config);
6274 }
6275 } else {
6276 atomic_store_relaxed(&ofproto->tables[tm->table_id].miss_config,
6277 tm->miss_config);
6278 }
6279 }
6280 return 0;
6281 }
6282
6283 static enum ofperr
6284 handle_table_mod(struct ofconn *ofconn, const struct ofp_header *oh)
6285 {
6286 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
6287 struct ofputil_table_mod tm;
6288 enum ofperr error;
6289
6290 error = reject_slave_controller(ofconn);
6291 if (error) {
6292 return error;
6293 }
6294
6295 error = ofputil_decode_table_mod(oh, &tm);
6296 if (error) {
6297 return error;
6298 }
6299
6300 return table_mod(ofproto, &tm);
6301 }
6302
6303 static enum ofperr
6304 handle_bundle_control(struct ofconn *ofconn, const struct ofp_header *oh)
6305 {
6306 enum ofperr error;
6307 struct ofputil_bundle_ctrl_msg bctrl;
6308 struct ofpbuf *buf;
6309 struct ofputil_bundle_ctrl_msg reply;
6310
6311 error = reject_slave_controller(ofconn);
6312 if (error) {
6313 return error;
6314 }
6315
6316 error = ofputil_decode_bundle_ctrl(oh, &bctrl);
6317 if (error) {
6318 return error;
6319 }
6320 reply.flags = 0;
6321 reply.bundle_id = bctrl.bundle_id;
6322
6323 switch (bctrl.type) {
6324 case OFPBCT_OPEN_REQUEST:
6325 error = ofp_bundle_open(ofconn, bctrl.bundle_id, bctrl.flags);
6326 reply.type = OFPBCT_OPEN_REPLY;
6327 break;
6328 case OFPBCT_CLOSE_REQUEST:
6329 error = ofp_bundle_close(ofconn, bctrl.bundle_id, bctrl.flags);
6330 reply.type = OFPBCT_CLOSE_REPLY;;
6331 break;
6332 case OFPBCT_COMMIT_REQUEST:
6333 error = ofp_bundle_commit(ofconn, bctrl.bundle_id, bctrl.flags);
6334 reply.type = OFPBCT_COMMIT_REPLY;
6335 break;
6336 case OFPBCT_DISCARD_REQUEST:
6337 error = ofp_bundle_discard(ofconn, bctrl.bundle_id);
6338 reply.type = OFPBCT_DISCARD_REPLY;
6339 break;
6340
6341 case OFPBCT_OPEN_REPLY:
6342 case OFPBCT_CLOSE_REPLY:
6343 case OFPBCT_COMMIT_REPLY:
6344 case OFPBCT_DISCARD_REPLY:
6345 return OFPERR_OFPBFC_BAD_TYPE;
6346 break;
6347 }
6348
6349 if (!error) {
6350 buf = ofputil_encode_bundle_ctrl_reply(oh, &reply);
6351 ofconn_send_reply(ofconn, buf);
6352 }
6353 return error;
6354 }
6355
6356
6357 static enum ofperr
6358 handle_bundle_add(struct ofconn *ofconn, const struct ofp_header *oh)
6359 {
6360 enum ofperr error;
6361 struct ofputil_bundle_add_msg badd;
6362
6363 error = reject_slave_controller(ofconn);
6364 if (error) {
6365 return error;
6366 }
6367
6368 error = ofputil_decode_bundle_add(oh, &badd);
6369 if (error) {
6370 return error;
6371 }
6372
6373 return ofp_bundle_add_message(ofconn, &badd);
6374 }
6375
6376 static enum ofperr
6377 handle_openflow__(struct ofconn *ofconn, const struct ofpbuf *msg)
6378 OVS_EXCLUDED(ofproto_mutex)
6379 {
6380 const struct ofp_header *oh = msg->data;
6381 enum ofptype type;
6382 enum ofperr error;
6383
6384 error = ofptype_decode(&type, oh);
6385 if (error) {
6386 return error;
6387 }
6388 if (oh->version >= OFP13_VERSION && ofpmsg_is_stat_request(oh)
6389 && ofpmp_more(oh)) {
6390 /* We have no buffer implementation for multipart requests.
6391 * Report overflow for requests which consists of multiple
6392 * messages. */
6393 return OFPERR_OFPBRC_MULTIPART_BUFFER_OVERFLOW;
6394 }
6395
6396 switch (type) {
6397 /* OpenFlow requests. */
6398 case OFPTYPE_ECHO_REQUEST:
6399 return handle_echo_request(ofconn, oh);
6400
6401 case OFPTYPE_FEATURES_REQUEST:
6402 return handle_features_request(ofconn, oh);
6403
6404 case OFPTYPE_GET_CONFIG_REQUEST:
6405 return handle_get_config_request(ofconn, oh);
6406
6407 case OFPTYPE_SET_CONFIG:
6408 return handle_set_config(ofconn, oh);
6409
6410 case OFPTYPE_PACKET_OUT:
6411 return handle_packet_out(ofconn, oh);
6412
6413 case OFPTYPE_PORT_MOD:
6414 return handle_port_mod(ofconn, oh);
6415
6416 case OFPTYPE_FLOW_MOD:
6417 return handle_flow_mod(ofconn, oh);
6418
6419 case OFPTYPE_GROUP_MOD:
6420 return handle_group_mod(ofconn, oh);
6421
6422 case OFPTYPE_TABLE_MOD:
6423 return handle_table_mod(ofconn, oh);
6424
6425 case OFPTYPE_METER_MOD:
6426 return handle_meter_mod(ofconn, oh);
6427
6428 case OFPTYPE_BARRIER_REQUEST:
6429 return handle_barrier_request(ofconn, oh);
6430
6431 case OFPTYPE_ROLE_REQUEST:
6432 return handle_role_request(ofconn, oh);
6433
6434 /* OpenFlow replies. */
6435 case OFPTYPE_ECHO_REPLY:
6436 return 0;
6437
6438 /* Nicira extension requests. */
6439 case OFPTYPE_FLOW_MOD_TABLE_ID:
6440 return handle_nxt_flow_mod_table_id(ofconn, oh);
6441
6442 case OFPTYPE_SET_FLOW_FORMAT:
6443 return handle_nxt_set_flow_format(ofconn, oh);
6444
6445 case OFPTYPE_SET_PACKET_IN_FORMAT:
6446 return handle_nxt_set_packet_in_format(ofconn, oh);
6447
6448 case OFPTYPE_SET_CONTROLLER_ID:
6449 return handle_nxt_set_controller_id(ofconn, oh);
6450
6451 case OFPTYPE_FLOW_AGE:
6452 /* Nothing to do. */
6453 return 0;
6454
6455 case OFPTYPE_FLOW_MONITOR_CANCEL:
6456 return handle_flow_monitor_cancel(ofconn, oh);
6457
6458 case OFPTYPE_SET_ASYNC_CONFIG:
6459 return handle_nxt_set_async_config(ofconn, oh);
6460
6461 case OFPTYPE_GET_ASYNC_REQUEST:
6462 return handle_nxt_get_async_request(ofconn, oh);
6463
6464 /* Statistics requests. */
6465 case OFPTYPE_DESC_STATS_REQUEST:
6466 return handle_desc_stats_request(ofconn, oh);
6467
6468 case OFPTYPE_FLOW_STATS_REQUEST:
6469 return handle_flow_stats_request(ofconn, oh);
6470
6471 case OFPTYPE_AGGREGATE_STATS_REQUEST:
6472 return handle_aggregate_stats_request(ofconn, oh);
6473
6474 case OFPTYPE_TABLE_STATS_REQUEST:
6475 return handle_table_stats_request(ofconn, oh);
6476
6477 case OFPTYPE_TABLE_FEATURES_STATS_REQUEST:
6478 return handle_table_features_request(ofconn, oh);
6479
6480 case OFPTYPE_PORT_STATS_REQUEST:
6481 return handle_port_stats_request(ofconn, oh);
6482
6483 case OFPTYPE_QUEUE_STATS_REQUEST:
6484 return handle_queue_stats_request(ofconn, oh);
6485
6486 case OFPTYPE_PORT_DESC_STATS_REQUEST:
6487 return handle_port_desc_stats_request(ofconn, oh);
6488
6489 case OFPTYPE_FLOW_MONITOR_STATS_REQUEST:
6490 return handle_flow_monitor_request(ofconn, oh);
6491
6492 case OFPTYPE_METER_STATS_REQUEST:
6493 case OFPTYPE_METER_CONFIG_STATS_REQUEST:
6494 return handle_meter_request(ofconn, oh, type);
6495
6496 case OFPTYPE_METER_FEATURES_STATS_REQUEST:
6497 return handle_meter_features_request(ofconn, oh);
6498
6499 case OFPTYPE_GROUP_STATS_REQUEST:
6500 return handle_group_stats_request(ofconn, oh);
6501
6502 case OFPTYPE_GROUP_DESC_STATS_REQUEST:
6503 return handle_group_desc_stats_request(ofconn, oh);
6504
6505 case OFPTYPE_GROUP_FEATURES_STATS_REQUEST:
6506 return handle_group_features_stats_request(ofconn, oh);
6507
6508 case OFPTYPE_QUEUE_GET_CONFIG_REQUEST:
6509 return handle_queue_get_config_request(ofconn, oh);
6510
6511 case OFPTYPE_BUNDLE_CONTROL:
6512 return handle_bundle_control(ofconn, oh);
6513
6514 case OFPTYPE_BUNDLE_ADD_MESSAGE:
6515 return handle_bundle_add(ofconn, oh);
6516
6517 case OFPTYPE_HELLO:
6518 case OFPTYPE_ERROR:
6519 case OFPTYPE_FEATURES_REPLY:
6520 case OFPTYPE_GET_CONFIG_REPLY:
6521 case OFPTYPE_PACKET_IN:
6522 case OFPTYPE_FLOW_REMOVED:
6523 case OFPTYPE_PORT_STATUS:
6524 case OFPTYPE_BARRIER_REPLY:
6525 case OFPTYPE_QUEUE_GET_CONFIG_REPLY:
6526 case OFPTYPE_DESC_STATS_REPLY:
6527 case OFPTYPE_FLOW_STATS_REPLY:
6528 case OFPTYPE_QUEUE_STATS_REPLY:
6529 case OFPTYPE_PORT_STATS_REPLY:
6530 case OFPTYPE_TABLE_STATS_REPLY:
6531 case OFPTYPE_AGGREGATE_STATS_REPLY:
6532 case OFPTYPE_PORT_DESC_STATS_REPLY:
6533 case OFPTYPE_ROLE_REPLY:
6534 case OFPTYPE_FLOW_MONITOR_PAUSED:
6535 case OFPTYPE_FLOW_MONITOR_RESUMED:
6536 case OFPTYPE_FLOW_MONITOR_STATS_REPLY:
6537 case OFPTYPE_GET_ASYNC_REPLY:
6538 case OFPTYPE_GROUP_STATS_REPLY:
6539 case OFPTYPE_GROUP_DESC_STATS_REPLY:
6540 case OFPTYPE_GROUP_FEATURES_STATS_REPLY:
6541 case OFPTYPE_METER_STATS_REPLY:
6542 case OFPTYPE_METER_CONFIG_STATS_REPLY:
6543 case OFPTYPE_METER_FEATURES_STATS_REPLY:
6544 case OFPTYPE_TABLE_FEATURES_STATS_REPLY:
6545 case OFPTYPE_ROLE_STATUS:
6546 default:
6547 if (ofpmsg_is_stat_request(oh)) {
6548 return OFPERR_OFPBRC_BAD_STAT;
6549 } else {
6550 return OFPERR_OFPBRC_BAD_TYPE;
6551 }
6552 }
6553 }
6554
6555 static void
6556 handle_openflow(struct ofconn *ofconn, const struct ofpbuf *ofp_msg)
6557 OVS_EXCLUDED(ofproto_mutex)
6558 {
6559 int error = handle_openflow__(ofconn, ofp_msg);
6560 if (error) {
6561 ofconn_send_error(ofconn, ofp_msg->data, error);
6562 }
6563 COVERAGE_INC(ofproto_recv_openflow);
6564 }
6565 \f
6566 /* Asynchronous operations. */
6567
6568 static enum ofperr
6569 send_buffered_packet(struct ofconn *ofconn, uint32_t buffer_id,
6570 struct rule *rule)
6571 OVS_REQUIRES(ofproto_mutex)
6572 {
6573 enum ofperr error = 0;
6574 if (ofconn && buffer_id != UINT32_MAX) {
6575 struct ofproto *ofproto = ofconn_get_ofproto(ofconn);
6576 struct dp_packet *packet;
6577 ofp_port_t in_port;
6578
6579 error = ofconn_pktbuf_retrieve(ofconn, buffer_id, &packet, &in_port);
6580 if (packet) {
6581 struct rule_execute *re;
6582
6583 ofproto_rule_ref(rule);
6584
6585 re = xmalloc(sizeof *re);
6586 re->rule = rule;
6587 re->in_port = in_port;
6588 re->packet = packet;
6589
6590 if (!guarded_list_push_back(&ofproto->rule_executes,
6591 &re->list_node, 1024)) {
6592 ofproto_rule_unref(rule);
6593 dp_packet_delete(re->packet);
6594 free(re);
6595 }
6596 }
6597 }
6598 return error;
6599 }
6600 \f
6601 static uint64_t
6602 pick_datapath_id(const struct ofproto *ofproto)
6603 {
6604 const struct ofport *port;
6605
6606 port = ofproto_get_port(ofproto, OFPP_LOCAL);
6607 if (port) {
6608 uint8_t ea[ETH_ADDR_LEN];
6609 int error;
6610
6611 error = netdev_get_etheraddr(port->netdev, ea);
6612 if (!error) {
6613 return eth_addr_to_uint64(ea);
6614 }
6615 VLOG_WARN("%s: could not get MAC address for %s (%s)",
6616 ofproto->name, netdev_get_name(port->netdev),
6617 ovs_strerror(error));
6618 }
6619 return ofproto->fallback_dpid;
6620 }
6621
6622 static uint64_t
6623 pick_fallback_dpid(void)
6624 {
6625 uint8_t ea[ETH_ADDR_LEN];
6626 eth_addr_nicira_random(ea);
6627 return eth_addr_to_uint64(ea);
6628 }
6629 \f
6630 /* Table overflow policy. */
6631
6632 /* Chooses and updates 'rulep' with a rule to evict from 'table'. Sets 'rulep'
6633 * to NULL if the table is not configured to evict rules or if the table
6634 * contains no evictable rules. (Rules with a readlock on their evict rwlock,
6635 * or with no timeouts are not evictable.) */
6636 static bool
6637 choose_rule_to_evict(struct oftable *table, struct rule **rulep)
6638 OVS_REQUIRES(ofproto_mutex)
6639 {
6640 struct eviction_group *evg;
6641
6642 *rulep = NULL;
6643 if (!table->eviction_fields) {
6644 return false;
6645 }
6646
6647 /* In the common case, the outer and inner loops here will each be entered
6648 * exactly once:
6649 *
6650 * - The inner loop normally "return"s in its first iteration. If the
6651 * eviction group has any evictable rules, then it always returns in
6652 * some iteration.
6653 *
6654 * - The outer loop only iterates more than once if the largest eviction
6655 * group has no evictable rules.
6656 *
6657 * - The outer loop can exit only if table's 'max_flows' is all filled up
6658 * by unevictable rules. */
6659 HEAP_FOR_EACH (evg, size_node, &table->eviction_groups_by_size) {
6660 struct rule *rule;
6661
6662 HEAP_FOR_EACH (rule, evg_node, &evg->rules) {
6663 *rulep = rule;
6664 return true;
6665 }
6666 }
6667
6668 return false;
6669 }
6670 \f
6671 /* Eviction groups. */
6672
6673 /* Returns the priority to use for an eviction_group that contains 'n_rules'
6674 * rules. The priority contains low-order random bits to ensure that eviction
6675 * groups with the same number of rules are prioritized randomly. */
6676 static uint32_t
6677 eviction_group_priority(size_t n_rules)
6678 {
6679 uint16_t size = MIN(UINT16_MAX, n_rules);
6680 return (size << 16) | random_uint16();
6681 }
6682
6683 /* Updates 'evg', an eviction_group within 'table', following a change that
6684 * adds or removes rules in 'evg'. */
6685 static void
6686 eviction_group_resized(struct oftable *table, struct eviction_group *evg)
6687 OVS_REQUIRES(ofproto_mutex)
6688 {
6689 heap_change(&table->eviction_groups_by_size, &evg->size_node,
6690 eviction_group_priority(heap_count(&evg->rules)));
6691 }
6692
6693 /* Destroys 'evg', an eviction_group within 'table':
6694 *
6695 * - Removes all the rules, if any, from 'evg'. (It doesn't destroy the
6696 * rules themselves, just removes them from the eviction group.)
6697 *
6698 * - Removes 'evg' from 'table'.
6699 *
6700 * - Frees 'evg'. */
6701 static void
6702 eviction_group_destroy(struct oftable *table, struct eviction_group *evg)
6703 OVS_REQUIRES(ofproto_mutex)
6704 {
6705 while (!heap_is_empty(&evg->rules)) {
6706 struct rule *rule;
6707
6708 rule = CONTAINER_OF(heap_pop(&evg->rules), struct rule, evg_node);
6709 rule->eviction_group = NULL;
6710 }
6711 hmap_remove(&table->eviction_groups_by_id, &evg->id_node);
6712 heap_remove(&table->eviction_groups_by_size, &evg->size_node);
6713 heap_destroy(&evg->rules);
6714 free(evg);
6715 }
6716
6717 /* Removes 'rule' from its eviction group, if any. */
6718 static void
6719 eviction_group_remove_rule(struct rule *rule)
6720 OVS_REQUIRES(ofproto_mutex)
6721 {
6722 if (rule->eviction_group) {
6723 struct oftable *table = &rule->ofproto->tables[rule->table_id];
6724 struct eviction_group *evg = rule->eviction_group;
6725
6726 rule->eviction_group = NULL;
6727 heap_remove(&evg->rules, &rule->evg_node);
6728 if (heap_is_empty(&evg->rules)) {
6729 eviction_group_destroy(table, evg);
6730 } else {
6731 eviction_group_resized(table, evg);
6732 }
6733 }
6734 }
6735
6736 /* Hashes the 'rule''s values for the eviction_fields of 'rule''s table, and
6737 * returns the hash value. */
6738 static uint32_t
6739 eviction_group_hash_rule(struct rule *rule)
6740 OVS_REQUIRES(ofproto_mutex)
6741 {
6742 struct oftable *table = &rule->ofproto->tables[rule->table_id];
6743 const struct mf_subfield *sf;
6744 struct flow flow;
6745 uint32_t hash;
6746
6747 hash = table->eviction_group_id_basis;
6748 miniflow_expand(&rule->cr.match.flow, &flow);
6749 for (sf = table->eviction_fields;
6750 sf < &table->eviction_fields[table->n_eviction_fields];
6751 sf++)
6752 {
6753 if (mf_are_prereqs_ok(sf->field, &flow)) {
6754 union mf_value value;
6755
6756 mf_get_value(sf->field, &flow, &value);
6757 if (sf->ofs) {
6758 bitwise_zero(&value, sf->field->n_bytes, 0, sf->ofs);
6759 }
6760 if (sf->ofs + sf->n_bits < sf->field->n_bytes * 8) {
6761 unsigned int start = sf->ofs + sf->n_bits;
6762 bitwise_zero(&value, sf->field->n_bytes, start,
6763 sf->field->n_bytes * 8 - start);
6764 }
6765 hash = hash_bytes(&value, sf->field->n_bytes, hash);
6766 } else {
6767 hash = hash_int(hash, 0);
6768 }
6769 }
6770
6771 return hash;
6772 }
6773
6774 /* Returns an eviction group within 'table' with the given 'id', creating one
6775 * if necessary. */
6776 static struct eviction_group *
6777 eviction_group_find(struct oftable *table, uint32_t id)
6778 OVS_REQUIRES(ofproto_mutex)
6779 {
6780 struct eviction_group *evg;
6781
6782 HMAP_FOR_EACH_WITH_HASH (evg, id_node, id, &table->eviction_groups_by_id) {
6783 return evg;
6784 }
6785
6786 evg = xmalloc(sizeof *evg);
6787 hmap_insert(&table->eviction_groups_by_id, &evg->id_node, id);
6788 heap_insert(&table->eviction_groups_by_size, &evg->size_node,
6789 eviction_group_priority(0));
6790 heap_init(&evg->rules);
6791
6792 return evg;
6793 }
6794
6795 /* Returns an eviction priority for 'rule'. The return value should be
6796 * interpreted so that higher priorities make a rule more attractive candidates
6797 * for eviction.
6798 * Called only if have a timeout. */
6799 static uint32_t
6800 rule_eviction_priority(struct ofproto *ofproto, struct rule *rule)
6801 OVS_REQUIRES(ofproto_mutex)
6802 {
6803 long long int expiration = LLONG_MAX;
6804 long long int modified;
6805 uint32_t expiration_offset;
6806
6807 /* 'modified' needs protection even when we hold 'ofproto_mutex'. */
6808 ovs_mutex_lock(&rule->mutex);
6809 modified = rule->modified;
6810 ovs_mutex_unlock(&rule->mutex);
6811
6812 if (rule->hard_timeout) {
6813 expiration = modified + rule->hard_timeout * 1000;
6814 }
6815 if (rule->idle_timeout) {
6816 uint64_t packets, bytes;
6817 long long int used;
6818 long long int idle_expiration;
6819
6820 ofproto->ofproto_class->rule_get_stats(rule, &packets, &bytes, &used);
6821 idle_expiration = used + rule->idle_timeout * 1000;
6822 expiration = MIN(expiration, idle_expiration);
6823 }
6824
6825 if (expiration == LLONG_MAX) {
6826 return 0;
6827 }
6828
6829 /* Calculate the time of expiration as a number of (approximate) seconds
6830 * after program startup.
6831 *
6832 * This should work OK for program runs that last UINT32_MAX seconds or
6833 * less. Therefore, please restart OVS at least once every 136 years. */
6834 expiration_offset = (expiration >> 10) - (time_boot_msec() >> 10);
6835
6836 /* Invert the expiration offset because we're using a max-heap. */
6837 return UINT32_MAX - expiration_offset;
6838 }
6839
6840 /* Adds 'rule' to an appropriate eviction group for its oftable's
6841 * configuration. Does nothing if 'rule''s oftable doesn't have eviction
6842 * enabled, or if 'rule' is a permanent rule (one that will never expire on its
6843 * own).
6844 *
6845 * The caller must ensure that 'rule' is not already in an eviction group. */
6846 static void
6847 eviction_group_add_rule(struct rule *rule)
6848 OVS_REQUIRES(ofproto_mutex)
6849 {
6850 struct ofproto *ofproto = rule->ofproto;
6851 struct oftable *table = &ofproto->tables[rule->table_id];
6852 bool has_timeout;
6853
6854 /* Timeouts may be modified only when holding 'ofproto_mutex'. We have it
6855 * so no additional protection is needed. */
6856 has_timeout = rule->hard_timeout || rule->idle_timeout;
6857
6858 if (table->eviction_fields && has_timeout) {
6859 struct eviction_group *evg;
6860
6861 evg = eviction_group_find(table, eviction_group_hash_rule(rule));
6862
6863 rule->eviction_group = evg;
6864 heap_insert(&evg->rules, &rule->evg_node,
6865 rule_eviction_priority(ofproto, rule));
6866 eviction_group_resized(table, evg);
6867 }
6868 }
6869 \f
6870 /* oftables. */
6871
6872 /* Initializes 'table'. */
6873 static void
6874 oftable_init(struct oftable *table)
6875 {
6876 memset(table, 0, sizeof *table);
6877 classifier_init(&table->cls, flow_segment_u64s);
6878 table->max_flows = UINT_MAX;
6879 atomic_init(&table->miss_config, OFPUTIL_TABLE_MISS_DEFAULT);
6880
6881 classifier_set_prefix_fields(&table->cls, default_prefix_fields,
6882 ARRAY_SIZE(default_prefix_fields));
6883
6884 atomic_init(&table->n_matched, 0);
6885 atomic_init(&table->n_missed, 0);
6886 }
6887
6888 /* Destroys 'table', including its classifier and eviction groups.
6889 *
6890 * The caller is responsible for freeing 'table' itself. */
6891 static void
6892 oftable_destroy(struct oftable *table)
6893 {
6894 ovs_assert(classifier_is_empty(&table->cls));
6895 oftable_disable_eviction(table);
6896 classifier_destroy(&table->cls);
6897 free(table->name);
6898 }
6899
6900 /* Changes the name of 'table' to 'name'. If 'name' is NULL or the empty
6901 * string, then 'table' will use its default name.
6902 *
6903 * This only affects the name exposed for a table exposed through the OpenFlow
6904 * OFPST_TABLE (as printed by "ovs-ofctl dump-tables"). */
6905 static void
6906 oftable_set_name(struct oftable *table, const char *name)
6907 {
6908 if (name && name[0]) {
6909 int len = strnlen(name, OFP_MAX_TABLE_NAME_LEN);
6910 if (!table->name || strncmp(name, table->name, len)) {
6911 free(table->name);
6912 table->name = xmemdup0(name, len);
6913 }
6914 } else {
6915 free(table->name);
6916 table->name = NULL;
6917 }
6918 }
6919
6920 /* oftables support a choice of two policies when adding a rule would cause the
6921 * number of flows in the table to exceed the configured maximum number: either
6922 * they can refuse to add the new flow or they can evict some existing flow.
6923 * This function configures the former policy on 'table'. */
6924 static void
6925 oftable_disable_eviction(struct oftable *table)
6926 OVS_REQUIRES(ofproto_mutex)
6927 {
6928 if (table->eviction_fields) {
6929 struct eviction_group *evg, *next;
6930
6931 HMAP_FOR_EACH_SAFE (evg, next, id_node,
6932 &table->eviction_groups_by_id) {
6933 eviction_group_destroy(table, evg);
6934 }
6935 hmap_destroy(&table->eviction_groups_by_id);
6936 heap_destroy(&table->eviction_groups_by_size);
6937
6938 free(table->eviction_fields);
6939 table->eviction_fields = NULL;
6940 table->n_eviction_fields = 0;
6941 }
6942 }
6943
6944 /* oftables support a choice of two policies when adding a rule would cause the
6945 * number of flows in the table to exceed the configured maximum number: either
6946 * they can refuse to add the new flow or they can evict some existing flow.
6947 * This function configures the latter policy on 'table', with fairness based
6948 * on the values of the 'n_fields' fields specified in 'fields'. (Specifying
6949 * 'n_fields' as 0 disables fairness.) */
6950 static void
6951 oftable_enable_eviction(struct oftable *table,
6952 const struct mf_subfield *fields, size_t n_fields)
6953 OVS_REQUIRES(ofproto_mutex)
6954 {
6955 struct rule *rule;
6956
6957 if (table->eviction_fields
6958 && n_fields == table->n_eviction_fields
6959 && (!n_fields
6960 || !memcmp(fields, table->eviction_fields,
6961 n_fields * sizeof *fields))) {
6962 /* No change. */
6963 return;
6964 }
6965
6966 oftable_disable_eviction(table);
6967
6968 table->n_eviction_fields = n_fields;
6969 table->eviction_fields = xmemdup(fields, n_fields * sizeof *fields);
6970
6971 table->eviction_group_id_basis = random_uint32();
6972 hmap_init(&table->eviction_groups_by_id);
6973 heap_init(&table->eviction_groups_by_size);
6974
6975 CLS_FOR_EACH (rule, cr, &table->cls) {
6976 eviction_group_add_rule(rule);
6977 }
6978 }
6979
6980 /* Removes 'rule' from the ofproto data structures AFTER caller has removed
6981 * it from the classifier. */
6982 static void
6983 ofproto_rule_remove__(struct ofproto *ofproto, struct rule *rule)
6984 OVS_REQUIRES(ofproto_mutex)
6985 {
6986 cookies_remove(ofproto, rule);
6987
6988 eviction_group_remove_rule(rule);
6989 if (!list_is_empty(&rule->expirable)) {
6990 list_remove(&rule->expirable);
6991 }
6992 if (!list_is_empty(&rule->meter_list_node)) {
6993 list_remove(&rule->meter_list_node);
6994 list_init(&rule->meter_list_node);
6995 }
6996 }
6997
6998 static void
6999 oftable_remove_rule(struct rule *rule)
7000 OVS_REQUIRES(ofproto_mutex)
7001 {
7002 struct classifier *cls = &rule->ofproto->tables[rule->table_id].cls;
7003
7004 if (classifier_remove(cls, &rule->cr)) {
7005 ofproto_rule_remove__(rule->ofproto, rule);
7006 }
7007 }
7008 \f
7009 /* unixctl commands. */
7010
7011 struct ofproto *
7012 ofproto_lookup(const char *name)
7013 {
7014 struct ofproto *ofproto;
7015
7016 HMAP_FOR_EACH_WITH_HASH (ofproto, hmap_node, hash_string(name, 0),
7017 &all_ofprotos) {
7018 if (!strcmp(ofproto->name, name)) {
7019 return ofproto;
7020 }
7021 }
7022 return NULL;
7023 }
7024
7025 static void
7026 ofproto_unixctl_list(struct unixctl_conn *conn, int argc OVS_UNUSED,
7027 const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
7028 {
7029 struct ofproto *ofproto;
7030 struct ds results;
7031
7032 ds_init(&results);
7033 HMAP_FOR_EACH (ofproto, hmap_node, &all_ofprotos) {
7034 ds_put_format(&results, "%s\n", ofproto->name);
7035 }
7036 unixctl_command_reply(conn, ds_cstr(&results));
7037 ds_destroy(&results);
7038 }
7039
7040 static void
7041 ofproto_unixctl_init(void)
7042 {
7043 static bool registered;
7044 if (registered) {
7045 return;
7046 }
7047 registered = true;
7048
7049 unixctl_command_register("ofproto/list", "", 0, 0,
7050 ofproto_unixctl_list, NULL);
7051 }
7052 \f
7053 /* Linux VLAN device support (e.g. "eth0.10" for VLAN 10.)
7054 *
7055 * This is deprecated. It is only for compatibility with broken device drivers
7056 * in old versions of Linux that do not properly support VLANs when VLAN
7057 * devices are not used. When broken device drivers are no longer in
7058 * widespread use, we will delete these interfaces. */
7059
7060 /* Sets a 1-bit in the 4096-bit 'vlan_bitmap' for each VLAN ID that is matched
7061 * (exactly) by an OpenFlow rule in 'ofproto'. */
7062 void
7063 ofproto_get_vlan_usage(struct ofproto *ofproto, unsigned long int *vlan_bitmap)
7064 {
7065 struct match match;
7066 struct cls_rule target;
7067 const struct oftable *oftable;
7068
7069 match_init_catchall(&match);
7070 match_set_vlan_vid_masked(&match, htons(VLAN_CFI), htons(VLAN_CFI));
7071 cls_rule_init(&target, &match, 0);
7072
7073 free(ofproto->vlan_bitmap);
7074 ofproto->vlan_bitmap = bitmap_allocate(4096);
7075 ofproto->vlans_changed = false;
7076
7077 OFPROTO_FOR_EACH_TABLE (oftable, ofproto) {
7078 struct rule *rule;
7079
7080 CLS_FOR_EACH_TARGET (rule, cr, &oftable->cls, &target) {
7081 if (minimask_get_vid_mask(&rule->cr.match.mask) == VLAN_VID_MASK) {
7082 uint16_t vid = miniflow_get_vid(&rule->cr.match.flow);
7083
7084 bitmap_set1(vlan_bitmap, vid);
7085 bitmap_set1(ofproto->vlan_bitmap, vid);
7086 }
7087 }
7088 }
7089
7090 cls_rule_destroy(&target);
7091 }
7092
7093 /* Returns true if new VLANs have come into use by the flow table since the
7094 * last call to ofproto_get_vlan_usage().
7095 *
7096 * We don't track when old VLANs stop being used. */
7097 bool
7098 ofproto_has_vlan_usage_changed(const struct ofproto *ofproto)
7099 {
7100 return ofproto->vlans_changed;
7101 }
7102
7103 /* Configures a VLAN splinter binding between the ports identified by OpenFlow
7104 * port numbers 'vlandev_ofp_port' and 'realdev_ofp_port'. If
7105 * 'realdev_ofp_port' is nonzero, then the VLAN device is enslaved to the real
7106 * device as a VLAN splinter for VLAN ID 'vid'. If 'realdev_ofp_port' is zero,
7107 * then the VLAN device is un-enslaved. */
7108 int
7109 ofproto_port_set_realdev(struct ofproto *ofproto, ofp_port_t vlandev_ofp_port,
7110 ofp_port_t realdev_ofp_port, int vid)
7111 {
7112 struct ofport *ofport;
7113 int error;
7114
7115 ovs_assert(vlandev_ofp_port != realdev_ofp_port);
7116
7117 ofport = ofproto_get_port(ofproto, vlandev_ofp_port);
7118 if (!ofport) {
7119 VLOG_WARN("%s: cannot set realdev on nonexistent port %"PRIu16,
7120 ofproto->name, vlandev_ofp_port);
7121 return EINVAL;
7122 }
7123
7124 if (!ofproto->ofproto_class->set_realdev) {
7125 if (!vlandev_ofp_port) {
7126 return 0;
7127 }
7128 VLOG_WARN("%s: vlan splinters not supported", ofproto->name);
7129 return EOPNOTSUPP;
7130 }
7131
7132 error = ofproto->ofproto_class->set_realdev(ofport, realdev_ofp_port, vid);
7133 if (error) {
7134 VLOG_WARN("%s: setting realdev on port %"PRIu16" (%s) failed (%s)",
7135 ofproto->name, vlandev_ofp_port,
7136 netdev_get_name(ofport->netdev), ovs_strerror(error));
7137 }
7138 return error;
7139 }