]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - certs/Makefile
UBUNTU: Ubuntu-4.13.0-45.50
[mirror_ubuntu-artful-kernel.git] / certs / Makefile
CommitLineData
cfc411e7
DH
1#
2# Makefile for the linux kernel signature checking certificates.
3#
4
5obj-$(CONFIG_SYSTEM_TRUSTED_KEYRING) += system_keyring.o system_certificates.o
734114f8
DH
6obj-$(CONFIG_SYSTEM_BLACKLIST_KEYRING) += blacklist.o
7ifneq ($(CONFIG_SYSTEM_BLACKLIST_HASH_LIST),"")
8obj-$(CONFIG_SYSTEM_BLACKLIST_KEYRING) += blacklist_hashes.o
9else
10obj-$(CONFIG_SYSTEM_BLACKLIST_KEYRING) += blacklist_nohashes.o
11endif
608fcadc 12obj-$(CONFIG_EFI_SIGNATURE_LIST_PARSER) += efi_parser.o
cfc411e7 13
5ba45d15
JB
14obj-$(CONFIG_LOAD_UEFI_KEYS) += load_uefi.o
15$(obj)/load_uefi.o: KBUILD_CFLAGS += -fshort-wchar
16
17
cfc411e7
DH
18ifeq ($(CONFIG_SYSTEM_TRUSTED_KEYRING),y)
19
20$(eval $(call config_filename,SYSTEM_TRUSTED_KEYS))
21
22# GCC doesn't include .incbin files in -MD generated dependencies (PR#66871)
23$(obj)/system_certificates.o: $(obj)/x509_certificate_list
24
25# Cope with signing_key.x509 existing in $(srctree) not $(objtree)
26AFLAGS_system_certificates.o := -I$(srctree)
27
28quiet_cmd_extract_certs = EXTRACT_CERTS $(patsubst "%",%,$(2))
29 cmd_extract_certs = scripts/extract-cert $(2) $@ || ( rm $@; exit 1)
30
31targets += x509_certificate_list
32$(obj)/x509_certificate_list: scripts/extract-cert $(SYSTEM_TRUSTED_KEYS_SRCPREFIX)$(SYSTEM_TRUSTED_KEYS_FILENAME) FORCE
33 $(call if_changed,extract_certs,$(SYSTEM_TRUSTED_KEYS_SRCPREFIX)$(CONFIG_SYSTEM_TRUSTED_KEYS))
5ccbdbf9 34endif # CONFIG_SYSTEM_TRUSTED_KEYRING
cfc411e7
DH
35
36clean-files := x509_certificate_list .x509.list
37
38ifeq ($(CONFIG_MODULE_SIG),y)
39###############################################################################
40#
41# If module signing is requested, say by allyesconfig, but a key has not been
42# supplied, then one will need to be generated to make sure the build does not
43# fail and that the kernel may be used afterwards.
44#
45###############################################################################
46ifndef CONFIG_MODULE_SIG_HASH
47$(error Could not determine digest type to use from kernel config)
48endif
49
5d06ee20
AB
50redirect_openssl = 2>&1
51quiet_redirect_openssl = 2>&1
52silent_redirect_openssl = 2>/dev/null
53
cfc411e7
DH
54# We do it this way rather than having a boolean option for enabling an
55# external private key, because 'make randconfig' might enable such a
56# boolean option and we unfortunately can't make it depend on !RANDCONFIG.
57ifeq ($(CONFIG_MODULE_SIG_KEY),"certs/signing_key.pem")
58$(obj)/signing_key.pem: $(obj)/x509.genkey
5d06ee20
AB
59 @$(kecho) "###"
60 @$(kecho) "### Now generating an X.509 key pair to be used for signing modules."
61 @$(kecho) "###"
62 @$(kecho) "### If this takes a long time, you might wish to run rngd in the"
63 @$(kecho) "### background to keep the supply of entropy topped up. It"
64 @$(kecho) "### needs to be run as root, and uses a hardware random"
65 @$(kecho) "### number generator if one is available."
66 @$(kecho) "###"
67 $(Q)openssl req -new -nodes -utf8 -$(CONFIG_MODULE_SIG_HASH) -days 36500 \
cfc411e7
DH
68 -batch -x509 -config $(obj)/x509.genkey \
69 -outform PEM -out $(obj)/signing_key.pem \
5d06ee20
AB
70 -keyout $(obj)/signing_key.pem \
71 $($(quiet)redirect_openssl)
72 @$(kecho) "###"
73 @$(kecho) "### Key pair generated."
74 @$(kecho) "###"
cfc411e7
DH
75
76$(obj)/x509.genkey:
5d06ee20 77 @$(kecho) Generating X.509 key generation config
cfc411e7
DH
78 @echo >$@ "[ req ]"
79 @echo >>$@ "default_bits = 4096"
80 @echo >>$@ "distinguished_name = req_distinguished_name"
81 @echo >>$@ "prompt = no"
82 @echo >>$@ "string_mask = utf8only"
83 @echo >>$@ "x509_extensions = myexts"
84 @echo >>$@
85 @echo >>$@ "[ req_distinguished_name ]"
86 @echo >>$@ "#O = Unspecified company"
87 @echo >>$@ "CN = Build time autogenerated kernel key"
88 @echo >>$@ "#emailAddress = unspecified.user@unspecified.company"
89 @echo >>$@
90 @echo >>$@ "[ myexts ]"
91 @echo >>$@ "basicConstraints=critical,CA:FALSE"
92 @echo >>$@ "keyUsage=digitalSignature"
93 @echo >>$@ "subjectKeyIdentifier=hash"
94 @echo >>$@ "authorityKeyIdentifier=keyid"
5ccbdbf9 95endif # CONFIG_MODULE_SIG_KEY
cfc411e7
DH
96
97$(eval $(call config_filename,MODULE_SIG_KEY))
98
99# If CONFIG_MODULE_SIG_KEY isn't a PKCS#11 URI, depend on it
100ifeq ($(patsubst pkcs11:%,%,$(firstword $(MODULE_SIG_KEY_FILENAME))),$(firstword $(MODULE_SIG_KEY_FILENAME)))
101X509_DEP := $(MODULE_SIG_KEY_SRCPREFIX)$(MODULE_SIG_KEY_FILENAME)
102endif
103
104# GCC PR#66871 again.
105$(obj)/system_certificates.o: $(obj)/signing_key.x509
106
62172c81
DW
107targets += signing_key.x509
108$(obj)/signing_key.x509: scripts/extract-cert $(X509_DEP) FORCE
109 $(call if_changed,extract_certs,$(MODULE_SIG_KEY_SRCPREFIX)$(CONFIG_MODULE_SIG_KEY))
5ccbdbf9 110endif # CONFIG_MODULE_SIG