Prepare Open vSwitch 1.1.2 release.
[sliver-openvswitch.git] / lib / learning-switch.c
1 /*
2  * Copyright (c) 2008, 2009, 2010, 2011 Nicira Networks.
3  *
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:
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16
17 #include <config.h>
18 #include "learning-switch.h"
19
20 #include <errno.h>
21 #include <inttypes.h>
22 #include <netinet/in.h>
23 #include <stdlib.h>
24 #include <time.h>
25
26 #include "byte-order.h"
27 #include "classifier.h"
28 #include "flow.h"
29 #include "hmap.h"
30 #include "mac-learning.h"
31 #include "ofpbuf.h"
32 #include "ofp-parse.h"
33 #include "ofp-print.h"
34 #include "ofp-util.h"
35 #include "openflow/openflow.h"
36 #include "poll-loop.h"
37 #include "rconn.h"
38 #include "shash.h"
39 #include "timeval.h"
40 #include "vconn.h"
41 #include "vlog.h"
42
43 VLOG_DEFINE_THIS_MODULE(learning_switch);
44
45 struct lswitch_port {
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. */
49 };
50
51 struct lswitch {
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. */
55     int max_idle;
56
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? */
62
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. */
67
68     /* Number of outgoing queued packets on the rconn. */
69     struct rconn_packet_counter *queued;
70 };
71
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);
75
76 static void queue_tx(struct lswitch *, struct rconn *, struct ofpbuf *);
77 static void send_features_request(struct lswitch *, struct rconn *);
78
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 *);
85
86 /* Creates and returns a new learning switch whose configuration is given by
87  * 'cfg'.
88  *
89  * 'rconn' is used to send out an OpenFlow features request. */
90 struct lswitch *
91 lswitch_create(struct rconn *rconn, const struct lswitch_config *cfg)
92 {
93     struct lswitch *sw;
94
95     sw = xzalloc(sizeof *sw);
96     sw->max_idle = cfg->max_idle;
97     sw->datapath_id = 0;
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;
101
102     if (!cfg->exact_flows) {
103         /* We cannot wildcard all fields.
104          * We need in_port to detect moves.
105          * We need both SA and DA to do learning. */
106         flow_wildcards_init_catchall(&sw->wc);
107         sw->wc.wildcards &= ~(FWW_IN_PORT | FWW_DL_SRC | FWW_DL_DST
108                               | FWW_ETH_MCAST);
109         sw->wc.vlan_tci_mask = htons(VLAN_CFI | VLAN_VID_MASK);
110     } else {
111         flow_wildcards_init_exact(&sw->wc);
112     }
113
114     sw->default_queue = cfg->default_queue;
115     hmap_init(&sw->queue_numbers);
116     shash_init(&sw->queue_names);
117     if (cfg->port_queues) {
118         struct shash_node *node;
119
120         SHASH_FOR_EACH (node, cfg->port_queues) {
121             struct lswitch_port *port = xmalloc(sizeof *port);
122             hmap_node_nullify(&port->hmap_node);
123             port->queue_id = (uintptr_t) node->data;
124             shash_add(&sw->queue_names, node->name, port);
125         }
126     }
127
128     sw->queued = rconn_packet_counter_create();
129     send_features_request(sw, rconn);
130
131     if (cfg->default_flows) {
132         const struct ofpbuf *b;
133
134         LIST_FOR_EACH (b, list_node, cfg->default_flows) {
135             struct ofpbuf *copy = ofpbuf_clone(b);
136             int error = rconn_send(rconn, copy, NULL);
137             if (error) {
138                 VLOG_INFO_RL(&rl, "%s: failed to queue default flows (%s)",
139                              rconn_get_name(rconn), strerror(error));
140                 ofpbuf_delete(copy);
141                 break;
142             }
143         }
144     }
145     
146     return sw;
147 }
148
149 /* Destroys 'sw'. */
150 void
151 lswitch_destroy(struct lswitch *sw)
152 {
153     if (sw) {
154         struct lswitch_port *node, *next;
155
156         HMAP_FOR_EACH_SAFE (node, next, hmap_node, &sw->queue_numbers) {
157             hmap_remove(&sw->queue_numbers, &node->hmap_node);
158             free(node);
159         }
160         shash_destroy(&sw->queue_names);
161         mac_learning_destroy(sw->ml);
162         rconn_packet_counter_destroy(sw->queued);
163         free(sw);
164     }
165 }
166
167 /* Takes care of necessary 'sw' activity, except for receiving packets (which
168  * the caller must do). */
169 void
170 lswitch_run(struct lswitch *sw)
171 {
172     if (sw->ml) {
173         mac_learning_run(sw->ml, NULL);
174     }
175 }
176
177 void
178 lswitch_wait(struct lswitch *sw)
179 {
180     if (sw->ml) {
181         mac_learning_wait(sw->ml);
182     }
183 }
184
185 /* Processes 'msg', which should be an OpenFlow received on 'rconn', according
186  * to the learning switch state in 'sw'.  The most likely result of processing
187  * is that flow-setup and packet-out OpenFlow messages will be sent out on
188  * 'rconn'.  */
189 void
190 lswitch_process_packet(struct lswitch *sw, struct rconn *rconn,
191                        const struct ofpbuf *msg)
192 {
193     const struct ofp_header *oh = msg->data;
194     const struct ofputil_msg_type *type;
195
196     if (sw->datapath_id == 0
197         && oh->type != OFPT_ECHO_REQUEST
198         && oh->type != OFPT_FEATURES_REPLY) {
199         send_features_request(sw, rconn);
200         return;
201     }
202
203     ofputil_decode_msg_type(oh, &type);
204     switch (ofputil_msg_type_code(type)) {
205     case OFPUTIL_OFPT_ECHO_REQUEST:
206         process_echo_request(sw, rconn, msg->data);
207         break;
208
209     case OFPUTIL_OFPT_FEATURES_REPLY:
210         process_switch_features(sw, msg->data);
211         break;
212
213     case OFPUTIL_OFPT_PACKET_IN:
214         process_packet_in(sw, rconn, msg->data);
215         break;
216
217     case OFPUTIL_OFPT_FLOW_REMOVED:
218         /* Nothing to do. */
219         break;
220
221     case OFPUTIL_INVALID:
222     case OFPUTIL_OFPT_HELLO:
223     case OFPUTIL_OFPT_ERROR:
224     case OFPUTIL_OFPT_ECHO_REPLY:
225     case OFPUTIL_OFPT_FEATURES_REQUEST:
226     case OFPUTIL_OFPT_GET_CONFIG_REQUEST:
227     case OFPUTIL_OFPT_GET_CONFIG_REPLY:
228     case OFPUTIL_OFPT_SET_CONFIG:
229     case OFPUTIL_OFPT_PORT_STATUS:
230     case OFPUTIL_OFPT_PACKET_OUT:
231     case OFPUTIL_OFPT_FLOW_MOD:
232     case OFPUTIL_OFPT_PORT_MOD:
233     case OFPUTIL_OFPT_BARRIER_REQUEST:
234     case OFPUTIL_OFPT_BARRIER_REPLY:
235     case OFPUTIL_OFPT_QUEUE_GET_CONFIG_REQUEST:
236     case OFPUTIL_OFPT_QUEUE_GET_CONFIG_REPLY:
237     case OFPUTIL_OFPST_DESC_REQUEST:
238     case OFPUTIL_OFPST_FLOW_REQUEST:
239     case OFPUTIL_OFPST_AGGREGATE_REQUEST:
240     case OFPUTIL_OFPST_TABLE_REQUEST:
241     case OFPUTIL_OFPST_PORT_REQUEST:
242     case OFPUTIL_OFPST_QUEUE_REQUEST:
243     case OFPUTIL_OFPST_DESC_REPLY:
244     case OFPUTIL_OFPST_FLOW_REPLY:
245     case OFPUTIL_OFPST_QUEUE_REPLY:
246     case OFPUTIL_OFPST_PORT_REPLY:
247     case OFPUTIL_OFPST_TABLE_REPLY:
248     case OFPUTIL_OFPST_AGGREGATE_REPLY:
249     case OFPUTIL_NXT_TUN_ID_FROM_COOKIE:
250     case OFPUTIL_NXT_ROLE_REQUEST:
251     case OFPUTIL_NXT_ROLE_REPLY:
252     case OFPUTIL_NXT_SET_FLOW_FORMAT:
253     case OFPUTIL_NXT_FLOW_MOD:
254     case OFPUTIL_NXT_FLOW_REMOVED:
255     case OFPUTIL_NXST_FLOW_REQUEST:
256     case OFPUTIL_NXST_AGGREGATE_REQUEST:
257     case OFPUTIL_NXST_FLOW_REPLY:
258     case OFPUTIL_NXST_AGGREGATE_REPLY:
259     default:
260         if (VLOG_IS_DBG_ENABLED()) {
261             char *s = ofp_to_string(msg->data, msg->size, 2);
262             VLOG_DBG_RL(&rl, "%016llx: OpenFlow packet ignored: %s",
263                         sw->datapath_id, s);
264             free(s);
265         }
266     }
267 }
268 \f
269 static void
270 send_features_request(struct lswitch *sw, struct rconn *rconn)
271 {
272     time_t now = time_now();
273     if (now >= sw->last_features_request + 1) {
274         struct ofpbuf *b;
275         struct ofp_switch_config *osc;
276
277         /* Send OFPT_FEATURES_REQUEST. */
278         make_openflow(sizeof(struct ofp_header), OFPT_FEATURES_REQUEST, &b);
279         queue_tx(sw, rconn, b);
280
281         /* Send OFPT_SET_CONFIG. */
282         osc = make_openflow(sizeof *osc, OFPT_SET_CONFIG, &b);
283         osc->miss_send_len = htons(OFP_DEFAULT_MISS_SEND_LEN);
284         queue_tx(sw, rconn, b);
285
286         sw->last_features_request = now;
287     }
288 }
289
290 static void
291 queue_tx(struct lswitch *sw, struct rconn *rconn, struct ofpbuf *b)
292 {
293     int retval = rconn_send_with_limit(rconn, b, sw->queued, 10);
294     if (retval && retval != ENOTCONN) {
295         if (retval == EAGAIN) {
296             VLOG_INFO_RL(&rl, "%016llx: %s: tx queue overflow",
297                          sw->datapath_id, rconn_get_name(rconn));
298         } else {
299             VLOG_WARN_RL(&rl, "%016llx: %s: send: %s",
300                          sw->datapath_id, rconn_get_name(rconn),
301                          strerror(retval));
302         }
303     }
304 }
305
306 static void
307 process_switch_features(struct lswitch *sw, struct ofp_switch_features *osf)
308 {
309     size_t n_ports;
310     size_t i;
311
312     sw->datapath_id = ntohll(osf->datapath_id);
313
314     n_ports = (ntohs(osf->header.length) - sizeof *osf) / sizeof *osf->ports;
315     for (i = 0; i < n_ports; i++) {
316         struct ofp_phy_port *opp = &osf->ports[i];
317         struct lswitch_port *lp;
318
319         opp->name[OFP_MAX_PORT_NAME_LEN - 1] = '\0';
320         lp = shash_find_data(&sw->queue_names, opp->name);
321         if (lp && hmap_node_is_null(&lp->hmap_node)) {
322             lp->port_no = ntohs(opp->port_no);
323             hmap_insert(&sw->queue_numbers, &lp->hmap_node,
324                         hash_int(lp->port_no, 0));
325         }
326     }
327 }
328
329 static uint16_t
330 lswitch_choose_destination(struct lswitch *sw, const struct flow *flow)
331 {
332     uint16_t out_port;
333
334     /* Learn the source MAC. */
335     if (mac_learning_may_learn(sw->ml, flow->dl_src, 0)) {
336         struct mac_entry *mac = mac_learning_insert(sw->ml, flow->dl_src, 0);
337         if (mac_entry_is_new(mac) || mac->port.i != flow->in_port) {
338             VLOG_DBG_RL(&rl, "%016llx: learned that "ETH_ADDR_FMT" is on "
339                         "port %"PRIu16, sw->datapath_id,
340                         ETH_ADDR_ARGS(flow->dl_src), flow->in_port);
341
342             mac->port.i = flow->in_port;
343             mac_learning_changed(sw->ml, mac);
344         }
345     }
346
347     /* Drop frames for reserved multicast addresses. */
348     if (eth_addr_is_reserved(flow->dl_dst)) {
349         return OFPP_NONE;
350     }
351
352     out_port = OFPP_FLOOD;
353     if (sw->ml) {
354         struct mac_entry *mac;
355
356         mac = mac_learning_lookup(sw->ml, flow->dl_dst, 0, NULL);
357         if (mac) {
358             out_port = mac->port.i;
359             if (out_port == flow->in_port) {
360                 /* Don't send a packet back out its input port. */
361                 return OFPP_NONE;
362             }
363         }
364     }
365
366     /* Check if we need to use "NORMAL" action. */
367     if (sw->action_normal && out_port != OFPP_FLOOD) {
368         return OFPP_NORMAL;
369     }
370
371     return out_port;
372 }
373
374 static uint32_t
375 get_queue_id(const struct lswitch *sw, uint16_t in_port)
376 {
377     const struct lswitch_port *port;
378
379     HMAP_FOR_EACH_WITH_HASH (port, hmap_node, hash_int(in_port, 0),
380                              &sw->queue_numbers) {
381         if (port->port_no == in_port) {
382             return port->queue_id;
383         }
384     }
385
386     return sw->default_queue;
387 }
388
389 static void
390 process_packet_in(struct lswitch *sw, struct rconn *rconn,
391                   const struct ofp_packet_in *opi)
392 {
393     uint16_t in_port = ntohs(opi->in_port);
394     uint32_t queue_id;
395     uint16_t out_port;
396
397     struct ofp_action_header actions[2];
398     size_t actions_len;
399
400     size_t pkt_ofs, pkt_len;
401     struct ofpbuf pkt;
402     struct flow flow;
403
404     /* Ignore packets sent via output to OFPP_CONTROLLER.  This library never
405      * uses such an action.  You never know what experiments might be going on,
406      * though, and it seems best not to interfere with them. */
407     if (opi->reason != OFPR_NO_MATCH) {
408         return;
409     }
410
411     /* Extract flow data from 'opi' into 'flow'. */
412     pkt_ofs = offsetof(struct ofp_packet_in, data);
413     pkt_len = ntohs(opi->header.length) - pkt_ofs;
414     ofpbuf_use_const(&pkt, opi->data, pkt_len);
415     flow_extract(&pkt, 0, in_port, &flow);
416
417     /* Choose output port. */
418     out_port = lswitch_choose_destination(sw, &flow);
419
420     /* Make actions. */
421     queue_id = get_queue_id(sw, in_port);
422     if (out_port == OFPP_NONE) {
423         actions_len = 0;
424     } else if (queue_id == UINT32_MAX || out_port >= OFPP_MAX) {
425         struct ofp_action_output oao;
426
427         memset(&oao, 0, sizeof oao);
428         oao.type = htons(OFPAT_OUTPUT);
429         oao.len = htons(sizeof oao);
430         oao.port = htons(out_port);
431
432         memcpy(actions, &oao, sizeof oao);
433         actions_len = sizeof oao;
434     } else {
435         struct ofp_action_enqueue oae;
436
437         memset(&oae, 0, sizeof oae);
438         oae.type = htons(OFPAT_ENQUEUE);
439         oae.len = htons(sizeof oae);
440         oae.port = htons(out_port);
441         oae.queue_id = htonl(queue_id);
442
443         memcpy(actions, &oae, sizeof oae);
444         actions_len = sizeof oae;
445     }
446     assert(actions_len <= sizeof actions);
447
448     /* Send the packet, and possibly the whole flow, to the output port. */
449     if (sw->max_idle >= 0 && (!sw->ml || out_port != OFPP_FLOOD)) {
450         struct ofpbuf *buffer;
451         struct cls_rule rule;
452
453         /* The output port is known, or we always flood everything, so add a
454          * new flow. */
455         cls_rule_init(&flow, &sw->wc, 0, &rule);
456         buffer = make_add_flow(&rule, ntohl(opi->buffer_id),
457                                sw->max_idle, actions_len);
458         ofpbuf_put(buffer, actions, actions_len);
459         queue_tx(sw, rconn, buffer);
460
461         /* If the switch didn't buffer the packet, we need to send a copy. */
462         if (ntohl(opi->buffer_id) == UINT32_MAX && actions_len > 0) {
463             queue_tx(sw, rconn,
464                      make_packet_out(&pkt, UINT32_MAX, in_port,
465                                      actions, actions_len / sizeof *actions));
466         }
467     } else {
468         /* We don't know that MAC, or we don't set up flows.  Send along the
469          * packet without setting up a flow. */
470         if (ntohl(opi->buffer_id) != UINT32_MAX || actions_len > 0) {
471             queue_tx(sw, rconn,
472                      make_packet_out(&pkt, ntohl(opi->buffer_id), in_port,
473                                      actions, actions_len / sizeof *actions));
474         }
475     }
476 }
477
478 static void
479 process_echo_request(struct lswitch *sw, struct rconn *rconn,
480                      const struct ofp_header *rq)
481 {
482     queue_tx(sw, rconn, make_echo_reply(rq));
483 }