diff options
| author | David Howells <dhowells@redhat.com> | 2015-08-14 10:20:41 -0400 |
|---|---|---|
| committer | David Woodhouse <David.Woodhouse@intel.com> | 2015-08-14 11:06:13 -0400 |
| commit | cfc411e7fff3e15cd6354ff69773907e2c9d1c0c (patch) | |
| tree | c67e679c1c2bbe4a657ce58d60e995c63535952b /kernel/Makefile | |
| parent | 0e38c35815f50e5a347977d76fb5eb4c3bf020b5 (diff) | |
Move certificate handling to its own directory
Move certificate handling out of the kernel/ directory and into a certs/
directory to get all the weird stuff in one place and move the generated
signing keys into this directory.
Signed-off-by: David Howells <dhowells@redhat.com>
Reviewed-by: David Woodhouse <David.Woodhouse@intel.com>
Diffstat (limited to 'kernel/Makefile')
| -rw-r--r-- | kernel/Makefile | 143 |
1 files changed, 0 insertions, 143 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index 65ef3846fbe8..1aa153a1be21 100644 --- a/kernel/Makefile +++ b/kernel/Makefile | |||
| @@ -45,7 +45,6 @@ ifneq ($(CONFIG_SMP),y) | |||
| 45 | obj-y += up.o | 45 | obj-y += up.o |
| 46 | endif | 46 | endif |
| 47 | obj-$(CONFIG_UID16) += uid16.o | 47 | obj-$(CONFIG_UID16) += uid16.o |
| 48 | obj-$(CONFIG_SYSTEM_TRUSTED_KEYRING) += system_keyring.o system_certificates.o | ||
| 49 | obj-$(CONFIG_MODULES) += module.o | 48 | obj-$(CONFIG_MODULES) += module.o |
| 50 | obj-$(CONFIG_MODULE_SIG) += module_signing.o | 49 | obj-$(CONFIG_MODULE_SIG) += module_signing.o |
| 51 | obj-$(CONFIG_KALLSYMS) += kallsyms.o | 50 | obj-$(CONFIG_KALLSYMS) += kallsyms.o |
| @@ -111,145 +110,3 @@ $(obj)/config_data.gz: $(KCONFIG_CONFIG) FORCE | |||
| 111 | targets += config_data.h | 110 | targets += config_data.h |
| 112 | $(obj)/config_data.h: $(obj)/config_data.gz FORCE | 111 | $(obj)/config_data.h: $(obj)/config_data.gz FORCE |
| 113 | $(call filechk,ikconfiggz) | 112 | $(call filechk,ikconfiggz) |
| 114 | |||
| 115 | ############################################################################### | ||
| 116 | # | ||
| 117 | # When a Kconfig string contains a filename, it is suitable for | ||
| 118 | # passing to shell commands. It is surrounded by double-quotes, and | ||
| 119 | # any double-quotes or backslashes within it are escaped by | ||
| 120 | # backslashes. | ||
| 121 | # | ||
| 122 | # This is no use for dependencies or $(wildcard). We need to strip the | ||
| 123 | # surrounding quotes and the escaping from quotes and backslashes, and | ||
| 124 | # we *do* need to escape any spaces in the string. So, for example: | ||
| 125 | # | ||
| 126 | # Usage: $(eval $(call config_filename,FOO)) | ||
| 127 | # | ||
| 128 | # Defines FOO_FILENAME based on the contents of the CONFIG_FOO option, | ||
| 129 | # transformed as described above to be suitable for use within the | ||
| 130 | # makefile. | ||
| 131 | # | ||
| 132 | # Also, if the filename is a relative filename and exists in the source | ||
| 133 | # tree but not the build tree, define FOO_SRCPREFIX as $(srctree)/ to | ||
| 134 | # be prefixed to *both* command invocation and dependencies. | ||
| 135 | # | ||
| 136 | # Note: We also print the filenames in the quiet_cmd_foo text, and | ||
| 137 | # perhaps ought to have a version specially escaped for that purpose. | ||
| 138 | # But it's only cosmetic, and $(patsubst "%",%,$(CONFIG_FOO)) is good | ||
| 139 | # enough. It'll strip the quotes in the common case where there's no | ||
| 140 | # space and it's a simple filename, and it'll retain the quotes when | ||
| 141 | # there's a space. There are some esoteric cases in which it'll print | ||
| 142 | # the wrong thing, but we don't really care. The actual dependencies | ||
| 143 | # and commands *do* get it right, with various combinations of single | ||
| 144 | # and double quotes, backslashes and spaces in the filenames. | ||
| 145 | # | ||
| 146 | ############################################################################### | ||
| 147 | # | ||
| 148 | quote := $(firstword " ") | ||
| 149 | space := | ||
| 150 | space += | ||
| 151 | space_escape := %%%SPACE%%% | ||
| 152 | # | ||
| 153 | define config_filename | ||
| 154 | ifneq ($$(CONFIG_$(1)),"") | ||
| 155 | $(1)_FILENAME := $$(subst \\,\,$$(subst \$$(quote),$$(quote),$$(subst $$(space_escape),\$$(space),$$(patsubst "%",%,$$(subst $$(space),$$(space_escape),$$(CONFIG_$(1))))))) | ||
| 156 | ifneq ($$(patsubst /%,%,$$(firstword $$($(1)_FILENAME))),$$(firstword $$($(1)_FILENAME))) | ||
| 157 | else | ||
| 158 | ifeq ($$(wildcard $$($(1)_FILENAME)),) | ||
| 159 | ifneq ($$(wildcard $$(srctree)/$$($(1)_FILENAME)),) | ||
| 160 | $(1)_SRCPREFIX := $(srctree)/ | ||
| 161 | endif | ||
| 162 | endif | ||
| 163 | endif | ||
| 164 | endif | ||
| 165 | endef | ||
| 166 | # | ||
| 167 | ############################################################################### | ||
| 168 | |||
| 169 | ifeq ($(CONFIG_SYSTEM_TRUSTED_KEYRING),y) | ||
| 170 | |||
| 171 | $(eval $(call config_filename,SYSTEM_TRUSTED_KEYS)) | ||
| 172 | |||
| 173 | # GCC doesn't include .incbin files in -MD generated dependencies (PR#66871) | ||
| 174 | $(obj)/system_certificates.o: $(obj)/x509_certificate_list | ||
| 175 | |||
| 176 | # Cope with signing_key.x509 existing in $(srctree) not $(objtree) | ||
| 177 | AFLAGS_system_certificates.o := -I$(srctree) | ||
| 178 | |||
| 179 | quiet_cmd_extract_certs = EXTRACT_CERTS $(patsubst "%",%,$(2)) | ||
| 180 | cmd_extract_certs = scripts/extract-cert $(2) $@ || ( rm $@; exit 1) | ||
| 181 | |||
| 182 | targets += x509_certificate_list | ||
| 183 | $(obj)/x509_certificate_list: scripts/extract-cert $(SYSTEM_TRUSTED_KEYS_SRCPREFIX)$(SYSTEM_TRUSTED_KEYS_FILENAME) FORCE | ||
| 184 | $(call if_changed,extract_certs,$(SYSTEM_TRUSTED_KEYS_SRCPREFIX)$(CONFIG_SYSTEM_TRUSTED_KEYS)) | ||
| 185 | endif | ||
| 186 | |||
| 187 | clean-files := x509_certificate_list .x509.list | ||
| 188 | |||
| 189 | ifeq ($(CONFIG_MODULE_SIG),y) | ||
| 190 | ############################################################################### | ||
| 191 | # | ||
| 192 | # If module signing is requested, say by allyesconfig, but a key has not been | ||
| 193 | # supplied, then one will need to be generated to make sure the build does not | ||
| 194 | # fail and that the kernel may be used afterwards. | ||
| 195 | # | ||
| 196 | ############################################################################### | ||
| 197 | ifndef CONFIG_MODULE_SIG_HASH | ||
| 198 | $(error Could not determine digest type to use from kernel config) | ||
| 199 | endif | ||
| 200 | |||
| 201 | # We do it this way rather than having a boolean option for enabling an | ||
| 202 | # external private key, because 'make randconfig' might enable such a | ||
| 203 | # boolean option and we unfortunately can't make it depend on !RANDCONFIG. | ||
| 204 | ifeq ($(CONFIG_MODULE_SIG_KEY),"signing_key.pem") | ||
| 205 | signing_key.pem: x509.genkey | ||
| 206 | @echo "###" | ||
| 207 | @echo "### Now generating an X.509 key pair to be used for signing modules." | ||
| 208 | @echo "###" | ||
| 209 | @echo "### If this takes a long time, you might wish to run rngd in the" | ||
| 210 | @echo "### background to keep the supply of entropy topped up. It" | ||
| 211 | @echo "### needs to be run as root, and uses a hardware random" | ||
| 212 | @echo "### number generator if one is available." | ||
| 213 | @echo "###" | ||
| 214 | openssl req -new -nodes -utf8 -$(CONFIG_MODULE_SIG_HASH) -days 36500 \ | ||
| 215 | -batch -x509 -config x509.genkey \ | ||
| 216 | -outform PEM -out signing_key.pem \ | ||
| 217 | -keyout signing_key.pem 2>&1 | ||
| 218 | @echo "###" | ||
| 219 | @echo "### Key pair generated." | ||
| 220 | @echo "###" | ||
| 221 | |||
| 222 | x509.genkey: | ||
| 223 | @echo Generating X.509 key generation config | ||
| 224 | @echo >x509.genkey "[ req ]" | ||
| 225 | @echo >>x509.genkey "default_bits = 4096" | ||
| 226 | @echo >>x509.genkey "distinguished_name = req_distinguished_name" | ||
| 227 | @echo >>x509.genkey "prompt = no" | ||
| 228 | @echo >>x509.genkey "string_mask = utf8only" | ||
| 229 | @echo >>x509.genkey "x509_extensions = myexts" | ||
| 230 | @echo >>x509.genkey | ||
| 231 | @echo >>x509.genkey "[ req_distinguished_name ]" | ||
| 232 | @echo >>x509.genkey "#O = Unspecified company" | ||
| 233 | @echo >>x509.genkey "CN = Build time autogenerated kernel key" | ||
| 234 | @echo >>x509.genkey "#emailAddress = unspecified.user@unspecified.company" | ||
| 235 | @echo >>x509.genkey | ||
| 236 | @echo >>x509.genkey "[ myexts ]" | ||
| 237 | @echo >>x509.genkey "basicConstraints=critical,CA:FALSE" | ||
| 238 | @echo >>x509.genkey "keyUsage=digitalSignature" | ||
| 239 | @echo >>x509.genkey "subjectKeyIdentifier=hash" | ||
| 240 | @echo >>x509.genkey "authorityKeyIdentifier=keyid" | ||
| 241 | endif | ||
| 242 | |||
| 243 | $(eval $(call config_filename,MODULE_SIG_KEY)) | ||
| 244 | |||
| 245 | # If CONFIG_MODULE_SIG_KEY isn't a PKCS#11 URI, depend on it | ||
| 246 | ifeq ($(patsubst pkcs11:%,%,$(firstword $(MODULE_SIG_KEY_FILENAME))),$(firstword $(MODULE_SIG_KEY_FILENAME))) | ||
| 247 | X509_DEP := $(MODULE_SIG_KEY_SRCPREFIX)$(MODULE_SIG_KEY_FILENAME) | ||
| 248 | endif | ||
| 249 | |||
| 250 | # GCC PR#66871 again. | ||
| 251 | $(obj)/system_certificates.o: signing_key.x509 | ||
| 252 | |||
| 253 | signing_key.x509: scripts/extract-cert include/config/module/sig/key.h $(X509_DEP) | ||
| 254 | $(call cmd,extract_certs,$(MODULE_SIG_KEY_SRCPREFIX)$(CONFIG_MODULE_SIG_KEY)) | ||
| 255 | endif | ||
