From 0c43b4275bb90932fbf228a68411a98c78d7c3cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Kowalczyk?= Date: Mon, 14 Feb 2022 17:14:14 +0100 Subject: [PATCH] [Docs] Unify and document copyright notices MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Kowalczyk --- CONTRIBUTING.rst | 12 ++++++++++++ Documentation/conf.py | 2 +- LibOS/shim/test/ltp/test_ltp.py | 2 +- Pal/include/arch/x86_64/Linux/ucontext.h | 2 +- Pal/src/host/Linux-SGX/enclave_pf.c | 4 ++-- Pal/src/host/Linux-SGX/enclave_pf.h | 7 ++++--- Pal/src/host/Linux-SGX/protected-files/lru_cache.c | 6 +++--- Pal/src/host/Linux-SGX/protected-files/lru_cache.h | 6 +++--- .../host/Linux-SGX/protected-files/protected_files.c | 6 +++--- .../host/Linux-SGX/protected-files/protected_files.h | 6 +++--- .../protected-files/protected_files_format.h | 6 +++--- .../protected-files/protected_files_internal.h | 6 +++--- Pal/src/host/Linux-SGX/tools/common/attestation.c | 4 ++-- Pal/src/host/Linux-SGX/tools/common/attestation.h | 4 ++-- Pal/src/host/Linux-SGX/tools/common/ias.c | 4 ++-- Pal/src/host/Linux-SGX/tools/common/ias.h | 4 ++-- Pal/src/host/Linux-SGX/tools/common/pf_util.c | 4 ++-- Pal/src/host/Linux-SGX/tools/common/pf_util.h | 4 ++-- Pal/src/host/Linux-SGX/tools/common/util.c | 4 ++-- Pal/src/host/Linux-SGX/tools/common/util.h | 4 ++-- .../tools/is-sgx-available/is_sgx_available.cpp | 4 ++-- Pal/src/host/Linux-SGX/tools/pf_crypt/pf_crypt.c | 4 ++-- Pal/src/host/Linux-SGX/tools/pf_tamper/pf_tamper.c | 4 ++-- Pal/src/host/Linux-SGX/tools/quote-dump/quote_dump.c | 4 ++-- Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls.h | 2 +- Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls_attest.c | 2 +- .../Linux-SGX/tools/ra-tls/ra_tls_verify_common.c | 2 +- .../host/Linux-SGX/tools/ra-tls/ra_tls_verify_dcap.c | 2 +- .../host/Linux-SGX/tools/ra-tls/ra_tls_verify_epid.c | 2 +- .../tools/verify-ias-report/verify_ias_report.c | 4 ++-- Scripts/gen-pal-map.py | 2 +- Scripts/get-python-platlib.py | 2 +- python/gramine-gen-depend | 2 +- python/gramine-manifest | 2 +- python/gramine-sgx-get-token | 2 +- python/gramine-sgx-sign | 2 +- python/gramine-test | 2 +- python/graminelibos/manifest.py | 4 ++-- python/graminelibos/sgx_get_token.py | 2 +- python/graminelibos/sgx_sign.py | 2 +- python/graminelibos/sigstruct.py | 2 +- python/graminelibos/util_tests.py | 2 +- tools/gramine.in | 10 +++++----- 43 files changed, 88 insertions(+), 75 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index fb0f8e9b65..d1c8c3d547 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -165,6 +165,18 @@ Style Guidelines See `style guidelines `__. +Copyrights and Licenses +^^^^^^^^^^^^^^^^^^^^^^^ + +All new contributions should be licensed under LGPL-3.0-or-later. All source +files should include a license notice in `SPDX format +`__. If you modified a significant portion of a +file then you should also add an entry to the list of per-file copyright +notice. Please keep in mind that this list is only a courtesy notice for the +readers with a rough summary of the copyrights. Because it's just a summary, we +inlude only the year of the most recent copyrighted modification to the file +(to know when all the copyright claims from a specific owner expire). + .. _running_regression_tests: Running Regression Tests by Hand diff --git a/Documentation/conf.py b/Documentation/conf.py index c93c6b58c0..71679794c0 100644 --- a/Documentation/conf.py +++ b/Documentation/conf.py @@ -23,7 +23,7 @@ # -- Project information ----------------------------------------------------- project = 'Gramine' -copyright = '2019-2021, Gramine Contributors' +copyright = '2022, Gramine Contributors' author = 'Gramine Contributors' # The short X.Y version diff --git a/LibOS/shim/test/ltp/test_ltp.py b/LibOS/shim/test/ltp/test_ltp.py index a5b4dec6aa..b9a34e9f7a 100755 --- a/LibOS/shim/test/ltp/test_ltp.py +++ b/LibOS/shim/test/ltp/test_ltp.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # SPDX-License-Identifier: LGPL-3.0-or-later # Copyright (C) 2019 Wojtek Porczyk -# Copyright (c) 2021 Intel Corporation +# Copyright (C) 2021 Intel Corporation # Paweł Marczewski import configparser diff --git a/Pal/include/arch/x86_64/Linux/ucontext.h b/Pal/include/arch/x86_64/Linux/ucontext.h index fe22877154..4e78b7bbe3 100644 --- a/Pal/include/arch/x86_64/Linux/ucontext.h +++ b/Pal/include/arch/x86_64/Linux/ucontext.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2020-2021 Intel Corporation +/* Copyright (C) 2021 Intel Corporation * Borys Popławski */ #ifndef LINUX_X86_64_UCONTEXT_H_ diff --git a/Pal/src/host/Linux-SGX/enclave_pf.c b/Pal/src/host/Linux-SGX/enclave_pf.c index 893f8289c2..f71037ca15 100644 --- a/Pal/src/host/Linux-SGX/enclave_pf.c +++ b/Pal/src/host/Linux-SGX/enclave_pf.c @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2018-2020 Invisible Things Lab - * Rafal Wojdyla +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla */ #include "crypto.h" diff --git a/Pal/src/host/Linux-SGX/enclave_pf.h b/Pal/src/host/Linux-SGX/enclave_pf.h index e0a08ef035..b5549bca59 100644 --- a/Pal/src/host/Linux-SGX/enclave_pf.h +++ b/Pal/src/host/Linux-SGX/enclave_pf.h @@ -1,7 +1,8 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2019-2020 Invisible Things Lab - * Rafal Wojdyla - * Copyright (C) 2021 Intel Corporation */ +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla + * Copyright (C) 2021 Intel Corporation + */ /* Protected files (PF) are encrypted on disk and transparently decrypted when accessed by Gramine * or by app running inside Gramine. Internal protected file format was ported from Intel SGX SDK, diff --git a/Pal/src/host/Linux-SGX/protected-files/lru_cache.c b/Pal/src/host/Linux-SGX/protected-files/lru_cache.c index 17252765bc..e916d86ec9 100644 --- a/Pal/src/host/Linux-SGX/protected-files/lru_cache.c +++ b/Pal/src/host/Linux-SGX/protected-files/lru_cache.c @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2019-2020 Invisible Things Lab - * Rafal Wojdyla - * Copyright (C) 2011-2020 Intel Corporation +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla + * Copyright (C) 2020 Intel Corporation */ /* TODO: add regression tests for this */ diff --git a/Pal/src/host/Linux-SGX/protected-files/lru_cache.h b/Pal/src/host/Linux-SGX/protected-files/lru_cache.h index 750aaaf0be..609bcfee40 100644 --- a/Pal/src/host/Linux-SGX/protected-files/lru_cache.h +++ b/Pal/src/host/Linux-SGX/protected-files/lru_cache.h @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2019-2020 Invisible Things Lab - * Rafal Wojdyla - * Copyright (C) 2011-2020 Intel Corporation +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla + * Copyright (C) 2020 Intel Corporation */ /* Least-recently used cache, used by the protected file implementation for optimizing diff --git a/Pal/src/host/Linux-SGX/protected-files/protected_files.c b/Pal/src/host/Linux-SGX/protected-files/protected_files.c index 61e85a601c..6801db3481 100644 --- a/Pal/src/host/Linux-SGX/protected-files/protected_files.c +++ b/Pal/src/host/Linux-SGX/protected-files/protected_files.c @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2019-2020 Invisible Things Lab - * Rafal Wojdyla - * Copyright (C) 2011-2019 Intel Corporation +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla + * Copyright (C) 2019 Intel Corporation */ #ifndef IN_PAL diff --git a/Pal/src/host/Linux-SGX/protected-files/protected_files.h b/Pal/src/host/Linux-SGX/protected-files/protected_files.h index c00bf46940..08053e128c 100644 --- a/Pal/src/host/Linux-SGX/protected-files/protected_files.h +++ b/Pal/src/host/Linux-SGX/protected-files/protected_files.h @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2019-2020 Invisible Things Lab - * Rafal Wojdyla - * Copyright (C) 2011-2019 Intel Corporation +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla + * Copyright (C) 2019 Intel Corporation */ /* See README.rst for protected files overview */ diff --git a/Pal/src/host/Linux-SGX/protected-files/protected_files_format.h b/Pal/src/host/Linux-SGX/protected-files/protected_files_format.h index 0809baf8ff..56eaccecce 100644 --- a/Pal/src/host/Linux-SGX/protected-files/protected_files_format.h +++ b/Pal/src/host/Linux-SGX/protected-files/protected_files_format.h @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2019-2020 Invisible Things Lab - * Rafal Wojdyla - * Copyright (C) 2011-2020 Intel Corporation +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla + * Copyright (C) 2020 Intel Corporation */ #ifndef PROTECTED_FILES_FORMAT_H_ diff --git a/Pal/src/host/Linux-SGX/protected-files/protected_files_internal.h b/Pal/src/host/Linux-SGX/protected-files/protected_files_internal.h index 3f64b6ce65..e8e2a1a52a 100644 --- a/Pal/src/host/Linux-SGX/protected-files/protected_files_internal.h +++ b/Pal/src/host/Linux-SGX/protected-files/protected_files_internal.h @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2019-2020 Invisible Things Lab - * Rafal Wojdyla - * Copyright (C) 2011-2019 Intel Corporation +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla + * Copyright (C) 2019 Intel Corporation */ #ifndef PROTECTED_FILES_INTERNAL_H_ diff --git a/Pal/src/host/Linux-SGX/tools/common/attestation.c b/Pal/src/host/Linux-SGX/tools/common/attestation.c index 256d8984ce..481b0bcf94 100644 --- a/Pal/src/host/Linux-SGX/tools/common/attestation.c +++ b/Pal/src/host/Linux-SGX/tools/common/attestation.c @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2018-2020 Invisible Things Lab - * Rafal Wojdyla +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla */ #define _GNU_SOURCE diff --git a/Pal/src/host/Linux-SGX/tools/common/attestation.h b/Pal/src/host/Linux-SGX/tools/common/attestation.h index 72129a3d5f..69b026173f 100644 --- a/Pal/src/host/Linux-SGX/tools/common/attestation.h +++ b/Pal/src/host/Linux-SGX/tools/common/attestation.h @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2018-2020 Invisible Things Lab - * Rafal Wojdyla +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla */ #ifndef ATTESTATION_H diff --git a/Pal/src/host/Linux-SGX/tools/common/ias.c b/Pal/src/host/Linux-SGX/tools/common/ias.c index a8ea622323..591de9ffa9 100644 --- a/Pal/src/host/Linux-SGX/tools/common/ias.c +++ b/Pal/src/host/Linux-SGX/tools/common/ias.c @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2018-2020 Invisible Things Lab - * Rafal Wojdyla +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla */ #define _GNU_SOURCE diff --git a/Pal/src/host/Linux-SGX/tools/common/ias.h b/Pal/src/host/Linux-SGX/tools/common/ias.h index e6c681bfa3..bfc878d3d1 100644 --- a/Pal/src/host/Linux-SGX/tools/common/ias.h +++ b/Pal/src/host/Linux-SGX/tools/common/ias.h @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2018-2020 Invisible Things Lab - * Rafal Wojdyla +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla */ #ifndef _IAS_H diff --git a/Pal/src/host/Linux-SGX/tools/common/pf_util.c b/Pal/src/host/Linux-SGX/tools/common/pf_util.c index e08af90292..c57ef4f93c 100644 --- a/Pal/src/host/Linux-SGX/tools/common/pf_util.c +++ b/Pal/src/host/Linux-SGX/tools/common/pf_util.c @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2018-2020 Invisible Things Lab - * Rafal Wojdyla +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla */ #define _GNU_SOURCE diff --git a/Pal/src/host/Linux-SGX/tools/common/pf_util.h b/Pal/src/host/Linux-SGX/tools/common/pf_util.h index 06c3379f5f..26aa293555 100644 --- a/Pal/src/host/Linux-SGX/tools/common/pf_util.h +++ b/Pal/src/host/Linux-SGX/tools/common/pf_util.h @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2018-2020 Invisible Things Lab - * Rafal Wojdyla +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla */ #ifndef PF_UTIL_H diff --git a/Pal/src/host/Linux-SGX/tools/common/util.c b/Pal/src/host/Linux-SGX/tools/common/util.c index 16e81bfde1..99d7c2cb68 100644 --- a/Pal/src/host/Linux-SGX/tools/common/util.c +++ b/Pal/src/host/Linux-SGX/tools/common/util.c @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2018-2020 Invisible Things Lab - * Rafal Wojdyla +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla */ #define _LARGEFILE64_SOURCE diff --git a/Pal/src/host/Linux-SGX/tools/common/util.h b/Pal/src/host/Linux-SGX/tools/common/util.h index a85e5b6b92..cbf64fe7fe 100644 --- a/Pal/src/host/Linux-SGX/tools/common/util.h +++ b/Pal/src/host/Linux-SGX/tools/common/util.h @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2018-2020 Invisible Things Lab - * Rafal Wojdyla +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla */ #ifndef UTIL_H diff --git a/Pal/src/host/Linux-SGX/tools/is-sgx-available/is_sgx_available.cpp b/Pal/src/host/Linux-SGX/tools/is-sgx-available/is_sgx_available.cpp index 1b1a505217..7924629b07 100644 --- a/Pal/src/host/Linux-SGX/tools/is-sgx-available/is_sgx_available.cpp +++ b/Pal/src/host/Linux-SGX/tools/is-sgx-available/is_sgx_available.cpp @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2018-2020 Invisible Things Lab - * Michal Kowalczyk +/* Copyright (C) 2020 Invisible Things Lab + * Michal Kowalczyk */ #include diff --git a/Pal/src/host/Linux-SGX/tools/pf_crypt/pf_crypt.c b/Pal/src/host/Linux-SGX/tools/pf_crypt/pf_crypt.c index 20c256e28f..649d369ed6 100644 --- a/Pal/src/host/Linux-SGX/tools/pf_crypt/pf_crypt.c +++ b/Pal/src/host/Linux-SGX/tools/pf_crypt/pf_crypt.c @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2018-2020 Invisible Things Lab - * Rafal Wojdyla +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla */ #define _GNU_SOURCE diff --git a/Pal/src/host/Linux-SGX/tools/pf_tamper/pf_tamper.c b/Pal/src/host/Linux-SGX/tools/pf_tamper/pf_tamper.c index cc2f7fce98..f68d13325c 100644 --- a/Pal/src/host/Linux-SGX/tools/pf_tamper/pf_tamper.c +++ b/Pal/src/host/Linux-SGX/tools/pf_tamper/pf_tamper.c @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2019-2020 Invisible Things Lab - * Rafal Wojdyla +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla */ #define _GNU_SOURCE diff --git a/Pal/src/host/Linux-SGX/tools/quote-dump/quote_dump.c b/Pal/src/host/Linux-SGX/tools/quote-dump/quote_dump.c index bc69c204e9..6acb6fc7ba 100644 --- a/Pal/src/host/Linux-SGX/tools/quote-dump/quote_dump.c +++ b/Pal/src/host/Linux-SGX/tools/quote-dump/quote_dump.c @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2018-2020 Invisible Things Lab - * Rafal Wojdyla +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla */ #define _GNU_SOURCE diff --git a/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls.h b/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls.h index 1865bc95a3..45f8bc3ed0 100644 --- a/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls.h +++ b/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls.h @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2018-2020 Intel Labs */ +/* Copyright (C) 2020 Intel Labs */ #include #include diff --git a/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls_attest.c b/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls_attest.c index 77bda1e1d5..0f33884ea5 100644 --- a/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls_attest.c +++ b/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls_attest.c @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2018-2020 Intel Labs */ +/* Copyright (C) 2020 Intel Labs */ /*! * \file diff --git a/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls_verify_common.c b/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls_verify_common.c index 7678967691..1c7c4929d2 100644 --- a/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls_verify_common.c +++ b/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls_verify_common.c @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2018-2020 Intel Labs */ +/* Copyright (C) 2020 Intel Labs */ /*! * \file diff --git a/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls_verify_dcap.c b/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls_verify_dcap.c index 7421223e37..6c3b582dbc 100644 --- a/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls_verify_dcap.c +++ b/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls_verify_dcap.c @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2018-2020 Intel Labs */ +/* Copyright (C) 2020 Intel Labs */ /*! * \file diff --git a/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls_verify_epid.c b/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls_verify_epid.c index c10c839ec9..bd33075371 100644 --- a/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls_verify_epid.c +++ b/Pal/src/host/Linux-SGX/tools/ra-tls/ra_tls_verify_epid.c @@ -1,5 +1,5 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2018-2020 Intel Labs */ +/* Copyright (C) 2020 Intel Labs */ /*! * \file diff --git a/Pal/src/host/Linux-SGX/tools/verify-ias-report/verify_ias_report.c b/Pal/src/host/Linux-SGX/tools/verify-ias-report/verify_ias_report.c index cc9d27e494..8f8933095b 100644 --- a/Pal/src/host/Linux-SGX/tools/verify-ias-report/verify_ias_report.c +++ b/Pal/src/host/Linux-SGX/tools/verify-ias-report/verify_ias_report.c @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: LGPL-3.0-or-later */ -/* Copyright (C) 2018-2020 Invisible Things Lab - * Rafal Wojdyla +/* Copyright (C) 2020 Invisible Things Lab + * Rafal Wojdyla */ #define _GNU_SOURCE diff --git a/Scripts/gen-pal-map.py b/Scripts/gen-pal-map.py index 5083c9bd7e..fa7b001dde 100755 --- a/Scripts/gen-pal-map.py +++ b/Scripts/gen-pal-map.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # SPDX-License-Identifier: LGPL-3.0-or-later -# Copyright (c) 2021 Intel Corporation +# Copyright (C) 2021 Intel Corporation # Wojtek Porczyk # diff --git a/Scripts/get-python-platlib.py b/Scripts/get-python-platlib.py index c376615fc7..b47a6dfdfe 100755 --- a/Scripts/get-python-platlib.py +++ b/Scripts/get-python-platlib.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # SPDX-License-Identifier: LGPL-3.0-or-later -# Copyright (c) 2021 Intel Corporation +# Copyright (C) 2021 Intel Corporation # Wojtek Porczyk # diff --git a/python/gramine-gen-depend b/python/gramine-gen-depend index c22cf5a50b..b04a6e84d5 100755 --- a/python/gramine-gen-depend +++ b/python/gramine-gen-depend @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # SPDX-License-Identifier: LGPL-3.0-or-later -# Copyright (c) 2021 Intel Corporation +# Copyright (C) 2021 Intel Corporation # Borys Popławski import os diff --git a/python/gramine-manifest b/python/gramine-manifest index 1afa2b2346..7290d88de1 100755 --- a/python/gramine-manifest +++ b/python/gramine-manifest @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # SPDX-License-Identifier: LGPL-3.0-or-later -# Copyright (c) 2021 Intel Corporation +# Copyright (C) 2021 Intel Corporation # Borys Popławski import click diff --git a/python/gramine-sgx-get-token b/python/gramine-sgx-get-token index 5a4dd164d6..a626db87ca 100755 --- a/python/gramine-sgx-get-token +++ b/python/gramine-sgx-get-token @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # SPDX-License-Identifier: LGPL-3.0-or-later -# Copyright (c) 2021 Intel Corporation +# Copyright (C) 2021 Intel Corporation # Borys Popławski import click diff --git a/python/gramine-sgx-sign b/python/gramine-sgx-sign index 325ec291be..c187316850 100755 --- a/python/gramine-sgx-sign +++ b/python/gramine-sgx-sign @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # SPDX-License-Identifier: LGPL-3.0-or-later -# Copyright (c) 2021 Intel Corporation +# Copyright (C) 2021 Intel Corporation # Borys Popławski import datetime diff --git a/python/gramine-test b/python/gramine-test index 78f23cc6c2..f0a230bf8b 100755 --- a/python/gramine-test +++ b/python/gramine-test @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # SPDX-License-Identifier: LGPL-3.0-or-later -# Copyright (c) 2021 Intel Corporation +# Copyright (C) 2021 Intel Corporation # Paweł Marczewski import os diff --git a/python/graminelibos/manifest.py b/python/graminelibos/manifest.py index 23a211081d..f3143e667c 100644 --- a/python/graminelibos/manifest.py +++ b/python/graminelibos/manifest.py @@ -1,6 +1,6 @@ # SPDX-License-Identifier: LGPL-3.0-or-later -# Copyright (c) 2021 Wojtek Porczyk -# Copyright (c) 2022 Intel Corporation +# Copyright (C) 2021 Wojtek Porczyk +# Copyright (C) 2022 Intel Corporation # Michał Kowalczyk # Borys Popławski diff --git a/python/graminelibos/sgx_get_token.py b/python/graminelibos/sgx_get_token.py index 133e78b47c..a642f43385 100644 --- a/python/graminelibos/sgx_get_token.py +++ b/python/graminelibos/sgx_get_token.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # SPDX-License-Identifier: LGPL-3.0-or-later -# Copyright (c) 2021 Intel Corporation +# Copyright (C) 2021 Intel Corporation # Borys Popławski import hashlib diff --git a/python/graminelibos/sgx_sign.py b/python/graminelibos/sgx_sign.py index ed559474a6..30e77a9f8a 100644 --- a/python/graminelibos/sgx_sign.py +++ b/python/graminelibos/sgx_sign.py @@ -3,7 +3,7 @@ # Copyright (C) 2014 Stony Brook University # Copyright (C) 2021 Intel Corporation # Michał Kowalczyk -# Copyright (c) 2021 Intel Corporation +# Copyright (C) 2021 Intel Corporation # Borys Popławski import hashlib diff --git a/python/graminelibos/sigstruct.py b/python/graminelibos/sigstruct.py index 1a82abb891..cd7c309f0f 100644 --- a/python/graminelibos/sigstruct.py +++ b/python/graminelibos/sigstruct.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # SPDX-License-Identifier: LGPL-3.0-or-later -# Copyright (c) 2021 Intel Corporation +# Copyright (C) 2021 Intel Corporation # Borys Popławski import struct diff --git a/python/graminelibos/util_tests.py b/python/graminelibos/util_tests.py index 99bf8ce390..4cbcef357c 100644 --- a/python/graminelibos/util_tests.py +++ b/python/graminelibos/util_tests.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # SPDX-License-Identifier: LGPL-3.0-or-later -# Copyright (c) 2021 Intel Corporation +# Copyright (C) 2021 Intel Corporation # Paweł Marczewski import io diff --git a/tools/gramine.in b/tools/gramine.in index 8359fe095d..42d87008c0 100755 --- a/tools/gramine.in +++ b/tools/gramine.in @@ -1,10 +1,10 @@ #!/usr/bin/env bash # SPDX-License-Identifier: LGPL-3.0-or-later -# Copyright (C) 2014 Stony Brook University -# Copyright (C) 2019 Invisible Things Lab -# Copyright (C) 2020-2021 Intel Corporation -# Michał Kowalczyk -# Wojtek Porczyk +# Copyright (C) 2014 Stony Brook University +# Copyright (C) 2019 Invisible Things Lab +# Copyright (C) 2021 Intel Corporation +# Michał Kowalczyk +# Wojtek Porczyk # This is how we detect whether we're installed or running from inside git repo.