Changes in 4.9.226 ax25: fix setsockopt(SO_BINDTODEVICE) net: ipip: fix wrong address family in init error path net: revert "net: get rid of an signed integer overflow in ip_idents_reserve()" net sched: fix reporting the first-time use timestamp sctp: Start shutdown on association restart if in SHUTDOWN-SENT state and socket is closed net/mlx5e: Update netdev txq on completions during closure net: qrtr: Fix passing invalid reference to qrtr_local_enqueue() net/mlx5: Add command entry handling completion net: sun: fix missing release regions in cas_init_one(). net/mlx4_core: fix a memory leak bug. uapi: fix linux/if_pppol2tp.h userspace compilation errors IB/cma: Fix reference count leak when no ipv4 addresses are set gpio: tegra: mask GPIO IRQs during IRQ shutdown net: microchip: encx24j600: add missed kthread_stop gfs2: move privileged user check to gfs2_quota_lock_check cachefiles: Fix race between read_waiter and read_copier involving op->to_do usb: gadget: legacy: fix redundant initialization warnings cifs: Fix null pointer check in cifs_read Input: usbtouchscreen - add support for BonXeon TP Input: evdev - call input_flush_device() on release(), not flush() Input: xpad - add custom init packet for Xbox One S controllers Input: i8042 - add ThinkPad S230u to i8042 reset list Input: synaptics-rmi4 - fix error return code in rmi_driver_probe() IB/qib: Call kobject_put() when kobject_init_and_add() fails ARM: dts: imx: Correct B850v3 clock assignment ARM: dts: imx6q-bx50v3: Add internal switch ARM: dts/imx6q-bx50v3: Set display interface clock parents ALSA: hwdep: fix a left shifting 1 by 31 UB bug ALSA: usb-audio: mixer: volume quirk for ESS Technology Asus USB DAC exec: Always set cap_ambient in cap_bprm_set_creds libceph: ignore pool overlay and cache logic on redirects mm: remove VM_BUG_ON(PageSlab()) from page_mapcount() fs/binfmt_elf.c: allocate initialized memory in fill_thread_core_info() include/asm-generic/topology.h: guard cpumask_of_node() macro argument iommu: Fix reference count leak in iommu_group_alloc. parisc: Fix kernel panic in mem_init() mac80211: mesh: fix discovery timer re-arming issue / crash x86/dma: Fix max PFN arithmetic overflow on 32 bit systems xfrm: allow to accept packets with ipv6 NEXTHDR_HOP in xfrm_input xfrm: fix a warning in xfrm_policy_insert_list xfrm: fix a NULL-ptr deref in xfrm_local_error vti4: eliminated some duplicate code. ip_vti: receive ipip packet by calling ip_tunnel_rcv netfilter: nft_reject_bridge: enable reject with bridge vlan netfilter: ipset: Fix subcounter update skip netfilter: nf_conntrack_pptp: prevent buffer overflows in debug code qlcnic: fix missing release in qlcnic_83xx_interrupt_test. bonding: Fix reference count leak in bond_sysfs_slave_add. netfilter: nf_conntrack_pptp: fix compilation warning with W=1 build genirq/generic_pending: Do not lose pending affinity update net: rtnl_configure_link: fix dev flags changes arg to __dev_notify_flags mm/vmalloc.c: don't dereference possible NULL pointer in __vunmap() sc16is7xx: move label 'err_spi' to correct section net: hns: Fixes the missing put_device in positive leg for roce reset scsi: zfcp: fix request object use-after-free in send path causing wrong traces Linux 4.9.226 Signed-off-by: Greg Kroah-Hartman <gregkh@google.com> Change-Id: I64b95b6296df8de22f3f7ee64b13140f04215478
200 lines
5.5 KiB
C
200 lines
5.5 KiB
C
/*
|
|
* L2TP-over-IP socket for L2TPv3.
|
|
*
|
|
* Author: James Chapman <jchapman@katalix.com>
|
|
*/
|
|
|
|
#ifndef _UAPI_LINUX_L2TP_H_
|
|
#define _UAPI_LINUX_L2TP_H_
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/socket.h>
|
|
#include <linux/in.h>
|
|
#include <linux/in6.h>
|
|
|
|
#define IPPROTO_L2TP 115
|
|
|
|
/**
|
|
* struct sockaddr_l2tpip - the sockaddr structure for L2TP-over-IP sockets
|
|
* @l2tp_family: address family number AF_L2TPIP.
|
|
* @l2tp_addr: protocol specific address information
|
|
* @l2tp_conn_id: connection id of tunnel
|
|
*/
|
|
#define __SOCK_SIZE__ 16 /* sizeof(struct sockaddr) */
|
|
struct sockaddr_l2tpip {
|
|
/* The first fields must match struct sockaddr_in */
|
|
__kernel_sa_family_t l2tp_family; /* AF_INET */
|
|
__be16 l2tp_unused; /* INET port number (unused) */
|
|
struct in_addr l2tp_addr; /* Internet address */
|
|
|
|
__u32 l2tp_conn_id; /* Connection ID of tunnel */
|
|
|
|
/* Pad to size of `struct sockaddr'. */
|
|
unsigned char __pad[__SOCK_SIZE__ -
|
|
sizeof(__kernel_sa_family_t) -
|
|
sizeof(__be16) - sizeof(struct in_addr) -
|
|
sizeof(__u32)];
|
|
};
|
|
|
|
/**
|
|
* struct sockaddr_l2tpip6 - the sockaddr structure for L2TP-over-IPv6 sockets
|
|
* @l2tp_family: address family number AF_L2TPIP.
|
|
* @l2tp_addr: protocol specific address information
|
|
* @l2tp_conn_id: connection id of tunnel
|
|
*/
|
|
struct sockaddr_l2tpip6 {
|
|
/* The first fields must match struct sockaddr_in6 */
|
|
__kernel_sa_family_t l2tp_family; /* AF_INET6 */
|
|
__be16 l2tp_unused; /* INET port number (unused) */
|
|
__be32 l2tp_flowinfo; /* IPv6 flow information */
|
|
struct in6_addr l2tp_addr; /* IPv6 address */
|
|
__u32 l2tp_scope_id; /* scope id (new in RFC2553) */
|
|
__u32 l2tp_conn_id; /* Connection ID of tunnel */
|
|
};
|
|
|
|
/*****************************************************************************
|
|
* NETLINK_GENERIC netlink family.
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
* Commands.
|
|
* Valid TLVs of each command are:-
|
|
* TUNNEL_CREATE - CONN_ID, pw_type, netns, ifname, ipinfo, udpinfo, udpcsum, vlanid
|
|
* TUNNEL_DELETE - CONN_ID
|
|
* TUNNEL_MODIFY - CONN_ID, udpcsum
|
|
* TUNNEL_GETSTATS - CONN_ID, (stats)
|
|
* TUNNEL_GET - CONN_ID, (...)
|
|
* SESSION_CREATE - SESSION_ID, PW_TYPE, offset, data_seq, cookie, peer_cookie, offset, l2spec
|
|
* SESSION_DELETE - SESSION_ID
|
|
* SESSION_MODIFY - SESSION_ID, data_seq
|
|
* SESSION_GET - SESSION_ID, (...)
|
|
* SESSION_GETSTATS - SESSION_ID, (stats)
|
|
*
|
|
*/
|
|
enum {
|
|
L2TP_CMD_NOOP,
|
|
L2TP_CMD_TUNNEL_CREATE,
|
|
L2TP_CMD_TUNNEL_DELETE,
|
|
L2TP_CMD_TUNNEL_MODIFY,
|
|
L2TP_CMD_TUNNEL_GET,
|
|
L2TP_CMD_SESSION_CREATE,
|
|
L2TP_CMD_SESSION_DELETE,
|
|
L2TP_CMD_SESSION_MODIFY,
|
|
L2TP_CMD_SESSION_GET,
|
|
__L2TP_CMD_MAX,
|
|
};
|
|
|
|
#define L2TP_CMD_MAX (__L2TP_CMD_MAX - 1)
|
|
|
|
/*
|
|
* ATTR types defined for L2TP
|
|
*/
|
|
enum {
|
|
L2TP_ATTR_NONE, /* no data */
|
|
L2TP_ATTR_PW_TYPE, /* u16, enum l2tp_pwtype */
|
|
L2TP_ATTR_ENCAP_TYPE, /* u16, enum l2tp_encap_type */
|
|
L2TP_ATTR_OFFSET, /* u16 */
|
|
L2TP_ATTR_DATA_SEQ, /* u16 */
|
|
L2TP_ATTR_L2SPEC_TYPE, /* u8, enum l2tp_l2spec_type */
|
|
L2TP_ATTR_L2SPEC_LEN, /* u8, enum l2tp_l2spec_type */
|
|
L2TP_ATTR_PROTO_VERSION, /* u8 */
|
|
L2TP_ATTR_IFNAME, /* string */
|
|
L2TP_ATTR_CONN_ID, /* u32 */
|
|
L2TP_ATTR_PEER_CONN_ID, /* u32 */
|
|
L2TP_ATTR_SESSION_ID, /* u32 */
|
|
L2TP_ATTR_PEER_SESSION_ID, /* u32 */
|
|
L2TP_ATTR_UDP_CSUM, /* u8 */
|
|
L2TP_ATTR_VLAN_ID, /* u16 */
|
|
L2TP_ATTR_COOKIE, /* 0, 4 or 8 bytes */
|
|
L2TP_ATTR_PEER_COOKIE, /* 0, 4 or 8 bytes */
|
|
L2TP_ATTR_DEBUG, /* u32, enum l2tp_debug_flags */
|
|
L2TP_ATTR_RECV_SEQ, /* u8 */
|
|
L2TP_ATTR_SEND_SEQ, /* u8 */
|
|
L2TP_ATTR_LNS_MODE, /* u8 */
|
|
L2TP_ATTR_USING_IPSEC, /* u8 */
|
|
L2TP_ATTR_RECV_TIMEOUT, /* msec */
|
|
L2TP_ATTR_FD, /* int */
|
|
L2TP_ATTR_IP_SADDR, /* u32 */
|
|
L2TP_ATTR_IP_DADDR, /* u32 */
|
|
L2TP_ATTR_UDP_SPORT, /* u16 */
|
|
L2TP_ATTR_UDP_DPORT, /* u16 */
|
|
L2TP_ATTR_MTU, /* u16 */
|
|
L2TP_ATTR_MRU, /* u16 */
|
|
L2TP_ATTR_STATS, /* nested */
|
|
L2TP_ATTR_IP6_SADDR, /* struct in6_addr */
|
|
L2TP_ATTR_IP6_DADDR, /* struct in6_addr */
|
|
L2TP_ATTR_UDP_ZERO_CSUM6_TX, /* u8 */
|
|
L2TP_ATTR_UDP_ZERO_CSUM6_RX, /* u8 */
|
|
L2TP_ATTR_PAD,
|
|
__L2TP_ATTR_MAX,
|
|
};
|
|
|
|
#define L2TP_ATTR_MAX (__L2TP_ATTR_MAX - 1)
|
|
|
|
/* Nested in L2TP_ATTR_STATS */
|
|
enum {
|
|
L2TP_ATTR_STATS_NONE, /* no data */
|
|
L2TP_ATTR_TX_PACKETS, /* u64 */
|
|
L2TP_ATTR_TX_BYTES, /* u64 */
|
|
L2TP_ATTR_TX_ERRORS, /* u64 */
|
|
L2TP_ATTR_RX_PACKETS, /* u64 */
|
|
L2TP_ATTR_RX_BYTES, /* u64 */
|
|
L2TP_ATTR_RX_SEQ_DISCARDS, /* u64 */
|
|
L2TP_ATTR_RX_OOS_PACKETS, /* u64 */
|
|
L2TP_ATTR_RX_ERRORS, /* u64 */
|
|
L2TP_ATTR_STATS_PAD,
|
|
__L2TP_ATTR_STATS_MAX,
|
|
};
|
|
|
|
#define L2TP_ATTR_STATS_MAX (__L2TP_ATTR_STATS_MAX - 1)
|
|
|
|
enum l2tp_pwtype {
|
|
L2TP_PWTYPE_NONE = 0x0000,
|
|
L2TP_PWTYPE_ETH_VLAN = 0x0004,
|
|
L2TP_PWTYPE_ETH = 0x0005,
|
|
L2TP_PWTYPE_PPP = 0x0007,
|
|
L2TP_PWTYPE_PPP_AC = 0x0008,
|
|
L2TP_PWTYPE_IP = 0x000b,
|
|
__L2TP_PWTYPE_MAX
|
|
};
|
|
|
|
enum l2tp_l2spec_type {
|
|
L2TP_L2SPECTYPE_NONE,
|
|
L2TP_L2SPECTYPE_DEFAULT,
|
|
};
|
|
|
|
enum l2tp_encap_type {
|
|
L2TP_ENCAPTYPE_UDP,
|
|
L2TP_ENCAPTYPE_IP,
|
|
};
|
|
|
|
enum l2tp_seqmode {
|
|
L2TP_SEQ_NONE = 0,
|
|
L2TP_SEQ_IP = 1,
|
|
L2TP_SEQ_ALL = 2,
|
|
};
|
|
|
|
/**
|
|
* enum l2tp_debug_flags - debug message categories for L2TP tunnels/sessions
|
|
*
|
|
* @L2TP_MSG_DEBUG: verbose debug (if compiled in)
|
|
* @L2TP_MSG_CONTROL: userspace - kernel interface
|
|
* @L2TP_MSG_SEQ: sequence numbers
|
|
* @L2TP_MSG_DATA: data packets
|
|
*/
|
|
enum l2tp_debug_flags {
|
|
L2TP_MSG_DEBUG = (1 << 0),
|
|
L2TP_MSG_CONTROL = (1 << 1),
|
|
L2TP_MSG_SEQ = (1 << 2),
|
|
L2TP_MSG_DATA = (1 << 3),
|
|
};
|
|
|
|
/*
|
|
* NETLINK_GENERIC related info
|
|
*/
|
|
#define L2TP_GENL_NAME "l2tp"
|
|
#define L2TP_GENL_VERSION 0x1
|
|
#define L2TP_GENL_MCGROUP "l2tp"
|
|
|
|
#endif /* _UAPI_LINUX_L2TP_H_ */
|