2 * Copyright (c) 2008, 2009, 2010 Nicira Networks.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
18 #include "learning-switch.h"
22 #include <netinet/in.h>
26 #include "byte-order.h"
27 #include "classifier.h"
30 #include "mac-learning.h"
32 #include "ofp-parse.h"
33 #include "ofp-print.h"
35 #include "openflow/openflow.h"
36 #include "poll-loop.h"
43 VLOG_DEFINE_THIS_MODULE(learning_switch);
46 struct hmap_node hmap_node; /* Hash node for port number. */
47 uint16_t port_no; /* OpenFlow port number, in host byte order. */
48 uint32_t queue_id; /* OpenFlow queue number. */
52 /* If nonnegative, the switch sets up flows that expire after the given
53 * number of seconds (or never expire, if the value is OFP_FLOW_PERMANENT).
54 * Otherwise, the switch processes every packet. */
57 unsigned long long int datapath_id;
58 time_t last_features_request;
59 struct mac_learning *ml; /* NULL to act as hub instead of switch. */
60 struct flow_wildcards wc; /* Wildcards to apply to flows. */
61 bool action_normal; /* Use OFPP_NORMAL? */
63 /* Queue distribution. */
64 uint32_t default_queue; /* Default OpenFlow queue, or UINT32_MAX. */
65 struct hmap queue_numbers; /* Map from port number to lswitch_port. */
66 struct shash queue_names; /* Map from port name to lswitch_port. */
68 /* Number of outgoing queued packets on the rconn. */
69 struct rconn_packet_counter *queued;
72 /* The log messages here could actually be useful in debugging, so keep the
73 * rate limit relatively high. */
74 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(30, 300);
76 static void queue_tx(struct lswitch *, struct rconn *, struct ofpbuf *);
77 static void send_features_request(struct lswitch *, struct rconn *);
79 static void process_switch_features(struct lswitch *,
80 struct ofp_switch_features *);
81 static void process_packet_in(struct lswitch *, struct rconn *,
82 const struct ofp_packet_in *);
83 static void process_echo_request(struct lswitch *, struct rconn *,
84 const struct ofp_header *);
86 /* Creates and returns a new learning switch whose configuration is given by
89 * 'rconn' is used to send out an OpenFlow features request. */
91 lswitch_create(struct rconn *rconn, const struct lswitch_config *cfg)
95 sw = xzalloc(sizeof *sw);
96 sw->max_idle = cfg->max_idle;
98 sw->last_features_request = time_now() - 1;
99 sw->ml = cfg->mode == LSW_LEARN ? mac_learning_create() : NULL;
100 sw->action_normal = cfg->mode == LSW_NORMAL;
102 flow_wildcards_init_exact(&sw->wc);
103 if (!cfg->exact_flows) {
104 /* We cannot wildcard all fields.
105 * We need in_port to detect moves.
106 * We need both SA and DA to do learning. */
107 sw->wc.wildcards = (FWW_DL_TYPE | FWW_NW_PROTO
108 | FWW_TP_SRC | FWW_TP_DST);
109 sw->wc.nw_src_mask = htonl(0);
110 sw->wc.nw_dst_mask = htonl(0);
113 sw->default_queue = cfg->default_queue;
114 hmap_init(&sw->queue_numbers);
115 shash_init(&sw->queue_names);
116 if (cfg->port_queues) {
117 struct shash_node *node;
119 SHASH_FOR_EACH (node, cfg->port_queues) {
120 struct lswitch_port *port = xmalloc(sizeof *port);
121 hmap_node_nullify(&port->hmap_node);
122 port->queue_id = (uintptr_t) node->data;
123 shash_add(&sw->queue_names, node->name, port);
127 sw->queued = rconn_packet_counter_create();
128 send_features_request(sw, rconn);
130 if (cfg->default_flows) {
131 const struct ofpbuf *b;
133 LIST_FOR_EACH (b, list_node, cfg->default_flows) {
134 queue_tx(sw, rconn, ofpbuf_clone(b));
143 lswitch_destroy(struct lswitch *sw)
146 struct lswitch_port *node, *next;
148 HMAP_FOR_EACH_SAFE (node, next, hmap_node, &sw->queue_numbers) {
149 hmap_remove(&sw->queue_numbers, &node->hmap_node);
152 shash_destroy(&sw->queue_names);
153 mac_learning_destroy(sw->ml);
154 rconn_packet_counter_destroy(sw->queued);
159 /* Takes care of necessary 'sw' activity, except for receiving packets (which
160 * the caller must do). */
162 lswitch_run(struct lswitch *sw)
165 mac_learning_run(sw->ml, NULL);
170 lswitch_wait(struct lswitch *sw)
173 mac_learning_wait(sw->ml);
177 /* Processes 'msg', which should be an OpenFlow received on 'rconn', according
178 * to the learning switch state in 'sw'. The most likely result of processing
179 * is that flow-setup and packet-out OpenFlow messages will be sent out on
182 lswitch_process_packet(struct lswitch *sw, struct rconn *rconn,
183 const struct ofpbuf *msg)
185 const struct ofp_header *oh = msg->data;
186 const struct ofputil_msg_type *type;
188 if (sw->datapath_id == 0
189 && oh->type != OFPT_ECHO_REQUEST
190 && oh->type != OFPT_FEATURES_REPLY) {
191 send_features_request(sw, rconn);
195 ofputil_decode_msg_type(oh, &type);
196 switch (ofputil_msg_type_code(type)) {
197 case OFPUTIL_OFPT_ECHO_REQUEST:
198 process_echo_request(sw, rconn, msg->data);
201 case OFPUTIL_OFPT_FEATURES_REPLY:
202 process_switch_features(sw, msg->data);
205 case OFPUTIL_OFPT_PACKET_IN:
206 process_packet_in(sw, rconn, msg->data);
209 case OFPUTIL_OFPT_FLOW_REMOVED:
213 case OFPUTIL_INVALID:
214 case OFPUTIL_OFPT_HELLO:
215 case OFPUTIL_OFPT_ERROR:
216 case OFPUTIL_OFPT_ECHO_REPLY:
217 case OFPUTIL_OFPT_FEATURES_REQUEST:
218 case OFPUTIL_OFPT_GET_CONFIG_REQUEST:
219 case OFPUTIL_OFPT_GET_CONFIG_REPLY:
220 case OFPUTIL_OFPT_SET_CONFIG:
221 case OFPUTIL_OFPT_PORT_STATUS:
222 case OFPUTIL_OFPT_PACKET_OUT:
223 case OFPUTIL_OFPT_FLOW_MOD:
224 case OFPUTIL_OFPT_PORT_MOD:
225 case OFPUTIL_OFPT_BARRIER_REQUEST:
226 case OFPUTIL_OFPT_BARRIER_REPLY:
227 case OFPUTIL_OFPT_QUEUE_GET_CONFIG_REQUEST:
228 case OFPUTIL_OFPT_QUEUE_GET_CONFIG_REPLY:
229 case OFPUTIL_OFPST_DESC_REQUEST:
230 case OFPUTIL_OFPST_FLOW_REQUEST:
231 case OFPUTIL_OFPST_AGGREGATE_REQUEST:
232 case OFPUTIL_OFPST_TABLE_REQUEST:
233 case OFPUTIL_OFPST_PORT_REQUEST:
234 case OFPUTIL_OFPST_QUEUE_REQUEST:
235 case OFPUTIL_OFPST_DESC_REPLY:
236 case OFPUTIL_OFPST_FLOW_REPLY:
237 case OFPUTIL_OFPST_QUEUE_REPLY:
238 case OFPUTIL_OFPST_PORT_REPLY:
239 case OFPUTIL_OFPST_TABLE_REPLY:
240 case OFPUTIL_OFPST_AGGREGATE_REPLY:
241 case OFPUTIL_NXT_STATUS_REQUEST:
242 case OFPUTIL_NXT_STATUS_REPLY:
243 case OFPUTIL_NXT_TUN_ID_FROM_COOKIE:
244 case OFPUTIL_NXT_ROLE_REQUEST:
245 case OFPUTIL_NXT_ROLE_REPLY:
246 case OFPUTIL_NXT_SET_FLOW_FORMAT:
247 case OFPUTIL_NXT_FLOW_MOD:
248 case OFPUTIL_NXT_FLOW_REMOVED:
249 case OFPUTIL_NXST_FLOW_REQUEST:
250 case OFPUTIL_NXST_AGGREGATE_REQUEST:
251 case OFPUTIL_NXST_FLOW_REPLY:
252 case OFPUTIL_NXST_AGGREGATE_REPLY:
254 if (VLOG_IS_DBG_ENABLED()) {
255 char *s = ofp_to_string(msg->data, msg->size, 2);
256 VLOG_DBG_RL(&rl, "%016llx: OpenFlow packet ignored: %s",
264 send_features_request(struct lswitch *sw, struct rconn *rconn)
266 time_t now = time_now();
267 if (now >= sw->last_features_request + 1) {
269 struct ofp_switch_config *osc;
271 /* Send OFPT_FEATURES_REQUEST. */
272 make_openflow(sizeof(struct ofp_header), OFPT_FEATURES_REQUEST, &b);
273 queue_tx(sw, rconn, b);
275 /* Send OFPT_SET_CONFIG. */
276 osc = make_openflow(sizeof *osc, OFPT_SET_CONFIG, &b);
277 osc->miss_send_len = htons(OFP_DEFAULT_MISS_SEND_LEN);
278 queue_tx(sw, rconn, b);
280 sw->last_features_request = now;
285 queue_tx(struct lswitch *sw, struct rconn *rconn, struct ofpbuf *b)
287 int retval = rconn_send_with_limit(rconn, b, sw->queued, 10);
288 if (retval && retval != ENOTCONN) {
289 if (retval == EAGAIN) {
290 VLOG_INFO_RL(&rl, "%016llx: %s: tx queue overflow",
291 sw->datapath_id, rconn_get_name(rconn));
293 VLOG_WARN_RL(&rl, "%016llx: %s: send: %s",
294 sw->datapath_id, rconn_get_name(rconn),
301 process_switch_features(struct lswitch *sw, struct ofp_switch_features *osf)
306 sw->datapath_id = ntohll(osf->datapath_id);
308 n_ports = (ntohs(osf->header.length) - sizeof *osf) / sizeof *osf->ports;
309 for (i = 0; i < n_ports; i++) {
310 struct ofp_phy_port *opp = &osf->ports[i];
311 struct lswitch_port *lp;
313 opp->name[OFP_MAX_PORT_NAME_LEN - 1] = '\0';
314 lp = shash_find_data(&sw->queue_names, opp->name);
315 if (lp && hmap_node_is_null(&lp->hmap_node)) {
316 lp->port_no = ntohs(opp->port_no);
317 hmap_insert(&sw->queue_numbers, &lp->hmap_node,
318 hash_int(lp->port_no, 0));
324 lswitch_choose_destination(struct lswitch *sw, const struct flow *flow)
328 /* Learn the source MAC. */
330 if (mac_learning_learn(sw->ml, flow->dl_src, 0, flow->in_port,
331 GRAT_ARP_LOCK_NONE)) {
332 VLOG_DBG_RL(&rl, "%016llx: learned that "ETH_ADDR_FMT" is on "
333 "port %"PRIu16, sw->datapath_id,
334 ETH_ADDR_ARGS(flow->dl_src), flow->in_port);
338 /* Drop frames for reserved multicast addresses. */
339 if (eth_addr_is_reserved(flow->dl_dst)) {
343 out_port = OFPP_FLOOD;
345 int learned_port = mac_learning_lookup(sw->ml, flow->dl_dst, 0, NULL);
346 if (learned_port >= 0) {
347 out_port = learned_port;
348 if (out_port == flow->in_port) {
349 /* Don't send a packet back out its input port. */
355 /* Check if we need to use "NORMAL" action. */
356 if (sw->action_normal && out_port != OFPP_FLOOD) {
364 get_queue_id(const struct lswitch *sw, uint16_t in_port)
366 const struct lswitch_port *port;
368 HMAP_FOR_EACH_WITH_HASH (port, hmap_node, hash_int(in_port, 0),
369 &sw->queue_numbers) {
370 if (port->port_no == in_port) {
371 return port->queue_id;
375 return sw->default_queue;
379 process_packet_in(struct lswitch *sw, struct rconn *rconn,
380 const struct ofp_packet_in *opi)
382 uint16_t in_port = ntohs(opi->in_port);
386 struct ofp_action_header actions[2];
389 size_t pkt_ofs, pkt_len;
393 /* Ignore packets sent via output to OFPP_CONTROLLER. This library never
394 * uses such an action. You never know what experiments might be going on,
395 * though, and it seems best not to interfere with them. */
396 if (opi->reason != OFPR_NO_MATCH) {
400 /* Extract flow data from 'opi' into 'flow'. */
401 pkt_ofs = offsetof(struct ofp_packet_in, data);
402 pkt_len = ntohs(opi->header.length) - pkt_ofs;
403 ofpbuf_use_const(&pkt, opi->data, pkt_len);
404 flow_extract(&pkt, 0, in_port, &flow);
406 /* Choose output port. */
407 out_port = lswitch_choose_destination(sw, &flow);
410 queue_id = get_queue_id(sw, in_port);
411 if (out_port == OFPP_NONE) {
413 } else if (queue_id == UINT32_MAX || out_port >= OFPP_MAX) {
414 struct ofp_action_output oao;
416 memset(&oao, 0, sizeof oao);
417 oao.type = htons(OFPAT_OUTPUT);
418 oao.len = htons(sizeof oao);
419 oao.port = htons(out_port);
421 memcpy(actions, &oao, sizeof oao);
422 actions_len = sizeof oao;
424 struct ofp_action_enqueue oae;
426 memset(&oae, 0, sizeof oae);
427 oae.type = htons(OFPAT_ENQUEUE);
428 oae.len = htons(sizeof oae);
429 oae.port = htons(out_port);
430 oae.queue_id = htonl(queue_id);
432 memcpy(actions, &oae, sizeof oae);
433 actions_len = sizeof oae;
435 assert(actions_len <= sizeof actions);
437 /* Send the packet, and possibly the whole flow, to the output port. */
438 if (sw->max_idle >= 0 && (!sw->ml || out_port != OFPP_FLOOD)) {
439 struct ofpbuf *buffer;
440 struct ofp_flow_mod *ofm;
441 struct cls_rule rule;
443 /* The output port is known, or we always flood everything, so add a
445 cls_rule_init(&flow, &sw->wc, 0, &rule);
446 buffer = make_add_flow(&rule, ntohl(opi->buffer_id),
447 sw->max_idle, actions_len);
448 ofpbuf_put(buffer, actions, actions_len);
450 queue_tx(sw, rconn, buffer);
452 /* If the switch didn't buffer the packet, we need to send a copy. */
453 if (ntohl(opi->buffer_id) == UINT32_MAX && actions_len > 0) {
455 make_packet_out(&pkt, UINT32_MAX, in_port,
456 actions, actions_len / sizeof *actions));
459 /* We don't know that MAC, or we don't set up flows. Send along the
460 * packet without setting up a flow. */
461 if (ntohl(opi->buffer_id) != UINT32_MAX || actions_len > 0) {
463 make_packet_out(&pkt, ntohl(opi->buffer_id), in_port,
464 actions, actions_len / sizeof *actions));
470 process_echo_request(struct lswitch *sw, struct rconn *rconn,
471 const struct ofp_header *rq)
473 queue_tx(sw, rconn, make_echo_reply(rq));