1 # SPDX-License-Identifier: GPL-2.0 << 2 # 1 # 3 # Makefile for the linux kernel signature chec 2 # Makefile for the linux kernel signature checking certificates. 4 # 3 # 5 4 6 obj-$(CONFIG_SYSTEM_TRUSTED_KEYRING) += system 5 obj-$(CONFIG_SYSTEM_TRUSTED_KEYRING) += system_keyring.o system_certificates.o 7 obj-$(CONFIG_SYSTEM_BLACKLIST_KEYRING) += blac !! 6 obj-$(CONFIG_SYSTEM_BLACKLIST_KEYRING) += blacklist.o 8 obj-$(CONFIG_SYSTEM_REVOCATION_LIST) += revoca !! 7 ifneq ($(CONFIG_SYSTEM_BLACKLIST_HASH_LIST),"") >> 8 obj-$(CONFIG_SYSTEM_BLACKLIST_KEYRING) += blacklist_hashes.o >> 9 else >> 10 obj-$(CONFIG_SYSTEM_BLACKLIST_KEYRING) += blacklist_nohashes.o >> 11 endif 9 12 10 $(obj)/blacklist_hashes.o: $(obj)/blacklist_ha !! 13 ifeq ($(CONFIG_SYSTEM_TRUSTED_KEYRING),y) 11 CFLAGS_blacklist_hashes.o := -I $(obj) << 12 14 13 quiet_cmd_check_and_copy_blacklist_hash_list = !! 15 $(eval $(call config_filename,SYSTEM_TRUSTED_KEYS)) 14 cmd_check_and_copy_blacklist_hash_list = << 15 $(if $(CONFIG_SYSTEM_BLACKLIST_HASH_LI << 16 $(AWK) -f $(src)/check-blacklist-hashe << 17 { cat $(CONFIG_SYSTEM_BLACKLIST_HASH_L << 18 echo NULL > $@) << 19 << 20 $(obj)/blacklist_hash_list: $(CONFIG_SYSTEM_BL << 21 $(call if_changed,check_and_copy_black << 22 << 23 targets += blacklist_hash_list << 24 << 25 quiet_cmd_extract_certs = CERT $@ << 26 cmd_extract_certs = $(obj)/extract-cert << 27 extract-cert-in = $(filter-out $(obj)/extract- << 28 16 >> 17 # GCC doesn't include .incbin files in -MD generated dependencies (PR#66871) 29 $(obj)/system_certificates.o: $(obj)/x509_cert 18 $(obj)/system_certificates.o: $(obj)/x509_certificate_list 30 19 31 $(obj)/x509_certificate_list: $(CONFIG_SYSTEM_ !! 20 # Cope with signing_key.x509 existing in $(srctree) not $(objtree) 32 $(call if_changed,extract_certs) !! 21 AFLAGS_system_certificates.o := -I$(srctree) >> 22 >> 23 quiet_cmd_extract_certs = EXTRACT_CERTS $(patsubst "%",%,$(2)) >> 24 cmd_extract_certs = scripts/extract-cert $(2) $@ || ( rm $@; exit 1) 33 25 34 targets += x509_certificate_list 26 targets += x509_certificate_list >> 27 $(obj)/x509_certificate_list: scripts/extract-cert $(SYSTEM_TRUSTED_KEYS_SRCPREFIX)$(SYSTEM_TRUSTED_KEYS_FILENAME) FORCE >> 28 $(call if_changed,extract_certs,$(SYSTEM_TRUSTED_KEYS_SRCPREFIX)$(CONFIG_SYSTEM_TRUSTED_KEYS)) >> 29 endif # CONFIG_SYSTEM_TRUSTED_KEYRING >> 30 >> 31 clean-files := x509_certificate_list .x509.list 35 32 >> 33 ifeq ($(CONFIG_MODULE_SIG),y) >> 34 ############################################################################### >> 35 # 36 # If module signing is requested, say by allye 36 # If module signing is requested, say by allyesconfig, but a key has not been 37 # supplied, then one will need to be generated 37 # supplied, then one will need to be generated to make sure the build does not 38 # fail and that the kernel may be used afterwa 38 # fail and that the kernel may be used afterwards. 39 # 39 # >> 40 ############################################################################### >> 41 ifndef CONFIG_MODULE_SIG_HASH >> 42 $(error Could not determine digest type to use from kernel config) >> 43 endif >> 44 >> 45 redirect_openssl = 2>&1 >> 46 quiet_redirect_openssl = 2>&1 >> 47 silent_redirect_openssl = 2>/dev/null >> 48 40 # We do it this way rather than having a boole 49 # We do it this way rather than having a boolean option for enabling an 41 # external private key, because 'make randconf 50 # external private key, because 'make randconfig' might enable such a 42 # boolean option and we unfortunately can't ma 51 # boolean option and we unfortunately can't make it depend on !RANDCONFIG. 43 ifeq ($(CONFIG_MODULE_SIG_KEY),certs/signing_k !! 52 ifeq ($(CONFIG_MODULE_SIG_KEY),"certs/signing_key.pem") 44 !! 53 $(obj)/signing_key.pem: $(obj)/x509.genkey 45 keytype-$(CONFIG_MODULE_SIG_KEY_TYPE_ECDSA) := !! 54 @$(kecho) "###" 46 !! 55 @$(kecho) "### Now generating an X.509 key pair to be used for signing modules." 47 quiet_cmd_gen_key = GENKEY $@ !! 56 @$(kecho) "###" 48 cmd_gen_key = openssl req -new -nodes -u !! 57 @$(kecho) "### If this takes a long time, you might wish to run rngd in the" 49 -batch -x509 -config $< \ !! 58 @$(kecho) "### background to keep the supply of entropy topped up. It" 50 -outform PEM -out $@ -keyout $ !! 59 @$(kecho) "### needs to be run as root, and uses a hardware random" 51 !! 60 @$(kecho) "### number generator if one is available." 52 $(obj)/signing_key.pem: $(obj)/x509.genkey FOR !! 61 @$(kecho) "###" 53 $(call if_changed,gen_key) !! 62 $(Q)openssl req -new -nodes -utf8 -$(CONFIG_MODULE_SIG_HASH) -days 36500 \ >> 63 -batch -x509 -config $(obj)/x509.genkey \ >> 64 -outform PEM -out $(obj)/signing_key.pem \ >> 65 -keyout $(obj)/signing_key.pem \ >> 66 $($(quiet)redirect_openssl) >> 67 @$(kecho) "###" >> 68 @$(kecho) "### Key pair generated." >> 69 @$(kecho) "###" 54 70 55 targets += signing_key.pem << 56 << 57 quiet_cmd_copy_x509_config = COPY $@ << 58 cmd_copy_x509_config = cat $(src)/defaul << 59 << 60 # You can provide your own config file. If not << 61 $(obj)/x509.genkey: 71 $(obj)/x509.genkey: 62 $(call cmd,copy_x509_config) !! 72 @$(kecho) Generating X.509 key generation config 63 !! 73 @echo >$@ "[ req ]" >> 74 @echo >>$@ "default_bits = 4096" >> 75 @echo >>$@ "distinguished_name = req_distinguished_name" >> 76 @echo >>$@ "prompt = no" >> 77 @echo >>$@ "string_mask = utf8only" >> 78 @echo >>$@ "x509_extensions = myexts" >> 79 @echo >>$@ >> 80 @echo >>$@ "[ req_distinguished_name ]" >> 81 @echo >>$@ "#O = Unspecified company" >> 82 @echo >>$@ "CN = Build time autogenerated kernel key" >> 83 @echo >>$@ "#emailAddress = unspecified.user@unspecified.company" >> 84 @echo >>$@ >> 85 @echo >>$@ "[ myexts ]" >> 86 @echo >>$@ "basicConstraints=critical,CA:FALSE" >> 87 @echo >>$@ "keyUsage=digitalSignature" >> 88 @echo >>$@ "subjectKeyIdentifier=hash" >> 89 @echo >>$@ "authorityKeyIdentifier=keyid" 64 endif # CONFIG_MODULE_SIG_KEY 90 endif # CONFIG_MODULE_SIG_KEY 65 91 66 $(obj)/system_certificates.o: $(obj)/signing_k !! 92 $(eval $(call config_filename,MODULE_SIG_KEY)) 67 93 68 PKCS11_URI := $(filter pkcs11:%, $(CONFIG_MODU !! 94 # If CONFIG_MODULE_SIG_KEY isn't a PKCS#11 URI, depend on it 69 ifdef PKCS11_URI !! 95 ifeq ($(patsubst pkcs11:%,%,$(firstword $(MODULE_SIG_KEY_FILENAME))),$(firstword $(MODULE_SIG_KEY_FILENAME))) 70 $(obj)/signing_key.x509: extract-cert-in := $( !! 96 X509_DEP := $(MODULE_SIG_KEY_SRCPREFIX)$(MODULE_SIG_KEY_FILENAME) 71 endif 97 endif 72 98 73 $(obj)/signing_key.x509: $(filter-out $(PKCS11 !! 99 # GCC PR#66871 again. 74 $(call if_changed,extract_certs) !! 100 $(obj)/system_certificates.o: $(obj)/signing_key.x509 75 101 76 targets += signing_key.x509 102 targets += signing_key.x509 77 !! 103 $(obj)/signing_key.x509: scripts/extract-cert $(X509_DEP) FORCE 78 $(obj)/revocation_certificates.o: $(obj)/x509_ !! 104 $(call if_changed,extract_certs,$(MODULE_SIG_KEY_SRCPREFIX)$(CONFIG_MODULE_SIG_KEY)) 79 !! 105 endif # CONFIG_MODULE_SIG 80 $(obj)/x509_revocation_list: $(CONFIG_SYSTEM_R << 81 $(call if_changed,extract_certs) << 82 << 83 targets += x509_revocation_list << 84 << 85 hostprogs := extract-cert << 86 << 87 HOSTCFLAGS_extract-cert.o = $(shell $(HOSTPKG_ << 88 HOSTLDLIBS_extract-cert = $(shell $(HOSTPKG_CO <<
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.