2017-11-01 15:07:57 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2005-04-16 15:20:36 -07:00
|
|
|
#ifndef __LINUX_NETLINK_H
|
|
|
|
|
#define __LINUX_NETLINK_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <linux/capability.h>
|
|
|
|
|
#include <linux/skbuff.h>
|
2012-09-21 09:35:38 +00:00
|
|
|
#include <linux/export.h>
|
2012-09-06 18:20:01 +00:00
|
|
|
#include <net/scm.h>
|
2012-10-13 10:46:48 +01:00
|
|
|
#include <uapi/linux/netlink.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2010-09-22 05:54:54 +00:00
|
|
|
struct net;
|
|
|
|
|
|
2021-02-03 22:48:16 -03:00
|
|
|
void do_trace_netlink_extack(const char *msg);
|
|
|
|
|
|
2007-04-25 19:08:35 -07:00
|
|
|
static inline struct nlmsghdr *nlmsg_hdr(const struct sk_buff *skb)
|
|
|
|
|
{
|
|
|
|
|
return (struct nlmsghdr *)skb->data;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-17 06:47:02 +00:00
|
|
|
enum netlink_skb_flags {
|
2014-05-30 11:04:00 -07:00
|
|
|
NETLINK_SKB_DST = 0x8, /* Dst set in sendto or sendmsg */
|
2013-04-17 06:47:02 +00:00
|
|
|
};
|
|
|
|
|
|
2009-11-04 09:50:58 -08:00
|
|
|
struct netlink_skb_parms {
|
2012-09-06 18:20:01 +00:00
|
|
|
struct scm_creds creds; /* Skb credentials */
|
2012-09-07 20:12:54 +00:00
|
|
|
__u32 portid;
|
2005-08-14 19:27:50 -07:00
|
|
|
__u32 dst_group;
|
2013-04-17 06:47:02 +00:00
|
|
|
__u32 flags;
|
2013-04-17 06:46:57 +00:00
|
|
|
struct sock *sk;
|
2015-05-07 11:02:53 +02:00
|
|
|
bool nsid_is_set;
|
|
|
|
|
int nsid;
|
2005-04-16 15:20:36 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define NETLINK_CB(skb) (*(struct netlink_skb_parms*)&((skb)->cb))
|
|
|
|
|
#define NETLINK_CREDS(skb) (&NETLINK_CB((skb)).creds)
|
|
|
|
|
|
|
|
|
|
|
2018-12-20 09:52:28 -08:00
|
|
|
void netlink_table_grab(void);
|
|
|
|
|
void netlink_table_ungrab(void);
|
2009-09-12 03:03:15 +00:00
|
|
|
|
2012-09-08 02:53:53 +00:00
|
|
|
#define NL_CFG_F_NONROOT_RECV (1 << 0)
|
|
|
|
|
#define NL_CFG_F_NONROOT_SEND (1 << 1)
|
|
|
|
|
|
2012-06-29 06:15:21 +00:00
|
|
|
/* optional Netlink kernel configuration parameters */
|
|
|
|
|
struct netlink_kernel_cfg {
|
|
|
|
|
unsigned int groups;
|
2012-09-23 02:09:23 -04:00
|
|
|
unsigned int flags;
|
2012-06-29 06:15:21 +00:00
|
|
|
void (*input)(struct sk_buff *skb);
|
|
|
|
|
struct mutex *cb_mutex;
|
2014-12-23 21:00:06 +01:00
|
|
|
int (*bind)(struct net *net, int group);
|
|
|
|
|
void (*unbind)(struct net *net, int group);
|
2013-06-06 14:49:11 +08:00
|
|
|
bool (*compare)(struct net *net, struct sock *sk);
|
2012-06-29 06:15:21 +00:00
|
|
|
};
|
|
|
|
|
|
2018-12-20 09:52:28 -08:00
|
|
|
struct sock *__netlink_kernel_create(struct net *net, int unit,
|
2012-09-08 02:53:54 +00:00
|
|
|
struct module *module,
|
|
|
|
|
struct netlink_kernel_cfg *cfg);
|
|
|
|
|
static inline struct sock *
|
|
|
|
|
netlink_kernel_create(struct net *net, int unit, struct netlink_kernel_cfg *cfg)
|
|
|
|
|
{
|
|
|
|
|
return __netlink_kernel_create(net, unit, THIS_MODULE, cfg);
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-12 14:34:06 +02:00
|
|
|
/* this can be increased when necessary - don't expose to userland */
|
|
|
|
|
#define NETLINK_MAX_COOKIE_LEN 20
|
|
|
|
|
|
2017-04-12 14:34:04 +02:00
|
|
|
/**
|
|
|
|
|
* struct netlink_ext_ack - netlink extended ACK report struct
|
|
|
|
|
* @_msg: message string to report - don't access directly, use
|
|
|
|
|
* %NL_SET_ERR_MSG
|
|
|
|
|
* @bad_attr: attribute with error
|
2020-10-08 12:45:17 +02:00
|
|
|
* @policy: policy for a bad attribute
|
2017-04-12 14:34:06 +02:00
|
|
|
* @cookie: cookie data to return to userspace (for success)
|
|
|
|
|
* @cookie_len: actual cookie data length
|
2017-04-12 14:34:04 +02:00
|
|
|
*/
|
|
|
|
|
struct netlink_ext_ack {
|
|
|
|
|
const char *_msg;
|
|
|
|
|
const struct nlattr *bad_attr;
|
2020-10-08 12:45:17 +02:00
|
|
|
const struct nla_policy *policy;
|
2017-04-12 14:34:06 +02:00
|
|
|
u8 cookie[NETLINK_MAX_COOKIE_LEN];
|
|
|
|
|
u8 cookie_len;
|
2017-04-12 14:34:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/* Always use this macro, this allows later putting the
|
|
|
|
|
* message into a separate section or such for things
|
|
|
|
|
* like translation or listing all possible messages.
|
|
|
|
|
* Currently string formatting is not supported (due
|
|
|
|
|
* to the lack of an output buffer.)
|
|
|
|
|
*/
|
2017-05-03 00:39:17 +02:00
|
|
|
#define NL_SET_ERR_MSG(extack, msg) do { \
|
2018-01-15 12:42:25 +01:00
|
|
|
static const char __msg[] = msg; \
|
2017-05-03 00:39:17 +02:00
|
|
|
struct netlink_ext_ack *__extack = (extack); \
|
|
|
|
|
\
|
2021-02-03 22:48:16 -03:00
|
|
|
do_trace_netlink_extack(__msg); \
|
|
|
|
|
\
|
2017-05-03 00:39:17 +02:00
|
|
|
if (__extack) \
|
|
|
|
|
__extack->_msg = __msg; \
|
2017-04-12 14:34:04 +02:00
|
|
|
} while (0)
|
|
|
|
|
|
2017-05-03 00:39:17 +02:00
|
|
|
#define NL_SET_ERR_MSG_MOD(extack, msg) \
|
|
|
|
|
NL_SET_ERR_MSG((extack), KBUILD_MODNAME ": " msg)
|
2017-04-30 21:46:45 -07:00
|
|
|
|
2020-10-08 12:45:17 +02:00
|
|
|
#define NL_SET_BAD_ATTR_POLICY(extack, attr, pol) do { \
|
|
|
|
|
if ((extack)) { \
|
2017-05-21 10:12:03 -06:00
|
|
|
(extack)->bad_attr = (attr); \
|
2020-10-08 12:45:17 +02:00
|
|
|
(extack)->policy = (pol); \
|
2017-05-27 16:19:28 -06:00
|
|
|
} \
|
|
|
|
|
} while (0)
|
|
|
|
|
|
2020-10-08 12:45:17 +02:00
|
|
|
#define NL_SET_BAD_ATTR(extack, attr) NL_SET_BAD_ATTR_POLICY(extack, attr, NULL)
|
|
|
|
|
|
|
|
|
|
#define NL_SET_ERR_MSG_ATTR_POL(extack, attr, pol, msg) do { \
|
|
|
|
|
static const char __msg[] = msg; \
|
|
|
|
|
struct netlink_ext_ack *__extack = (extack); \
|
|
|
|
|
\
|
2021-02-03 22:48:16 -03:00
|
|
|
do_trace_netlink_extack(__msg); \
|
|
|
|
|
\
|
2020-10-08 12:45:17 +02:00
|
|
|
if (__extack) { \
|
|
|
|
|
__extack->_msg = __msg; \
|
|
|
|
|
__extack->bad_attr = (attr); \
|
|
|
|
|
__extack->policy = (pol); \
|
|
|
|
|
} \
|
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
#define NL_SET_ERR_MSG_ATTR(extack, attr, msg) \
|
|
|
|
|
NL_SET_ERR_MSG_ATTR_POL(extack, attr, NULL, msg)
|
|
|
|
|
|
2018-08-23 10:48:13 +02:00
|
|
|
static inline void nl_set_extack_cookie_u64(struct netlink_ext_ack *extack,
|
|
|
|
|
u64 cookie)
|
|
|
|
|
{
|
2020-03-21 00:46:50 +01:00
|
|
|
if (!extack)
|
|
|
|
|
return;
|
2021-04-17 14:38:07 +03:00
|
|
|
memcpy(extack->cookie, &cookie, sizeof(cookie));
|
|
|
|
|
extack->cookie_len = sizeof(cookie);
|
2018-08-23 10:48:13 +02:00
|
|
|
}
|
|
|
|
|
|
2018-12-20 09:52:28 -08:00
|
|
|
void netlink_kernel_release(struct sock *sk);
|
|
|
|
|
int __netlink_change_ngroups(struct sock *sk, unsigned int groups);
|
|
|
|
|
int netlink_change_ngroups(struct sock *sk, unsigned int groups);
|
|
|
|
|
void __netlink_clear_multicast_users(struct sock *sk, unsigned int group);
|
|
|
|
|
void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err,
|
|
|
|
|
const struct netlink_ext_ack *extack);
|
|
|
|
|
int netlink_has_listeners(struct sock *sk, unsigned int group);
|
2019-01-18 10:46:13 -08:00
|
|
|
bool netlink_strict_get_check(struct sk_buff *skb);
|
2015-09-10 02:10:57 +02:00
|
|
|
|
2018-12-20 09:52:28 -08:00
|
|
|
int netlink_unicast(struct sock *ssk, struct sk_buff *skb, __u32 portid, int nonblock);
|
|
|
|
|
int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, __u32 portid,
|
|
|
|
|
__u32 group, gfp_t allocation);
|
|
|
|
|
int netlink_set_err(struct sock *ssk, __u32 portid, __u32 group, int code);
|
|
|
|
|
int netlink_register_notifier(struct notifier_block *nb);
|
|
|
|
|
int netlink_unregister_notifier(struct notifier_block *nb);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
/* finegrained unicast helpers: */
|
|
|
|
|
struct sock *netlink_getsockbyfilp(struct file *filp);
|
2008-06-05 11:23:39 -07:00
|
|
|
int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
|
2007-11-07 02:42:09 -08:00
|
|
|
long *timeo, struct sock *ssk);
|
2005-04-16 15:20:36 -07:00
|
|
|
void netlink_detachskb(struct sock *sk, struct sk_buff *skb);
|
2007-10-10 21:14:03 -07:00
|
|
|
int netlink_sendskb(struct sock *sk, struct sk_buff *skb);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2013-06-28 03:04:23 +02:00
|
|
|
static inline struct sk_buff *
|
|
|
|
|
netlink_skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
|
|
|
|
|
{
|
|
|
|
|
struct sk_buff *nskb;
|
|
|
|
|
|
|
|
|
|
nskb = skb_clone(skb, gfp_mask);
|
|
|
|
|
if (!nskb)
|
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
/* This is a large skb, set destructor callback to release head */
|
|
|
|
|
if (is_vmalloc_addr(skb->head))
|
|
|
|
|
nskb->destructor = skb->destructor;
|
|
|
|
|
|
|
|
|
|
return nskb;
|
|
|
|
|
}
|
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
/*
|
|
|
|
|
* skb should fit one page. This choice is good for headerless malloc.
|
2007-03-25 20:27:59 -07:00
|
|
|
* But we should limit to 8K so that userspace does not have to
|
|
|
|
|
* use enormous buffer sizes on recvmsg() calls just to avoid
|
|
|
|
|
* MSG_TRUNC when PAGE_SIZE is very large.
|
2005-04-16 15:20:36 -07:00
|
|
|
*/
|
2007-03-25 20:27:59 -07:00
|
|
|
#if PAGE_SIZE < 8192UL
|
|
|
|
|
#define NLMSG_GOODSIZE SKB_WITH_OVERHEAD(PAGE_SIZE)
|
|
|
|
|
#else
|
|
|
|
|
#define NLMSG_GOODSIZE SKB_WITH_OVERHEAD(8192UL)
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-11-10 14:10:15 -08:00
|
|
|
#define NLMSG_DEFAULT_SIZE (NLMSG_GOODSIZE - NLMSG_HDRLEN)
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
|
2009-11-04 09:50:58 -08:00
|
|
|
struct netlink_callback {
|
2009-08-25 16:07:40 +02:00
|
|
|
struct sk_buff *skb;
|
|
|
|
|
const struct nlmsghdr *nlh;
|
|
|
|
|
int (*dump)(struct sk_buff * skb,
|
|
|
|
|
struct netlink_callback *cb);
|
|
|
|
|
int (*done)(struct netlink_callback *cb);
|
2012-02-24 14:30:16 +00:00
|
|
|
void *data;
|
2012-10-04 20:15:48 +00:00
|
|
|
/* the module that dump function belong to */
|
|
|
|
|
struct module *module;
|
2018-10-07 20:16:22 -07:00
|
|
|
struct netlink_ext_ack *extack;
|
2011-06-10 01:27:09 +00:00
|
|
|
u16 family;
|
2018-10-15 18:56:41 -07:00
|
|
|
u16 answer_flags;
|
2020-02-25 15:04:27 -08:00
|
|
|
u32 min_dump_alloc;
|
2011-06-20 13:40:46 +02:00
|
|
|
unsigned int prev_seq, seq;
|
2020-02-25 15:04:27 -08:00
|
|
|
bool strict_check;
|
2019-06-28 16:40:21 +02:00
|
|
|
union {
|
|
|
|
|
u8 ctx[48];
|
|
|
|
|
|
|
|
|
|
/* args is deprecated. Cast a struct over ctx instead
|
|
|
|
|
* for proper type safety.
|
|
|
|
|
*/
|
|
|
|
|
long args[6];
|
|
|
|
|
};
|
2005-04-16 15:20:36 -07:00
|
|
|
};
|
|
|
|
|
|
2009-11-04 09:50:58 -08:00
|
|
|
struct netlink_notify {
|
2007-09-12 13:05:38 +02:00
|
|
|
struct net *net;
|
2015-04-13 00:52:35 +02:00
|
|
|
u32 portid;
|
2005-04-16 15:20:36 -07:00
|
|
|
int protocol;
|
|
|
|
|
};
|
|
|
|
|
|
2012-01-30 15:22:06 -05:00
|
|
|
struct nlmsghdr *
|
2012-09-07 20:12:54 +00:00
|
|
|
__nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags);
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2012-02-24 14:30:15 +00:00
|
|
|
struct netlink_dump_control {
|
2015-12-15 15:41:37 -08:00
|
|
|
int (*start)(struct netlink_callback *);
|
2012-02-24 14:30:15 +00:00
|
|
|
int (*dump)(struct sk_buff *skb, struct netlink_callback *);
|
2012-10-04 20:15:48 +00:00
|
|
|
int (*done)(struct netlink_callback *);
|
2012-02-24 14:30:16 +00:00
|
|
|
void *data;
|
2012-10-04 20:15:48 +00:00
|
|
|
struct module *module;
|
2020-10-21 10:00:53 +08:00
|
|
|
u32 min_dump_alloc;
|
2012-02-24 14:30:15 +00:00
|
|
|
};
|
|
|
|
|
|
2018-12-20 09:52:28 -08:00
|
|
|
int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
|
2012-10-04 20:15:48 +00:00
|
|
|
const struct nlmsghdr *nlh,
|
|
|
|
|
struct netlink_dump_control *control);
|
|
|
|
|
static inline int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
|
|
|
|
|
const struct nlmsghdr *nlh,
|
|
|
|
|
struct netlink_dump_control *control)
|
|
|
|
|
{
|
|
|
|
|
if (!control->module)
|
|
|
|
|
control->module = THIS_MODULE;
|
|
|
|
|
|
|
|
|
|
return __netlink_dump_start(ssk, skb, nlh, control);
|
|
|
|
|
}
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2013-06-21 19:38:07 +02:00
|
|
|
struct netlink_tap {
|
|
|
|
|
struct net_device *dev;
|
|
|
|
|
struct module *module;
|
|
|
|
|
struct list_head list;
|
|
|
|
|
};
|
|
|
|
|
|
2018-12-20 09:52:28 -08:00
|
|
|
int netlink_add_tap(struct netlink_tap *nt);
|
|
|
|
|
int netlink_remove_tap(struct netlink_tap *nt);
|
2013-06-21 19:38:07 +02:00
|
|
|
|
2014-04-23 14:28:03 -07:00
|
|
|
bool __netlink_ns_capable(const struct netlink_skb_parms *nsp,
|
|
|
|
|
struct user_namespace *ns, int cap);
|
|
|
|
|
bool netlink_ns_capable(const struct sk_buff *skb,
|
|
|
|
|
struct user_namespace *ns, int cap);
|
|
|
|
|
bool netlink_capable(const struct sk_buff *skb, int cap);
|
|
|
|
|
bool netlink_net_capable(const struct sk_buff *skb, int cap);
|
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
#endif /* __LINUX_NETLINK_H */
|