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 15:07:57 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2008-10-22 22:26:29 -07:00
|
|
|
#ifndef _ASM_X86_KVM_PARA_H
|
|
|
|
#define _ASM_X86_KVM_PARA_H
|
2007-10-11 15:34:17 +02:00
|
|
|
|
|
|
|
#include <asm/processor.h>
|
2014-09-22 13:17:48 +02:00
|
|
|
#include <asm/alternative.h>
|
2020-05-25 16:41:23 +02:00
|
|
|
#include <linux/interrupt.h>
|
2012-12-14 22:37:13 +00:00
|
|
|
#include <uapi/asm/kvm_para.h>
|
2007-10-11 15:34:17 +02:00
|
|
|
|
2022-04-06 02:29:28 +03:00
|
|
|
#include <asm/tdx.h>
|
|
|
|
|
2012-08-16 17:00:19 -03:00
|
|
|
#ifdef CONFIG_KVM_GUEST
|
2012-03-10 14:37:26 -05:00
|
|
|
bool kvm_check_and_clear_guest_paused(void);
|
|
|
|
#else
|
|
|
|
static inline bool kvm_check_and_clear_guest_paused(void)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2012-08-16 17:00:19 -03:00
|
|
|
#endif /* CONFIG_KVM_GUEST */
|
2008-02-15 17:52:47 -02:00
|
|
|
|
2014-09-22 13:17:48 +02:00
|
|
|
#define KVM_HYPERCALL \
|
2020-06-23 20:34:39 +02:00
|
|
|
ALTERNATIVE("vmcall", "vmmcall", X86_FEATURE_VMMCALL)
|
2007-10-11 15:34:17 +02:00
|
|
|
|
2012-08-07 13:10:13 +05:30
|
|
|
/* For KVM hypercalls, a three-byte sequence of either the vmcall or the vmmcall
|
2007-10-11 15:34:17 +02:00
|
|
|
* instruction. The hypervisor may replace it with something else but only the
|
|
|
|
* instructions are guaranteed to be supported.
|
|
|
|
*
|
|
|
|
* Up to four arguments may be passed in rbx, rcx, rdx, and rsi respectively.
|
|
|
|
* The hypercall number should be placed in rax and the return value will be
|
2012-12-10 15:31:51 -06:00
|
|
|
* placed in rax. No other registers will be clobbered unless explicitly
|
2007-10-11 15:34:17 +02:00
|
|
|
* noted by the particular hypercall.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline long kvm_hypercall0(unsigned int nr)
|
|
|
|
{
|
|
|
|
long ret;
|
2022-04-06 02:29:28 +03:00
|
|
|
|
|
|
|
if (cpu_feature_enabled(X86_FEATURE_TDX_GUEST))
|
|
|
|
return tdx_kvm_hypercall(nr, 0, 0, 0, 0);
|
|
|
|
|
2007-10-11 15:34:17 +02:00
|
|
|
asm volatile(KVM_HYPERCALL
|
|
|
|
: "=a"(ret)
|
2008-07-03 19:02:36 +03:00
|
|
|
: "a"(nr)
|
|
|
|
: "memory");
|
2007-10-11 15:34:17 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline long kvm_hypercall1(unsigned int nr, unsigned long p1)
|
|
|
|
{
|
|
|
|
long ret;
|
2022-04-06 02:29:28 +03:00
|
|
|
|
|
|
|
if (cpu_feature_enabled(X86_FEATURE_TDX_GUEST))
|
|
|
|
return tdx_kvm_hypercall(nr, p1, 0, 0, 0);
|
|
|
|
|
2007-10-11 15:34:17 +02:00
|
|
|
asm volatile(KVM_HYPERCALL
|
|
|
|
: "=a"(ret)
|
2008-07-03 19:02:36 +03:00
|
|
|
: "a"(nr), "b"(p1)
|
|
|
|
: "memory");
|
2007-10-11 15:34:17 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline long kvm_hypercall2(unsigned int nr, unsigned long p1,
|
|
|
|
unsigned long p2)
|
|
|
|
{
|
|
|
|
long ret;
|
2022-04-06 02:29:28 +03:00
|
|
|
|
|
|
|
if (cpu_feature_enabled(X86_FEATURE_TDX_GUEST))
|
|
|
|
return tdx_kvm_hypercall(nr, p1, p2, 0, 0);
|
|
|
|
|
2007-10-11 15:34:17 +02:00
|
|
|
asm volatile(KVM_HYPERCALL
|
|
|
|
: "=a"(ret)
|
2008-07-03 19:02:36 +03:00
|
|
|
: "a"(nr), "b"(p1), "c"(p2)
|
|
|
|
: "memory");
|
2007-10-11 15:34:17 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline long kvm_hypercall3(unsigned int nr, unsigned long p1,
|
|
|
|
unsigned long p2, unsigned long p3)
|
|
|
|
{
|
|
|
|
long ret;
|
2022-04-06 02:29:28 +03:00
|
|
|
|
|
|
|
if (cpu_feature_enabled(X86_FEATURE_TDX_GUEST))
|
|
|
|
return tdx_kvm_hypercall(nr, p1, p2, p3, 0);
|
|
|
|
|
2007-10-11 15:34:17 +02:00
|
|
|
asm volatile(KVM_HYPERCALL
|
|
|
|
: "=a"(ret)
|
2008-07-03 19:02:36 +03:00
|
|
|
: "a"(nr), "b"(p1), "c"(p2), "d"(p3)
|
|
|
|
: "memory");
|
2007-10-11 15:34:17 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline long kvm_hypercall4(unsigned int nr, unsigned long p1,
|
|
|
|
unsigned long p2, unsigned long p3,
|
|
|
|
unsigned long p4)
|
|
|
|
{
|
|
|
|
long ret;
|
2022-04-06 02:29:28 +03:00
|
|
|
|
|
|
|
if (cpu_feature_enabled(X86_FEATURE_TDX_GUEST))
|
|
|
|
return tdx_kvm_hypercall(nr, p1, p2, p3, p4);
|
|
|
|
|
2007-10-11 15:34:17 +02:00
|
|
|
asm volatile(KVM_HYPERCALL
|
|
|
|
: "=a"(ret)
|
2008-07-03 19:02:36 +03:00
|
|
|
: "a"(nr), "b"(p1), "c"(p2), "d"(p3), "S"(p4)
|
|
|
|
: "memory");
|
2007-10-11 15:34:17 +02:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
x86/kvm: Add AMD SEV specific Hypercall3
KVM hypercall framework relies on alternative framework to patch the
VMCALL -> VMMCALL on AMD platform. If a hypercall is made before
apply_alternative() is called then it defaults to VMCALL. The approach
works fine on non SEV guest. A VMCALL would causes #UD, and hypervisor
will be able to decode the instruction and do the right things. But
when SEV is active, guest memory is encrypted with guest key and
hypervisor will not be able to decode the instruction bytes.
To highlight the need to provide this interface, capturing the
flow of apply_alternatives() :
setup_arch() call init_hypervisor_platform() which detects
the hypervisor platform the kernel is running under and then the
hypervisor specific initialization code can make early hypercalls.
For example, KVM specific initialization in case of SEV will try
to mark the "__bss_decrypted" section's encryption state via early
page encryption status hypercalls.
Now, apply_alternatives() is called much later when setup_arch()
calls check_bugs(), so we do need some kind of an early,
pre-alternatives hypercall interface. Other cases of pre-alternatives
hypercalls include marking per-cpu GHCB pages as decrypted on SEV-ES
and per-cpu apf_reason, steal_time and kvm_apic_eoi as decrypted for
SEV generally.
Add SEV specific hypercall3, it unconditionally uses VMMCALL. The hypercall
will be used by the SEV guest to notify encrypted pages to the hypervisor.
This kvm_sev_hypercall3() function is abstracted and used as follows :
All these early hypercalls are made through early_set_memory_XX() interfaces,
which in turn invoke pv_ops (paravirt_ops).
This early_set_memory_XX() -> pv_ops.mmu.notify_page_enc_status_changed()
is a generic interface and can easily have SEV, TDX and any other
future platform specific abstractions added to it.
Currently, pv_ops.mmu.notify_page_enc_status_changed() callback is setup to
invoke kvm_sev_hypercall3() in case of SEV.
Similarly, in case of TDX, pv_ops.mmu.notify_page_enc_status_changed()
can be setup to a TDX specific callback.
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Joerg Roedel <joro@8bytes.org>
Cc: Borislav Petkov <bp@suse.de>
Cc: Tom Lendacky <thomas.lendacky@amd.com>
Cc: x86@kernel.org
Cc: kvm@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Reviewed-by: Steve Rutherford <srutherford@google.com>
Reviewed-by: Venu Busireddy <venu.busireddy@oracle.com>
Signed-off-by: Brijesh Singh <brijesh.singh@amd.com>
Signed-off-by: Ashish Kalra <ashish.kalra@amd.com>
Message-Id: <6fd25c749205dd0b1eb492c60d41b124760cc6ae.1629726117.git.ashish.kalra@amd.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2021-08-24 11:04:35 +00:00
|
|
|
static inline long kvm_sev_hypercall3(unsigned int nr, unsigned long p1,
|
|
|
|
unsigned long p2, unsigned long p3)
|
|
|
|
{
|
|
|
|
long ret;
|
|
|
|
|
|
|
|
asm volatile("vmmcall"
|
|
|
|
: "=a"(ret)
|
|
|
|
: "a"(nr), "b"(p1), "c"(p2), "d"(p3)
|
|
|
|
: "memory");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-07-29 14:47:56 +02:00
|
|
|
#ifdef CONFIG_KVM_GUEST
|
2021-04-14 14:35:42 +02:00
|
|
|
void kvmclock_init(void);
|
|
|
|
void kvmclock_disable(void);
|
2014-01-27 14:49:40 +01:00
|
|
|
bool kvm_para_available(void);
|
2014-01-27 14:51:44 +01:00
|
|
|
unsigned int kvm_arch_para_features(void);
|
2018-02-13 09:05:40 +08:00
|
|
|
unsigned int kvm_arch_para_hints(void);
|
2020-03-07 00:42:06 +01:00
|
|
|
void kvm_async_pf_task_wait_schedule(u32 token);
|
2010-10-14 11:22:52 +02:00
|
|
|
void kvm_async_pf_task_wake(u32 token);
|
2020-05-25 16:41:17 +02:00
|
|
|
u32 kvm_read_and_reset_apf_flags(void);
|
2020-02-28 10:42:48 -08:00
|
|
|
bool __kvm_handle_async_pf(struct pt_regs *regs, u32 token);
|
|
|
|
|
|
|
|
DECLARE_STATIC_KEY_FALSE(kvm_async_pf_enabled);
|
|
|
|
|
|
|
|
static __always_inline bool kvm_handle_async_pf(struct pt_regs *regs, u32 token)
|
|
|
|
{
|
|
|
|
if (static_branch_unlikely(&kvm_async_pf_enabled))
|
|
|
|
return __kvm_handle_async_pf(regs, token);
|
|
|
|
else
|
|
|
|
return false;
|
|
|
|
}
|
2013-08-06 14:55:41 +05:30
|
|
|
|
|
|
|
#ifdef CONFIG_PARAVIRT_SPINLOCKS
|
|
|
|
void __init kvm_spinlock_init(void);
|
|
|
|
#else /* !CONFIG_PARAVIRT_SPINLOCKS */
|
|
|
|
static inline void kvm_spinlock_init(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif /* CONFIG_PARAVIRT_SPINLOCKS */
|
|
|
|
|
|
|
|
#else /* CONFIG_KVM_GUEST */
|
2020-03-07 00:42:06 +01:00
|
|
|
#define kvm_async_pf_task_wait_schedule(T) do {} while(0)
|
2010-10-14 11:22:52 +02:00
|
|
|
#define kvm_async_pf_task_wake(T) do {} while(0)
|
2013-08-06 14:55:41 +05:30
|
|
|
|
2014-01-27 14:49:40 +01:00
|
|
|
static inline bool kvm_para_available(void)
|
|
|
|
{
|
2015-03-30 16:46:09 -07:00
|
|
|
return false;
|
2014-01-27 14:49:40 +01:00
|
|
|
}
|
|
|
|
|
2014-01-27 14:51:44 +01:00
|
|
|
static inline unsigned int kvm_arch_para_features(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2018-02-13 09:05:40 +08:00
|
|
|
static inline unsigned int kvm_arch_para_hints(void)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-05-25 16:41:17 +02:00
|
|
|
static inline u32 kvm_read_and_reset_apf_flags(void)
|
2010-10-14 11:22:52 +02:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2011-07-11 15:28:19 -04:00
|
|
|
|
2020-06-03 13:40:22 +02:00
|
|
|
static __always_inline bool kvm_handle_async_pf(struct pt_regs *regs, u32 token)
|
2020-02-28 10:42:48 -08:00
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
2007-10-11 15:34:17 +02:00
|
|
|
#endif
|
|
|
|
|
2008-10-22 22:26:29 -07:00
|
|
|
#endif /* _ASM_X86_KVM_PARA_H */
|