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
|
/*
* xfrmi declarations, linux kernel IPsec interface/device
*
* Copyright (C) 2018-2020 Antony Antony <antony@phenome.org>
*
* 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 "err.h"
#if defined(linux) && defined(XFRM_SUPPORT) && defined(USE_XFRM_INTERFACE)
/* how to check defined(XFRMA_IF_ID) && defined(IFLA_XFRM_LINK)? those are enums */
# define IS_XFRMI TRUE
#else
# define IS_XFRMI FALSE
#endif
/* xfrmi interface format. start with ipsec1 IFNAMSIZ - 1 */
#define XFRMI_DEV_FORMAT "ipsec%" PRIu32
/* for ipsec0 we need to map it to a different if_id */
#define PLUTO_XFRMI_REMAP_IF_ID_ZERO 16384
struct connection;
struct logger;
struct pluto_xfrmi {
char *name;
uint32_t if_id; /* IFLA_XFRM_IF_ID */
uint32_t dev_if_id; /* if_id of device, IFLA_XFRM_LINK */
unsigned int refcount;
bool shared;
bool pluto_added;
struct pluto_xfrmi *next;
};
extern bool setup_xfrm_interface(struct connection *c, uint32_t xfrm_if_id);
extern bool add_xfrmi(struct connection *c, struct logger *logger);
extern void stale_xfrmi_interfaces(struct logger *logger);
extern err_t xfrm_iface_supported(struct logger *logger);
extern void free_xfrmi_ipsec1(struct logger *logger);
extern void unreference_xfrmi(struct connection *c, struct logger *logger);
extern void reference_xfrmi(struct connection *c);
|