mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-08-09 06:14:34 +02:00
In order to support the multipeer architecture, upon connection setup each side of a tunnel advertises a unique ID that the other side must include in packets sent to them. Therefore when transmitting a packet, a peer inserts the recipient's advertised ID for that specific tunnel into the peer ID field. When receiving a packet, a peer expects to find its own unique receive ID for that specific tunnel in the peer ID field. Add support for the TX peer ID and embed it into transmitting packets. If no TX peer ID is specified, fallback to using the same peer ID both for RX and TX in order to be compatible with the non-multipeer compliant peers. Cc: horms@kernel.org Cc: donald.hunter@gmail.com Signed-off-by: Ralf Lici <ralf@mandelbit.com> Signed-off-by: Antonio Quartulli <antonio@openvpn.net> Reviewed-by: Sabrina Dubroca <sd@queasysnail.net>
49 lines
2.1 KiB
C
49 lines
2.1 KiB
C
/* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) */
|
|
/* Do not edit directly, auto-generated from: */
|
|
/* Documentation/netlink/specs/ovpn.yaml */
|
|
/* YNL-GEN kernel header */
|
|
/* To regenerate run: tools/net/ynl/ynl-regen.sh */
|
|
|
|
#ifndef _LINUX_OVPN_GEN_H
|
|
#define _LINUX_OVPN_GEN_H
|
|
|
|
#include <net/netlink.h>
|
|
#include <net/genetlink.h>
|
|
|
|
#include <uapi/linux/ovpn.h>
|
|
|
|
/* Common nested types */
|
|
extern const struct nla_policy ovpn_keyconf_nl_policy[OVPN_A_KEYCONF_DECRYPT_DIR + 1];
|
|
extern const struct nla_policy ovpn_keyconf_del_input_nl_policy[OVPN_A_KEYCONF_SLOT + 1];
|
|
extern const struct nla_policy ovpn_keyconf_get_nl_policy[OVPN_A_KEYCONF_CIPHER_ALG + 1];
|
|
extern const struct nla_policy ovpn_keyconf_swap_input_nl_policy[OVPN_A_KEYCONF_PEER_ID + 1];
|
|
extern const struct nla_policy ovpn_keydir_nl_policy[OVPN_A_KEYDIR_NONCE_TAIL + 1];
|
|
extern const struct nla_policy ovpn_peer_nl_policy[OVPN_A_PEER_TX_ID + 1];
|
|
extern const struct nla_policy ovpn_peer_del_input_nl_policy[OVPN_A_PEER_ID + 1];
|
|
extern const struct nla_policy ovpn_peer_new_input_nl_policy[OVPN_A_PEER_TX_ID + 1];
|
|
extern const struct nla_policy ovpn_peer_set_input_nl_policy[OVPN_A_PEER_TX_ID + 1];
|
|
|
|
int ovpn_nl_pre_doit(const struct genl_split_ops *ops, struct sk_buff *skb,
|
|
struct genl_info *info);
|
|
void
|
|
ovpn_nl_post_doit(const struct genl_split_ops *ops, struct sk_buff *skb,
|
|
struct genl_info *info);
|
|
|
|
int ovpn_nl_peer_new_doit(struct sk_buff *skb, struct genl_info *info);
|
|
int ovpn_nl_peer_set_doit(struct sk_buff *skb, struct genl_info *info);
|
|
int ovpn_nl_peer_get_doit(struct sk_buff *skb, struct genl_info *info);
|
|
int ovpn_nl_peer_get_dumpit(struct sk_buff *skb, struct netlink_callback *cb);
|
|
int ovpn_nl_peer_del_doit(struct sk_buff *skb, struct genl_info *info);
|
|
int ovpn_nl_key_new_doit(struct sk_buff *skb, struct genl_info *info);
|
|
int ovpn_nl_key_get_doit(struct sk_buff *skb, struct genl_info *info);
|
|
int ovpn_nl_key_swap_doit(struct sk_buff *skb, struct genl_info *info);
|
|
int ovpn_nl_key_del_doit(struct sk_buff *skb, struct genl_info *info);
|
|
|
|
enum {
|
|
OVPN_NLGRP_PEERS,
|
|
};
|
|
|
|
extern struct genl_family ovpn_nl_family;
|
|
|
|
#endif /* _LINUX_OVPN_GEN_H */
|