Accepting request 844364 from home:Guillaume_G
parsec service OBS-URL: https://build.opensuse.org/request/show/844364 OBS-URL: https://build.opensuse.org/package/show/security/parsec?expand=0&rev=1
This commit is contained in:
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
## Default LFS
|
||||||
|
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.png filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||||
|
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.osc
|
5
_service
Normal file
5
_service
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
<services>
|
||||||
|
<service name="cargo_vendor" mode="disabled">
|
||||||
|
<param name="compression">xz</param>
|
||||||
|
</service>
|
||||||
|
</services>
|
8
cargo_config
Normal file
8
cargo_config
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
[source.crates-io]
|
||||||
|
replace-with = "vendored-sources"
|
||||||
|
|
||||||
|
[source.vendored-sources]
|
||||||
|
directory = "vendor"
|
||||||
|
|
||||||
|
[term]
|
||||||
|
verbose = true
|
24
config.toml
Normal file
24
config.toml
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
# See a more complete example in /usr/shar/doc/parsec/config.toml
|
||||||
|
[core_settings]
|
||||||
|
|
||||||
|
[listener]
|
||||||
|
listener_type = "DomainSocket"
|
||||||
|
timeout = 200 # in milliseconds
|
||||||
|
|
||||||
|
[authenticator]
|
||||||
|
auth_type = "UnixPeerCredentials"
|
||||||
|
|
||||||
|
[[key_manager]]
|
||||||
|
name = "on-disk-manager"
|
||||||
|
manager_type = "OnDisk"
|
||||||
|
|
||||||
|
[[provider]]
|
||||||
|
# provider_type: `MbedCrypto`, `Pkcs11`, `Tpm`
|
||||||
|
provider_type = "MbedCrypto"
|
||||||
|
key_info_manager = "on-disk-manager"
|
||||||
|
|
||||||
|
[[provider]]
|
||||||
|
provider_type = "Tpm"
|
||||||
|
key_info_manager = "on-disk-manager"
|
||||||
|
tcti = "device:/dev/tpmrm0"
|
||||||
|
owner_hierarchy_auth = ""
|
3
parsec-0.6.0.tar.gz
Normal file
3
parsec-0.6.0.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0c2585eb41c0667851223c99280142e05924338b937054967516df19a9c3e6dc
|
||||||
|
size 815830
|
13
parsec.changes
Normal file
13
parsec.changes
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 23 15:10:32 UTC 2020 - Guillaume GARDET <guillaume.gardet@opensuse.org>
|
||||||
|
|
||||||
|
- Update to 0.6.0
|
||||||
|
- Update config.toml
|
||||||
|
- Add patch:
|
||||||
|
* pkcs11-libloading-issue.patch
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Fri Oct 16 16:07:51 UTC 2020 - Guillaume GARDET <guillaume.gardet@opensuse.org>
|
||||||
|
|
||||||
|
- Initiale version 0.5.0
|
||||||
|
|
3
parsec.conf
Normal file
3
parsec.conf
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
#Type Path Mode User Group Age Argument
|
||||||
|
d /run/parsec 750 parsec parsec-clients - -
|
||||||
|
|
15
parsec.service
Normal file
15
parsec.service
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
[Unit]
|
||||||
|
Description=Parsec Service
|
||||||
|
Documentation=https://parallaxsecond.github.io/parsec-book/parsec_service/install_parsec_linux.html
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=notify
|
||||||
|
KillMode=process
|
||||||
|
Restart=on-failure
|
||||||
|
WorkingDirectory=/var/lib/parsec
|
||||||
|
ExecStart=/usr/libexec/parsec -c /etc/parsec/config.toml
|
||||||
|
User=parsec
|
||||||
|
Group=parsec
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=default.target
|
118
parsec.spec
Normal file
118
parsec.spec
Normal file
@@ -0,0 +1,118 @@
|
|||||||
|
#
|
||||||
|
# spec file for package parsec
|
||||||
|
#
|
||||||
|
# Copyright (c) 2020 SUSE LLC
|
||||||
|
#
|
||||||
|
# All modifications and additions to the file contributed by third parties
|
||||||
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
|
# upon. The license for this file, and modifications and additions to the
|
||||||
|
# file, is the same license as for the pristine package itself (unless the
|
||||||
|
# license for the pristine package is not an Open Source License, in which
|
||||||
|
# case the license is the MIT License). An "Open Source License" is a
|
||||||
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
|
# published by the Open Source Initiative.
|
||||||
|
|
||||||
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||||
|
#
|
||||||
|
|
||||||
|
%global rustflags '-Clink-arg=-Wl,-z,relro,-z,now'
|
||||||
|
# Features available: mbed-crypto-provider, pkcs11-provider, tpm-provider, all-providers
|
||||||
|
%define features "mbed-crypto-provider,tpm-provider"
|
||||||
|
%{?systemd_ordering}
|
||||||
|
Name: parsec
|
||||||
|
Version: 0.6.0
|
||||||
|
Release: 0
|
||||||
|
Summary: Platform AbstRaction for SECurity
|
||||||
|
License: Apache-2.0
|
||||||
|
URL: https://parallaxsecond.github.io/parsec-book
|
||||||
|
Source0: https://github.com/parallaxsecond/parsec/archive/%{version}.tar.gz#/parsec-%{version}.tar.gz
|
||||||
|
Source1: vendor.tar.xz
|
||||||
|
Source2: cargo_config
|
||||||
|
Source3: parsec.service
|
||||||
|
Source4: config.toml
|
||||||
|
Source5: parsec.conf
|
||||||
|
Source6: system-user-parsec.conf
|
||||||
|
# Borrowed from Fedora - https://src.fedoraproject.org/rpms/parsec/blob/master/f/pkcs11-libloading-issue.patch
|
||||||
|
Patch1: pkcs11-libloading-issue.patch
|
||||||
|
BuildRequires: cargo
|
||||||
|
BuildRequires: clang-devel
|
||||||
|
BuildRequires: cmake
|
||||||
|
BuildRequires: llvm-devel
|
||||||
|
BuildRequires: protobuf-devel
|
||||||
|
BuildRequires: pkcs11-helper-devel
|
||||||
|
BuildRequires: pkgconfig
|
||||||
|
BuildRequires: pkgconfig(tss2-esys) >= 2.3.3
|
||||||
|
BuildRequires: python3
|
||||||
|
BuildRequires: rust-packaging
|
||||||
|
BuildRequires: sysuser-tools
|
||||||
|
%sysusers_requires
|
||||||
|
ExcludeArch: armv6l armv6hl
|
||||||
|
|
||||||
|
%description
|
||||||
|
PARSEC is the Platform AbstRaction for SECurity, an open-source initiative to provide
|
||||||
|
a common API to hardware security and cryptographic services in a platform-agnostic way.
|
||||||
|
This abstraction layer keeps workloads decoupled from physical platform details,
|
||||||
|
enabling cloud-native delivery flows within the data center and at the edge.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%setup -qa1
|
||||||
|
%patch1 -p1
|
||||||
|
mkdir .cargo
|
||||||
|
cp %{SOURCE2} .cargo/config
|
||||||
|
sed -i -e 's#default = \[\]##' Cargo.toml
|
||||||
|
echo 'default = ["tpm-provider", "mbed-crypto-provider"]' >> Cargo.toml
|
||||||
|
|
||||||
|
%build
|
||||||
|
export PROTOC=%{_bindir}/protoc
|
||||||
|
export PROTOC_INCLUDE=%{_includedir}
|
||||||
|
%cargo_build -- --features=%features
|
||||||
|
%sysusers_generate_pre %{SOURCE6} parsec
|
||||||
|
|
||||||
|
%install
|
||||||
|
export PROTOC=%{_bindir}/protoc
|
||||||
|
export PROTOC_INCLUDE=%{_includedir}
|
||||||
|
%cargo_install
|
||||||
|
mkdir -p %{buildroot}%{_sysusersdir}
|
||||||
|
install -m 0644 %{SOURCE6} %{buildroot}%{_sysusersdir}/
|
||||||
|
install -D -p -m0644 %{SOURCE3} %{buildroot}%{_unitdir}/parsec.service
|
||||||
|
install -D -p -m0644 %{SOURCE4} %{buildroot}%{_sysconfdir}/parsec/config.toml
|
||||||
|
install -D -p -m0644 %{SOURCE5} %{buildroot}%{_tmpfilesdir}/parsec.conf
|
||||||
|
install -d -m0755 %{buildroot}%{_localstatedir}/lib/parsec
|
||||||
|
# Move parsec to _libexecdir
|
||||||
|
mkdir -p %{buildroot}%{_libexecdir}
|
||||||
|
mv target/release/parsec %{buildroot}%{_libexecdir}
|
||||||
|
# Clean-up
|
||||||
|
find %{buildroot} -name .crates2.json -delete
|
||||||
|
rm -rf %{buildroot}%{_datadir}/cargo/registry
|
||||||
|
|
||||||
|
%check
|
||||||
|
export PROTOC=%{_bindir}/protoc
|
||||||
|
export PROTOC_INCLUDE=%{_includedir}
|
||||||
|
%cargo_test -- --lib --features=%features
|
||||||
|
|
||||||
|
%pre -f parsec.pre
|
||||||
|
%service_add_pre parsec.service
|
||||||
|
|
||||||
|
%post
|
||||||
|
%service_add_post parsec.service
|
||||||
|
%tmpfiles_create %_tmpfilesdir/parsec.conf
|
||||||
|
|
||||||
|
%preun
|
||||||
|
%service_del_preun parsec.service
|
||||||
|
|
||||||
|
%postun
|
||||||
|
%service_del_postun parsec.service
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license LICENSE
|
||||||
|
%doc README.md config.toml
|
||||||
|
%attr(0750,parsec,parsec) %dir %{_sysconfdir}/parsec/
|
||||||
|
%attr(0750,parsec,parsec) %dir %{_localstatedir}/lib/parsec/
|
||||||
|
%attr(0644,parsec,parsec) %config(noreplace) %{_sysconfdir}/parsec/config.toml
|
||||||
|
%{_libexecdir}/parsec
|
||||||
|
%{_tmpfilesdir}/parsec.conf
|
||||||
|
%{_unitdir}/parsec.service
|
||||||
|
%{_sysusersdir}/system-user-parsec.conf
|
||||||
|
|
||||||
|
%changelog
|
16
pkcs11-libloading-issue.patch
Normal file
16
pkcs11-libloading-issue.patch
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
diff --git a/src/providers/pkcs11/utils.rs b/src/providers/pkcs11/utils.rs
|
||||||
|
index 7f51e8d..1755226 100644
|
||||||
|
--- a/src/providers/pkcs11/utils.rs
|
||||||
|
+++ b/src/providers/pkcs11/utils.rs
|
||||||
|
@@ -284,7 +284,10 @@ impl CkMechanism {
|
||||||
|
/// of memory, hardware failure, corruption detection, lack of entropy and unsupported operations.
|
||||||
|
pub fn to_response_status(error: Error) -> ResponseStatus {
|
||||||
|
match error {
|
||||||
|
- Error::Io(e) => ResponseStatus::from(e),
|
||||||
|
+ Error::LibraryLoading{err} => {
|
||||||
|
+ format_error!("PKCS11 error to PsaErrorCommunicationFailure", err);
|
||||||
|
+ ResponseStatus::PsaErrorCommunicationFailure
|
||||||
|
+ },
|
||||||
|
Error::Module(e) | Error::InvalidInput(e) => {
|
||||||
|
format_error!("Conversion of error to PsaErrorCommunicationFailure", e);
|
||||||
|
ResponseStatus::PsaErrorCommunicationFailure
|
6
system-user-parsec.conf
Normal file
6
system-user-parsec.conf
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# Type Name ID GECOS [HOME]
|
||||||
|
g parsec -
|
||||||
|
g parsec-clients -
|
||||||
|
g tss -
|
||||||
|
u parsec - "PARSEC" /etc/parsec
|
||||||
|
m parsec lock
|
3
vendor.tar.xz
Normal file
3
vendor.tar.xz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:3e8a9595e1622a9684ee690788120edbfa8cbf6dd7794eb13f0824bae547c9f1
|
||||||
|
size 15581964
|
Reference in New Issue
Block a user