blob: f82be369025060071cb11a45332befed860ea275 [file] [log] [blame]
David Howellscfc411e2015-08-14 15:20:41 +01001#
2# Makefile for the linux kernel signature checking certificates.
3#
4
5obj-$(CONFIG_SYSTEM_TRUSTED_KEYRING) += system_keyring.o system_certificates.o
6
David Howellscfc411e2015-08-14 15:20:41 +01007ifeq ($(CONFIG_SYSTEM_TRUSTED_KEYRING),y)
8
9$(eval $(call config_filename,SYSTEM_TRUSTED_KEYS))
10
11# GCC doesn't include .incbin files in -MD generated dependencies (PR#66871)
12$(obj)/system_certificates.o: $(obj)/x509_certificate_list
13
14# Cope with signing_key.x509 existing in $(srctree) not $(objtree)
15AFLAGS_system_certificates.o := -I$(srctree)
16
17quiet_cmd_extract_certs = EXTRACT_CERTS $(patsubst "%",%,$(2))
18 cmd_extract_certs = scripts/extract-cert $(2) $@ || ( rm $@; exit 1)
19
Jeevan Shriramb9da6402017-02-16 17:58:04 -080020ifeq ($(CONFIG_SYSTEM_TRUSTED_KEYS),"verity.x509.pem")
21SYSTEM_TRUSTED_KEYS_SRCPREFIX := $(srctree)/certs/
22endif
23
David Howellscfc411e2015-08-14 15:20:41 +010024targets += x509_certificate_list
25$(obj)/x509_certificate_list: scripts/extract-cert $(SYSTEM_TRUSTED_KEYS_SRCPREFIX)$(SYSTEM_TRUSTED_KEYS_FILENAME) FORCE
26 $(call if_changed,extract_certs,$(SYSTEM_TRUSTED_KEYS_SRCPREFIX)$(CONFIG_SYSTEM_TRUSTED_KEYS))
27endif
28
29clean-files := x509_certificate_list .x509.list
30
31ifeq ($(CONFIG_MODULE_SIG),y)
32###############################################################################
33#
34# If module signing is requested, say by allyesconfig, but a key has not been
35# supplied, then one will need to be generated to make sure the build does not
36# fail and that the kernel may be used afterwards.
37#
38###############################################################################
39ifndef CONFIG_MODULE_SIG_HASH
40$(error Could not determine digest type to use from kernel config)
41endif
42
Arnd Bergmann5d06ee22016-02-25 17:31:32 +010043redirect_openssl = 2>&1
44quiet_redirect_openssl = 2>&1
45silent_redirect_openssl = 2>/dev/null
Stefan Berger429665a2021-06-29 17:34:20 -040046openssl_available = $(shell openssl help 2>/dev/null && echo yes)
Arnd Bergmann5d06ee22016-02-25 17:31:32 +010047
David Howellscfc411e2015-08-14 15:20:41 +010048# We do it this way rather than having a boolean option for enabling an
49# external private key, because 'make randconfig' might enable such a
50# boolean option and we unfortunately can't make it depend on !RANDCONFIG.
51ifeq ($(CONFIG_MODULE_SIG_KEY),"certs/signing_key.pem")
Stefan Berger429665a2021-06-29 17:34:20 -040052
53ifeq ($(openssl_available),yes)
54X509TEXT=$(shell openssl x509 -in "certs/signing_key.pem" -text 2>/dev/null)
55
56$(if $(findstring rsaEncryption,$(X509TEXT)),,$(shell rm -f "certs/signing_key.pem"))
57endif
58
David Howellscfc411e2015-08-14 15:20:41 +010059$(obj)/signing_key.pem: $(obj)/x509.genkey
Arnd Bergmann5d06ee22016-02-25 17:31:32 +010060 @$(kecho) "###"
61 @$(kecho) "### Now generating an X.509 key pair to be used for signing modules."
62 @$(kecho) "###"
63 @$(kecho) "### If this takes a long time, you might wish to run rngd in the"
64 @$(kecho) "### background to keep the supply of entropy topped up. It"
65 @$(kecho) "### needs to be run as root, and uses a hardware random"
66 @$(kecho) "### number generator if one is available."
67 @$(kecho) "###"
68 $(Q)openssl req -new -nodes -utf8 -$(CONFIG_MODULE_SIG_HASH) -days 36500 \
David Howellscfc411e2015-08-14 15:20:41 +010069 -batch -x509 -config $(obj)/x509.genkey \
70 -outform PEM -out $(obj)/signing_key.pem \
Arnd Bergmann5d06ee22016-02-25 17:31:32 +010071 -keyout $(obj)/signing_key.pem \
72 $($(quiet)redirect_openssl)
73 @$(kecho) "###"
74 @$(kecho) "### Key pair generated."
75 @$(kecho) "###"
David Howellscfc411e2015-08-14 15:20:41 +010076
77$(obj)/x509.genkey:
Arnd Bergmann5d06ee22016-02-25 17:31:32 +010078 @$(kecho) Generating X.509 key generation config
David Howellscfc411e2015-08-14 15:20:41 +010079 @echo >$@ "[ req ]"
80 @echo >>$@ "default_bits = 4096"
81 @echo >>$@ "distinguished_name = req_distinguished_name"
82 @echo >>$@ "prompt = no"
83 @echo >>$@ "string_mask = utf8only"
84 @echo >>$@ "x509_extensions = myexts"
85 @echo >>$@
86 @echo >>$@ "[ req_distinguished_name ]"
87 @echo >>$@ "#O = Unspecified company"
88 @echo >>$@ "CN = Build time autogenerated kernel key"
89 @echo >>$@ "#emailAddress = unspecified.user@unspecified.company"
90 @echo >>$@
91 @echo >>$@ "[ myexts ]"
92 @echo >>$@ "basicConstraints=critical,CA:FALSE"
93 @echo >>$@ "keyUsage=digitalSignature"
94 @echo >>$@ "subjectKeyIdentifier=hash"
95 @echo >>$@ "authorityKeyIdentifier=keyid"
96endif
97
98$(eval $(call config_filename,MODULE_SIG_KEY))
99
100# If CONFIG_MODULE_SIG_KEY isn't a PKCS#11 URI, depend on it
101ifeq ($(patsubst pkcs11:%,%,$(firstword $(MODULE_SIG_KEY_FILENAME))),$(firstword $(MODULE_SIG_KEY_FILENAME)))
102X509_DEP := $(MODULE_SIG_KEY_SRCPREFIX)$(MODULE_SIG_KEY_FILENAME)
103endif
104
105# GCC PR#66871 again.
106$(obj)/system_certificates.o: $(obj)/signing_key.x509
107
David Woodhouse62172c82015-08-14 15:33:56 +0100108targets += signing_key.x509
109$(obj)/signing_key.x509: scripts/extract-cert $(X509_DEP) FORCE
110 $(call if_changed,extract_certs,$(MODULE_SIG_KEY_SRCPREFIX)$(CONFIG_MODULE_SIG_KEY))
David Howellscfc411e2015-08-14 15:20:41 +0100111endif