Add --max-idle option to secchan and controller.
[sliver-openvswitch.git] / lib / learning-switch.c
1 /* Copyright (c) 2008 The Board of Trustees of The Leland Stanford
2  * Junior University
3  *
4  * We are making the OpenFlow specification and associated documentation
5  * (Software) available for public use and benefit with the expectation
6  * that others will use, modify and enhance the Software and contribute
7  * those enhancements back to the community. However, since we would
8  * like to make the Software available for broadest use, with as few
9  * restrictions as possible permission is hereby granted, free of
10  * charge, to any person obtaining a copy of this Software to deal in
11  * the Software under the copyrights without restriction, including
12  * without limitation the rights to use, copy, modify, merge, publish,
13  * distribute, sublicense, and/or sell copies of the Software, and to
14  * permit persons to whom the Software is furnished to do so, subject to
15  * the following conditions:
16  *
17  * The above copyright notice and this permission notice shall be
18  * included in all copies or substantial portions of the Software.
19  *
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23  * NONINFRINGEMENT.  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
24  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
25  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
26  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27  * SOFTWARE.
28  *
29  * The name and trademarks of copyright holder(s) may NOT be used in
30  * advertising or publicity pertaining to the Software or any
31  * derivatives without specific, written prior permission.
32  */
33
34 #include "learning-switch.h"
35
36 #include <errno.h>
37 #include <inttypes.h>
38 #include <netinet/in.h>
39 #include <stdlib.h>
40 #include <time.h>
41
42 #include "buffer.h"
43 #include "flow.h"
44 #include "mac-learning.h"
45 #include "ofp-print.h"
46 #include "openflow.h"
47 #include "queue.h"
48 #include "rconn.h"
49 #include "vconn.h"
50 #include "xtoxll.h"
51
52 #define THIS_MODULE VLM_learning_switch
53 #include "vlog.h"
54
55 struct lswitch {
56     /* If nonnegative, the switch sets up flows that expire after the given
57      * number of seconds (or never expire, if the value is OFP_FLOW_PERMANENT).
58      * Otherwise, the switch processes every packet. */
59     int max_idle;
60
61     uint64_t datapath_id;
62     time_t last_features_request;
63     struct mac_learning *ml;    /* NULL to act as hub instead of switch. */
64 };
65
66 static void queue_tx(struct lswitch *, struct rconn *, struct buffer *);
67 static void send_features_request(struct lswitch *, struct rconn *);
68 static void process_packet_in(struct lswitch *, struct rconn *,
69                               struct ofp_packet_in *);
70
71 /* Creates and returns a new learning switch.
72  *
73  * If 'learn_macs' is true, the new switch will learn the ports on which MAC
74  * addresses appear.  Otherwise, the new switch will flood all packets.
75  *
76  * If 'max_idle' is nonnegative, the new switch will set up flows that expire
77  * after the given number of seconds (or never expire, if 'max_idle' is
78  * OFP_FLOW_PERMANENT).  Otherwise, the new switch will process every packet.
79  *
80  * 'rconn' is used to send out an OpenFlow features request. */
81 struct lswitch *
82 lswitch_create(struct rconn *rconn, bool learn_macs, int max_idle)
83 {
84     struct lswitch *sw = xmalloc(sizeof *sw);
85     memset(sw, 0, sizeof *sw);
86     sw->max_idle = max_idle;
87     sw->datapath_id = 0;
88     sw->last_features_request = 0;
89     sw->ml = learn_macs ? mac_learning_create() : NULL;
90     send_features_request(sw, rconn);
91     return sw;
92 }
93
94 /* Destroys 'sw'. */
95 void
96 lswitch_destroy(struct lswitch *sw)
97 {
98     if (sw) {
99         mac_learning_destroy(sw->ml);
100         free(sw);
101     }
102 }
103
104 /* Processes 'msg', which should be an OpenFlow received on 'rconn', according
105  * to the learning switch state in 'sw'.  The most likely result of processing
106  * is that flow-setup and packet-out OpenFlow messages will be sent out on
107  * 'rconn'.  */
108 void
109 lswitch_process_packet(struct lswitch *sw, struct rconn *rconn,
110                        const struct buffer *msg)
111 {
112     static const size_t min_size[UINT8_MAX + 1] = {
113         [0 ... UINT8_MAX] = sizeof (struct ofp_header),
114         [OFPT_FEATURES_REPLY] = sizeof (struct ofp_switch_features),
115         [OFPT_PACKET_IN] = offsetof (struct ofp_packet_in, data),
116     };
117     struct ofp_header *oh;
118
119     oh = msg->data;
120     if (msg->size < min_size[oh->type]) {
121         VLOG_WARN("%s: too short (%zu bytes) for type %"PRIu8" (min %zu)",
122                   rconn_get_name(rconn),
123                   msg->size, oh->type, min_size[oh->type]);
124         return;
125     }
126
127     if (oh->type == OFPT_FEATURES_REPLY) {
128         struct ofp_switch_features *osf = msg->data;
129         sw->datapath_id = osf->datapath_id;
130     } else if (sw->datapath_id == 0) {
131         send_features_request(sw, rconn);
132     } else if (oh->type == OFPT_PACKET_IN) {
133         process_packet_in(sw, rconn, msg->data);
134     } else {
135         if (VLOG_IS_DBG_ENABLED()) {
136             char *p = ofp_to_string(msg->data, msg->size, 2);
137             VLOG_DBG("OpenFlow packet ignored: %s", p);
138             free(p);
139         }
140     }
141 }
142 \f
143 static void
144 send_features_request(struct lswitch *sw, struct rconn *rconn)
145 {
146     time_t now = time(0);
147     if (now >= sw->last_features_request + 1) {
148         struct buffer *b;
149         struct ofp_header *ofr;
150         struct ofp_switch_config *osc;
151
152         /* Send OFPT_FEATURES_REQUEST. */
153         b = buffer_new(0);
154         ofr = buffer_put_uninit(b, sizeof *ofr);
155         memset(ofr, 0, sizeof *ofr);
156         ofr->type = OFPT_FEATURES_REQUEST;
157         ofr->version = OFP_VERSION;
158         ofr->length = htons(sizeof *ofr);
159         queue_tx(sw, rconn, b);
160
161         /* Send OFPT_SET_CONFIG. */
162         b = buffer_new(0);
163         osc = buffer_put_uninit(b, sizeof *osc);
164         memset(osc, 0, sizeof *osc);
165         osc->header.type = OFPT_SET_CONFIG;
166         osc->header.version = OFP_VERSION;
167         osc->header.length = htons(sizeof *osc);
168         osc->flags = htons(OFPC_SEND_FLOW_EXP);
169         osc->miss_send_len = htons(OFP_DEFAULT_MISS_SEND_LEN);
170         queue_tx(sw, rconn, b);
171
172         sw->last_features_request = now;
173     }
174 }
175
176 static void
177 queue_tx(struct lswitch *sw, struct rconn *rconn, struct buffer *b)
178 {
179     int retval = rconn_send(rconn, b);
180     if (retval) {
181         if (retval == EAGAIN) {
182             /* FIXME: ratelimit. */
183             VLOG_WARN("%s: tx queue overflow", rconn_get_name(rconn));
184         } else if (retval == ENOTCONN) {
185             /* Ignore. */
186         } else {
187             /* FIXME: ratelimit. */
188             VLOG_WARN("%s: send: %s", rconn_get_name(rconn), strerror(retval));
189         }
190         buffer_delete(b);
191     }
192 }
193
194 static void
195 process_packet_in(struct lswitch *sw, struct rconn *rconn,
196                   struct ofp_packet_in *opi)
197 {
198     uint16_t in_port = ntohs(opi->in_port);
199     uint16_t out_port = OFPP_FLOOD;
200
201     size_t pkt_ofs, pkt_len;
202     struct buffer pkt;
203     struct flow flow;
204
205     /* Extract flow data from 'opi' into 'flow'. */
206     pkt_ofs = offsetof(struct ofp_packet_in, data);
207     pkt_len = ntohs(opi->header.length) - pkt_ofs;
208     pkt.data = opi->data;
209     pkt.size = pkt_len;
210     flow_extract(&pkt, in_port, &flow);
211
212     if (sw->ml) {
213         if (mac_learning_learn(sw->ml, flow.dl_src, in_port)) {
214             VLOG_DBG("learned that "ETH_ADDR_FMT" is on datapath %"
215                      PRIx64" port %"PRIu16, ETH_ADDR_ARGS(flow.dl_src),
216                      ntohll(sw->datapath_id), in_port);
217         }
218         out_port = mac_learning_lookup(sw->ml, flow.dl_dst);
219     }
220
221     if (sw->max_idle >= 0 && (!sw->ml || out_port != OFPP_FLOOD)) {
222         /* The output port is known, or we always flood everything, so add a
223          * new flow. */
224         queue_tx(sw, rconn, make_add_simple_flow(&flow, ntohl(opi->buffer_id),
225                                                  out_port, sw->max_idle));
226
227         /* If the switch didn't buffer the packet, we need to send a copy. */
228         if (ntohl(opi->buffer_id) == UINT32_MAX) {
229             queue_tx(sw, rconn,
230                      make_unbuffered_packet_out(&pkt, in_port, out_port));
231         }
232     } else {
233         /* We don't know that MAC, or we don't set up flows.  Send along the
234          * packet without setting up a flow. */
235         struct buffer *b;
236         if (ntohl(opi->buffer_id) == UINT32_MAX) {
237             b = make_unbuffered_packet_out(&pkt, in_port, out_port);
238         } else {
239             b = make_buffered_packet_out(ntohl(opi->buffer_id),
240                                          in_port, out_port);
241         }
242         queue_tx(sw, rconn, b);
243     }
244 }