Skip to content

Commit c4c3610

Browse files
mkayaalpdhowells
authored andcommitted
KEYS: Reserve an extra certificate symbol for inserting without recompiling
Place a system_extra_cert buffer of configurable size, right after the system_certificate_list, so that inserted keys can be readily processed by the existing mechanism. Added script takes a key file and a kernel image and inserts its contents to the reserved area. The system_certificate_list_size is also adjusted accordingly. Call the script as: scripts/insert-sys-cert -b <vmlinux> -c <certfile> If vmlinux has no symbol table, supply System.map file with -s flag. Subsequent runs replace the previously inserted key, instead of appending the new one. Signed-off-by: Mehmet Kayaalp <[email protected]> Signed-off-by: David Howells <[email protected]> Acked-by: Mimi Zohar <[email protected]>
1 parent 5d06ee2 commit c4c3610

File tree

5 files changed

+440
-0
lines changed

5 files changed

+440
-0
lines changed

certs/Kconfig

+16
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,20 @@ config SYSTEM_TRUSTED_KEYS
3939
form of DER-encoded *.x509 files in the top-level build directory,
4040
those are no longer used. You will need to set this option instead.
4141

42+
config SYSTEM_EXTRA_CERTIFICATE
43+
bool "Reserve area for inserting a certificate without recompiling"
44+
depends on SYSTEM_TRUSTED_KEYRING
45+
help
46+
If set, space for an extra certificate will be reserved in the kernel
47+
image. This allows introducing a trusted certificate to the default
48+
system keyring without recompiling the kernel.
49+
50+
config SYSTEM_EXTRA_CERTIFICATE_SIZE
51+
int "Number of bytes to reserve for the extra certificate"
52+
depends on SYSTEM_EXTRA_CERTIFICATE
53+
default 4096
54+
help
55+
This is the number of bytes reserved in the kernel image for a
56+
certificate to be inserted.
57+
4258
endmenu

certs/system_certificates.S

+12
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,18 @@ __cert_list_start:
1313
.incbin "certs/x509_certificate_list"
1414
__cert_list_end:
1515

16+
#ifdef CONFIG_SYSTEM_EXTRA_CERTIFICATE
17+
.globl VMLINUX_SYMBOL(system_extra_cert)
18+
.size system_extra_cert, CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE
19+
VMLINUX_SYMBOL(system_extra_cert):
20+
.fill CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE, 1, 0
21+
22+
.globl VMLINUX_SYMBOL(system_extra_cert_used)
23+
VMLINUX_SYMBOL(system_extra_cert_used):
24+
.int 0
25+
26+
#endif /* CONFIG_SYSTEM_EXTRA_CERTIFICATE */
27+
1628
.align 8
1729
.globl VMLINUX_SYMBOL(system_certificate_list_size)
1830
VMLINUX_SYMBOL(system_certificate_list_size):

scripts/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,4 @@ sortextable
1313
asn1_compiler
1414
extract-cert
1515
sign-file
16+
insert-sys-cert

scripts/Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ hostprogs-$(CONFIG_BUILDTIME_EXTABLE_SORT) += sortextable
1919
hostprogs-$(CONFIG_ASN1) += asn1_compiler
2020
hostprogs-$(CONFIG_MODULE_SIG) += sign-file
2121
hostprogs-$(CONFIG_SYSTEM_TRUSTED_KEYRING) += extract-cert
22+
hostprogs-$(CONFIG_SYSTEM_EXTRA_CERTIFICATE) += insert-sys-cert
2223

2324
HOSTCFLAGS_sortextable.o = -I$(srctree)/tools/include
2425
HOSTCFLAGS_asn1_compiler.o = -I$(srctree)/include

0 commit comments

Comments
 (0)