-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Package split #161
base: master
Are you sure you want to change the base?
Package split #161
Changes from 6 commits
77ce7ba
86323a3
2c784e4
12b9844
9dfe763
a300623
afc8e71
157ebd4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,10 +9,55 @@ Homepage: https://github.com/osresearch/safeboot/ | |
#Vcs-Git: https://salsa.debian.org/debian/safeboot.git | ||
|
||
Package: safeboot | ||
Architecture: any | ||
Depends: ${shlibs:Depends}, ${misc:Depends}, efitools, opensc, yubico-piv-tool, libengine-pkcs11-openssl, uuid, binutils, libqrencode-dev, libjson-c4, libcurl4 | ||
Architecture: all | ||
Depends: ${shlibs:Depends}, ${misc:Depends}, binutils, safeboot-tpm2-tools | tpm2-tools, safeboot-tpm2-totp | tpm2-totp | ||
Description: Common (core) package for Safeboot | ||
Safeboot is a collection of utilities and services for securing the boot | ||
process. | ||
|
||
Package: safeboot-boot | ||
Architecture: all | ||
Breaks: safeboot (<<0.8) | ||
Replaces: safeboot (<<0.8) | ||
Depends: ${shlibs:Depends}, ${misc:Depends}, safeboot, efitools, opensc, yubico-piv-tool, libengine-pkcs11-openssl, uuid, binutils, libqrencode-dev, libjson-c4, libcurl4 | ||
Description: Boot Linux more safely | ||
Makes the Linux boot process slightly safer by enabling UEFI Secure Boot, | ||
signing kernel and initrd with Yubikey hardware tokens, storing disk | ||
encryption secrets in the TPM, and preventing persistence with | ||
dmverity read-only root filesystems. | ||
|
||
Package: safeboot-attest-client | ||
Architecture: all | ||
Breaks: safeboot (<<0.8) | ||
Replaces: safeboot (<<0.8) | ||
Depends: ${shlibs:Depends}, ${misc:Depends}, safeboot | ||
Description: Safeboot attestation client | ||
Attestation client for Safeboot, which is intended to be used for securely | ||
fetching local filesystem encryption keys (including for the root | ||
filesyste), and other secrets (including device credentials). | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
Package: safeboot-attest-server | ||
Architecture: all | ||
Breaks: safeboot (<<0.8) | ||
Replaces: safeboot (<<0.8) | ||
Depends: ${shlibs:Depends}, ${misc:Depends}, safeboot | ||
Description: Safeboot attestation server | ||
Enrollment and attestation server for Safeboot, which is intended to be | ||
used for securely fetching local filesystem encryption keys (including for | ||
the root filesyste), and other secrets (including device credentials). | ||
|
||
Package: safeboot-tpm2-tools | ||
Architecture: any | ||
Breaks: safeboot (<<0.8) | ||
Replaces: safeboot (<<0.8) | ||
Depends: ${shlibs:Depends}, ${misc:Depends} | ||
Description: tpm2-tools at version needed by Safeboot | ||
Safeboot depends on more recent versions of tpm2-tools than are packaged. | ||
|
||
Package: safeboot-tpm2-totp | ||
Architecture: any | ||
Breaks: safeboot (<<0.8) | ||
Replaces: safeboot (<<0.8) | ||
Depends: ${shlibs:Depends}, ${misc:Depends} | ||
Description: tpm2-totp at version needed by Safeboot | ||
Safeboot depends on more recent versions of tpm2-totp than are packaged. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# shell script commands | ||
sbin/tpm2-attest usr/sbin/ | ||
sbin/tpm2-pcr-validate usr/sbin/ | ||
|
||
# libexec shell scripts | ||
sbin/getkeytab usr/libexec/safeboot/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
# shell scripts in the tree | ||
sbin/attest-enroll usr/sbin/ | ||
sbin/attest-verify | ||
sbin/attest-server usr/sbin/ | ||
# XXX | ||
sbin/attest-server-sub.py usr/sbin/ | ||
|
||
# These are delivered by safeboot-attest-client for now until we split them up | ||
# sbin/tpm2-attest usr/sbin/ | ||
# sbin/tpm2-pcr-validate usr/sbin/ | ||
|
||
# libexec shell scripts | ||
sbin/gencert usr/libexec/safeboot/ | ||
sbin/genkeytab usr/libexec/safeboot/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Compiled with modifications from source | ||
# to add support for the pkcs11 engine (sbsign), | ||
# hostnames and small qrcodes (tpm2-totp), | ||
# and bundle all tpm2 applications in a single script (tpm2) | ||
bin/tpm2 usr/sbin/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Compiled with modifications from source | ||
# to add support for the pkcs11 engine (sbsign), | ||
# hostnames and small qrcodes (tpm2-totp), | ||
# and bundle all tpm2 applications in a single script (tpm2) | ||
bin/tpm2-totp usr/sbin/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Shell functions library | ||
functions.sh etc/safeboot/ | ||
functions.sh usr/lib/safeboot/ | ||
|
||
# TPM certs and a script to refresh them | ||
tpm-certs.txt usr/share/safeboot/ | ||
refresh-certs usr/share/safeboot/ | ||
certs/* usr/share/safeboot/certs/ |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.0 (quilt) | ||
3.0 (native) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm not familiar with these formats and had copied from a different debian package. what's the difference? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I did what Thomas told me :) I'm not familiar either. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tpm2-tools should have a recent release dependency