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