]> git.proxmox.com Git - mirror_ovs.git/blame - ofproto/in-band.c
dp-packet: Remove ofpbuf dependency.
[mirror_ovs.git] / ofproto / in-band.c
CommitLineData
064af421 1/*
3fbbcba7 2 * Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015 Nicira, Inc.
064af421 3 *
a14bc59f
BP
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:
064af421 7 *
a14bc59f
BP
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.
064af421
BP
15 */
16
17#include <config.h>
18#include "in-band.h"
19#include <arpa/inet.h>
20#include <errno.h>
21#include <inttypes.h>
9d82ec47 22#include <sys/socket.h>
064af421
BP
23#include <net/if.h>
24#include <string.h>
26d9fe3b 25#include <stdlib.h>
cf3fad8a 26#include "classifier.h"
0ad9b732 27#include "dhcp.h"
064af421 28#include "flow.h"
064af421 29#include "netdev.h"
cdee00fd 30#include "netlink.h"
064af421 31#include "odp-util.h"
f25d0cf3 32#include "ofp-actions.h"
064af421
BP
33#include "ofproto.h"
34#include "ofpbuf.h"
5bee6e26 35#include "ofproto-provider.h"
064af421
BP
36#include "openflow/openflow.h"
37#include "packets.h"
38#include "poll-loop.h"
064af421 39#include "timeval.h"
e6211adc 40#include "openvswitch/vlog.h"
064af421 41
d98e6007 42VLOG_DEFINE_THIS_MODULE(in_band);
5136ce49 43
0ade584e
BP
44/* Priorities used in classifier for in-band rules. These values are higher
45 * than any that may be set with OpenFlow, and "18" kind of looks like "IB".
46 * The ordering of priorities is not important because all of the rules set up
47 * by in-band control have the same action. The only reason to use more than
48 * one priority is to make the kind of flow easier to see during debugging. */
064af421 49enum {
d2ede7bc 50 /* One set per bridge. */
0ade584e 51 IBR_FROM_LOCAL_DHCP = 180000, /* (a) From local port, DHCP. */
85088747
JP
52 IBR_TO_LOCAL_ARP, /* (b) To local port, ARP. */
53 IBR_FROM_LOCAL_ARP, /* (c) From local port, ARP. */
d2ede7bc
BP
54
55 /* One set per unique next-hop MAC. */
56 IBR_TO_NEXT_HOP_ARP, /* (d) To remote MAC, ARP. */
57 IBR_FROM_NEXT_HOP_ARP, /* (e) From remote MAC, ARP. */
58
59 /* One set per unique remote IP address. */
60 IBR_TO_REMOTE_ARP, /* (f) To remote IP, ARP. */
61 IBR_FROM_REMOTE_ARP, /* (g) From remote IP, ARP. */
62
63 /* One set per unique remote (IP,port) pair. */
64 IBR_TO_REMOTE_TCP, /* (h) To remote IP, TCP port. */
65 IBR_FROM_REMOTE_TCP /* (i) From remote IP, TCP port. */
064af421
BP
66};
67
0ade584e
BP
68/* Track one remote IP and next hop information. */
69struct in_band_remote {
d2ede7bc 70 struct sockaddr_in remote_addr; /* IP address, in network byte order. */
0ade584e
BP
71 uint8_t remote_mac[ETH_ADDR_LEN]; /* Next-hop MAC, all-zeros if unknown. */
72 uint8_t last_remote_mac[ETH_ADDR_LEN]; /* Previous nonzero next-hop MAC. */
73 struct netdev *remote_netdev; /* Device to send to next-hop MAC. */
74};
75
7ee20df1
BP
76/* What to do to an in_band_rule. */
77enum in_band_op {
78 ADD, /* Add the rule to ofproto's flow table. */
f72e3073 79 DEL /* Delete the rule from ofproto's flow table. */
7ee20df1
BP
80};
81
82/* A rule to add to or delete from ofproto's flow table. */
83struct in_band_rule {
81a76618
BP
84 struct hmap_node hmap_node; /* In struct in_band's "rules" hmap. */
85 struct match match;
eb391b76 86 int priority;
7ee20df1
BP
87 enum in_band_op op;
88};
89
064af421
BP
90struct in_band {
91 struct ofproto *ofproto;
7ee20df1 92 int queue_id;
064af421 93
0ade584e
BP
94 /* Remote information. */
95 time_t next_remote_refresh; /* Refresh timer. */
96 struct in_band_remote *remotes;
97 size_t n_remotes;
98
99 /* Local information. */
100 time_t next_local_refresh; /* Refresh timer. */
101 uint8_t local_mac[ETH_ADDR_LEN]; /* Current MAC. */
102 struct netdev *local_netdev; /* Local port's network device. */
103
7ee20df1
BP
104 /* Flow tracking. */
105 struct hmap rules; /* Contains "struct in_band_rule"s. */
064af421
BP
106};
107
108static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(60, 60);
109
0ade584e
BP
110static int
111refresh_remote(struct in_band *ib, struct in_band_remote *r)
064af421 112{
0ade584e 113 struct in_addr next_hop_inaddr;
f1acd62b 114 char *next_hop_dev;
0ade584e 115 int retval;
064af421 116
0ade584e 117 /* Find the next-hop IP address. */
d2ede7bc
BP
118 memset(r->remote_mac, 0, sizeof r->remote_mac);
119 retval = netdev_get_next_hop(ib->local_netdev, &r->remote_addr.sin_addr,
0ade584e
BP
120 &next_hop_inaddr, &next_hop_dev);
121 if (retval) {
122 VLOG_WARN("cannot find route for controller ("IP_FMT"): %s",
10a89ef0
BP
123 IP_ARGS(r->remote_addr.sin_addr.s_addr),
124 ovs_strerror(retval));
0ade584e
BP
125 return 1;
126 }
127 if (!next_hop_inaddr.s_addr) {
d2ede7bc 128 next_hop_inaddr = r->remote_addr.sin_addr;
0ade584e 129 }
c752217a 130
d2ede7bc 131 /* Open the next-hop network device. */
0ade584e
BP
132 if (!r->remote_netdev
133 || strcmp(netdev_get_name(r->remote_netdev), next_hop_dev))
134 {
135 netdev_close(r->remote_netdev);
064af421 136
18812dff 137 retval = netdev_open(next_hop_dev, "system", &r->remote_netdev);
0ad9b732 138 if (retval) {
0ade584e
BP
139 VLOG_WARN_RL(&rl, "cannot open netdev %s (next hop "
140 "to controller "IP_FMT"): %s",
ed36537e 141 next_hop_dev, IP_ARGS(r->remote_addr.sin_addr.s_addr),
10a89ef0 142 ovs_strerror(retval));
0ade584e
BP
143 free(next_hop_dev);
144 return 1;
064af421 145 }
0ade584e
BP
146 }
147 free(next_hop_dev);
148
149 /* Look up the MAC address of the next-hop IP address. */
150 retval = netdev_arp_lookup(r->remote_netdev, next_hop_inaddr.s_addr,
151 r->remote_mac);
152 if (retval) {
153 VLOG_DBG_RL(&rl, "cannot look up remote MAC address ("IP_FMT"): %s",
10a89ef0 154 IP_ARGS(next_hop_inaddr.s_addr), ovs_strerror(retval));
064af421 155 }
0ad9b732 156
6dee2066
BP
157 /* If we don't have a MAC address, then refresh quickly, since we probably
158 * will get a MAC address soon (via ARP). Otherwise, we can afford to wait
159 * a little while. */
160 return eth_addr_is_zero(r->remote_mac) ? 1 : 10;
064af421
BP
161}
162
0ade584e
BP
163static bool
164refresh_remotes(struct in_band *ib)
064af421 165{
0ade584e
BP
166 struct in_band_remote *r;
167 bool any_changes;
0ade584e
BP
168
169 if (time_now() < ib->next_remote_refresh) {
170 return false;
171 }
172
173 any_changes = false;
5dbdfff7 174 ib->next_remote_refresh = TIME_MAX;
0ade584e
BP
175 for (r = ib->remotes; r < &ib->remotes[ib->n_remotes]; r++) {
176 uint8_t old_remote_mac[ETH_ADDR_LEN];
5dbdfff7 177 time_t next_refresh;
0ade584e 178
6dee2066 179 /* Save old MAC. */
0ade584e
BP
180 memcpy(old_remote_mac, r->remote_mac, ETH_ADDR_LEN);
181
182 /* Refresh remote information. */
5dbdfff7
BP
183 next_refresh = refresh_remote(ib, r) + time_now();
184 ib->next_remote_refresh = MIN(ib->next_remote_refresh, next_refresh);
0ade584e 185
6dee2066 186 /* If the MAC changed, log the changes. */
0ade584e
BP
187 if (!eth_addr_equals(r->remote_mac, old_remote_mac)) {
188 any_changes = true;
189 if (!eth_addr_is_zero(r->remote_mac)
190 && !eth_addr_equals(r->last_remote_mac, r->remote_mac)) {
191 VLOG_DBG("remote MAC address changed from "ETH_ADDR_FMT
192 " to "ETH_ADDR_FMT,
193 ETH_ADDR_ARGS(r->last_remote_mac),
194 ETH_ADDR_ARGS(r->remote_mac));
195 memcpy(r->last_remote_mac, r->remote_mac, ETH_ADDR_LEN);
196 }
064af421 197 }
064af421 198 }
0ade584e
BP
199
200 return any_changes;
064af421
BP
201}
202
0ade584e
BP
203/* Refreshes the MAC address of the local port into ib->local_mac, if it is due
204 * for a refresh. Returns true if anything changed, otherwise false. */
205static bool
206refresh_local(struct in_band *ib)
064af421 207{
0ade584e
BP
208 uint8_t ea[ETH_ADDR_LEN];
209 time_t now;
064af421 210
0ade584e
BP
211 now = time_now();
212 if (now < ib->next_local_refresh) {
213 return false;
064af421 214 }
0ade584e 215 ib->next_local_refresh = now + 1;
064af421 216
0ade584e
BP
217 if (netdev_get_etheraddr(ib->local_netdev, ea)
218 || eth_addr_equals(ea, ib->local_mac)) {
219 return false;
064af421 220 }
064af421 221
0ade584e
BP
222 memcpy(ib->local_mac, ea, ETH_ADDR_LEN);
223 return true;
064af421
BP
224}
225
ce4a6b76
BP
226/* Returns true if packets in 'flow' should be directed to the local port.
227 * (This keeps the flow table from preventing DHCP replies from being seen by
228 * the local port.) */
0ad9b732 229bool
ce4a6b76 230in_band_must_output_to_local_port(const struct flow *flow)
0ad9b732 231{
ce4a6b76 232 return (flow->dl_type == htons(ETH_TYPE_IP)
6767a2cc 233 && flow->nw_proto == IPPROTO_UDP
d295e8e9 234 && flow->tp_src == htons(DHCP_SERVER_PORT)
ce4a6b76 235 && flow->tp_dst == htons(DHCP_CLIENT_PORT));
0ad9b732
JP
236}
237
3fbbcba7
BP
238/* Returns the number of in-band rules currently installed in the flow
239 * table. */
240int
241in_band_count_rules(const struct in_band *ib)
242{
243 return hmap_count(&ib->rules);
244}
245
0ade584e 246static void
eb391b76 247add_rule(struct in_band *ib, const struct match *match, int priority)
0ade584e 248{
81a76618 249 uint32_t hash = match_hash(match, 0);
7ee20df1
BP
250 struct in_band_rule *rule;
251
81a76618
BP
252 HMAP_FOR_EACH_WITH_HASH (rule, hmap_node, hash, &ib->rules) {
253 if (match_equal(&rule->match, match)) {
7ee20df1
BP
254 rule->op = ADD;
255 return;
256 }
257 }
258
259 rule = xmalloc(sizeof *rule);
81a76618
BP
260 rule->match = *match;
261 rule->priority = priority;
7ee20df1 262 rule->op = ADD;
81a76618 263 hmap_insert(&ib->rules, &rule->hmap_node, hash);
7ee20df1
BP
264}
265
266static void
267update_rules(struct in_band *ib)
268{
269 struct in_band_rule *ib_rule;
270 struct in_band_remote *r;
81a76618 271 struct match match;
0ade584e 272
7ee20df1
BP
273 /* Mark all the existing rules for deletion. (Afterward we will re-add any
274 * rules that are still valid.) */
81a76618 275 HMAP_FOR_EACH (ib_rule, hmap_node, &ib->rules) {
f72e3073 276 ib_rule->op = DEL;
7ee20df1
BP
277 }
278
6da1e809 279 if (ib->n_remotes && !eth_addr_is_zero(ib->local_mac)) {
d2ede7bc 280 /* (a) Allow DHCP requests sent from the local port. */
81a76618
BP
281 match_init_catchall(&match);
282 match_set_in_port(&match, OFPP_LOCAL);
283 match_set_dl_type(&match, htons(ETH_TYPE_IP));
284 match_set_dl_src(&match, ib->local_mac);
285 match_set_nw_proto(&match, IPPROTO_UDP);
286 match_set_tp_src(&match, htons(DHCP_CLIENT_PORT));
287 match_set_tp_dst(&match, htons(DHCP_SERVER_PORT));
288 add_rule(ib, &match, IBR_FROM_LOCAL_DHCP);
0ad9b732 289
d2ede7bc 290 /* (b) Allow ARP replies to the local port's MAC address. */
81a76618
BP
291 match_init_catchall(&match);
292 match_set_dl_type(&match, htons(ETH_TYPE_ARP));
293 match_set_dl_dst(&match, ib->local_mac);
294 match_set_nw_proto(&match, ARP_OP_REPLY);
295 add_rule(ib, &match, IBR_TO_LOCAL_ARP);
26d9fe3b 296
d2ede7bc 297 /* (c) Allow ARP requests from the local port's MAC address. */
81a76618
BP
298 match_init_catchall(&match);
299 match_set_dl_type(&match, htons(ETH_TYPE_ARP));
300 match_set_dl_src(&match, ib->local_mac);
301 match_set_nw_proto(&match, ARP_OP_REQUEST);
302 add_rule(ib, &match, IBR_FROM_LOCAL_ARP);
0ad9b732 303 }
a5f37a2d 304
7ee20df1
BP
305 for (r = ib->remotes; r < &ib->remotes[ib->n_remotes]; r++) {
306 const uint8_t *remote_mac = r->remote_mac;
0ade584e 307
7ee20df1
BP
308 if (eth_addr_is_zero(remote_mac)) {
309 continue;
0ade584e
BP
310 }
311
d2ede7bc 312 /* (d) Allow ARP replies to the next hop's MAC address. */
81a76618
BP
313 match_init_catchall(&match);
314 match_set_dl_type(&match, htons(ETH_TYPE_ARP));
315 match_set_dl_dst(&match, remote_mac);
316 match_set_nw_proto(&match, ARP_OP_REPLY);
317 add_rule(ib, &match, IBR_TO_NEXT_HOP_ARP);
0ade584e 318
d2ede7bc 319 /* (e) Allow ARP requests from the next hop's MAC address. */
81a76618
BP
320 match_init_catchall(&match);
321 match_set_dl_type(&match, htons(ETH_TYPE_ARP));
322 match_set_dl_src(&match, remote_mac);
323 match_set_nw_proto(&match, ARP_OP_REQUEST);
324 add_rule(ib, &match, IBR_FROM_NEXT_HOP_ARP);
064af421
BP
325 }
326
7ee20df1
BP
327 for (r = ib->remotes; r < &ib->remotes[ib->n_remotes]; r++) {
328 const struct sockaddr_in *a = &r->remote_addr;
0ade584e 329
7ee20df1
BP
330 /* (f) Allow ARP replies containing the remote's IP address as a
331 * target. */
81a76618
BP
332 match_init_catchall(&match);
333 match_set_dl_type(&match, htons(ETH_TYPE_ARP));
334 match_set_nw_proto(&match, ARP_OP_REPLY);
335 match_set_nw_dst(&match, a->sin_addr.s_addr);
336 add_rule(ib, &match, IBR_TO_REMOTE_ARP);
c16e55cf 337
7ee20df1
BP
338 /* (g) Allow ARP requests containing the remote's IP address as a
339 * source. */
81a76618
BP
340 match_init_catchall(&match);
341 match_set_dl_type(&match, htons(ETH_TYPE_ARP));
342 match_set_nw_proto(&match, ARP_OP_REQUEST);
343 match_set_nw_src(&match, a->sin_addr.s_addr);
344 add_rule(ib, &match, IBR_FROM_REMOTE_ARP);
c16e55cf 345
7ee20df1 346 /* (h) Allow TCP traffic to the remote's IP and port. */
81a76618
BP
347 match_init_catchall(&match);
348 match_set_dl_type(&match, htons(ETH_TYPE_IP));
349 match_set_nw_proto(&match, IPPROTO_TCP);
350 match_set_nw_dst(&match, a->sin_addr.s_addr);
351 match_set_tp_dst(&match, a->sin_port);
352 add_rule(ib, &match, IBR_TO_REMOTE_TCP);
c16e55cf 353
7ee20df1 354 /* (i) Allow TCP traffic from the remote's IP and port. */
81a76618
BP
355 match_init_catchall(&match);
356 match_set_dl_type(&match, htons(ETH_TYPE_IP));
357 match_set_nw_proto(&match, IPPROTO_TCP);
358 match_set_nw_src(&match, a->sin_addr.s_addr);
359 match_set_tp_src(&match, a->sin_port);
360 add_rule(ib, &match, IBR_FROM_REMOTE_TCP);
7ee20df1 361 }
0ade584e
BP
362}
363
6da1e809
BP
364/* Updates the OpenFlow flow table for the current state of in-band control.
365 * Returns true ordinarily. Returns false if no remotes are configured on 'ib'
366 * and 'ib' doesn't have any rules left to remove from the OpenFlow flow
367 * table. Thus, a false return value means that the caller can destroy 'ib'
368 * without leaving extra flows hanging around in the flow table. */
369bool
7ee20df1 370in_band_run(struct in_band *ib)
0ade584e 371{
f25d0cf3
BP
372 uint64_t ofpacts_stub[128 / 8];
373 struct ofpbuf ofpacts;
b1da6250 374
7ee20df1 375 struct in_band_rule *rule, *next;
b1da6250 376
f25d0cf3
BP
377 ofpbuf_use_stub(&ofpacts, ofpacts_stub, sizeof ofpacts_stub);
378
379 if (ib->queue_id >= 0) {
380 ofpact_put_SET_QUEUE(&ofpacts)->queue_id = ib->queue_id;
d2ede7bc 381 }
f25d0cf3 382 ofpact_put_OUTPUT(&ofpacts)->port = OFPP_NORMAL;
0ade584e 383
7ee20df1
BP
384 refresh_local(ib);
385 refresh_remotes(ib);
0ade584e 386
7ee20df1 387 update_rules(ib);
0ade584e 388
81a76618 389 HMAP_FOR_EACH_SAFE (rule, next, hmap_node, &ib->rules) {
7ee20df1
BP
390 switch (rule->op) {
391 case ADD:
81a76618 392 ofproto_add_flow(ib->ofproto, &rule->match, rule->priority,
1f317cb5 393 ofpbuf_data(&ofpacts), ofpbuf_size(&ofpacts));
7ee20df1 394 break;
0ade584e 395
f72e3073 396 case DEL:
b20f4073
BP
397 ofproto_delete_flow(ib->ofproto, &rule->match, rule->priority);
398 hmap_remove(&ib->rules, &rule->hmap_node);
399 free(rule);
7ee20df1 400 break;
0ade584e
BP
401 }
402 }
6da1e809 403
f25d0cf3
BP
404 ofpbuf_uninit(&ofpacts);
405
6da1e809 406 return ib->n_remotes || !hmap_is_empty(&ib->rules);
0ade584e
BP
407}
408
064af421
BP
409void
410in_band_wait(struct in_band *in_band)
411{
7cf8b266 412 long long int wakeup
0ad9b732 413 = MIN(in_band->next_remote_refresh, in_band->next_local_refresh);
7cf8b266 414 poll_timer_wait_until(wakeup * 1000);
064af421
BP
415}
416
f1acd62b 417int
19a87e36 418in_band_create(struct ofproto *ofproto, const char *local_name,
9b45d7f5 419 struct in_band **in_bandp)
064af421
BP
420{
421 struct in_band *in_band;
f1acd62b 422 struct netdev *local_netdev;
0ad9b732 423 int error;
064af421 424
928ef386 425 *in_bandp = NULL;
89e3f9cc 426 error = netdev_open(local_name, "internal", &local_netdev);
f1acd62b
BP
427 if (error) {
428 VLOG_ERR("failed to initialize in-band control: cannot open "
10a89ef0
BP
429 "datapath local port %s (%s)",
430 local_name, ovs_strerror(error));
f1acd62b
BP
431 return error;
432 }
064af421 433
ec6fde61 434 in_band = xzalloc(sizeof *in_band);
064af421 435 in_band->ofproto = ofproto;
7ee20df1 436 in_band->queue_id = -1;
f1acd62b 437 in_band->next_remote_refresh = TIME_MIN;
0ade584e
BP
438 in_band->next_local_refresh = TIME_MIN;
439 in_band->local_netdev = local_netdev;
7ee20df1 440 hmap_init(&in_band->rules);
064af421
BP
441
442 *in_bandp = in_band;
f1acd62b
BP
443
444 return 0;
064af421
BP
445}
446
447void
0ade584e 448in_band_destroy(struct in_band *ib)
064af421 449{
0ade584e 450 if (ib) {
7ee20df1
BP
451 struct in_band_rule *rule, *next;
452
81a76618
BP
453 HMAP_FOR_EACH_SAFE (rule, next, hmap_node, &ib->rules) {
454 hmap_remove(&ib->rules, &rule->hmap_node);
7ee20df1
BP
455 free(rule);
456 }
457 hmap_destroy(&ib->rules);
0ade584e 458 in_band_set_remotes(ib, NULL, 0);
0ade584e
BP
459 netdev_close(ib->local_netdev);
460 free(ib);
461 }
462}
f7de2cdf 463
a3c5ac70 464static bool
d2ede7bc
BP
465any_addresses_changed(struct in_band *ib,
466 const struct sockaddr_in *addresses, size_t n)
a3c5ac70
BP
467{
468 size_t i;
469
470 if (n != ib->n_remotes) {
471 return true;
472 }
473
474 for (i = 0; i < n; i++) {
d2ede7bc
BP
475 const struct sockaddr_in *old = &ib->remotes[i].remote_addr;
476 const struct sockaddr_in *new = &addresses[i];
477
478 if (old->sin_addr.s_addr != new->sin_addr.s_addr ||
479 old->sin_port != new->sin_port) {
a3c5ac70
BP
480 return true;
481 }
482 }
483
484 return false;
485}
486
0ade584e 487void
d2ede7bc
BP
488in_band_set_remotes(struct in_band *ib,
489 const struct sockaddr_in *addresses, size_t n)
0ade584e
BP
490{
491 size_t i;
492
d2ede7bc 493 if (!any_addresses_changed(ib, addresses, n)) {
0ade584e 494 return;
0ade584e
BP
495 }
496
a3c5ac70 497 /* Clear old remotes. */
0ade584e 498 for (i = 0; i < ib->n_remotes; i++) {
0ade584e 499 netdev_close(ib->remotes[i].remote_netdev);
064af421 500 }
0ade584e 501 free(ib->remotes);
064af421 502
a3c5ac70 503 /* Set up new remotes. */
bad0c371 504 ib->remotes = n ? xzalloc(n * sizeof *ib->remotes) : NULL;
0ade584e
BP
505 ib->n_remotes = n;
506 for (i = 0; i < n; i++) {
d2ede7bc 507 ib->remotes[i].remote_addr = addresses[i];
0ade584e 508 }
a3c5ac70
BP
509
510 /* Force refresh in next call to in_band_run(). */
511 ib->next_remote_refresh = TIME_MIN;
0ade584e 512}
b1da6250
BP
513
514/* Sets the OpenFlow queue used by flows set up by 'ib' to 'queue_id'. If
515 * 'queue_id' is negative, 'ib' will not set any queue (which is also the
516 * default). */
517void
518in_band_set_queue(struct in_band *ib, int queue_id)
519{
520 ib->queue_id = queue_id;
521}
522