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 14:07:57 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2007-05-02 17:27:12 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1994 Linus Torvalds
|
|
|
|
*
|
|
|
|
* Cyrix stuff, June 1998 by:
|
|
|
|
* - Rafael R. Reilova (moved everything from head.S),
|
|
|
|
* <rreilova@ececs.uc.edu>
|
|
|
|
* - Channing Corn (tests & fixes),
|
|
|
|
* - Andrew D. Balsa (code cleanup).
|
|
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/utsname.h>
|
2018-01-07 21:48:01 +00:00
|
|
|
#include <linux/cpu.h>
|
2018-01-25 23:50:28 +00:00
|
|
|
#include <linux/module.h>
|
2018-01-11 21:46:26 +00:00
|
|
|
|
|
|
|
#include <asm/nospec-branch.h>
|
|
|
|
#include <asm/cmdline.h>
|
2007-07-31 07:39:20 +00:00
|
|
|
#include <asm/bugs.h>
|
2007-05-02 17:27:12 +00:00
|
|
|
#include <asm/processor.h>
|
2008-01-30 12:30:39 +00:00
|
|
|
#include <asm/processor-flags.h>
|
2015-04-26 14:56:05 +00:00
|
|
|
#include <asm/fpu/internal.h>
|
2007-05-02 17:27:12 +00:00
|
|
|
#include <asm/msr.h>
|
|
|
|
#include <asm/paravirt.h>
|
|
|
|
#include <asm/alternative.h>
|
2016-10-24 17:38:43 +00:00
|
|
|
#include <asm/pgtable.h>
|
2017-05-08 22:58:11 +00:00
|
|
|
#include <asm/set_memory.h>
|
2018-01-12 17:49:25 +00:00
|
|
|
#include <asm/intel-family.h>
|
2007-05-02 17:27:12 +00:00
|
|
|
|
2018-01-11 21:46:26 +00:00
|
|
|
static void __init spectre_v2_select_mitigation(void);
|
|
|
|
|
2007-05-02 17:27:12 +00:00
|
|
|
void __init check_bugs(void)
|
|
|
|
{
|
|
|
|
identify_boot_cpu();
|
2013-04-08 15:57:44 +00:00
|
|
|
|
2016-10-24 17:38:43 +00:00
|
|
|
if (!IS_ENABLED(CONFIG_SMP)) {
|
|
|
|
pr_info("CPU: ");
|
|
|
|
print_cpu_info(&boot_cpu_data);
|
|
|
|
}
|
|
|
|
|
2018-01-11 21:46:26 +00:00
|
|
|
/* Select the proper spectre mitigation before patching alternatives */
|
|
|
|
spectre_v2_select_mitigation();
|
|
|
|
|
2016-10-24 17:38:43 +00:00
|
|
|
#ifdef CONFIG_X86_32
|
2013-04-08 15:57:44 +00:00
|
|
|
/*
|
|
|
|
* Check whether we are able to run this kernel safely on SMP.
|
|
|
|
*
|
|
|
|
* - i386 is no longer supported.
|
|
|
|
* - In order to run on anything without a TSC, we need to be
|
|
|
|
* compiled for a i486.
|
|
|
|
*/
|
|
|
|
if (boot_cpu_data.x86 < 4)
|
|
|
|
panic("Kernel requires i486+ for 'invlpg' and other features");
|
|
|
|
|
2008-05-17 20:48:13 +00:00
|
|
|
init_utsname()->machine[1] =
|
|
|
|
'0' + (boot_cpu_data.x86 > 6 ? 6 : boot_cpu_data.x86);
|
2007-05-02 17:27:12 +00:00
|
|
|
alternative_instructions();
|
2012-08-24 21:13:02 +00:00
|
|
|
|
2015-04-22 11:44:25 +00:00
|
|
|
fpu__init_check_bugs();
|
2016-10-24 17:38:43 +00:00
|
|
|
#else /* CONFIG_X86_64 */
|
|
|
|
alternative_instructions();
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure the first 2MB area is not mapped by huge pages
|
|
|
|
* There are typically fixed size MTRRs in there and overlapping
|
|
|
|
* MTRRs into large pages causes slow downs.
|
|
|
|
*
|
|
|
|
* Right now we don't do that with gbpages because there seems
|
|
|
|
* very little benefit for that case.
|
|
|
|
*/
|
|
|
|
if (!direct_gbpages)
|
|
|
|
set_memory_4k((unsigned long)__va(0), 1);
|
|
|
|
#endif
|
2007-05-02 17:27:12 +00:00
|
|
|
}
|
2018-01-07 21:48:01 +00:00
|
|
|
|
2018-01-11 21:46:26 +00:00
|
|
|
/* The kernel command line selection */
|
|
|
|
enum spectre_v2_mitigation_cmd {
|
|
|
|
SPECTRE_V2_CMD_NONE,
|
|
|
|
SPECTRE_V2_CMD_AUTO,
|
|
|
|
SPECTRE_V2_CMD_FORCE,
|
|
|
|
SPECTRE_V2_CMD_RETPOLINE,
|
|
|
|
SPECTRE_V2_CMD_RETPOLINE_GENERIC,
|
|
|
|
SPECTRE_V2_CMD_RETPOLINE_AMD,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const char *spectre_v2_strings[] = {
|
|
|
|
[SPECTRE_V2_NONE] = "Vulnerable",
|
|
|
|
[SPECTRE_V2_RETPOLINE_MINIMAL] = "Vulnerable: Minimal generic ASM retpoline",
|
|
|
|
[SPECTRE_V2_RETPOLINE_MINIMAL_AMD] = "Vulnerable: Minimal AMD ASM retpoline",
|
|
|
|
[SPECTRE_V2_RETPOLINE_GENERIC] = "Mitigation: Full generic retpoline",
|
|
|
|
[SPECTRE_V2_RETPOLINE_AMD] = "Mitigation: Full AMD retpoline",
|
|
|
|
};
|
|
|
|
|
|
|
|
#undef pr_fmt
|
|
|
|
#define pr_fmt(fmt) "Spectre V2 mitigation: " fmt
|
|
|
|
|
|
|
|
static enum spectre_v2_mitigation spectre_v2_enabled = SPECTRE_V2_NONE;
|
2018-01-25 23:50:28 +00:00
|
|
|
static bool spectre_v2_bad_module;
|
|
|
|
|
|
|
|
#ifdef RETPOLINE
|
|
|
|
bool retpoline_module_ok(bool has_retpoline)
|
|
|
|
{
|
|
|
|
if (spectre_v2_enabled == SPECTRE_V2_NONE || has_retpoline)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
pr_err("System may be vunerable to spectre v2\n");
|
|
|
|
spectre_v2_bad_module = true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
#endif
|
2018-01-11 21:46:26 +00:00
|
|
|
|
|
|
|
static void __init spec2_print_if_insecure(const char *reason)
|
|
|
|
{
|
|
|
|
if (boot_cpu_has_bug(X86_BUG_SPECTRE_V2))
|
|
|
|
pr_info("%s\n", reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __init spec2_print_if_secure(const char *reason)
|
|
|
|
{
|
|
|
|
if (!boot_cpu_has_bug(X86_BUG_SPECTRE_V2))
|
|
|
|
pr_info("%s\n", reason);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool retp_compiler(void)
|
|
|
|
{
|
|
|
|
return __is_defined(RETPOLINE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool match_option(const char *arg, int arglen, const char *opt)
|
|
|
|
{
|
|
|
|
int len = strlen(opt);
|
|
|
|
|
|
|
|
return len == arglen && !strncmp(arg, opt, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
static enum spectre_v2_mitigation_cmd __init spectre_v2_parse_cmdline(void)
|
|
|
|
{
|
|
|
|
char arg[20];
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = cmdline_find_option(boot_command_line, "spectre_v2", arg,
|
|
|
|
sizeof(arg));
|
|
|
|
if (ret > 0) {
|
|
|
|
if (match_option(arg, ret, "off")) {
|
|
|
|
goto disable;
|
|
|
|
} else if (match_option(arg, ret, "on")) {
|
|
|
|
spec2_print_if_secure("force enabled on command line.");
|
|
|
|
return SPECTRE_V2_CMD_FORCE;
|
|
|
|
} else if (match_option(arg, ret, "retpoline")) {
|
|
|
|
spec2_print_if_insecure("retpoline selected on command line.");
|
|
|
|
return SPECTRE_V2_CMD_RETPOLINE;
|
|
|
|
} else if (match_option(arg, ret, "retpoline,amd")) {
|
|
|
|
if (boot_cpu_data.x86_vendor != X86_VENDOR_AMD) {
|
|
|
|
pr_err("retpoline,amd selected but CPU is not AMD. Switching to AUTO select\n");
|
|
|
|
return SPECTRE_V2_CMD_AUTO;
|
|
|
|
}
|
|
|
|
spec2_print_if_insecure("AMD retpoline selected on command line.");
|
|
|
|
return SPECTRE_V2_CMD_RETPOLINE_AMD;
|
|
|
|
} else if (match_option(arg, ret, "retpoline,generic")) {
|
|
|
|
spec2_print_if_insecure("generic retpoline selected on command line.");
|
|
|
|
return SPECTRE_V2_CMD_RETPOLINE_GENERIC;
|
|
|
|
} else if (match_option(arg, ret, "auto")) {
|
|
|
|
return SPECTRE_V2_CMD_AUTO;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!cmdline_find_option_bool(boot_command_line, "nospectre_v2"))
|
|
|
|
return SPECTRE_V2_CMD_AUTO;
|
|
|
|
disable:
|
|
|
|
spec2_print_if_insecure("disabled on command line.");
|
|
|
|
return SPECTRE_V2_CMD_NONE;
|
|
|
|
}
|
|
|
|
|
2018-01-12 17:49:25 +00:00
|
|
|
/* Check for Skylake-like CPUs (for RSB handling) */
|
|
|
|
static bool __init is_skylake_era(void)
|
|
|
|
{
|
|
|
|
if (boot_cpu_data.x86_vendor == X86_VENDOR_INTEL &&
|
|
|
|
boot_cpu_data.x86 == 6) {
|
|
|
|
switch (boot_cpu_data.x86_model) {
|
|
|
|
case INTEL_FAM6_SKYLAKE_MOBILE:
|
|
|
|
case INTEL_FAM6_SKYLAKE_DESKTOP:
|
|
|
|
case INTEL_FAM6_SKYLAKE_X:
|
|
|
|
case INTEL_FAM6_KABYLAKE_MOBILE:
|
|
|
|
case INTEL_FAM6_KABYLAKE_DESKTOP:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-01-11 21:46:26 +00:00
|
|
|
static void __init spectre_v2_select_mitigation(void)
|
|
|
|
{
|
|
|
|
enum spectre_v2_mitigation_cmd cmd = spectre_v2_parse_cmdline();
|
|
|
|
enum spectre_v2_mitigation mode = SPECTRE_V2_NONE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If the CPU is not affected and the command line mode is NONE or AUTO
|
|
|
|
* then nothing to do.
|
|
|
|
*/
|
|
|
|
if (!boot_cpu_has_bug(X86_BUG_SPECTRE_V2) &&
|
|
|
|
(cmd == SPECTRE_V2_CMD_NONE || cmd == SPECTRE_V2_CMD_AUTO))
|
|
|
|
return;
|
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case SPECTRE_V2_CMD_NONE:
|
|
|
|
return;
|
|
|
|
|
|
|
|
case SPECTRE_V2_CMD_FORCE:
|
|
|
|
/* FALLTRHU */
|
|
|
|
case SPECTRE_V2_CMD_AUTO:
|
|
|
|
goto retpoline_auto;
|
|
|
|
|
|
|
|
case SPECTRE_V2_CMD_RETPOLINE_AMD:
|
|
|
|
if (IS_ENABLED(CONFIG_RETPOLINE))
|
|
|
|
goto retpoline_amd;
|
|
|
|
break;
|
|
|
|
case SPECTRE_V2_CMD_RETPOLINE_GENERIC:
|
|
|
|
if (IS_ENABLED(CONFIG_RETPOLINE))
|
|
|
|
goto retpoline_generic;
|
|
|
|
break;
|
|
|
|
case SPECTRE_V2_CMD_RETPOLINE:
|
|
|
|
if (IS_ENABLED(CONFIG_RETPOLINE))
|
|
|
|
goto retpoline_auto;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
pr_err("kernel not compiled with retpoline; no mitigation available!");
|
|
|
|
return;
|
|
|
|
|
|
|
|
retpoline_auto:
|
|
|
|
if (boot_cpu_data.x86_vendor == X86_VENDOR_AMD) {
|
|
|
|
retpoline_amd:
|
|
|
|
if (!boot_cpu_has(X86_FEATURE_LFENCE_RDTSC)) {
|
|
|
|
pr_err("LFENCE not serializing. Switching to generic retpoline\n");
|
|
|
|
goto retpoline_generic;
|
|
|
|
}
|
|
|
|
mode = retp_compiler() ? SPECTRE_V2_RETPOLINE_AMD :
|
|
|
|
SPECTRE_V2_RETPOLINE_MINIMAL_AMD;
|
|
|
|
setup_force_cpu_cap(X86_FEATURE_RETPOLINE_AMD);
|
|
|
|
setup_force_cpu_cap(X86_FEATURE_RETPOLINE);
|
|
|
|
} else {
|
|
|
|
retpoline_generic:
|
|
|
|
mode = retp_compiler() ? SPECTRE_V2_RETPOLINE_GENERIC :
|
|
|
|
SPECTRE_V2_RETPOLINE_MINIMAL;
|
|
|
|
setup_force_cpu_cap(X86_FEATURE_RETPOLINE);
|
|
|
|
}
|
|
|
|
|
|
|
|
spectre_v2_enabled = mode;
|
|
|
|
pr_info("%s\n", spectre_v2_strings[mode]);
|
2018-01-12 17:49:25 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If neither SMEP or KPTI are available, there is a risk of
|
|
|
|
* hitting userspace addresses in the RSB after a context switch
|
|
|
|
* from a shallow call stack to a deeper one. To prevent this fill
|
|
|
|
* the entire RSB, even when using IBRS.
|
|
|
|
*
|
|
|
|
* Skylake era CPUs have a separate issue with *underflow* of the
|
|
|
|
* RSB, when they will predict 'ret' targets from the generic BTB.
|
|
|
|
* The proper mitigation for this is IBRS. If IBRS is not supported
|
|
|
|
* or deactivated in favour of retpolines the RSB fill on context
|
|
|
|
* switch is required.
|
|
|
|
*/
|
|
|
|
if ((!boot_cpu_has(X86_FEATURE_PTI) &&
|
|
|
|
!boot_cpu_has(X86_FEATURE_SMEP)) || is_skylake_era()) {
|
|
|
|
setup_force_cpu_cap(X86_FEATURE_RSB_CTXSW);
|
|
|
|
pr_info("Filling RSB on context switch\n");
|
|
|
|
}
|
2018-01-25 16:14:15 +00:00
|
|
|
|
|
|
|
/* Initialize Indirect Branch Prediction Barrier if supported */
|
|
|
|
if (boot_cpu_has(X86_FEATURE_SPEC_CTRL) ||
|
|
|
|
boot_cpu_has(X86_FEATURE_AMD_PRED_CMD)) {
|
|
|
|
setup_force_cpu_cap(X86_FEATURE_IBPB);
|
|
|
|
pr_info("Enabling Indirect Branch Prediction Barrier\n");
|
|
|
|
}
|
2018-01-11 21:46:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef pr_fmt
|
|
|
|
|
2018-01-07 21:48:01 +00:00
|
|
|
#ifdef CONFIG_SYSFS
|
|
|
|
ssize_t cpu_show_meltdown(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
|
|
|
if (!boot_cpu_has_bug(X86_BUG_CPU_MELTDOWN))
|
|
|
|
return sprintf(buf, "Not affected\n");
|
|
|
|
if (boot_cpu_has(X86_FEATURE_PTI))
|
|
|
|
return sprintf(buf, "Mitigation: PTI\n");
|
|
|
|
return sprintf(buf, "Vulnerable\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
ssize_t cpu_show_spectre_v1(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
|
|
|
if (!boot_cpu_has_bug(X86_BUG_SPECTRE_V1))
|
|
|
|
return sprintf(buf, "Not affected\n");
|
|
|
|
return sprintf(buf, "Vulnerable\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
ssize_t cpu_show_spectre_v2(struct device *dev,
|
|
|
|
struct device_attribute *attr, char *buf)
|
|
|
|
{
|
|
|
|
if (!boot_cpu_has_bug(X86_BUG_SPECTRE_V2))
|
|
|
|
return sprintf(buf, "Not affected\n");
|
2018-01-11 21:46:26 +00:00
|
|
|
|
2018-01-25 16:14:15 +00:00
|
|
|
return sprintf(buf, "%s%s%s\n", spectre_v2_strings[spectre_v2_enabled],
|
|
|
|
boot_cpu_has(X86_FEATURE_IBPB) ? ", IPBP" : "",
|
2018-01-25 23:50:28 +00:00
|
|
|
spectre_v2_bad_module ? " - vulnerable module loaded" : "");
|
2018-01-07 21:48:01 +00:00
|
|
|
}
|
|
|
|
#endif
|