License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 22:07:57 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2005-04-17 06:20:36 +08:00
|
|
|
#ifndef __LINUX_NETLINK_H
|
|
|
|
#define __LINUX_NETLINK_H
|
|
|
|
|
|
|
|
|
|
|
|
#include <linux/capability.h>
|
|
|
|
#include <linux/skbuff.h>
|
2012-09-21 17:35:38 +08:00
|
|
|
#include <linux/export.h>
|
2012-09-07 02:20:01 +08:00
|
|
|
#include <net/scm.h>
|
2012-10-13 17:46:48 +08:00
|
|
|
#include <uapi/linux/netlink.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2010-09-22 13:54:54 +08:00
|
|
|
struct net;
|
|
|
|
|
netlink: add tracepoint at NL_SET_ERR_MSG
Often userspace won't request the extack information, or they don't log it
because of log level or so, and even when they do, sometimes it's not
enough to know exactly what caused the error.
Netlink extack is the standard way of reporting erros with descriptive
error messages. With a trace point on it, we then can know exactly where
the error happened, regardless of userspace app. Also, we can even see if
the err msg was overwritten.
The wrapper do_trace_netlink_extack() is because trace points shouldn't be
called from .h files, as trace points are not that small, and the function
call to do_trace_netlink_extack() on the macros is not protected by
tracepoint_enabled() because the macros are called from modules, and this
would require exporting some trace structs. As this is error path, it's
better to export just the wrapper instead.
v2: removed leftover tracepoint declaration
Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Reviewed-by: David Ahern <dsahern@kernel.org>
Link: https://lore.kernel.org/r/4546b63e67b2989789d146498b13cc09e1fdc543.1612403190.git.marcelo.leitner@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
2021-02-04 09:48:16 +08:00
|
|
|
void do_trace_netlink_extack(const char *msg);
|
|
|
|
|
2007-04-26 10:08:35 +08:00
|
|
|
static inline struct nlmsghdr *nlmsg_hdr(const struct sk_buff *skb)
|
|
|
|
{
|
|
|
|
return (struct nlmsghdr *)skb->data;
|
|
|
|
}
|
|
|
|
|
2013-04-17 14:47:02 +08:00
|
|
|
enum netlink_skb_flags {
|
2014-05-31 02:04:00 +08:00
|
|
|
NETLINK_SKB_DST = 0x8, /* Dst set in sendto or sendmsg */
|
2013-04-17 14:47:02 +08:00
|
|
|
};
|
|
|
|
|
2009-11-05 01:50:58 +08:00
|
|
|
struct netlink_skb_parms {
|
2012-09-07 02:20:01 +08:00
|
|
|
struct scm_creds creds; /* Skb credentials */
|
2012-09-08 04:12:54 +08:00
|
|
|
__u32 portid;
|
2005-08-15 10:27:50 +08:00
|
|
|
__u32 dst_group;
|
2013-04-17 14:47:02 +08:00
|
|
|
__u32 flags;
|
2013-04-17 14:46:57 +08:00
|
|
|
struct sock *sk;
|
2015-05-07 17:02:53 +08:00
|
|
|
bool nsid_is_set;
|
|
|
|
int nsid;
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#define NETLINK_CB(skb) (*(struct netlink_skb_parms*)&((skb)->cb))
|
|
|
|
#define NETLINK_CREDS(skb) (&NETLINK_CB((skb)).creds)
|
|
|
|
|
|
|
|
|
2018-12-21 01:52:28 +08:00
|
|
|
void netlink_table_grab(void);
|
|
|
|
void netlink_table_ungrab(void);
|
2009-09-12 11:03:15 +08:00
|
|
|
|
2012-09-08 10:53:53 +08:00
|
|
|
#define NL_CFG_F_NONROOT_RECV (1 << 0)
|
|
|
|
#define NL_CFG_F_NONROOT_SEND (1 << 1)
|
|
|
|
|
2012-06-29 14:15:21 +08:00
|
|
|
/* optional Netlink kernel configuration parameters */
|
|
|
|
struct netlink_kernel_cfg {
|
|
|
|
unsigned int groups;
|
2012-09-23 14:09:23 +08:00
|
|
|
unsigned int flags;
|
2012-06-29 14:15:21 +08:00
|
|
|
void (*input)(struct sk_buff *skb);
|
|
|
|
struct mutex *cb_mutex;
|
2014-12-24 04:00:06 +08: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 14:15:21 +08:00
|
|
|
};
|
|
|
|
|
2018-12-21 01:52:28 +08:00
|
|
|
struct sock *__netlink_kernel_create(struct net *net, int unit,
|
2012-09-08 10:53:54 +08: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 20:34:06 +08:00
|
|
|
/* this can be increased when necessary - don't expose to userland */
|
|
|
|
#define NETLINK_MAX_COOKIE_LEN 20
|
|
|
|
|
2017-04-12 20:34:04 +08: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 18:45:17 +08:00
|
|
|
* @policy: policy for a bad attribute
|
2017-04-12 20:34:06 +08:00
|
|
|
* @cookie: cookie data to return to userspace (for success)
|
|
|
|
* @cookie_len: actual cookie data length
|
2017-04-12 20:34:04 +08:00
|
|
|
*/
|
|
|
|
struct netlink_ext_ack {
|
|
|
|
const char *_msg;
|
|
|
|
const struct nlattr *bad_attr;
|
2020-10-08 18:45:17 +08:00
|
|
|
const struct nla_policy *policy;
|
2017-04-12 20:34:06 +08:00
|
|
|
u8 cookie[NETLINK_MAX_COOKIE_LEN];
|
|
|
|
u8 cookie_len;
|
2017-04-12 20:34:04 +08: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 06:39:17 +08:00
|
|
|
#define NL_SET_ERR_MSG(extack, msg) do { \
|
2018-01-15 19:42:25 +08:00
|
|
|
static const char __msg[] = msg; \
|
2017-05-03 06:39:17 +08:00
|
|
|
struct netlink_ext_ack *__extack = (extack); \
|
|
|
|
\
|
netlink: add tracepoint at NL_SET_ERR_MSG
Often userspace won't request the extack information, or they don't log it
because of log level or so, and even when they do, sometimes it's not
enough to know exactly what caused the error.
Netlink extack is the standard way of reporting erros with descriptive
error messages. With a trace point on it, we then can know exactly where
the error happened, regardless of userspace app. Also, we can even see if
the err msg was overwritten.
The wrapper do_trace_netlink_extack() is because trace points shouldn't be
called from .h files, as trace points are not that small, and the function
call to do_trace_netlink_extack() on the macros is not protected by
tracepoint_enabled() because the macros are called from modules, and this
would require exporting some trace structs. As this is error path, it's
better to export just the wrapper instead.
v2: removed leftover tracepoint declaration
Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Reviewed-by: David Ahern <dsahern@kernel.org>
Link: https://lore.kernel.org/r/4546b63e67b2989789d146498b13cc09e1fdc543.1612403190.git.marcelo.leitner@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
2021-02-04 09:48:16 +08:00
|
|
|
do_trace_netlink_extack(__msg); \
|
|
|
|
\
|
2017-05-03 06:39:17 +08:00
|
|
|
if (__extack) \
|
|
|
|
__extack->_msg = __msg; \
|
2017-04-12 20:34:04 +08:00
|
|
|
} while (0)
|
|
|
|
|
2017-05-03 06:39:17 +08:00
|
|
|
#define NL_SET_ERR_MSG_MOD(extack, msg) \
|
|
|
|
NL_SET_ERR_MSG((extack), KBUILD_MODNAME ": " msg)
|
2017-05-01 12:46:45 +08:00
|
|
|
|
2020-10-08 18:45:17 +08:00
|
|
|
#define NL_SET_BAD_ATTR_POLICY(extack, attr, pol) do { \
|
|
|
|
if ((extack)) { \
|
2017-05-22 00:12:03 +08:00
|
|
|
(extack)->bad_attr = (attr); \
|
2020-10-08 18:45:17 +08:00
|
|
|
(extack)->policy = (pol); \
|
|
|
|
} \
|
2017-05-22 00:12:03 +08:00
|
|
|
} while (0)
|
|
|
|
|
2020-10-08 18:45:17 +08: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); \
|
|
|
|
\
|
netlink: add tracepoint at NL_SET_ERR_MSG
Often userspace won't request the extack information, or they don't log it
because of log level or so, and even when they do, sometimes it's not
enough to know exactly what caused the error.
Netlink extack is the standard way of reporting erros with descriptive
error messages. With a trace point on it, we then can know exactly where
the error happened, regardless of userspace app. Also, we can even see if
the err msg was overwritten.
The wrapper do_trace_netlink_extack() is because trace points shouldn't be
called from .h files, as trace points are not that small, and the function
call to do_trace_netlink_extack() on the macros is not protected by
tracepoint_enabled() because the macros are called from modules, and this
would require exporting some trace structs. As this is error path, it's
better to export just the wrapper instead.
v2: removed leftover tracepoint declaration
Signed-off-by: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Reviewed-by: David Ahern <dsahern@kernel.org>
Link: https://lore.kernel.org/r/4546b63e67b2989789d146498b13cc09e1fdc543.1612403190.git.marcelo.leitner@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
2021-02-04 09:48:16 +08:00
|
|
|
do_trace_netlink_extack(__msg); \
|
|
|
|
\
|
2020-10-08 18:45:17 +08:00
|
|
|
if (__extack) { \
|
|
|
|
__extack->_msg = __msg; \
|
|
|
|
__extack->bad_attr = (attr); \
|
|
|
|
__extack->policy = (pol); \
|
|
|
|
} \
|
2017-05-28 06:19:28 +08:00
|
|
|
} while (0)
|
|
|
|
|
2020-10-08 18:45:17 +08:00
|
|
|
#define NL_SET_ERR_MSG_ATTR(extack, attr, msg) \
|
|
|
|
NL_SET_ERR_MSG_ATTR_POL(extack, attr, NULL, msg)
|
|
|
|
|
2018-08-23 16:48:13 +08:00
|
|
|
static inline void nl_set_extack_cookie_u64(struct netlink_ext_ack *extack,
|
|
|
|
u64 cookie)
|
|
|
|
{
|
|
|
|
u64 __cookie = cookie;
|
|
|
|
|
2020-03-21 07:46:50 +08:00
|
|
|
if (!extack)
|
|
|
|
return;
|
2018-08-23 16:48:13 +08:00
|
|
|
memcpy(extack->cookie, &__cookie, sizeof(__cookie));
|
|
|
|
extack->cookie_len = sizeof(__cookie);
|
|
|
|
}
|
|
|
|
|
2020-03-16 01:17:48 +08:00
|
|
|
static inline void nl_set_extack_cookie_u32(struct netlink_ext_ack *extack,
|
|
|
|
u32 cookie)
|
|
|
|
{
|
|
|
|
u32 __cookie = cookie;
|
|
|
|
|
2020-03-21 07:46:50 +08:00
|
|
|
if (!extack)
|
|
|
|
return;
|
2018-08-23 16:48:13 +08:00
|
|
|
memcpy(extack->cookie, &__cookie, sizeof(__cookie));
|
|
|
|
extack->cookie_len = sizeof(__cookie);
|
|
|
|
}
|
|
|
|
|
2018-12-21 01: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-19 02:46:13 +08:00
|
|
|
bool netlink_strict_get_check(struct sk_buff *skb);
|
2018-12-21 01: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_broadcast_filtered(struct sock *ssk, struct sk_buff *skb,
|
|
|
|
__u32 portid, __u32 group, gfp_t allocation,
|
|
|
|
int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
|
|
|
|
void *filter_data);
|
|
|
|
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-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* finegrained unicast helpers: */
|
|
|
|
struct sock *netlink_getsockbyfilp(struct file *filp);
|
2008-06-06 02:23:39 +08:00
|
|
|
int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
|
2007-11-07 18:42:09 +08:00
|
|
|
long *timeo, struct sock *ssk);
|
2005-04-17 06:20:36 +08:00
|
|
|
void netlink_detachskb(struct sock *sk, struct sk_buff *skb);
|
2007-10-11 12:14:03 +08:00
|
|
|
int netlink_sendskb(struct sock *sk, struct sk_buff *skb);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-06-28 09:04:23 +08: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-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* skb should fit one page. This choice is good for headerless malloc.
|
2007-03-26 11:27:59 +08: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-17 06:20:36 +08:00
|
|
|
*/
|
2007-03-26 11:27:59 +08:00
|
|
|
#if PAGE_SIZE < 8192UL
|
|
|
|
#define NLMSG_GOODSIZE SKB_WITH_OVERHEAD(PAGE_SIZE)
|
|
|
|
#else
|
|
|
|
#define NLMSG_GOODSIZE SKB_WITH_OVERHEAD(8192UL)
|
|
|
|
#endif
|
|
|
|
|
2006-11-11 06:10:15 +08:00
|
|
|
#define NLMSG_DEFAULT_SIZE (NLMSG_GOODSIZE - NLMSG_HDRLEN)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
|
2009-11-05 01:50:58 +08:00
|
|
|
struct netlink_callback {
|
2009-08-25 22:07:40 +08: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 22:30:16 +08:00
|
|
|
void *data;
|
2012-10-05 04:15:48 +08:00
|
|
|
/* the module that dump function belong to */
|
|
|
|
struct module *module;
|
2018-10-08 11:16:22 +08:00
|
|
|
struct netlink_ext_ack *extack;
|
2011-06-10 09:27:09 +08:00
|
|
|
u16 family;
|
2018-10-16 09:56:41 +08:00
|
|
|
u16 answer_flags;
|
2020-02-26 07:04:27 +08:00
|
|
|
u32 min_dump_alloc;
|
netlink: advertise incomplete dumps
Consider the following situation:
* a dump that would show 8 entries, four in the first
round, and four in the second
* between the first and second rounds, 6 entries are
removed
* now the second round will not show any entry, and
even if there is a sequence/generation counter the
application will not know
To solve this problem, add a new flag NLM_F_DUMP_INTR
to the netlink header that indicates the dump wasn't
consistent, this flag can also be set on the MSG_DONE
message that terminates the dump, and as such above
situation can be detected.
To achieve this, add a sequence counter to the netlink
callback struct. Of course, netlink code still needs
to use this new functionality. The correct way to do
that is to always set cb->seq when a dumpit callback
is invoked and call nl_dump_check_consistent() for
each new message. The core code will also call this
function for the final MSG_DONE message.
To make it usable with generic netlink, a new function
genlmsg_nlhdr() is needed to obtain the netlink header
from the genetlink user header.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Acked-by: David S. Miller <davem@davemloft.net>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
2011-06-20 19:40:46 +08:00
|
|
|
unsigned int prev_seq, seq;
|
2020-02-26 07:04:27 +08:00
|
|
|
bool strict_check;
|
2019-06-28 22:40:21 +08:00
|
|
|
union {
|
|
|
|
u8 ctx[48];
|
|
|
|
|
|
|
|
/* args is deprecated. Cast a struct over ctx instead
|
|
|
|
* for proper type safety.
|
|
|
|
*/
|
|
|
|
long args[6];
|
|
|
|
};
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
2009-11-05 01:50:58 +08:00
|
|
|
struct netlink_notify {
|
2007-09-12 19:05:38 +08:00
|
|
|
struct net *net;
|
2015-04-13 06:52:35 +08:00
|
|
|
u32 portid;
|
2005-04-17 06:20:36 +08:00
|
|
|
int protocol;
|
|
|
|
};
|
|
|
|
|
2012-01-31 04:22:06 +08:00
|
|
|
struct nlmsghdr *
|
2012-09-08 04:12:54 +08:00
|
|
|
__nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-02-24 22:30:15 +08:00
|
|
|
struct netlink_dump_control {
|
2015-12-16 07:41:37 +08:00
|
|
|
int (*start)(struct netlink_callback *);
|
2012-02-24 22:30:15 +08:00
|
|
|
int (*dump)(struct sk_buff *skb, struct netlink_callback *);
|
2012-10-05 04:15:48 +08:00
|
|
|
int (*done)(struct netlink_callback *);
|
2012-02-24 22:30:16 +08:00
|
|
|
void *data;
|
2012-10-05 04:15:48 +08:00
|
|
|
struct module *module;
|
2020-10-21 10:00:53 +08:00
|
|
|
u32 min_dump_alloc;
|
2012-02-24 22:30:15 +08:00
|
|
|
};
|
|
|
|
|
2018-12-21 01:52:28 +08:00
|
|
|
int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
|
2012-10-05 04:15:48 +08: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-17 06:20:36 +08:00
|
|
|
|
2013-06-22 01:38:07 +08:00
|
|
|
struct netlink_tap {
|
|
|
|
struct net_device *dev;
|
|
|
|
struct module *module;
|
|
|
|
struct list_head list;
|
|
|
|
};
|
|
|
|
|
2018-12-21 01:52:28 +08:00
|
|
|
int netlink_add_tap(struct netlink_tap *nt);
|
|
|
|
int netlink_remove_tap(struct netlink_tap *nt);
|
2013-06-22 01:38:07 +08:00
|
|
|
|
2014-04-24 05:28:03 +08: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-17 06:20:36 +08:00
|
|
|
#endif /* __LINUX_NETLINK_H */
|