* [PR PATCH] sbctl: update to 0.11, patch, add kernel hook
@ 2023-09-20 20:39 dkwo
2023-09-20 22:27 ` Duncaen
` (62 more replies)
0 siblings, 63 replies; 64+ messages in thread
From: dkwo @ 2023-09-20 20:39 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 519 bytes --]
There is a new pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update to 0.11, patch, add kernel hook
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 2518 bytes --]
From f2718edb646324d8008117571636e4fcb129cfff Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: update to 0.11, patch, add kernel hook
---
srcpkgs/sbctl/files/kernel-hook-postinst | 12 ++++++++++++
srcpkgs/sbctl/patches/keyusage.patch | 12 ++++++++++++
srcpkgs/sbctl/template | 7 ++++---
3 files changed, 28 insertions(+), 3 deletions(-)
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postinst
create mode 100644 srcpkgs/sbctl/patches/keyusage.patch
diff --git a/srcpkgs/sbctl/files/kernel-hook-postinst b/srcpkgs/sbctl/files/kernel-hook-postinst
new file mode 100644
index 0000000000000..17f839fda13ad
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postinst
@@ -0,0 +1,12 @@
+#!/bin/sh
+#
+# Kernel post-install hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+PKGNAME="$1"
+VERSION="$2"
+
+[ -x usr/bin/sbctl ] || exit 0
+
+usr/bin/sbctl sign -s boot/vmlinuz-${VERSION}
diff --git a/srcpkgs/sbctl/patches/keyusage.patch b/srcpkgs/sbctl/patches/keyusage.patch
new file mode 100644
index 0000000000000..f1ad253e433ef
--- /dev/null
+++ b/srcpkgs/sbctl/patches/keyusage.patch
@@ -0,0 +1,12 @@
+diff --git a/keys.go b/keys.go
+index ffc7858..61c2db6 100644
+--- a/keys.go
++++ b/keys.go
+@@ -58,7 +58,6 @@
+ SignatureAlgorithm: x509.SHA256WithRSA,
+ NotBefore: time.Now(),
+ NotAfter: time.Now().AddDate(5, 0, 0),
+- KeyUsage: x509.KeyUsageDigitalSignature,
+ Subject: pkix.Name{
+ Country: []string{name},
+ CommonName: name,
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d..1b05eba23bbba 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,7 +1,7 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.11
+revision=1
build_style=go
go_import_path="github.com/foxboron/sbctl"
hostmakedepends="asciidoc"
@@ -10,7 +10,7 @@ maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=9709c912ac38cac6afbf024588ca1b341c1a9b5a29c4c575d2863fe2ad5aed75
do_build() {
make
@@ -23,4 +23,5 @@ do_install() {
post_install() {
vlicense LICENSE
+ vinstall ${FILESDIR}/kernel-hook-postinst 744 etc/kernel.d/post-install 40-sbctl
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
@ 2023-09-20 22:27 ` Duncaen
2023-09-20 22:27 ` Duncaen
` (61 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: Duncaen @ 2023-09-20 22:27 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 187 bytes --]
New comment by Duncaen on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1728506486
Comment:
I don't think the hook should run by default.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
2023-09-20 22:27 ` Duncaen
@ 2023-09-20 22:27 ` Duncaen
2023-09-20 22:28 ` Duncaen
` (60 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: Duncaen @ 2023-09-20 22:27 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 188 bytes --]
New comment by Duncaen on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1728506486
Comment:
I don't think the hook should run by default.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
2023-09-20 22:27 ` Duncaen
2023-09-20 22:27 ` Duncaen
@ 2023-09-20 22:28 ` Duncaen
2023-09-21 15:59 ` dkwo
` (59 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: Duncaen @ 2023-09-20 22:28 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 239 bytes --]
New comment by Duncaen on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1728507073
Comment:
Kernels are not necessarily named `vmlinuz`, it could be `vmlinux` depending on the architecture.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (2 preceding siblings ...)
2023-09-20 22:28 ` Duncaen
@ 2023-09-21 15:59 ` dkwo
2023-09-21 16:09 ` Duncaen
` (58 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-09-21 15:59 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 359 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1729869190
Comment:
I could add a check for the existence of vmlinuz.
(Note that efibootmgr also uses vmlinuz, and secure boot is a uefi feature, afaik.)
If one installs sbctl, don't they want to sign new kernels? or what is your concern?
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (3 preceding siblings ...)
2023-09-21 15:59 ` dkwo
@ 2023-09-21 16:09 ` Duncaen
2023-09-21 18:11 ` [PR PATCH] [Updated] " dkwo
` (57 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: Duncaen @ 2023-09-21 16:09 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 441 bytes --]
New comment by Duncaen on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1729885218
Comment:
You have to first create keys and enroll, some users might want to sign kernel with sbctl and move/rename them instead of modifying the tracked binary.
aarch64 supports efi and the kernel binaries are uncompressed and named `vmlinux`, the `efibootmgr` hook is not very good for multiple reasons.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (4 preceding siblings ...)
2023-09-21 16:09 ` Duncaen
@ 2023-09-21 18:11 ` dkwo
2023-09-21 18:12 ` dkwo
` (56 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-09-21 18:11 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 524 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update to 0.11, patch, add kernel hook
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 3240 bytes --]
From b81df64b0787d0d074ed0cf77c5856dafd4d809e Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: update to 0.11, patch, add kernel hook
---
srcpkgs/sbctl/files/kernel-hook-postinst | 19 +++++++++++++++++++
srcpkgs/sbctl/files/kernel-hook.confd | 3 +++
srcpkgs/sbctl/patches/keyusage.patch | 12 ++++++++++++
srcpkgs/sbctl/template | 8 +++++---
4 files changed, 39 insertions(+), 3 deletions(-)
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postinst
create mode 100644 srcpkgs/sbctl/files/kernel-hook.confd
create mode 100644 srcpkgs/sbctl/patches/keyusage.patch
diff --git a/srcpkgs/sbctl/files/kernel-hook-postinst b/srcpkgs/sbctl/files/kernel-hook-postinst
new file mode 100644
index 0000000000000..7748f08161a16
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postinst
@@ -0,0 +1,19 @@
+#!/bin/sh
+#
+# Kernel post-install hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+if [ "${SIGN_KERNEL}" = 0 ]; then
+ exit 0
+fi
+if [ "${SIGN_KERNEL}" = 1 ] && [ -e "boot/vmlinuz-${VERSION}" ]; then
+ usr/bin/sbctl sign -s boot/vmlinuz-${VERSION}
+fi
diff --git a/srcpkgs/sbctl/files/kernel-hook.confd b/srcpkgs/sbctl/files/kernel-hook.confd
new file mode 100644
index 0000000000000..32c71d84c1a5b
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook.confd
@@ -0,0 +1,3 @@
+# Options for the kernel hook script installed by the sbctl package.
+SIGN_KERNEL=0
+# To let sbctl sign new kernel images, set it to 1
diff --git a/srcpkgs/sbctl/patches/keyusage.patch b/srcpkgs/sbctl/patches/keyusage.patch
new file mode 100644
index 0000000000000..f1ad253e433ef
--- /dev/null
+++ b/srcpkgs/sbctl/patches/keyusage.patch
@@ -0,0 +1,12 @@
+diff --git a/keys.go b/keys.go
+index ffc7858..61c2db6 100644
+--- a/keys.go
++++ b/keys.go
+@@ -58,7 +58,6 @@
+ SignatureAlgorithm: x509.SHA256WithRSA,
+ NotBefore: time.Now(),
+ NotAfter: time.Now().AddDate(5, 0, 0),
+- KeyUsage: x509.KeyUsageDigitalSignature,
+ Subject: pkix.Name{
+ Country: []string{name},
+ CommonName: name,
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d..5fdc4210ffe3b 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,7 +1,7 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.11
+revision=1
build_style=go
go_import_path="github.com/foxboron/sbctl"
hostmakedepends="asciidoc"
@@ -10,7 +10,7 @@ maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=9709c912ac38cac6afbf024588ca1b341c1a9b5a29c4c575d2863fe2ad5aed75
do_build() {
make
@@ -23,4 +23,6 @@ do_install() {
post_install() {
vlicense LICENSE
+ vinstall ${FILESDIR}/kernel-hook-postinst 744 etc/kernel.d/post-install 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook.confd 644 etc/default sbctl-kernel-hook
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (5 preceding siblings ...)
2023-09-21 18:11 ` [PR PATCH] [Updated] " dkwo
@ 2023-09-21 18:12 ` dkwo
2023-09-21 18:16 ` Duncaen
` (55 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-09-21 18:12 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 214 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1730070490
Comment:
how about now? it's disabled by default, and it checks existence of vmlinuz
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (6 preceding siblings ...)
2023-09-21 18:12 ` dkwo
@ 2023-09-21 18:16 ` Duncaen
2023-09-21 18:22 ` Duncaen
` (54 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: Duncaen @ 2023-09-21 18:16 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 432 bytes --]
New comment by Duncaen on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1730076889
Comment:
We generally don't test for values of those environment variables and instead check if they are set or not, that makes the code easier and avoids having to define what yes/no/true/false/0/1 is the correct choice.
Not sure why you would only sign `vmlinuz` kernels and ignore `vmlinux`.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (7 preceding siblings ...)
2023-09-21 18:16 ` Duncaen
@ 2023-09-21 18:22 ` Duncaen
2023-09-21 18:22 ` Duncaen
` (53 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: Duncaen @ 2023-09-21 18:22 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 389 bytes --]
New comment by Duncaen on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1730085677
Comment:
[ -z "$SBCTL_SIGN_KERNEL" ] && exit 0
[ -e "vmlinuz-${VERSION}" ] && sign "boot/vmlinuz-${VERSION}}"
[ -e "vmlinux-${VERSION}" ] && sign "boot/vmlinuz-${VERSION}}"
/etc/default/sbctl-kernel-hook:
# SBCTL_SIGN_KERNEL=yes
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (8 preceding siblings ...)
2023-09-21 18:22 ` Duncaen
@ 2023-09-21 18:22 ` Duncaen
2023-09-21 18:22 ` Duncaen
` (52 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: Duncaen @ 2023-09-21 18:22 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 387 bytes --]
New comment by Duncaen on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1730085677
Comment:
[ -z "$SBCTL_SIGN_KERNEL" ] && exit 0
[ -e "vmlinuz-${VERSION}" ] && sign "boot/vmlinuz-${VERSION}"
[ -e "vmlinux-${VERSION}" ] && sign "boot/vmlinux-${VERSION}"
/etc/default/sbctl-kernel-hook:
# SBCTL_SIGN_KERNEL=yes
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (9 preceding siblings ...)
2023-09-21 18:22 ` Duncaen
@ 2023-09-21 18:22 ` Duncaen
2023-09-21 18:23 ` Duncaen
` (51 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: Duncaen @ 2023-09-21 18:22 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 397 bytes --]
New comment by Duncaen on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1730085677
Comment:
[ -z "$SBCTL_SIGN_KERNEL" ] && exit 0
[ -e "boot/vmlinuz-${VERSION}" ] && sign "boot/vmlinuz-${VERSION}"
[ -e "boot/vmlinux-${VERSION}" ] && sign "boot/vmlinux-${VERSION}"
/etc/default/sbctl-kernel-hook:
# SBCTL_SIGN_KERNEL=yes
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (10 preceding siblings ...)
2023-09-21 18:22 ` Duncaen
@ 2023-09-21 18:23 ` Duncaen
2023-09-21 18:24 ` Duncaen
` (50 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: Duncaen @ 2023-09-21 18:23 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 396 bytes --]
New comment by Duncaen on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1730085677
Comment:
[ -z "$SBCTL_SIGN_KERNEL" ] && exit 0
[ -e "boot/vmlinuz-${VERSION}" ] && sign "boot/vmlinuz-${VERSION}"
[ -e "boot/vmlinux-${VERSION}" ] && sign "boot/vmlinux-${VERSION}"
/etc/default/sbctl-kernel-hook:
# SBCTL_SIGN_KERNEL=no
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (11 preceding siblings ...)
2023-09-21 18:23 ` Duncaen
@ 2023-09-21 18:24 ` Duncaen
2023-09-21 20:09 ` [PR PATCH] [Updated] " dkwo
` (49 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: Duncaen @ 2023-09-21 18:24 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 546 bytes --]
New comment by Duncaen on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1730085677
Comment:
[ -z "$SBCTL_SIGN_KERNEL" ] && exit 0
[ -e "boot/vmlinuz-${VERSION}" ] && sign "boot/vmlinuz-${VERSION}"
[ -e "boot/vmlinux-${VERSION}" ] && sign "boot/vmlinux-${VERSION}"
/etc/default/sbctl-kernel-hook:
# SBCTL_SIGN_KERNEL=yes
I guess the set vs yes/no/1/0 is arguable, seems like other hooks tend to check for 1/0, other things like xbps-src and such use the -n/-z style.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (12 preceding siblings ...)
2023-09-21 18:24 ` Duncaen
@ 2023-09-21 20:09 ` dkwo
2023-09-21 20:09 ` dkwo
` (48 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-09-21 20:09 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 524 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update to 0.11, patch, add kernel hook
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 3290 bytes --]
From 81e3609a8153d0f1711ae0986d7513e0e7a4a467 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: update to 0.11, patch, add kernel hook
---
srcpkgs/sbctl/files/kernel-hook-postinst | 17 +++++++++++++++++
srcpkgs/sbctl/files/kernel-hook.confd | 3 +++
srcpkgs/sbctl/patches/keyusage.patch | 12 ++++++++++++
srcpkgs/sbctl/template | 8 +++++---
4 files changed, 37 insertions(+), 3 deletions(-)
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postinst
create mode 100644 srcpkgs/sbctl/files/kernel-hook.confd
create mode 100644 srcpkgs/sbctl/patches/keyusage.patch
diff --git a/srcpkgs/sbctl/files/kernel-hook-postinst b/srcpkgs/sbctl/files/kernel-hook-postinst
new file mode 100644
index 0000000000000..c49ece0d0bedb
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postinst
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-install hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook.confd b/srcpkgs/sbctl/files/kernel-hook.confd
new file mode 100644
index 0000000000000..59a52c91c7de2
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook.confd
@@ -0,0 +1,3 @@
+# Options for the kernel hook script installed by the sbctl package.
+# SBCTL_SIGN_KERNEL=yes
+# To let sbctl sign new kernel images, set it to 'yes'
diff --git a/srcpkgs/sbctl/patches/keyusage.patch b/srcpkgs/sbctl/patches/keyusage.patch
new file mode 100644
index 0000000000000..f1ad253e433ef
--- /dev/null
+++ b/srcpkgs/sbctl/patches/keyusage.patch
@@ -0,0 +1,12 @@
+diff --git a/keys.go b/keys.go
+index ffc7858..61c2db6 100644
+--- a/keys.go
++++ b/keys.go
+@@ -58,7 +58,6 @@
+ SignatureAlgorithm: x509.SHA256WithRSA,
+ NotBefore: time.Now(),
+ NotAfter: time.Now().AddDate(5, 0, 0),
+- KeyUsage: x509.KeyUsageDigitalSignature,
+ Subject: pkix.Name{
+ Country: []string{name},
+ CommonName: name,
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d..5fdc4210ffe3b 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,7 +1,7 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.11
+revision=1
build_style=go
go_import_path="github.com/foxboron/sbctl"
hostmakedepends="asciidoc"
@@ -10,7 +10,7 @@ maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=9709c912ac38cac6afbf024588ca1b341c1a9b5a29c4c575d2863fe2ad5aed75
do_build() {
make
@@ -23,4 +23,6 @@ do_install() {
post_install() {
vlicense LICENSE
+ vinstall ${FILESDIR}/kernel-hook-postinst 744 etc/kernel.d/post-install 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook.confd 644 etc/default sbctl-kernel-hook
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (13 preceding siblings ...)
2023-09-21 20:09 ` [PR PATCH] [Updated] " dkwo
@ 2023-09-21 20:09 ` dkwo
2023-09-23 13:06 ` [PR REVIEW] " classabbyamp
` (47 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-09-21 20:09 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 152 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1730230285
Comment:
Done, thanks.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR REVIEW] sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (14 preceding siblings ...)
2023-09-21 20:09 ` dkwo
@ 2023-09-23 13:06 ` classabbyamp
2023-09-23 14:59 ` [PR PATCH] [Updated] " dkwo
` (46 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: classabbyamp @ 2023-09-23 13:06 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 200 bytes --]
New review comment by classabbyamp on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#discussion_r1335002466
Comment:
please add a note or link explaining this patch
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (15 preceding siblings ...)
2023-09-23 13:06 ` [PR REVIEW] " classabbyamp
@ 2023-09-23 14:59 ` dkwo
2023-09-23 15:00 ` [PR REVIEW] " dkwo
` (45 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-09-23 14:59 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 524 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update to 0.11, patch, add kernel hook
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 3461 bytes --]
From 3e35956e17693349659d4ae3646e97c2b92c55b6 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: update to 0.11, patch, add kernel hook
---
srcpkgs/sbctl/files/kernel-hook-postinst | 17 +++++++++++++++++
srcpkgs/sbctl/files/kernel-hook.confd | 3 +++
srcpkgs/sbctl/patches/keyusage.patch | 17 +++++++++++++++++
srcpkgs/sbctl/template | 8 +++++---
4 files changed, 42 insertions(+), 3 deletions(-)
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postinst
create mode 100644 srcpkgs/sbctl/files/kernel-hook.confd
create mode 100644 srcpkgs/sbctl/patches/keyusage.patch
diff --git a/srcpkgs/sbctl/files/kernel-hook-postinst b/srcpkgs/sbctl/files/kernel-hook-postinst
new file mode 100644
index 0000000000000..c49ece0d0bedb
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postinst
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-install hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook.confd b/srcpkgs/sbctl/files/kernel-hook.confd
new file mode 100644
index 0000000000000..59a52c91c7de2
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook.confd
@@ -0,0 +1,3 @@
+# Options for the kernel hook script installed by the sbctl package.
+# SBCTL_SIGN_KERNEL=yes
+# To let sbctl sign new kernel images, set it to 'yes'
diff --git a/srcpkgs/sbctl/patches/keyusage.patch b/srcpkgs/sbctl/patches/keyusage.patch
new file mode 100644
index 0000000000000..cf2d33ef91205
--- /dev/null
+++ b/srcpkgs/sbctl/patches/keyusage.patch
@@ -0,0 +1,17 @@
+omit the keyUsage bitfield, so that the certificate is accepted by the
+firmware of certain thinkpad laptops
+
+fixes https://github.com/Foxboron/sbctl/issues/102
+
+diff --git a/keys.go b/keys.go
+index ffc7858..61c2db6 100644
+--- a/keys.go
++++ b/keys.go
+@@ -58,7 +58,6 @@
+ SignatureAlgorithm: x509.SHA256WithRSA,
+ NotBefore: time.Now(),
+ NotAfter: time.Now().AddDate(5, 0, 0),
+- KeyUsage: x509.KeyUsageDigitalSignature,
+ Subject: pkix.Name{
+ Country: []string{name},
+ CommonName: name,
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d..5fdc4210ffe3b 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,7 +1,7 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.11
+revision=1
build_style=go
go_import_path="github.com/foxboron/sbctl"
hostmakedepends="asciidoc"
@@ -10,7 +10,7 @@ maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=9709c912ac38cac6afbf024588ca1b341c1a9b5a29c4c575d2863fe2ad5aed75
do_build() {
make
@@ -23,4 +23,6 @@ do_install() {
post_install() {
vlicense LICENSE
+ vinstall ${FILESDIR}/kernel-hook-postinst 744 etc/kernel.d/post-install 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook.confd 644 etc/default sbctl-kernel-hook
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR REVIEW] sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (16 preceding siblings ...)
2023-09-23 14:59 ` [PR PATCH] [Updated] " dkwo
@ 2023-09-23 15:00 ` dkwo
2023-09-23 20:59 ` [PR PATCH] [Updated] " dkwo
` (44 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-09-23 15:00 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 150 bytes --]
New review comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#discussion_r1335024611
Comment:
Done.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (17 preceding siblings ...)
2023-09-23 15:00 ` [PR REVIEW] " dkwo
@ 2023-09-23 20:59 ` dkwo
2023-09-23 21:00 ` dkwo
` (43 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-09-23 20:59 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 524 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update to 0.11, patch, add kernel hook
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 4321 bytes --]
From 94a539680962cecde6f0f9ab75d9c473877ab252 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: update to 0.11, patch, add kernel hooks
---
srcpkgs/sbctl/files/kernel-hook-postinst | 17 +++++++++++++++++
srcpkgs/sbctl/files/kernel-hook-postrm | 17 +++++++++++++++++
srcpkgs/sbctl/files/kernel-hook.confd | 3 +++
srcpkgs/sbctl/patches/keyusage.patch | 17 +++++++++++++++++
srcpkgs/sbctl/template | 9 ++++++---
5 files changed, 60 insertions(+), 3 deletions(-)
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postinst
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postrm
create mode 100644 srcpkgs/sbctl/files/kernel-hook.confd
create mode 100644 srcpkgs/sbctl/patches/keyusage.patch
diff --git a/srcpkgs/sbctl/files/kernel-hook-postinst b/srcpkgs/sbctl/files/kernel-hook-postinst
new file mode 100644
index 0000000000000..c49ece0d0bedb
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postinst
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-install hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook-postrm b/srcpkgs/sbctl/files/kernel-hook-postrm
new file mode 100644
index 0000000000000..2fe43327ef72f
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postrm
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-remove hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl rm boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl rm boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook.confd b/srcpkgs/sbctl/files/kernel-hook.confd
new file mode 100644
index 0000000000000..59a52c91c7de2
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook.confd
@@ -0,0 +1,3 @@
+# Options for the kernel hook script installed by the sbctl package.
+# SBCTL_SIGN_KERNEL=yes
+# To let sbctl sign new kernel images, set it to 'yes'
diff --git a/srcpkgs/sbctl/patches/keyusage.patch b/srcpkgs/sbctl/patches/keyusage.patch
new file mode 100644
index 0000000000000..cf2d33ef91205
--- /dev/null
+++ b/srcpkgs/sbctl/patches/keyusage.patch
@@ -0,0 +1,17 @@
+omit the keyUsage bitfield, so that the certificate is accepted by the
+firmware of certain thinkpad laptops
+
+fixes https://github.com/Foxboron/sbctl/issues/102
+
+diff --git a/keys.go b/keys.go
+index ffc7858..61c2db6 100644
+--- a/keys.go
++++ b/keys.go
+@@ -58,7 +58,6 @@
+ SignatureAlgorithm: x509.SHA256WithRSA,
+ NotBefore: time.Now(),
+ NotAfter: time.Now().AddDate(5, 0, 0),
+- KeyUsage: x509.KeyUsageDigitalSignature,
+ Subject: pkix.Name{
+ Country: []string{name},
+ CommonName: name,
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d..ce09dbede1835 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,7 +1,7 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.11
+revision=1
build_style=go
go_import_path="github.com/foxboron/sbctl"
hostmakedepends="asciidoc"
@@ -10,7 +10,7 @@ maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=9709c912ac38cac6afbf024588ca1b341c1a9b5a29c4c575d2863fe2ad5aed75
do_build() {
make
@@ -23,4 +23,7 @@ do_install() {
post_install() {
vlicense LICENSE
+ vinstall ${FILESDIR}/kernel-hook-postinst 744 etc/kernel.d/post-install 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook-postrm 744 etc/kernel.d/post-remove 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook.confd 644 etc/default sbctl-kernel-hook
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (18 preceding siblings ...)
2023-09-23 20:59 ` [PR PATCH] [Updated] " dkwo
@ 2023-09-23 21:00 ` dkwo
2023-10-11 18:48 ` dkwo
` (42 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-09-23 21:00 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 173 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1732408279
Comment:
added a post-removal hook as well.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (19 preceding siblings ...)
2023-09-23 21:00 ` dkwo
@ 2023-10-11 18:48 ` dkwo
2023-10-26 22:08 ` [PR PATCH] [Updated] " dkwo
` (41 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-10-11 18:48 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 158 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1758304136
Comment:
can this be merged?
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (20 preceding siblings ...)
2023-10-11 18:48 ` dkwo
@ 2023-10-26 22:08 ` dkwo
2023-10-26 22:13 ` dkwo
` (40 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-10-26 22:08 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 524 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update to 0.11, patch, add kernel hook
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 6506 bytes --]
From 8dc6327910cab4ffb7d516cabb680e51951e391b Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH 1/2] sbctl: update to 0.11, patch, add kernel hooks
---
srcpkgs/sbctl/files/kernel-hook-postinst | 17 +++++++++++++++++
srcpkgs/sbctl/files/kernel-hook-postrm | 17 +++++++++++++++++
srcpkgs/sbctl/files/kernel-hook.confd | 3 +++
srcpkgs/sbctl/patches/keyusage.patch | 17 +++++++++++++++++
srcpkgs/sbctl/template | 9 ++++++---
5 files changed, 60 insertions(+), 3 deletions(-)
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postinst
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postrm
create mode 100644 srcpkgs/sbctl/files/kernel-hook.confd
create mode 100644 srcpkgs/sbctl/patches/keyusage.patch
diff --git a/srcpkgs/sbctl/files/kernel-hook-postinst b/srcpkgs/sbctl/files/kernel-hook-postinst
new file mode 100644
index 0000000000000..c49ece0d0bedb
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postinst
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-install hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook-postrm b/srcpkgs/sbctl/files/kernel-hook-postrm
new file mode 100644
index 0000000000000..2fe43327ef72f
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postrm
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-remove hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl rm boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl rm boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook.confd b/srcpkgs/sbctl/files/kernel-hook.confd
new file mode 100644
index 0000000000000..59a52c91c7de2
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook.confd
@@ -0,0 +1,3 @@
+# Options for the kernel hook script installed by the sbctl package.
+# SBCTL_SIGN_KERNEL=yes
+# To let sbctl sign new kernel images, set it to 'yes'
diff --git a/srcpkgs/sbctl/patches/keyusage.patch b/srcpkgs/sbctl/patches/keyusage.patch
new file mode 100644
index 0000000000000..cf2d33ef91205
--- /dev/null
+++ b/srcpkgs/sbctl/patches/keyusage.patch
@@ -0,0 +1,17 @@
+omit the keyUsage bitfield, so that the certificate is accepted by the
+firmware of certain thinkpad laptops
+
+fixes https://github.com/Foxboron/sbctl/issues/102
+
+diff --git a/keys.go b/keys.go
+index ffc7858..61c2db6 100644
+--- a/keys.go
++++ b/keys.go
+@@ -58,7 +58,6 @@
+ SignatureAlgorithm: x509.SHA256WithRSA,
+ NotBefore: time.Now(),
+ NotAfter: time.Now().AddDate(5, 0, 0),
+- KeyUsage: x509.KeyUsageDigitalSignature,
+ Subject: pkix.Name{
+ Country: []string{name},
+ CommonName: name,
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d..ce09dbede1835 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,7 +1,7 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.11
+revision=1
build_style=go
go_import_path="github.com/foxboron/sbctl"
hostmakedepends="asciidoc"
@@ -10,7 +10,7 @@ maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=9709c912ac38cac6afbf024588ca1b341c1a9b5a29c4c575d2863fe2ad5aed75
do_build() {
make
@@ -23,4 +23,7 @@ do_install() {
post_install() {
vlicense LICENSE
+ vinstall ${FILESDIR}/kernel-hook-postinst 744 etc/kernel.d/post-install 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook-postrm 744 etc/kernel.d/post-remove 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook.confd 644 etc/default sbctl-kernel-hook
}
From 86f9c0d61218763cf61b8329d70e61e339cf4213 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Thu, 26 Oct 2023 18:06:12 -0400
Subject: [PATCH 2/2] sbctl: update to 0.12
---
srcpkgs/sbctl/template | 27 +++++++++++++++++++++------
1 file changed, 21 insertions(+), 6 deletions(-)
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index ce09dbede1835..1afb25512e35c 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,28 +1,43 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.11
+version=0.12
revision=1
build_style=go
go_import_path="github.com/foxboron/sbctl"
+go_package="${go_import_path}/cmd/sbctl"
hostmakedepends="asciidoc"
short_desc="Secure Boot key manager"
maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=9709c912ac38cac6afbf024588ca1b341c1a9b5a29c4c575d2863fe2ad5aed75
+checksum=38f97a4e47e9ff4e175f444833c6877a26b6d78308916e704edee0f06b3057eb
do_build() {
- make
+ # want -buildmode=pie -trimpath
+ go install -p "$XBPS_MAKEJOBS" -mod="${go_mod_mode}" -modcacherw -buildmode=pie -trimpath -v -tags "${go_build_tags}" -ldflags "${go_ldflags}" ${go_package}
}
-do_install() {
- make install PREFIX=/usr DESTDIR=$DESTDIR
- # TODO: install completions, sbctl tries to run lsblk when generating them
+post_build() {
+ make man
+ # builds it again, to generate the completions
+ make completions
+}
+
+do_check() {
+ go test -v ./...
}
post_install() {
+ vcompletion contrib/completions/bash-completion/completions/sbctl bash
+ vcompletion contrib/completions/zsh/site-functions/_sbctl zsh
+ vcompletion contrib/completions/fish/vendor_completions.d/sbctl.fish fish
+
+ vinstall contrib/kernel-install/91-sbctl.install 755 usr/lib/kernel/install.d/91-sbctl.install
+
+ vman docs/sbctl.8
vlicense LICENSE
+
vinstall ${FILESDIR}/kernel-hook-postinst 744 etc/kernel.d/post-install 40-sbctl
vinstall ${FILESDIR}/kernel-hook-postrm 744 etc/kernel.d/post-remove 40-sbctl
vinstall ${FILESDIR}/kernel-hook.confd 644 etc/default sbctl-kernel-hook
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (21 preceding siblings ...)
2023-10-26 22:08 ` [PR PATCH] [Updated] " dkwo
@ 2023-10-26 22:13 ` dkwo
2023-10-27 19:50 ` [PR PATCH] [Updated] " dkwo
` (39 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-10-26 22:13 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 206 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1781963009
Comment:
update to 0.12, enable pie (is there a smarter way?), enable checks
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (22 preceding siblings ...)
2023-10-26 22:13 ` dkwo
@ 2023-10-27 19:50 ` dkwo
2023-10-27 20:22 ` dkwo
` (38 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-10-27 19:50 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 524 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update to 0.11, patch, add kernel hook
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 4928 bytes --]
From 57d9eff2997944e221eb40ab1b55e30271a75de2 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: run checks, patch, add kernel hooks, update to 0.12
---
srcpkgs/sbctl/files/kernel-hook-postinst | 17 ++++++++++++++
srcpkgs/sbctl/files/kernel-hook-postrm | 17 ++++++++++++++
srcpkgs/sbctl/files/kernel-hook.confd | 3 +++
srcpkgs/sbctl/patches/keyusage.patch | 17 ++++++++++++++
srcpkgs/sbctl/template | 30 +++++++++++++++++-------
5 files changed, 76 insertions(+), 8 deletions(-)
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postinst
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postrm
create mode 100644 srcpkgs/sbctl/files/kernel-hook.confd
create mode 100644 srcpkgs/sbctl/patches/keyusage.patch
diff --git a/srcpkgs/sbctl/files/kernel-hook-postinst b/srcpkgs/sbctl/files/kernel-hook-postinst
new file mode 100644
index 0000000000000..c49ece0d0bedb
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postinst
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-install hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook-postrm b/srcpkgs/sbctl/files/kernel-hook-postrm
new file mode 100644
index 0000000000000..2fe43327ef72f
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postrm
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-remove hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl rm boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl rm boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook.confd b/srcpkgs/sbctl/files/kernel-hook.confd
new file mode 100644
index 0000000000000..59a52c91c7de2
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook.confd
@@ -0,0 +1,3 @@
+# Options for the kernel hook script installed by the sbctl package.
+# SBCTL_SIGN_KERNEL=yes
+# To let sbctl sign new kernel images, set it to 'yes'
diff --git a/srcpkgs/sbctl/patches/keyusage.patch b/srcpkgs/sbctl/patches/keyusage.patch
new file mode 100644
index 0000000000000..cf2d33ef91205
--- /dev/null
+++ b/srcpkgs/sbctl/patches/keyusage.patch
@@ -0,0 +1,17 @@
+omit the keyUsage bitfield, so that the certificate is accepted by the
+firmware of certain thinkpad laptops
+
+fixes https://github.com/Foxboron/sbctl/issues/102
+
+diff --git a/keys.go b/keys.go
+index ffc7858..61c2db6 100644
+--- a/keys.go
++++ b/keys.go
+@@ -58,7 +58,6 @@
+ SignatureAlgorithm: x509.SHA256WithRSA,
+ NotBefore: time.Now(),
+ NotAfter: time.Now().AddDate(5, 0, 0),
+- KeyUsage: x509.KeyUsageDigitalSignature,
+ Subject: pkix.Name{
+ Country: []string{name},
+ CommonName: name,
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d..7568cc6d0f2c9 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,26 +1,40 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.12
+revision=1
build_style=go
go_import_path="github.com/foxboron/sbctl"
+go_package="${go_import_path}/cmd/sbctl"
hostmakedepends="asciidoc"
short_desc="Secure Boot key manager"
maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=38f97a4e47e9ff4e175f444833c6877a26b6d78308916e704edee0f06b3057eb
+export GOFLAGS="-buildmode=pie"
-do_build() {
- make
+post_build() {
+ make man
+ for _comp in bash zsh fish; do
+ ./_build-sbctl-xbps/bin/sbctl completion ${_comp} > sbctl.${_comp}
+ done
}
-do_install() {
- make install PREFIX=/usr DESTDIR=$DESTDIR
- # TODO: install completions, sbctl tries to run lsblk when generating them
+do_check() {
+ go test -v ./...
}
post_install() {
+ vcompletion sbctl.bash bash
+ vcompletion sbctl.zsh zsh
+ vcompletion sbctl.fish fish
+ vinstall contrib/kernel-install/91-sbctl.install 755 usr/lib/kernel/install.d/91-sbctl.install
+
+ vman docs/sbctl.8
vlicense LICENSE
+
+ vinstall ${FILESDIR}/kernel-hook-postinst 744 etc/kernel.d/post-install 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook-postrm 744 etc/kernel.d/post-remove 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook.confd 644 etc/default sbctl-kernel-hook
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update to 0.11, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (23 preceding siblings ...)
2023-10-27 19:50 ` [PR PATCH] [Updated] " dkwo
@ 2023-10-27 20:22 ` dkwo
2023-10-27 20:25 ` sbctl: update to 0.12, " dkwo
` (37 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-10-27 20:22 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 524 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update to 0.11, patch, add kernel hook
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 4907 bytes --]
From bdde2d4273faa868d42e18df302de25a6533fe76 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: run checks, patch, add kernel hooks, update to 0.12
---
srcpkgs/sbctl/files/kernel-hook-postinst | 17 +++++++++++++
srcpkgs/sbctl/files/kernel-hook-postrm | 17 +++++++++++++
srcpkgs/sbctl/files/kernel-hook.confd | 3 +++
srcpkgs/sbctl/patches/keyusage.patch | 17 +++++++++++++
srcpkgs/sbctl/template | 32 ++++++++++++++++--------
5 files changed, 76 insertions(+), 10 deletions(-)
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postinst
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postrm
create mode 100644 srcpkgs/sbctl/files/kernel-hook.confd
create mode 100644 srcpkgs/sbctl/patches/keyusage.patch
diff --git a/srcpkgs/sbctl/files/kernel-hook-postinst b/srcpkgs/sbctl/files/kernel-hook-postinst
new file mode 100644
index 0000000000000..c49ece0d0bedb
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postinst
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-install hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook-postrm b/srcpkgs/sbctl/files/kernel-hook-postrm
new file mode 100644
index 0000000000000..2fe43327ef72f
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postrm
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-remove hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl rm boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl rm boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook.confd b/srcpkgs/sbctl/files/kernel-hook.confd
new file mode 100644
index 0000000000000..59a52c91c7de2
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook.confd
@@ -0,0 +1,3 @@
+# Options for the kernel hook script installed by the sbctl package.
+# SBCTL_SIGN_KERNEL=yes
+# To let sbctl sign new kernel images, set it to 'yes'
diff --git a/srcpkgs/sbctl/patches/keyusage.patch b/srcpkgs/sbctl/patches/keyusage.patch
new file mode 100644
index 0000000000000..cf2d33ef91205
--- /dev/null
+++ b/srcpkgs/sbctl/patches/keyusage.patch
@@ -0,0 +1,17 @@
+omit the keyUsage bitfield, so that the certificate is accepted by the
+firmware of certain thinkpad laptops
+
+fixes https://github.com/Foxboron/sbctl/issues/102
+
+diff --git a/keys.go b/keys.go
+index ffc7858..61c2db6 100644
+--- a/keys.go
++++ b/keys.go
+@@ -58,7 +58,6 @@
+ SignatureAlgorithm: x509.SHA256WithRSA,
+ NotBefore: time.Now(),
+ NotAfter: time.Now().AddDate(5, 0, 0),
+- KeyUsage: x509.KeyUsageDigitalSignature,
+ Subject: pkix.Name{
+ Country: []string{name},
+ CommonName: name,
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d..312a105b3d203 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,26 +1,38 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.12
+revision=1
build_style=go
+build_helper=qemu
go_import_path="github.com/foxboron/sbctl"
+go_package="${go_import_path}/cmd/sbctl"
hostmakedepends="asciidoc"
short_desc="Secure Boot key manager"
maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=38f97a4e47e9ff4e175f444833c6877a26b6d78308916e704edee0f06b3057eb
+export GOFLAGS="-buildmode=pie"
-do_build() {
- make
-}
-
-do_install() {
- make install PREFIX=/usr DESTDIR=$DESTDIR
- # TODO: install completions, sbctl tries to run lsblk when generating them
+do_check() {
+ go test -v ./...
}
post_install() {
+ make man
+ vman docs/sbctl.8
+
+ SBCTL="${DESTDIR}/usr/bin/sbctl"
+ for shell in bash fish zsh; do
+ vtargetrun ${SBCTL} completion ${shell} > sbctl.${shell}
+ vcompletion sbctl.${shell} ${shell}
+ done
+
+ vinstall contrib/kernel-install/91-sbctl.install 755 usr/lib/kernel/install.d/91-sbctl.install
+ vinstall ${FILESDIR}/kernel-hook-postinst 744 etc/kernel.d/post-install 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook-postrm 744 etc/kernel.d/post-remove 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook.confd 644 etc/default sbctl-kernel-hook
+
vlicense LICENSE
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.12, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (24 preceding siblings ...)
2023-10-27 20:22 ` dkwo
@ 2023-10-27 20:25 ` dkwo
2023-10-27 20:25 ` dkwo
` (36 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-10-27 20:25 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 180 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1781963009
Comment:
update to 0.12, enable pie, enable checks
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.12, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (25 preceding siblings ...)
2023-10-27 20:25 ` sbctl: update to 0.12, " dkwo
@ 2023-10-27 20:25 ` dkwo
2023-11-02 14:54 ` dkwo
` (35 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-10-27 20:25 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 158 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1783465154
Comment:
ready to merge, imo
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.12, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (26 preceding siblings ...)
2023-10-27 20:25 ` dkwo
@ 2023-11-02 14:54 ` dkwo
2023-12-21 9:13 ` [PR PATCH] [Updated] " dkwo
` (34 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-11-02 14:54 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 163 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1790890432
Comment:
patch is merged upstream
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update to 0.12, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (27 preceding siblings ...)
2023-11-02 14:54 ` dkwo
@ 2023-12-21 9:13 ` dkwo
2023-12-27 16:18 ` dkwo
` (33 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-12-21 9:13 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 524 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update to 0.12, patch, add kernel hook
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 4907 bytes --]
From 59e8f7579c7d8f74e49534a63919636ff890fcf2 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: run checks, patch, add kernel hooks, update to 0.12
---
srcpkgs/sbctl/files/kernel-hook-postinst | 17 +++++++++++++
srcpkgs/sbctl/files/kernel-hook-postrm | 17 +++++++++++++
srcpkgs/sbctl/files/kernel-hook.confd | 3 +++
srcpkgs/sbctl/patches/keyusage.patch | 17 +++++++++++++
srcpkgs/sbctl/template | 32 ++++++++++++++++--------
5 files changed, 76 insertions(+), 10 deletions(-)
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postinst
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postrm
create mode 100644 srcpkgs/sbctl/files/kernel-hook.confd
create mode 100644 srcpkgs/sbctl/patches/keyusage.patch
diff --git a/srcpkgs/sbctl/files/kernel-hook-postinst b/srcpkgs/sbctl/files/kernel-hook-postinst
new file mode 100644
index 0000000000000..c49ece0d0bedb
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postinst
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-install hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook-postrm b/srcpkgs/sbctl/files/kernel-hook-postrm
new file mode 100644
index 0000000000000..2fe43327ef72f
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postrm
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-remove hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl rm boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl rm boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook.confd b/srcpkgs/sbctl/files/kernel-hook.confd
new file mode 100644
index 0000000000000..59a52c91c7de2
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook.confd
@@ -0,0 +1,3 @@
+# Options for the kernel hook script installed by the sbctl package.
+# SBCTL_SIGN_KERNEL=yes
+# To let sbctl sign new kernel images, set it to 'yes'
diff --git a/srcpkgs/sbctl/patches/keyusage.patch b/srcpkgs/sbctl/patches/keyusage.patch
new file mode 100644
index 0000000000000..cf2d33ef91205
--- /dev/null
+++ b/srcpkgs/sbctl/patches/keyusage.patch
@@ -0,0 +1,17 @@
+omit the keyUsage bitfield, so that the certificate is accepted by the
+firmware of certain thinkpad laptops
+
+fixes https://github.com/Foxboron/sbctl/issues/102
+
+diff --git a/keys.go b/keys.go
+index ffc7858..61c2db6 100644
+--- a/keys.go
++++ b/keys.go
+@@ -58,7 +58,6 @@
+ SignatureAlgorithm: x509.SHA256WithRSA,
+ NotBefore: time.Now(),
+ NotAfter: time.Now().AddDate(5, 0, 0),
+- KeyUsage: x509.KeyUsageDigitalSignature,
+ Subject: pkix.Name{
+ Country: []string{name},
+ CommonName: name,
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d..312a105b3d203 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,26 +1,38 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.12
+revision=1
build_style=go
+build_helper=qemu
go_import_path="github.com/foxboron/sbctl"
+go_package="${go_import_path}/cmd/sbctl"
hostmakedepends="asciidoc"
short_desc="Secure Boot key manager"
maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=38f97a4e47e9ff4e175f444833c6877a26b6d78308916e704edee0f06b3057eb
+export GOFLAGS="-buildmode=pie"
-do_build() {
- make
-}
-
-do_install() {
- make install PREFIX=/usr DESTDIR=$DESTDIR
- # TODO: install completions, sbctl tries to run lsblk when generating them
+do_check() {
+ go test -v ./...
}
post_install() {
+ make man
+ vman docs/sbctl.8
+
+ SBCTL="${DESTDIR}/usr/bin/sbctl"
+ for shell in bash fish zsh; do
+ vtargetrun ${SBCTL} completion ${shell} > sbctl.${shell}
+ vcompletion sbctl.${shell} ${shell}
+ done
+
+ vinstall contrib/kernel-install/91-sbctl.install 755 usr/lib/kernel/install.d/91-sbctl.install
+ vinstall ${FILESDIR}/kernel-hook-postinst 744 etc/kernel.d/post-install 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook-postrm 744 etc/kernel.d/post-remove 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook.confd 644 etc/default sbctl-kernel-hook
+
vlicense LICENSE
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update to 0.12, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (28 preceding siblings ...)
2023-12-21 9:13 ` [PR PATCH] [Updated] " dkwo
@ 2023-12-27 16:18 ` dkwo
2023-12-27 18:41 ` dkwo
` (32 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-12-27 16:18 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 524 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update to 0.12, patch, add kernel hook
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 4017 bytes --]
From dd2de78ff1557fe3881bcc4242d27b15f2f4e4bc Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: run checks, add kernel hooks, update to 0.13
---
srcpkgs/sbctl/files/kernel-hook-postinst | 17 +++++++++++++
srcpkgs/sbctl/files/kernel-hook-postrm | 17 +++++++++++++
srcpkgs/sbctl/files/kernel-hook.confd | 3 +++
srcpkgs/sbctl/template | 32 ++++++++++++++++--------
4 files changed, 59 insertions(+), 10 deletions(-)
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postinst
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postrm
create mode 100644 srcpkgs/sbctl/files/kernel-hook.confd
diff --git a/srcpkgs/sbctl/files/kernel-hook-postinst b/srcpkgs/sbctl/files/kernel-hook-postinst
new file mode 100644
index 0000000000000..c49ece0d0bedb
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postinst
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-install hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook-postrm b/srcpkgs/sbctl/files/kernel-hook-postrm
new file mode 100644
index 0000000000000..2fe43327ef72f
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postrm
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-remove hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl rm boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl rm boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook.confd b/srcpkgs/sbctl/files/kernel-hook.confd
new file mode 100644
index 0000000000000..59a52c91c7de2
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook.confd
@@ -0,0 +1,3 @@
+# Options for the kernel hook script installed by the sbctl package.
+# SBCTL_SIGN_KERNEL=yes
+# To let sbctl sign new kernel images, set it to 'yes'
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d..fc40fd8997300 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,26 +1,38 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.13
+revision=1
build_style=go
+build_helper=qemu
go_import_path="github.com/foxboron/sbctl"
+go_package="${go_import_path}/cmd/sbctl"
hostmakedepends="asciidoc"
short_desc="Secure Boot key manager"
maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=3d5b396985eabea4960377dbf81dbd891db473af20284edc7db1b4e891368c02
+export GOFLAGS="-buildmode=pie"
-do_build() {
- make
-}
-
-do_install() {
- make install PREFIX=/usr DESTDIR=$DESTDIR
- # TODO: install completions, sbctl tries to run lsblk when generating them
+do_check() {
+ go test -v ./...
}
post_install() {
+ make man
+ vman docs/sbctl.8
+
+ SBCTL="${DESTDIR}/usr/bin/sbctl"
+ for shell in bash fish zsh; do
+ vtargetrun ${SBCTL} completion ${shell} > sbctl.${shell}
+ vcompletion sbctl.${shell} ${shell}
+ done
+
+ vinstall contrib/kernel-install/91-sbctl.install 755 usr/lib/kernel/install.d/91-sbctl.install
+ vinstall ${FILESDIR}/kernel-hook-postinst 744 etc/kernel.d/post-install 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook-postrm 744 etc/kernel.d/post-remove 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook.confd 644 etc/default sbctl-kernel-hook
+
vlicense LICENSE
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update to 0.12, patch, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (29 preceding siblings ...)
2023-12-27 16:18 ` dkwo
@ 2023-12-27 18:41 ` dkwo
2024-01-07 14:17 ` [PR PATCH] [Updated] sbctl: update, " dkwo
` (31 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2023-12-27 18:41 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 180 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1870543197
Comment:
updated to 0.13, which includes my patch.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (30 preceding siblings ...)
2023-12-27 18:41 ` dkwo
@ 2024-01-07 14:17 ` dkwo
2024-01-16 17:03 ` dkwo
` (30 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-01-07 14:17 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 509 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update, add kernel hook
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 4017 bytes --]
From 264cd4fc2901a592fc7a3afa6adcedca96e1da16 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: run checks, add kernel hooks, update to 0.13
---
srcpkgs/sbctl/files/kernel-hook-postinst | 17 +++++++++++++
srcpkgs/sbctl/files/kernel-hook-postrm | 17 +++++++++++++
srcpkgs/sbctl/files/kernel-hook.confd | 3 +++
srcpkgs/sbctl/template | 32 ++++++++++++++++--------
4 files changed, 59 insertions(+), 10 deletions(-)
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postinst
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postrm
create mode 100644 srcpkgs/sbctl/files/kernel-hook.confd
diff --git a/srcpkgs/sbctl/files/kernel-hook-postinst b/srcpkgs/sbctl/files/kernel-hook-postinst
new file mode 100644
index 0000000000000..c49ece0d0bedb
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postinst
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-install hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook-postrm b/srcpkgs/sbctl/files/kernel-hook-postrm
new file mode 100644
index 0000000000000..2fe43327ef72f
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postrm
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-remove hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl rm boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl rm boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook.confd b/srcpkgs/sbctl/files/kernel-hook.confd
new file mode 100644
index 0000000000000..59a52c91c7de2
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook.confd
@@ -0,0 +1,3 @@
+# Options for the kernel hook script installed by the sbctl package.
+# SBCTL_SIGN_KERNEL=yes
+# To let sbctl sign new kernel images, set it to 'yes'
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d..fc40fd8997300 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,26 +1,38 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.13
+revision=1
build_style=go
+build_helper=qemu
go_import_path="github.com/foxboron/sbctl"
+go_package="${go_import_path}/cmd/sbctl"
hostmakedepends="asciidoc"
short_desc="Secure Boot key manager"
maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=3d5b396985eabea4960377dbf81dbd891db473af20284edc7db1b4e891368c02
+export GOFLAGS="-buildmode=pie"
-do_build() {
- make
-}
-
-do_install() {
- make install PREFIX=/usr DESTDIR=$DESTDIR
- # TODO: install completions, sbctl tries to run lsblk when generating them
+do_check() {
+ go test -v ./...
}
post_install() {
+ make man
+ vman docs/sbctl.8
+
+ SBCTL="${DESTDIR}/usr/bin/sbctl"
+ for shell in bash fish zsh; do
+ vtargetrun ${SBCTL} completion ${shell} > sbctl.${shell}
+ vcompletion sbctl.${shell} ${shell}
+ done
+
+ vinstall contrib/kernel-install/91-sbctl.install 755 usr/lib/kernel/install.d/91-sbctl.install
+ vinstall ${FILESDIR}/kernel-hook-postinst 744 etc/kernel.d/post-install 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook-postrm 744 etc/kernel.d/post-remove 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook.confd 644 etc/default sbctl-kernel-hook
+
vlicense LICENSE
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (31 preceding siblings ...)
2024-01-07 14:17 ` [PR PATCH] [Updated] sbctl: update, " dkwo
@ 2024-01-16 17:03 ` dkwo
2024-01-16 22:41 ` dkwo
` (29 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-01-16 17:03 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 207 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1894153232
Comment:
should i just drop the kernel hooks for now, and just do the update?
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (32 preceding siblings ...)
2024-01-16 17:03 ` dkwo
@ 2024-01-16 22:41 ` dkwo
2024-01-16 22:42 ` [PR PATCH] [Updated] " dkwo
` (28 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-01-16 22:41 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 326 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1894637024
Comment:
- remove the postrm hook, which does not work
- we currently install (and also in my prior pr) /usr/lib/kernel/install.d/91-sbctl.install, but this is arch/systemd specific, so remove it
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (33 preceding siblings ...)
2024-01-16 22:41 ` dkwo
@ 2024-01-16 22:42 ` dkwo
2024-01-25 19:38 ` dkwo
` (27 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-01-16 22:42 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 509 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update, add kernel hook
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 3070 bytes --]
From 95c81597554f61c0afb26547e1defcc122db8090 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: run checks, add kernel hook, update to 0.13
---
srcpkgs/sbctl/files/kernel-hook-postinst | 17 ++++++++++++++
srcpkgs/sbctl/files/kernel-hook.confd | 3 +++
srcpkgs/sbctl/template | 29 ++++++++++++++++--------
3 files changed, 39 insertions(+), 10 deletions(-)
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postinst
create mode 100644 srcpkgs/sbctl/files/kernel-hook.confd
diff --git a/srcpkgs/sbctl/files/kernel-hook-postinst b/srcpkgs/sbctl/files/kernel-hook-postinst
new file mode 100644
index 00000000000000..c49ece0d0bedb7
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postinst
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-install hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook.confd b/srcpkgs/sbctl/files/kernel-hook.confd
new file mode 100644
index 00000000000000..59a52c91c7de20
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook.confd
@@ -0,0 +1,3 @@
+# Options for the kernel hook script installed by the sbctl package.
+# SBCTL_SIGN_KERNEL=yes
+# To let sbctl sign new kernel images, set it to 'yes'
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d7..a1b150380215e2 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,26 +1,35 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.13
+revision=1
build_style=go
+build_helper=qemu
go_import_path="github.com/foxboron/sbctl"
+go_package="${go_import_path}/cmd/sbctl"
hostmakedepends="asciidoc"
short_desc="Secure Boot key manager"
maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=3d5b396985eabea4960377dbf81dbd891db473af20284edc7db1b4e891368c02
+export GOFLAGS="-buildmode=pie"
-do_build() {
- make
-}
-
-do_install() {
- make install PREFIX=/usr DESTDIR=$DESTDIR
- # TODO: install completions, sbctl tries to run lsblk when generating them
+do_check() {
+ go test -v ./...
}
post_install() {
+ make man
+ vman docs/sbctl.8
vlicense LICENSE
+
+ SBCTL="${DESTDIR}/usr/bin/sbctl"
+ for shell in bash fish zsh; do
+ vtargetrun ${SBCTL} completion ${shell} > sbctl.${shell}
+ vcompletion sbctl.${shell} ${shell}
+ done
+
+ vinstall ${FILESDIR}/kernel-hook-postinst 744 etc/kernel.d/post-install 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook.confd 644 etc/default sbctl-kernel-hook
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (34 preceding siblings ...)
2024-01-16 22:42 ` [PR PATCH] [Updated] " dkwo
@ 2024-01-25 19:38 ` dkwo
2024-01-25 19:40 ` dkwo
` (26 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-01-25 19:38 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 509 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update, add kernel hook
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 3162 bytes --]
From e03b850cc90dc45d6bfa46a745bb5a401aeae3bd Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: run checks, add kernel hook, update to 0.13, don't
write keys at /usr/share
---
srcpkgs/sbctl/files/kernel-hook-postinst | 17 ++++++++++++++
srcpkgs/sbctl/files/kernel-hook.confd | 3 +++
srcpkgs/sbctl/template | 30 ++++++++++++++++--------
3 files changed, 40 insertions(+), 10 deletions(-)
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postinst
create mode 100644 srcpkgs/sbctl/files/kernel-hook.confd
diff --git a/srcpkgs/sbctl/files/kernel-hook-postinst b/srcpkgs/sbctl/files/kernel-hook-postinst
new file mode 100644
index 0000000000000..c49ece0d0bedb
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postinst
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-install hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook.confd b/srcpkgs/sbctl/files/kernel-hook.confd
new file mode 100644
index 0000000000000..59a52c91c7de2
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook.confd
@@ -0,0 +1,3 @@
+# Options for the kernel hook script installed by the sbctl package.
+# SBCTL_SIGN_KERNEL=yes
+# To let sbctl sign new kernel images, set it to 'yes'
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d..484cb0fd23dd0 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,26 +1,36 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.13
+revision=1
build_style=go
+build_helper=qemu
go_import_path="github.com/foxboron/sbctl"
+go_package="${go_import_path}/cmd/sbctl"
+go_ldflags="-X ${go_import_path}.DatabasePath=/etc/secureboot"
hostmakedepends="asciidoc"
short_desc="Secure Boot key manager"
maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=3d5b396985eabea4960377dbf81dbd891db473af20284edc7db1b4e891368c02
+export GOFLAGS="-buildmode=pie"
-do_build() {
- make
-}
-
-do_install() {
- make install PREFIX=/usr DESTDIR=$DESTDIR
- # TODO: install completions, sbctl tries to run lsblk when generating them
+do_check() {
+ go test -v ./...
}
post_install() {
+ make man
+ vman docs/sbctl.8
vlicense LICENSE
+
+ SBCTL="${DESTDIR}/usr/bin/sbctl"
+ for shell in bash fish zsh; do
+ vtargetrun ${SBCTL} completion ${shell} > sbctl.${shell}
+ vcompletion sbctl.${shell} ${shell}
+ done
+
+ vinstall ${FILESDIR}/kernel-hook-postinst 744 etc/kernel.d/post-install 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook.confd 644 etc/default sbctl-kernel-hook
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (35 preceding siblings ...)
2024-01-25 19:38 ` dkwo
@ 2024-01-25 19:40 ` dkwo
2024-01-25 19:42 ` [PR PATCH] [Updated] " dkwo
` (25 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-01-25 19:40 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 261 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1910864674
Comment:
i realised the program by default writes key material to /usr/share.
make it use /etc/secureboot instead, via a go_ldlfag
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (36 preceding siblings ...)
2024-01-25 19:40 ` dkwo
@ 2024-01-25 19:42 ` dkwo
2024-01-25 19:46 ` dkwo
` (24 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-01-25 19:42 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 509 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update, add kernel hook
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 3241 bytes --]
From 38d745b89f772a48065c0f50bfcca96615a6b9d7 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: run checks, add kernel hook, update to 0.13, change
key loc
by default keys are at /usr/share/secureboot,
put them at /etc/secureboot instead via go_ldflag
---
srcpkgs/sbctl/files/kernel-hook-postinst | 17 ++++++++++++++
srcpkgs/sbctl/files/kernel-hook.confd | 3 +++
srcpkgs/sbctl/template | 30 ++++++++++++++++--------
3 files changed, 40 insertions(+), 10 deletions(-)
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postinst
create mode 100644 srcpkgs/sbctl/files/kernel-hook.confd
diff --git a/srcpkgs/sbctl/files/kernel-hook-postinst b/srcpkgs/sbctl/files/kernel-hook-postinst
new file mode 100644
index 0000000000000..c49ece0d0bedb
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postinst
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-install hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook.confd b/srcpkgs/sbctl/files/kernel-hook.confd
new file mode 100644
index 0000000000000..59a52c91c7de2
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook.confd
@@ -0,0 +1,3 @@
+# Options for the kernel hook script installed by the sbctl package.
+# SBCTL_SIGN_KERNEL=yes
+# To let sbctl sign new kernel images, set it to 'yes'
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d..484cb0fd23dd0 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,26 +1,36 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.13
+revision=1
build_style=go
+build_helper=qemu
go_import_path="github.com/foxboron/sbctl"
+go_package="${go_import_path}/cmd/sbctl"
+go_ldflags="-X ${go_import_path}.DatabasePath=/etc/secureboot"
hostmakedepends="asciidoc"
short_desc="Secure Boot key manager"
maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=3d5b396985eabea4960377dbf81dbd891db473af20284edc7db1b4e891368c02
+export GOFLAGS="-buildmode=pie"
-do_build() {
- make
-}
-
-do_install() {
- make install PREFIX=/usr DESTDIR=$DESTDIR
- # TODO: install completions, sbctl tries to run lsblk when generating them
+do_check() {
+ go test -v ./...
}
post_install() {
+ make man
+ vman docs/sbctl.8
vlicense LICENSE
+
+ SBCTL="${DESTDIR}/usr/bin/sbctl"
+ for shell in bash fish zsh; do
+ vtargetrun ${SBCTL} completion ${shell} > sbctl.${shell}
+ vcompletion sbctl.${shell} ${shell}
+ done
+
+ vinstall ${FILESDIR}/kernel-hook-postinst 744 etc/kernel.d/post-install 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook.confd 644 etc/default sbctl-kernel-hook
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (37 preceding siblings ...)
2024-01-25 19:42 ` [PR PATCH] [Updated] " dkwo
@ 2024-01-25 19:46 ` dkwo
2024-01-30 22:51 ` dkwo
` (23 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-01-25 19:46 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 254 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1910878553
Comment:
@Duncaen , anyone: this has sevaral improvements, has been running fine for some time. any chance it can be merged?
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (38 preceding siblings ...)
2024-01-25 19:46 ` dkwo
@ 2024-01-30 22:51 ` dkwo
2024-02-01 0:42 ` Duncaen
` (22 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-01-30 22:51 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 254 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1910878553
Comment:
@Duncaen , anyone: this has several improvements, has been running fine for some time. any chance it can be merged?
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (39 preceding siblings ...)
2024-01-30 22:51 ` dkwo
@ 2024-02-01 0:42 ` Duncaen
2024-02-01 0:43 ` Duncaen
` (21 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: Duncaen @ 2024-02-01 0:42 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 327 bytes --]
New comment by Duncaen on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1920261433
Comment:
> make it use /etc/secureboot instead, via a go_ldlfag
Sucks that its in `/usr/share`, but breaking already existing installs and diverting from the documentation doesn't seem right.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (40 preceding siblings ...)
2024-02-01 0:42 ` Duncaen
@ 2024-02-01 0:43 ` Duncaen
2024-02-01 0:43 ` Duncaen
` (20 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: Duncaen @ 2024-02-01 0:43 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 399 bytes --]
New comment by Duncaen on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1920261433
Comment:
> i realised the program by default writes key material to /usr/share.
> make it use /etc/secureboot instead, via a go_ldlfag
Sucks that its in `/usr/share`, but breaking already existing installs and diverting from the documentation doesn't seem right.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (41 preceding siblings ...)
2024-02-01 0:43 ` Duncaen
@ 2024-02-01 0:43 ` Duncaen
2024-02-01 16:06 ` dkwo
` (19 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: Duncaen @ 2024-02-01 0:43 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 462 bytes --]
New comment by Duncaen on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1920261433
Comment:
> i realised the program by default writes key material to /usr/share.
> make it use /etc/secureboot instead, via a go_ldlfag
Sucks that its in `/usr/share`, but breaking already existing installs and diverting from the documentation doesn't seem right.
Upstream issue https://github.com/Foxboron/sbctl/issues/57.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (42 preceding siblings ...)
2024-02-01 0:43 ` Duncaen
@ 2024-02-01 16:06 ` dkwo
2024-02-01 17:27 ` Duncaen
` (18 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-02-01 16:06 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 834 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1921669635
Comment:
i see your point, and i saw the issue (been there for years).
the help function in the sbctl program gets built correctly though, see e.g.
```
$ sbctl help create-keys
Create a set of secure boot signing keys
Usage:
sbctl create-keys [flags]
Flags:
-d, --database-path string location to create GUID file. defaults to /etc/secureboot (default "/etc/secureboot")
-e, --export string export file path. defaults to /etc/secureboot/keys (default "/etc/secureboot/keys")
-h, --help help for create-keys
```
i got this idea from nix pkgs.
would an install/update message be enough to warn the user?
otherwise i'll just remove this change for now.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (43 preceding siblings ...)
2024-02-01 16:06 ` dkwo
@ 2024-02-01 17:27 ` Duncaen
2024-02-02 22:36 ` [PR PATCH] [Updated] " dkwo
` (17 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: Duncaen @ 2024-02-01 17:27 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 540 bytes --]
New comment by Duncaen on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1921840760
Comment:
I would probably prefer to not change it now that it has been like this in the repos for 3 years and we don't know what upstream is going to do.
There are 3 scenarios:
- Upstream changes it to what we "patched" in, everythink good.
- Upstream changes it to something else, users have to manually change again.
- Upstream changes it and adds a fallback mechanism, we don't have to do anything.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (44 preceding siblings ...)
2024-02-01 17:27 ` Duncaen
@ 2024-02-02 22:36 ` dkwo
2024-02-02 22:40 ` dkwo
` (16 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-02-02 22:36 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 509 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update, add kernel hook
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 3164 bytes --]
From 17b7d3d9f9902efb8ce79db3ef8ee1b327b68186 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: run checks, add kernel hook, update to 0.13
---
srcpkgs/sbctl/files/kernel-hook-postinst | 17 +++++++++++++
srcpkgs/sbctl/files/kernel-hook.confd | 3 +++
srcpkgs/sbctl/template | 31 ++++++++++++++++--------
3 files changed, 41 insertions(+), 10 deletions(-)
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postinst
create mode 100644 srcpkgs/sbctl/files/kernel-hook.confd
diff --git a/srcpkgs/sbctl/files/kernel-hook-postinst b/srcpkgs/sbctl/files/kernel-hook-postinst
new file mode 100644
index 0000000000000..c49ece0d0bedb
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postinst
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-install hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook.confd b/srcpkgs/sbctl/files/kernel-hook.confd
new file mode 100644
index 0000000000000..59a52c91c7de2
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook.confd
@@ -0,0 +1,3 @@
+# Options for the kernel hook script installed by the sbctl package.
+# SBCTL_SIGN_KERNEL=yes
+# To let sbctl sign new kernel images, set it to 'yes'
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d..303e0ddd92001 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,26 +1,37 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.13
+revision=1
build_style=go
+build_helper=qemu
go_import_path="github.com/foxboron/sbctl"
+go_package="${go_import_path}/cmd/sbctl"
+# sbctl writes keys in /usr/share
+# go_ldflags="-X ${go_import_path}.DatabasePath=/etc/secureboot"
hostmakedepends="asciidoc"
short_desc="Secure Boot key manager"
maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=3d5b396985eabea4960377dbf81dbd891db473af20284edc7db1b4e891368c02
+export GOFLAGS="-buildmode=pie"
-do_build() {
- make
-}
-
-do_install() {
- make install PREFIX=/usr DESTDIR=$DESTDIR
- # TODO: install completions, sbctl tries to run lsblk when generating them
+do_check() {
+ go test -v ./...
}
post_install() {
+ make man
+ vman docs/sbctl.8
vlicense LICENSE
+
+ SBCTL="${DESTDIR}/usr/bin/sbctl"
+ for shell in bash fish zsh; do
+ vtargetrun ${SBCTL} completion ${shell} > sbctl.${shell}
+ vcompletion sbctl.${shell} ${shell}
+ done
+
+ vinstall ${FILESDIR}/kernel-hook-postinst 744 etc/kernel.d/post-install 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook.confd 644 etc/default sbctl-kernel-hook
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (45 preceding siblings ...)
2024-02-02 22:36 ` [PR PATCH] [Updated] " dkwo
@ 2024-02-02 22:40 ` dkwo
2024-02-02 22:40 ` dkwo
` (15 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-02-02 22:40 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 509 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update, add kernel hook
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 3180 bytes --]
From 72bfb415fd761bf75c514625af533b7233663c41 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: run checks, add kernel hook, update to 0.13
---
srcpkgs/sbctl/files/kernel-hook-postinst | 17 +++++++++++++
srcpkgs/sbctl/files/kernel-hook.confd | 3 +++
srcpkgs/sbctl/template | 31 ++++++++++++++++--------
3 files changed, 41 insertions(+), 10 deletions(-)
create mode 100644 srcpkgs/sbctl/files/kernel-hook-postinst
create mode 100644 srcpkgs/sbctl/files/kernel-hook.confd
diff --git a/srcpkgs/sbctl/files/kernel-hook-postinst b/srcpkgs/sbctl/files/kernel-hook-postinst
new file mode 100644
index 0000000000000..c49ece0d0bedb
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook-postinst
@@ -0,0 +1,17 @@
+#!/bin/sh
+#
+# Kernel post-install hook for sbctl.
+#
+# Arguments passed to this script: $1 pkgname, $2 version.
+#
+
+[ -x usr/bin/sbctl ] || exit 0
+
+PKGNAME="$1"
+VERSION="$2"
+
+. "${ROOTDIR}/etc/default/sbctl-kernel-hook"
+
+[ -z "${SBCTL_SIGN_KERNEL}" ] && exit 0
+[ -e "boot/vmlinuz-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinuz-${VERSION}
+[ -e "boot/vmlinux-${VERSION}" ] && usr/bin/sbctl sign -s boot/vmlinux-${VERSION}
diff --git a/srcpkgs/sbctl/files/kernel-hook.confd b/srcpkgs/sbctl/files/kernel-hook.confd
new file mode 100644
index 0000000000000..59a52c91c7de2
--- /dev/null
+++ b/srcpkgs/sbctl/files/kernel-hook.confd
@@ -0,0 +1,3 @@
+# Options for the kernel hook script installed by the sbctl package.
+# SBCTL_SIGN_KERNEL=yes
+# To let sbctl sign new kernel images, set it to 'yes'
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d..7fc4ec7aef086 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,26 +1,37 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.13
+revision=1
build_style=go
+build_helper=qemu
go_import_path="github.com/foxboron/sbctl"
+go_package="${go_import_path}/cmd/sbctl"
+# see https://github.com/Foxboron/sbctl/issues/57
+# go_ldflags="-X ${go_import_path}.DatabasePath=/etc/secureboot"
hostmakedepends="asciidoc"
short_desc="Secure Boot key manager"
maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=3d5b396985eabea4960377dbf81dbd891db473af20284edc7db1b4e891368c02
+export GOFLAGS="-buildmode=pie"
-do_build() {
- make
-}
-
-do_install() {
- make install PREFIX=/usr DESTDIR=$DESTDIR
- # TODO: install completions, sbctl tries to run lsblk when generating them
+do_check() {
+ go test -v ./...
}
post_install() {
+ make man
+ vman docs/sbctl.8
vlicense LICENSE
+
+ SBCTL="${DESTDIR}/usr/bin/sbctl"
+ for shell in bash fish zsh; do
+ vtargetrun ${SBCTL} completion ${shell} > sbctl.${shell}
+ vcompletion sbctl.${shell} ${shell}
+ done
+
+ vinstall ${FILESDIR}/kernel-hook-postinst 744 etc/kernel.d/post-install 40-sbctl
+ vinstall ${FILESDIR}/kernel-hook.confd 644 etc/default sbctl-kernel-hook
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (46 preceding siblings ...)
2024-02-02 22:40 ` dkwo
@ 2024-02-02 22:40 ` dkwo
2024-04-17 19:53 ` [PR PATCH] [Updated] " dkwo
` (14 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-02-02 22:40 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 202 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-1924822134
Comment:
Done. I commented out the option and left a comment for future.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (47 preceding siblings ...)
2024-02-02 22:40 ` dkwo
@ 2024-04-17 19:53 ` dkwo
2024-04-17 19:58 ` dkwo
` (13 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-04-17 19:53 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 509 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update, add kernel hook
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 1713 bytes --]
From d1223bca255c7f62056045672991cca956bd80a3 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: run checks, update to 0.13
---
srcpkgs/sbctl/template | 27 +++++++++++++++++----------
1 file changed, 17 insertions(+), 10 deletions(-)
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d7..ca0dc3edf6da2f 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,26 +1,33 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.13
+revision=1
build_style=go
+build_helper=qemu
go_import_path="github.com/foxboron/sbctl"
+go_package="${go_import_path}/cmd/sbctl"
+# see https://github.com/Foxboron/sbctl/issues/57
+# go_ldflags="-X ${go_import_path}.DatabasePath=/etc/secureboot"
hostmakedepends="asciidoc"
short_desc="Secure Boot key manager"
maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=3d5b396985eabea4960377dbf81dbd891db473af20284edc7db1b4e891368c02
+export GOFLAGS="-buildmode=pie"
-do_build() {
- make
-}
-
-do_install() {
- make install PREFIX=/usr DESTDIR=$DESTDIR
- # TODO: install completions, sbctl tries to run lsblk when generating them
+do_check() {
+ go test -v ./...
}
post_install() {
+ make man
+ vman docs/sbctl.8
vlicense LICENSE
+ SBCTL="${DESTDIR}/usr/bin/sbctl"
+ for shell in bash fish zsh; do
+ vtargetrun ${SBCTL} completion ${shell} > sbctl.${shell}
+ vcompletion sbctl.${shell} ${shell}
+ done
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update, add kernel hook
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (48 preceding siblings ...)
2024-04-17 19:53 ` [PR PATCH] [Updated] " dkwo
@ 2024-04-17 19:58 ` dkwo
2024-05-11 20:18 ` [PR PATCH] [Updated] sbctl: update dkwo
` (12 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-04-17 19:58 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 342 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-2062111322
Comment:
I removed the kernel hook, as I prefer to sign the unified kernel image. Also simpler in view of moving kerneks out of /boot.
This is now just an update, which i've been using for months with no issues.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (49 preceding siblings ...)
2024-04-17 19:58 ` dkwo
@ 2024-05-11 20:18 ` dkwo
2024-05-11 21:55 ` dkwo
` (11 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-05-11 20:18 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 492 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 1713 bytes --]
From 10b0e6cc773918290c1ea866a53eba9dc0f3ec62 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: run checks, update to 0.14
---
srcpkgs/sbctl/template | 27 +++++++++++++++++----------
1 file changed, 17 insertions(+), 10 deletions(-)
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d7..248284844333c9 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,26 +1,33 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.14
+revision=1
build_style=go
+build_helper=qemu
go_import_path="github.com/foxboron/sbctl"
+go_package="${go_import_path}/cmd/sbctl"
+# see https://github.com/Foxboron/sbctl/issues/57
+# go_ldflags="-X ${go_import_path}.DatabasePath=/etc/secureboot"
hostmakedepends="asciidoc"
short_desc="Secure Boot key manager"
maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=c04bb75bf3c2f88d121943697b8d77b9fa87aa886cd9f8f293ff2eae66d6f2bd
+export GOFLAGS="-buildmode=pie"
-do_build() {
- make
-}
-
-do_install() {
- make install PREFIX=/usr DESTDIR=$DESTDIR
- # TODO: install completions, sbctl tries to run lsblk when generating them
+do_check() {
+ go test -v ./...
}
post_install() {
+ make man
+ vman docs/sbctl.8
vlicense LICENSE
+ SBCTL="${DESTDIR}/usr/bin/sbctl"
+ for shell in bash fish zsh; do
+ vtargetrun ${SBCTL} completion ${shell} > sbctl.${shell}
+ vcompletion sbctl.${shell} ${shell}
+ done
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (50 preceding siblings ...)
2024-05-11 20:18 ` [PR PATCH] [Updated] sbctl: update dkwo
@ 2024-05-11 21:55 ` dkwo
2024-07-31 11:59 ` Calandracas606
` (10 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-05-11 21:55 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 171 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-2106040124
Comment:
0.14 is out, seems to work fine.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (51 preceding siblings ...)
2024-05-11 21:55 ` dkwo
@ 2024-07-31 11:59 ` Calandracas606
2024-07-31 14:58 ` [PR PATCH] [Updated] " dkwo
` (9 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: Calandracas606 @ 2024-07-31 11:59 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 219 bytes --]
New comment by Calandracas606 on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-2260353566
Comment:
version 15 is out: https://github.com/Foxboron/sbctl/releases/tag/0.15
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (52 preceding siblings ...)
2024-07-31 11:59 ` Calandracas606
@ 2024-07-31 14:58 ` dkwo
2024-07-31 15:17 ` dkwo
` (8 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-07-31 14:58 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 492 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
the patch fixes https://github.com/Foxboron/sbctl/issues/102
cc maintainer @ericonr
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 2633 bytes --]
From b9f7443c32684554413cebea768fb1a309a3963b Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: run checks, update to 0.15.2
---
srcpkgs/sbctl/files/sbctl.conf | 19 +++++++++++++++++++
srcpkgs/sbctl/template | 30 ++++++++++++++++++++----------
2 files changed, 39 insertions(+), 10 deletions(-)
create mode 100644 srcpkgs/sbctl/files/sbctl.conf
diff --git a/srcpkgs/sbctl/files/sbctl.conf b/srcpkgs/sbctl/files/sbctl.conf
new file mode 100644
index 00000000000000..ca9ceb51b64337
--- /dev/null
+++ b/srcpkgs/sbctl/files/sbctl.conf
@@ -0,0 +1,19 @@
+---
+landlock: true
+keydir: /var/lib/sbctl/keys
+guid: /var/lib/sbctl/GUID
+files_db: /var/lib/sbctl/files.json
+bundles_db: /var/lib/sbctl/bundles.json
+keys:
+ pk:
+ privkey: /var/lib/sbctl/keys/PK/PK.key
+ pubkey: /var/lib/sbctl/keys/PK/PK.pem
+ type: file
+ kek:
+ privkey: /var/lib/sbctl/keys/KEK/KEK.key
+ pubkey: /var/lib/sbctl/keys/KEK/KEK.pem
+ type: file
+ db:
+ privkey: /var/lib/sbctl/keys/db/db.key
+ pubkey: /var/lib/sbctl/keys/db/db.pem
+ type: file
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d7..5a00d649371be3 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,26 +1,36 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.15.2
+revision=1
build_style=go
+build_helper=qemu
go_import_path="github.com/foxboron/sbctl"
+go_package="${go_import_path}/cmd/sbctl"
+go_ldflags="-X ${go_import_path}.Version=${version}"
hostmakedepends="asciidoc"
+checkdepends="openssl-devel"
short_desc="Secure Boot key manager"
maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=5bc8e8e12df1239d56f0915801327a0637c92b6ebb11e3ed0bb33ec6eaf75df1
+# make_dirs="/var/lib/sbctl 0700 root root"
+conf_files="/etc/sbctl/sbctl.conf"
+export GOFLAGS="-buildmode=pie"
-do_build() {
- make
-}
-
-do_install() {
- make install PREFIX=/usr DESTDIR=$DESTDIR
- # TODO: install completions, sbctl tries to run lsblk when generating them
+do_check() {
+ go test -v ./...
}
post_install() {
+ make man
+ vman docs/sbctl.8
vlicense LICENSE
+ SBCTL="${DESTDIR}/usr/bin/sbctl"
+ for shell in bash fish zsh; do
+ vtargetrun ${SBCTL} completion ${shell} > sbctl.${shell}
+ vcompletion sbctl.${shell} ${shell}
+ done
+ vinstall ${FILESDIR}/sbctl.conf 640 etc/sbctl
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (53 preceding siblings ...)
2024-07-31 14:58 ` [PR PATCH] [Updated] " dkwo
@ 2024-07-31 15:17 ` dkwo
2024-07-31 17:56 ` Foxboron
` (7 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-07-31 15:17 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 780 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-2260772698
Comment:
Thanks. I've tested the new version, and it works for me, as well as the `migrate` subcommand.
I'm open to suggestions as for the `sbctl.conf` file, which I've taken from upstream.
I do not create `/var/lib/sbctl` using make_dirs, as currently the program would complain otherwise
and refuse to proceed if that folder is already present.
@Duncaen This version solves the issue with /usr/share, as it finally moves it to /var/lib/sbctl.
Let me know if an install message is needed to warn the user.
In general, it may be better to wait a few days until things are more stable, and more people have tested this,
so marking as draft.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (54 preceding siblings ...)
2024-07-31 15:17 ` dkwo
@ 2024-07-31 17:56 ` Foxboron
2024-08-01 9:32 ` [PR PATCH] [Updated] " dkwo
` (6 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: Foxboron @ 2024-07-31 17:56 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 393 bytes --]
New comment by Foxboron on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-2261058938
Comment:
@dkwo fwiw, the config file is the internal defaults `sbctl` will use if there is no config file.
It will also merge the internal state with the `/etc/sbctl/sbctl.conf` file if there is a change. So you don't *need* to include this in the package.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (55 preceding siblings ...)
2024-07-31 17:56 ` Foxboron
@ 2024-08-01 9:32 ` dkwo
2024-08-01 9:35 ` dkwo
` (5 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-08-01 9:32 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 403 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 1734 bytes --]
From 2af462224306bc0cd7a703c16b03729404122f92 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: run checks, update to 0.15.3
---
srcpkgs/sbctl/template | 28 ++++++++++++++++++----------
1 file changed, 18 insertions(+), 10 deletions(-)
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d7..d1838047ac694f 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,26 +1,34 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.15.3
+revision=1
build_style=go
+build_helper=qemu
go_import_path="github.com/foxboron/sbctl"
+go_package="${go_import_path}/cmd/sbctl"
+go_ldflags="-X ${go_import_path}.Version=${version}"
hostmakedepends="asciidoc"
+checkdepends="openssl-devel"
short_desc="Secure Boot key manager"
maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=b5955baf5335fa54df4daf7e6ca51caa934865ca6a649b8ebdca4d370a57a4ef
+make_dirs="/var/lib/sbctl 0700 root root"
+export GOFLAGS="-buildmode=pie"
-do_build() {
- make
-}
-
-do_install() {
- make install PREFIX=/usr DESTDIR=$DESTDIR
- # TODO: install completions, sbctl tries to run lsblk when generating them
+do_check() {
+ go test -v ./...
}
post_install() {
+ make man
+ vman docs/sbctl.8
vlicense LICENSE
+ local SBCTL="${DESTDIR}/usr/bin/sbctl"
+ for shell in bash fish zsh; do
+ vtargetrun ${SBCTL} completion ${shell} > sbctl.${shell}
+ vcompletion sbctl.${shell} ${shell}
+ done
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (56 preceding siblings ...)
2024-08-01 9:32 ` [PR PATCH] [Updated] " dkwo
@ 2024-08-01 9:35 ` dkwo
2024-08-05 8:17 ` dkwo
` (4 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-08-01 9:35 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 248 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-2262595542
Comment:
@Foxboron Thanks a lot! I removed the conf file, and now the package also creates /var/lib/sbctl as expected.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (57 preceding siblings ...)
2024-08-01 9:35 ` dkwo
@ 2024-08-05 8:17 ` dkwo
2024-08-07 3:49 ` classabbyamp
` (3 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-08-05 8:17 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 173 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-2268455357
Comment:
This has been working fine for me.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (58 preceding siblings ...)
2024-08-05 8:17 ` dkwo
@ 2024-08-07 3:49 ` classabbyamp
2024-08-07 8:59 ` [PR PATCH] [Updated] " dkwo
` (2 subsequent siblings)
62 siblings, 0 replies; 64+ messages in thread
From: classabbyamp @ 2024-08-07 3:49 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 160 bytes --]
New comment by classabbyamp on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-2272561209
Comment:
0.15.4 is out
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Updated] sbctl: update
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (59 preceding siblings ...)
2024-08-07 3:49 ` classabbyamp
@ 2024-08-07 8:59 ` dkwo
2024-08-07 9:08 ` dkwo
2024-08-07 10:20 ` [PR PATCH] [Merged]: " classabbyamp
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-08-07 8:59 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 403 bytes --]
There is an updated pull request by dkwo against master on the void-packages repository
https://github.com/dkwo/void-packages sbctl
https://github.com/void-linux/void-packages/pull/46165
sbctl: update
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
A patch file from https://github.com/void-linux/void-packages/pull/46165.patch is attached
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-sbctl-46165.patch --]
[-- Type: text/x-diff, Size: 1737 bytes --]
From 3cd7342cbf7f8451eca7dd4fa5042c0a795145f9 Mon Sep 17 00:00:00 2001
From: dkwo <nicolopiazzalunga@gmail.com>
Date: Sun, 17 Sep 2023 09:43:11 -0400
Subject: [PATCH] sbctl: run checks, update to 0.15.4
---
srcpkgs/sbctl/template | 29 +++++++++++++++++++----------
1 file changed, 19 insertions(+), 10 deletions(-)
diff --git a/srcpkgs/sbctl/template b/srcpkgs/sbctl/template
index 5d181cd62da0d7..02c0b5f479a532 100644
--- a/srcpkgs/sbctl/template
+++ b/srcpkgs/sbctl/template
@@ -1,26 +1,35 @@
# Template file for 'sbctl'
pkgname=sbctl
-version=0.10
-revision=3
+version=0.15.4
+revision=1
build_style=go
+build_helper=qemu
go_import_path="github.com/foxboron/sbctl"
+go_package="${go_import_path}/cmd/sbctl"
+go_ldflags="-X ${go_import_path}.Version=${version}"
hostmakedepends="asciidoc"
+checkdepends="openssl-devel"
short_desc="Secure Boot key manager"
maintainer="Érico Nogueira <ericonr@disroot.org>"
license="MIT"
homepage="https://github.com/Foxboron/sbctl"
distfiles="https://github.com/Foxboron/sbctl/archive/${version}.tar.gz"
-checksum=22c394e1ae3f80eafe85e331ca4499d2df28bebcc4421c0af89241b897a17774
+checksum=500e8647041b9be193cf573a99b2c5b2956f11565b1aa961d62aa1666689b977
+make_dirs="/var/lib/sbctl 0700 root root"
+export GOFLAGS="-buildmode=pie"
-do_build() {
- make
-}
-
-do_install() {
- make install PREFIX=/usr DESTDIR=$DESTDIR
- # TODO: install completions, sbctl tries to run lsblk when generating them
+do_check() {
+ go test -v ./...
}
post_install() {
+ make man
+ vman docs/sbctl.8
vlicense LICENSE
+
+ local SBCTL="${DESTDIR}/usr/bin/sbctl"
+ for shell in bash fish zsh; do
+ vtargetrun ${SBCTL} completion ${shell} > sbctl.${shell}
+ vcompletion sbctl.${shell} ${shell}
+ done
}
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: sbctl: update
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (60 preceding siblings ...)
2024-08-07 8:59 ` [PR PATCH] [Updated] " dkwo
@ 2024-08-07 9:08 ` dkwo
2024-08-07 10:20 ` [PR PATCH] [Merged]: " classabbyamp
62 siblings, 0 replies; 64+ messages in thread
From: dkwo @ 2024-08-07 9:08 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 167 bytes --]
New comment by dkwo on void-packages repository
https://github.com/void-linux/void-packages/pull/46165#issuecomment-2272991812
Comment:
Updated, still working fine.
^ permalink raw reply [flat|nested] 64+ messages in thread
* Re: [PR PATCH] [Merged]: sbctl: update
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
` (61 preceding siblings ...)
2024-08-07 9:08 ` dkwo
@ 2024-08-07 10:20 ` classabbyamp
62 siblings, 0 replies; 64+ messages in thread
From: classabbyamp @ 2024-08-07 10:20 UTC (permalink / raw)
To: ml
[-- Attachment #1: Type: text/plain, Size: 255 bytes --]
There's a merged pull request on the void-packages repository
sbctl: update
https://github.com/void-linux/void-packages/pull/46165
Description:
- I tested the changes in this PR: yes
- I built this PR locally for my native architecture, (x86_64-glibc)
^ permalink raw reply [flat|nested] 64+ messages in thread
end of thread, other threads:[~2024-08-07 10:20 UTC | newest]
Thread overview: 64+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-20 20:39 [PR PATCH] sbctl: update to 0.11, patch, add kernel hook dkwo
2023-09-20 22:27 ` Duncaen
2023-09-20 22:27 ` Duncaen
2023-09-20 22:28 ` Duncaen
2023-09-21 15:59 ` dkwo
2023-09-21 16:09 ` Duncaen
2023-09-21 18:11 ` [PR PATCH] [Updated] " dkwo
2023-09-21 18:12 ` dkwo
2023-09-21 18:16 ` Duncaen
2023-09-21 18:22 ` Duncaen
2023-09-21 18:22 ` Duncaen
2023-09-21 18:22 ` Duncaen
2023-09-21 18:23 ` Duncaen
2023-09-21 18:24 ` Duncaen
2023-09-21 20:09 ` [PR PATCH] [Updated] " dkwo
2023-09-21 20:09 ` dkwo
2023-09-23 13:06 ` [PR REVIEW] " classabbyamp
2023-09-23 14:59 ` [PR PATCH] [Updated] " dkwo
2023-09-23 15:00 ` [PR REVIEW] " dkwo
2023-09-23 20:59 ` [PR PATCH] [Updated] " dkwo
2023-09-23 21:00 ` dkwo
2023-10-11 18:48 ` dkwo
2023-10-26 22:08 ` [PR PATCH] [Updated] " dkwo
2023-10-26 22:13 ` dkwo
2023-10-27 19:50 ` [PR PATCH] [Updated] " dkwo
2023-10-27 20:22 ` dkwo
2023-10-27 20:25 ` sbctl: update to 0.12, " dkwo
2023-10-27 20:25 ` dkwo
2023-11-02 14:54 ` dkwo
2023-12-21 9:13 ` [PR PATCH] [Updated] " dkwo
2023-12-27 16:18 ` dkwo
2023-12-27 18:41 ` dkwo
2024-01-07 14:17 ` [PR PATCH] [Updated] sbctl: update, " dkwo
2024-01-16 17:03 ` dkwo
2024-01-16 22:41 ` dkwo
2024-01-16 22:42 ` [PR PATCH] [Updated] " dkwo
2024-01-25 19:38 ` dkwo
2024-01-25 19:40 ` dkwo
2024-01-25 19:42 ` [PR PATCH] [Updated] " dkwo
2024-01-25 19:46 ` dkwo
2024-01-30 22:51 ` dkwo
2024-02-01 0:42 ` Duncaen
2024-02-01 0:43 ` Duncaen
2024-02-01 0:43 ` Duncaen
2024-02-01 16:06 ` dkwo
2024-02-01 17:27 ` Duncaen
2024-02-02 22:36 ` [PR PATCH] [Updated] " dkwo
2024-02-02 22:40 ` dkwo
2024-02-02 22:40 ` dkwo
2024-04-17 19:53 ` [PR PATCH] [Updated] " dkwo
2024-04-17 19:58 ` dkwo
2024-05-11 20:18 ` [PR PATCH] [Updated] sbctl: update dkwo
2024-05-11 21:55 ` dkwo
2024-07-31 11:59 ` Calandracas606
2024-07-31 14:58 ` [PR PATCH] [Updated] " dkwo
2024-07-31 15:17 ` dkwo
2024-07-31 17:56 ` Foxboron
2024-08-01 9:32 ` [PR PATCH] [Updated] " dkwo
2024-08-01 9:35 ` dkwo
2024-08-05 8:17 ` dkwo
2024-08-07 3:49 ` classabbyamp
2024-08-07 8:59 ` [PR PATCH] [Updated] " dkwo
2024-08-07 9:08 ` dkwo
2024-08-07 10:20 ` [PR PATCH] [Merged]: " classabbyamp
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).