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