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