1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
|
/* BSD's IPsec Interface, for libreswan
*
* Copyright (C) 2024 Andrew Cagney
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version. See <https://www.gnu.org/licenses/gpl2.txt>.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
*/
#include "ip_info.h"
#include "ipsec_interface.h"
#include "kernel_ipsec_interface.h"
#include "iface.h"
#include "server_run.h"
#include "log.h"
static bool freebsd_ipsec_interface_has_cidr(const char *ipsec_if_name,
ip_cidr cidr,
struct verbose verbose)
{
cidr_buf cb;
vlog("%s() always true %s %s", __func__, ipsec_if_name,
str_cidr(&cidr, &cb));
return true;
}
/*
* ifconfig ipsec0 inet 172.16.100.1/32 172.16.200.1
* where 172.16.200.1 is the interface-ip / sourceip.
*/
static bool freebsd_ipsec_interface_add_cidr(const char *ipsec_if_name,
ip_cidr cidr,
struct verbose verbose)
{
/* same scope as add[] */
cidr_buf cb;
address_buf ab;
ip_address address = cidr_address(cidr);
const struct ip_info *afi = cidr_info(cidr);
const char *add[] = {
"ifconfig",
ipsec_if_name,
afi->inet_name, /* "inet" or "inet6" */
str_cidr(&cidr, &cb),
str_address(&address, &ab),
NULL,
};
return server_runv(add, verbose);
}
static void freebsd_ipsec_interface_del_cidr(const char *ipsec_if_name,
ip_cidr cidr UNUSED,
struct verbose verbose)
{
/* same scope as add[] */
cidr_buf cb;
address_buf ab;
ip_address address = cidr_address(cidr);
const struct ip_info *afi = cidr_info(cidr);
const char *delete[] = {
"ifconfig",
ipsec_if_name,
"delete",
afi->inet_name, /* "inet" or "inet6" */
str_cidr(&cidr, &cb),
str_address(&address, &ab),
NULL,
};
server_runv(delete, verbose);
}
static bool freebsd_ipsec_interface_add(const char *ipsec_if_name,
const ipsec_interface_id_t ipsec_if_id UNUSED,
const struct iface_device *iface UNUSED,
struct verbose verbose)
{
/*
* Don't yet support creating an interface.
*/
const char *create[] = {
"ifconfig",
ipsec_if_name,
"create",
NULL,
};
return server_runv(create, verbose);
}
static bool freebsd_ipsec_interface_up(const char *ipsec_if_name UNUSED,
struct verbose verbose UNUSED)
{
const char *up[] = {
"ifconfig",
ipsec_if_name,
"up",
NULL,
};
return server_runv(up, verbose);
}
static bool freebsd_ipsec_interface_del(const char *ipsec_if_name,
struct verbose verbose)
{
const char *destroy[] = {
"ifconfig",
ipsec_if_name,
"destroy",
NULL,
};
return server_runv(destroy, verbose);
}
static bool freebsd_ipsec_interface_match(struct ipsec_interface_match *match,
struct verbose verbose)
{
const char *run[] = {
"ifconfig",
match->ipsec_if_name,
NULL,
};
bool ok = server_runv(run, verbose);
if (ok) {
jam_str(match->found, sizeof(match->found), match->ipsec_if_name);
} else {
match->diag = diag("not found");
}
return ok;
}
static err_t freebsd_ipsec_interface_init(struct verbose verbose)
{
vdbg("%s() nothing to do", __func__);
return NULL;
}
const struct kernel_ipsec_interface kernel_ipsec_interface_ifconfig = {
.name = "ipsec",
.has_cidr = freebsd_ipsec_interface_has_cidr,
.add_cidr = freebsd_ipsec_interface_add_cidr,
.del_cidr = freebsd_ipsec_interface_del_cidr,
.add = freebsd_ipsec_interface_add,
.up = freebsd_ipsec_interface_up,
.del = freebsd_ipsec_interface_del,
.match = freebsd_ipsec_interface_match,
.init = freebsd_ipsec_interface_init,
};
|