2014-10-16 11:38:12 -07:00
|
|
|
/*
|
2015-01-11 13:25:24 -08:00
|
|
|
* Copyright (c) 2014, 2015 Nicira, Inc.
|
2014-10-16 11:38:12 -07:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at:
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <net/if.h>
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
#include "classifier.h"
|
|
|
|
#include "command-line.h"
|
|
|
|
#include "compiler.h"
|
|
|
|
#include "dpif.h"
|
|
|
|
#include "dynamic-string.h"
|
|
|
|
#include "netdev.h"
|
|
|
|
#include "packets.h"
|
2014-11-11 11:53:47 -08:00
|
|
|
#include "seq.h"
|
2014-10-16 11:38:12 -07:00
|
|
|
#include "ovs-router.h"
|
2014-11-14 15:58:09 -08:00
|
|
|
#include "ovs-thread.h"
|
2014-11-17 14:40:22 +09:00
|
|
|
#include "route-table.h"
|
2014-10-16 11:38:12 -07:00
|
|
|
#include "unixctl.h"
|
|
|
|
#include "util.h"
|
|
|
|
|
2014-11-14 15:58:09 -08:00
|
|
|
static struct ovs_mutex mutex = OVS_MUTEX_INITIALIZER;
|
2014-10-16 11:38:12 -07:00
|
|
|
static struct classifier cls;
|
|
|
|
|
|
|
|
struct ovs_router_entry {
|
|
|
|
struct cls_rule cr;
|
|
|
|
char output_bridge[IFNAMSIZ];
|
|
|
|
ovs_be32 gw;
|
|
|
|
ovs_be32 nw_addr;
|
|
|
|
uint8_t plen;
|
|
|
|
uint8_t priority;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct ovs_router_entry *
|
|
|
|
ovs_router_entry_cast(const struct cls_rule *cr)
|
|
|
|
{
|
|
|
|
if (offsetof(struct ovs_router_entry, cr) == 0) {
|
|
|
|
return CONTAINER_OF(cr, struct ovs_router_entry, cr);
|
|
|
|
} else {
|
|
|
|
return cr ? CONTAINER_OF(cr, struct ovs_router_entry, cr) : NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
ovs_router_lookup(ovs_be32 ip_dst, char output_bridge[], ovs_be32 *gw)
|
|
|
|
{
|
|
|
|
const struct cls_rule *cr;
|
|
|
|
struct flow flow = {.nw_dst = ip_dst};
|
|
|
|
|
|
|
|
cr = classifier_lookup(&cls, &flow, NULL);
|
|
|
|
if (cr) {
|
|
|
|
struct ovs_router_entry *p = ovs_router_entry_cast(cr);
|
|
|
|
|
|
|
|
strncpy(output_bridge, p->output_bridge, IFNAMSIZ);
|
|
|
|
*gw = p->gw;
|
|
|
|
return true;
|
|
|
|
}
|
2014-11-17 14:40:22 +09:00
|
|
|
return route_table_fallback_lookup(ip_dst, output_bridge, gw);
|
2014-10-16 11:38:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
rt_entry_free(struct ovs_router_entry *p)
|
|
|
|
{
|
|
|
|
cls_rule_destroy(&p->cr);
|
|
|
|
free(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void rt_init_match(struct match *match, ovs_be32 ip_dst, uint8_t plen)
|
|
|
|
{
|
|
|
|
ovs_be32 mask;
|
|
|
|
|
2014-11-11 15:50:51 -08:00
|
|
|
mask = be32_prefix_mask(plen);
|
2014-10-16 11:38:12 -07:00
|
|
|
|
|
|
|
ip_dst &= mask; /* Clear out insignificant bits. */
|
|
|
|
memset(match, 0, sizeof *match);
|
|
|
|
match->flow.nw_dst = ip_dst;
|
|
|
|
match->wc.masks.nw_dst = mask;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ovs_router_insert__(uint8_t priority, ovs_be32 ip_dst, uint8_t plen,
|
|
|
|
const char output_bridge[],
|
|
|
|
ovs_be32 gw)
|
|
|
|
{
|
|
|
|
const struct cls_rule *cr;
|
|
|
|
struct ovs_router_entry *p;
|
|
|
|
struct match match;
|
|
|
|
|
|
|
|
rt_init_match(&match, ip_dst, plen);
|
|
|
|
|
|
|
|
p = xzalloc(sizeof *p);
|
|
|
|
strncpy(p->output_bridge, output_bridge, IFNAMSIZ);
|
|
|
|
p->gw = gw;
|
|
|
|
p->nw_addr = match.flow.nw_dst;
|
|
|
|
p->plen = plen;
|
|
|
|
p->priority = priority;
|
|
|
|
cls_rule_init(&p->cr, &match, priority); /* Longest prefix matches first. */
|
|
|
|
|
2014-11-14 15:58:09 -08:00
|
|
|
ovs_mutex_lock(&mutex);
|
2015-01-11 13:25:24 -08:00
|
|
|
cr = classifier_replace(&cls, &p->cr, NULL, 0);
|
2014-11-14 15:58:09 -08:00
|
|
|
ovs_mutex_unlock(&mutex);
|
|
|
|
|
2014-10-16 11:38:12 -07:00
|
|
|
if (cr) {
|
|
|
|
/* An old rule with the same match was displaced. */
|
|
|
|
ovsrcu_postpone(rt_entry_free, ovs_router_entry_cast(cr));
|
|
|
|
}
|
2014-11-11 11:53:47 -08:00
|
|
|
seq_change(tnl_conf_seq);
|
2014-10-16 11:38:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ovs_router_insert(ovs_be32 ip_dst, uint8_t plen, const char output_bridge[],
|
|
|
|
ovs_be32 gw)
|
|
|
|
{
|
|
|
|
ovs_router_insert__(plen, ip_dst, plen, output_bridge, gw);
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
rt_entry_delete(uint8_t priority, ovs_be32 ip_dst, uint8_t plen)
|
|
|
|
{
|
2014-11-06 14:55:29 -08:00
|
|
|
const struct cls_rule *cr;
|
2014-10-16 11:38:12 -07:00
|
|
|
struct cls_rule rule;
|
|
|
|
struct match match;
|
|
|
|
|
|
|
|
rt_init_match(&match, ip_dst, plen);
|
|
|
|
|
|
|
|
cls_rule_init(&rule, &match, priority);
|
|
|
|
|
|
|
|
/* Find the exact rule. */
|
|
|
|
cr = classifier_find_rule_exactly(&cls, &rule);
|
|
|
|
if (cr) {
|
|
|
|
/* Remove it. */
|
2014-11-14 15:58:09 -08:00
|
|
|
ovs_mutex_lock(&mutex);
|
2014-10-16 11:38:12 -07:00
|
|
|
cr = classifier_remove(&cls, cr);
|
2014-11-14 15:58:09 -08:00
|
|
|
ovs_mutex_unlock(&mutex);
|
2014-10-16 11:38:12 -07:00
|
|
|
|
2014-11-14 15:58:09 -08:00
|
|
|
if (cr) {
|
2014-10-16 11:38:12 -07:00
|
|
|
ovsrcu_postpone(rt_entry_free, ovs_router_entry_cast(cr));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
scan_ipv4_route(const char *s, ovs_be32 *addr, unsigned int *plen)
|
|
|
|
{
|
|
|
|
int len, max_plen, n;
|
|
|
|
int slen = strlen(s);
|
|
|
|
uint8_t *ip = (uint8_t *)addr;
|
|
|
|
|
2014-11-04 09:24:24 -08:00
|
|
|
*addr = htonl(0);
|
2014-10-16 11:38:12 -07:00
|
|
|
if (!ovs_scan(s, "%"SCNu8"%n", &ip[0], &n)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
len = n;
|
|
|
|
max_plen = 8;
|
|
|
|
for (int i = 1; i < 4; i++) {
|
|
|
|
if (ovs_scan(s + len, ".%"SCNu8"%n", &ip[i], &n)) {
|
|
|
|
len += n;
|
|
|
|
max_plen += 8;
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (len == slen && max_plen == 32) {
|
|
|
|
*plen = 32;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (ovs_scan(s + len, "/%u%n", plen, &n)
|
|
|
|
&& len + n == slen && *plen <= max_plen) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ovs_router_add(struct unixctl_conn *conn, int argc,
|
|
|
|
const char *argv[], void *aux OVS_UNUSED)
|
|
|
|
{
|
|
|
|
ovs_be32 ip, gw;
|
|
|
|
unsigned int plen;
|
|
|
|
|
|
|
|
if (scan_ipv4_route(argv[1], &ip, &plen)) {
|
|
|
|
if (argc > 3) {
|
|
|
|
inet_pton(AF_INET, argv[3], (struct in_addr *)&gw);
|
|
|
|
} else {
|
|
|
|
gw = 0;
|
|
|
|
}
|
|
|
|
ovs_router_insert__(plen + 32, ip, plen, argv[2], gw);
|
|
|
|
unixctl_command_reply(conn, "OK");
|
|
|
|
} else {
|
|
|
|
unixctl_command_reply(conn, "Invalid parameters");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ovs_router_del(struct unixctl_conn *conn, int argc OVS_UNUSED,
|
|
|
|
const char *argv[], void *aux OVS_UNUSED)
|
|
|
|
{
|
|
|
|
ovs_be32 ip;
|
|
|
|
unsigned int plen;
|
|
|
|
|
|
|
|
if (scan_ipv4_route(argv[1], &ip, &plen)) {
|
|
|
|
|
|
|
|
if (rt_entry_delete(plen + 32, ip, plen)) {
|
|
|
|
unixctl_command_reply(conn, "OK");
|
2014-11-11 11:53:47 -08:00
|
|
|
seq_change(tnl_conf_seq);
|
2014-10-16 11:38:12 -07:00
|
|
|
} else {
|
|
|
|
unixctl_command_reply(conn, "Not found");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
unixctl_command_reply(conn, "Invalid parameters");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
ovs_router_show(struct unixctl_conn *conn, int argc OVS_UNUSED,
|
|
|
|
const char *argv[] OVS_UNUSED, void *aux OVS_UNUSED)
|
|
|
|
{
|
|
|
|
struct ovs_router_entry *rt;
|
|
|
|
struct ds ds = DS_EMPTY_INITIALIZER;
|
|
|
|
|
|
|
|
ds_put_format(&ds, "Route Table:\n");
|
|
|
|
CLS_FOR_EACH(rt, cr, &cls) {
|
|
|
|
if (rt->priority == rt->plen) {
|
|
|
|
ds_put_format(&ds, "Cached: ");
|
|
|
|
} else {
|
|
|
|
ds_put_format(&ds, "User: ");
|
|
|
|
}
|
|
|
|
ds_put_format(&ds, IP_FMT"/%"PRIu16" dev %s",
|
|
|
|
IP_ARGS(rt->nw_addr), rt->plen,
|
|
|
|
rt->output_bridge);
|
|
|
|
if (rt->gw) {
|
|
|
|
ds_put_format(&ds, " GW "IP_FMT, IP_ARGS(rt->gw));
|
|
|
|
}
|
|
|
|
ds_put_format(&ds, "\n");
|
|
|
|
}
|
|
|
|
unixctl_command_reply(conn, ds_cstr(&ds));
|
|
|
|
ds_destroy(&ds);
|
|
|
|
}
|
|
|
|
|
2014-11-17 15:05:54 +09:00
|
|
|
static void
|
|
|
|
ovs_router_lookup_cmd(struct unixctl_conn *conn, int argc OVS_UNUSED,
|
|
|
|
const char *argv[], void *aux OVS_UNUSED)
|
|
|
|
{
|
|
|
|
ovs_be32 ip;
|
|
|
|
unsigned int plen;
|
|
|
|
|
|
|
|
if (scan_ipv4_route(argv[1], &ip, &plen) && plen == 32) {
|
|
|
|
char iface[IFNAMSIZ];
|
|
|
|
ovs_be32 gw;
|
|
|
|
|
|
|
|
if (ovs_router_lookup(ip, iface, &gw)) {
|
|
|
|
struct ds ds = DS_EMPTY_INITIALIZER;
|
|
|
|
|
|
|
|
ds_put_format(&ds, "gateway " IP_FMT "\n", IP_ARGS(gw));
|
|
|
|
ds_put_format(&ds, "dev %s\n", iface);
|
|
|
|
unixctl_command_reply(conn, ds_cstr(&ds));
|
|
|
|
} else {
|
|
|
|
unixctl_command_reply(conn, "Not found");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
unixctl_command_reply(conn, "Invalid parameters");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-16 11:38:12 -07:00
|
|
|
void
|
|
|
|
ovs_router_flush(void)
|
|
|
|
{
|
|
|
|
struct ovs_router_entry *rt;
|
|
|
|
|
2014-11-13 11:54:31 -08:00
|
|
|
ovs_mutex_lock(&mutex);
|
|
|
|
classifier_defer(&cls);
|
2014-11-13 11:54:31 -08:00
|
|
|
CLS_FOR_EACH(rt, cr, &cls) {
|
2014-10-16 11:38:12 -07:00
|
|
|
if (rt->priority == rt->plen) {
|
2014-11-14 15:58:09 -08:00
|
|
|
if (classifier_remove(&cls, &rt->cr)) {
|
|
|
|
ovsrcu_postpone(rt_entry_free, rt);
|
|
|
|
}
|
2014-10-16 11:38:12 -07:00
|
|
|
}
|
|
|
|
}
|
2014-11-13 11:54:31 -08:00
|
|
|
classifier_publish(&cls);
|
|
|
|
ovs_mutex_unlock(&mutex);
|
2014-11-11 11:53:47 -08:00
|
|
|
seq_change(tnl_conf_seq);
|
2014-10-16 11:38:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* May not be called more than once. */
|
|
|
|
void
|
2014-11-19 22:12:21 -08:00
|
|
|
ovs_router_init(void)
|
2014-10-16 11:38:12 -07:00
|
|
|
{
|
|
|
|
classifier_init(&cls, NULL);
|
2014-11-11 11:53:47 -08:00
|
|
|
unixctl_command_register("ovs/route/add", "ipv4_addr/prefix_len out_br_name gw", 2, 3,
|
2014-10-16 11:38:12 -07:00
|
|
|
ovs_router_add, NULL);
|
|
|
|
unixctl_command_register("ovs/route/show", "", 0, 0, ovs_router_show, NULL);
|
2014-11-11 11:53:47 -08:00
|
|
|
unixctl_command_register("ovs/route/del", "ipv4_addr/prefix_len", 1, 1, ovs_router_del,
|
2014-10-16 11:38:12 -07:00
|
|
|
NULL);
|
2014-11-17 15:05:54 +09:00
|
|
|
unixctl_command_register("ovs/route/lookup", "ipv4_addr", 1, 1,
|
|
|
|
ovs_router_lookup_cmd, NULL);
|
2014-10-16 11:38:12 -07:00
|
|
|
}
|