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
|
|
|
/*
|
|
|
|
* linux/include/linux/sunrpc/auth.h
|
|
|
|
*
|
|
|
|
* Declarations for the RPC client authentication machinery.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1996, Olaf Kirch <okir@monad.swb.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LINUX_SUNRPC_AUTH_H
|
|
|
|
#define _LINUX_SUNRPC_AUTH_H
|
|
|
|
|
|
|
|
#ifdef __KERNEL__
|
|
|
|
|
|
|
|
#include <linux/sunrpc/sched.h>
|
|
|
|
#include <linux/sunrpc/msg_prot.h>
|
|
|
|
#include <linux/sunrpc/xdr.h>
|
|
|
|
|
2011-07-27 07:09:06 +08:00
|
|
|
#include <linux/atomic.h>
|
2007-06-25 03:55:26 +08:00
|
|
|
#include <linux/rcupdate.h>
|
2013-02-02 08:31:17 +08:00
|
|
|
#include <linux/uidgid.h>
|
2015-08-03 19:44:53 +08:00
|
|
|
#include <linux/utsname.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2016-03-02 02:06:02 +08:00
|
|
|
/*
|
|
|
|
* Maximum size of AUTH_NONE authentication information, in XDR words.
|
|
|
|
*/
|
|
|
|
#define NUL_CALLSLACK (4)
|
|
|
|
#define NUL_REPLYSLACK (2)
|
|
|
|
|
2015-08-03 19:44:53 +08:00
|
|
|
/*
|
|
|
|
* Size of the nodename buffer. RFC1831 specifies a hard limit of 255 bytes,
|
|
|
|
* but Linux hostnames are actually limited to __NEW_UTS_LEN bytes.
|
|
|
|
*/
|
|
|
|
#define UNX_MAXNODENAME __NEW_UTS_LEN
|
2016-03-02 02:06:02 +08:00
|
|
|
#define UNX_CALLSLACK (21 + XDR_QUADLEN(UNX_MAXNODENAME))
|
2017-02-07 21:48:11 +08:00
|
|
|
#define UNX_NGROUPS 16
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2013-03-17 03:54:43 +08:00
|
|
|
struct rpcsec_gss_info;
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
struct auth_cred {
|
2018-12-03 08:30:30 +08:00
|
|
|
const struct cred *cred;
|
2018-12-03 08:30:30 +08:00
|
|
|
const char *principal; /* If present, this is a machine credential */
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Client user credentials
|
|
|
|
*/
|
2007-06-07 22:14:14 +08:00
|
|
|
struct rpc_auth;
|
|
|
|
struct rpc_credops;
|
2005-04-17 06:20:36 +08:00
|
|
|
struct rpc_cred {
|
|
|
|
struct hlist_node cr_hash; /* hash chain */
|
2007-06-24 07:45:36 +08:00
|
|
|
struct list_head cr_lru; /* lru garbage collection */
|
2007-06-25 03:55:26 +08:00
|
|
|
struct rcu_head cr_rcu;
|
2007-06-07 22:14:14 +08:00
|
|
|
struct rpc_auth * cr_auth;
|
2007-06-24 08:17:58 +08:00
|
|
|
const struct rpc_credops *cr_ops;
|
2007-06-25 22:15:15 +08:00
|
|
|
unsigned long cr_expire; /* when to gc */
|
|
|
|
unsigned long cr_flags; /* various flags */
|
2018-10-14 22:34:31 +08:00
|
|
|
refcount_t cr_count; /* ref count */
|
2018-12-03 08:30:30 +08:00
|
|
|
const struct cred *cr_cred;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
/* per-flavor data */
|
|
|
|
};
|
2007-06-25 22:15:15 +08:00
|
|
|
#define RPCAUTH_CRED_NEW 0
|
|
|
|
#define RPCAUTH_CRED_UPTODATE 1
|
2007-06-25 03:55:26 +08:00
|
|
|
#define RPCAUTH_CRED_HASHED 2
|
2010-05-14 00:55:38 +08:00
|
|
|
#define RPCAUTH_CRED_NEGATIVE 3
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2018-12-03 08:30:31 +08:00
|
|
|
const struct cred *rpc_machine_cred(void);
|
2018-12-03 08:30:30 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Client authentication handle
|
|
|
|
*/
|
2010-08-01 02:29:08 +08:00
|
|
|
struct rpc_cred_cache;
|
2007-06-07 22:14:14 +08:00
|
|
|
struct rpc_authops;
|
2005-04-17 06:20:36 +08:00
|
|
|
struct rpc_auth {
|
|
|
|
unsigned int au_cslack; /* call cred size estimate */
|
2005-10-14 04:54:53 +08:00
|
|
|
/* guess at number of u32's auth adds before
|
|
|
|
* reply data; normally the verifier size: */
|
|
|
|
unsigned int au_rslack;
|
|
|
|
/* for gss, used to calculate au_rslack: */
|
|
|
|
unsigned int au_verfsize;
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
unsigned int au_flags; /* various flags */
|
2007-06-24 08:17:58 +08:00
|
|
|
const struct rpc_authops *au_ops; /* operations */
|
2005-04-17 06:20:36 +08:00
|
|
|
rpc_authflavor_t au_flavor; /* pseudoflavor (note may
|
|
|
|
* differ from the flavor in
|
|
|
|
* au_ops->au_flavor in gss
|
|
|
|
* case) */
|
2018-10-14 22:40:29 +08:00
|
|
|
refcount_t au_count; /* Reference counter */
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
struct rpc_cred_cache * au_credcache;
|
|
|
|
/* per-flavor data */
|
|
|
|
};
|
|
|
|
|
2016-06-30 01:55:06 +08:00
|
|
|
/* rpc_auth au_flags */
|
|
|
|
#define RPCAUTH_AUTH_DATATOUCH 0x00000002
|
|
|
|
|
2013-08-27 07:23:04 +08:00
|
|
|
struct rpc_auth_create_args {
|
|
|
|
rpc_authflavor_t pseudoflavor;
|
|
|
|
const char *target_name;
|
|
|
|
};
|
|
|
|
|
2006-02-02 01:18:36 +08:00
|
|
|
/* Flags for rpcauth_lookupcred() */
|
|
|
|
#define RPCAUTH_LOOKUP_NEW 0x01 /* Accept an uninitialised cred */
|
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Client authentication ops
|
|
|
|
*/
|
|
|
|
struct rpc_authops {
|
|
|
|
struct module *owner;
|
|
|
|
rpc_authflavor_t au_flavor; /* flavor (RPC_AUTH_*) */
|
|
|
|
char * au_name;
|
2018-07-06 00:48:50 +08:00
|
|
|
struct rpc_auth * (*create)(const struct rpc_auth_create_args *,
|
|
|
|
struct rpc_clnt *);
|
2005-04-17 06:20:36 +08:00
|
|
|
void (*destroy)(struct rpc_auth *);
|
|
|
|
|
2016-09-29 23:44:37 +08:00
|
|
|
int (*hash_cred)(struct auth_cred *, unsigned int);
|
2005-04-17 06:20:36 +08:00
|
|
|
struct rpc_cred * (*lookup_cred)(struct rpc_auth *, struct auth_cred *, int);
|
2016-04-22 08:51:54 +08:00
|
|
|
struct rpc_cred * (*crcreate)(struct rpc_auth*, struct auth_cred *, int, gfp_t);
|
2012-07-12 04:31:08 +08:00
|
|
|
int (*list_pseudoflavors)(rpc_authflavor_t *, int);
|
2013-03-17 03:54:43 +08:00
|
|
|
rpc_authflavor_t (*info2flavor)(struct rpcsec_gss_info *);
|
2013-03-17 03:55:10 +08:00
|
|
|
int (*flavor2info)(rpc_authflavor_t,
|
|
|
|
struct rpcsec_gss_info *);
|
2013-08-14 23:59:15 +08:00
|
|
|
int (*key_timeout)(struct rpc_auth *,
|
|
|
|
struct rpc_cred *);
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
struct rpc_credops {
|
|
|
|
const char * cr_name; /* Name of the auth flavour */
|
2006-02-02 01:19:27 +08:00
|
|
|
int (*cr_init)(struct rpc_auth *, struct rpc_cred *);
|
2005-04-17 06:20:36 +08:00
|
|
|
void (*crdestroy)(struct rpc_cred *);
|
|
|
|
|
|
|
|
int (*crmatch)(struct auth_cred *, struct rpc_cred *, int);
|
2019-02-12 00:24:48 +08:00
|
|
|
int (*crmarshal)(struct rpc_task *task,
|
|
|
|
struct xdr_stream *xdr);
|
2005-04-17 06:20:36 +08:00
|
|
|
int (*crrefresh)(struct rpc_task *);
|
2006-09-27 13:29:38 +08:00
|
|
|
__be32 * (*crvalidate)(struct rpc_task *, __be32 *);
|
2019-02-12 00:24:48 +08:00
|
|
|
int (*crwrap_req)(struct rpc_task *task,
|
|
|
|
struct xdr_stream *xdr);
|
2010-12-14 22:59:29 +08:00
|
|
|
int (*crunwrap_resp)(struct rpc_task *, kxdrdproc_t,
|
2006-09-27 13:29:38 +08:00
|
|
|
void *, __be32 *, void *);
|
2013-08-14 23:59:15 +08:00
|
|
|
int (*crkey_timeout)(struct rpc_cred *);
|
2014-06-22 08:52:16 +08:00
|
|
|
char * (*crstringify_acceptor)(struct rpc_cred *);
|
2018-08-15 01:50:21 +08:00
|
|
|
bool (*crneed_reencode)(struct rpc_task *);
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
2007-06-24 08:17:58 +08:00
|
|
|
extern const struct rpc_authops authunix_ops;
|
|
|
|
extern const struct rpc_authops authnull_ops;
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2010-08-01 02:29:07 +08:00
|
|
|
int __init rpc_init_authunix(void);
|
|
|
|
int __init rpcauth_init_module(void);
|
2010-09-29 12:16:57 +08:00
|
|
|
void rpcauth_remove_module(void);
|
2010-08-01 02:29:07 +08:00
|
|
|
void rpc_destroy_authunix(void);
|
2007-06-25 03:57:57 +08:00
|
|
|
|
2007-06-24 08:17:58 +08:00
|
|
|
int rpcauth_register(const struct rpc_authops *);
|
|
|
|
int rpcauth_unregister(const struct rpc_authops *);
|
2018-07-06 00:48:50 +08:00
|
|
|
struct rpc_auth * rpcauth_create(const struct rpc_auth_create_args *,
|
2013-08-27 07:23:04 +08:00
|
|
|
struct rpc_clnt *);
|
2007-06-23 22:46:47 +08:00
|
|
|
void rpcauth_release(struct rpc_auth *);
|
2013-03-17 03:54:43 +08:00
|
|
|
rpc_authflavor_t rpcauth_get_pseudoflavor(rpc_authflavor_t,
|
|
|
|
struct rpcsec_gss_info *);
|
2013-03-17 03:55:10 +08:00
|
|
|
int rpcauth_get_gssinfo(rpc_authflavor_t,
|
|
|
|
struct rpcsec_gss_info *);
|
2012-07-12 04:31:08 +08:00
|
|
|
int rpcauth_list_flavors(rpc_authflavor_t *, int);
|
2016-04-22 08:51:54 +08:00
|
|
|
struct rpc_cred * rpcauth_lookup_credcache(struct rpc_auth *, struct auth_cred *, int, gfp_t);
|
2007-06-24 07:55:31 +08:00
|
|
|
void rpcauth_init_cred(struct rpc_cred *, const struct auth_cred *, struct rpc_auth *, const struct rpc_credops *);
|
2005-04-17 06:20:36 +08:00
|
|
|
struct rpc_cred * rpcauth_lookupcred(struct rpc_auth *, int);
|
|
|
|
void put_rpccred(struct rpc_cred *);
|
2019-02-12 00:24:48 +08:00
|
|
|
int rpcauth_marshcred(struct rpc_task *task,
|
|
|
|
struct xdr_stream *xdr);
|
2006-09-27 13:29:38 +08:00
|
|
|
__be32 * rpcauth_checkverf(struct rpc_task *, __be32 *);
|
2019-02-12 00:24:48 +08:00
|
|
|
int rpcauth_wrap_req_encode(struct rpc_task *task,
|
|
|
|
struct xdr_stream *xdr);
|
|
|
|
int rpcauth_wrap_req(struct rpc_task *task,
|
|
|
|
struct xdr_stream *xdr);
|
2010-12-14 22:59:29 +08:00
|
|
|
int rpcauth_unwrap_resp(struct rpc_task *task, kxdrdproc_t decode, void *rqstp, __be32 *data, void *obj);
|
2018-08-15 01:50:21 +08:00
|
|
|
bool rpcauth_xmit_need_reencode(struct rpc_task *task);
|
2005-04-17 06:20:36 +08:00
|
|
|
int rpcauth_refreshcred(struct rpc_task *);
|
|
|
|
void rpcauth_invalcred(struct rpc_task *);
|
|
|
|
int rpcauth_uptodatecred(struct rpc_task *);
|
2007-06-26 05:11:20 +08:00
|
|
|
int rpcauth_init_credcache(struct rpc_auth *);
|
2007-06-10 03:41:42 +08:00
|
|
|
void rpcauth_destroy_credcache(struct rpc_auth *);
|
|
|
|
void rpcauth_clear_credcache(struct rpc_cred_cache *);
|
2014-06-22 08:52:16 +08:00
|
|
|
char * rpcauth_stringify_acceptor(struct rpc_cred *);
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
static inline
|
2018-10-13 01:28:26 +08:00
|
|
|
struct rpc_cred *get_rpccred(struct rpc_cred *cred)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2018-10-14 22:34:31 +08:00
|
|
|
if (cred != NULL && refcount_inc_not_zero(&cred->cr_count))
|
2018-10-13 01:28:26 +08:00
|
|
|
return cred;
|
|
|
|
return NULL;
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
#endif /* _LINUX_SUNRPC_AUTH_H */
|