OSDN Git Service

modsign: Use extract-cert to process CONFIG_SYSTEM_TRUSTED_KEYS
[sagit-ice-cold/kernel_xiaomi_msm8998.git] / kernel / Makefile
1 #
2 # Makefile for the linux kernel.
3 #
4
5 obj-y     = fork.o exec_domain.o panic.o \
6             cpu.o exit.o softirq.o resource.o \
7             sysctl.o sysctl_binary.o capability.o ptrace.o user.o \
8             signal.o sys.o kmod.o workqueue.o pid.o task_work.o \
9             extable.o params.o \
10             kthread.o sys_ni.o nsproxy.o \
11             notifier.o ksysfs.o cred.o reboot.o \
12             async.o range.o smpboot.o
13
14 obj-$(CONFIG_MULTIUSER) += groups.o
15
16 ifdef CONFIG_FUNCTION_TRACER
17 # Do not trace debug files and internal ftrace files
18 CFLAGS_REMOVE_cgroup-debug.o = $(CC_FLAGS_FTRACE)
19 CFLAGS_REMOVE_irq_work.o = $(CC_FLAGS_FTRACE)
20 endif
21
22 # cond_syscall is currently not LTO compatible
23 CFLAGS_sys_ni.o = $(DISABLE_LTO)
24
25 obj-y += sched/
26 obj-y += locking/
27 obj-y += power/
28 obj-y += printk/
29 obj-y += irq/
30 obj-y += rcu/
31 obj-y += livepatch/
32
33 obj-$(CONFIG_CHECKPOINT_RESTORE) += kcmp.o
34 obj-$(CONFIG_FREEZER) += freezer.o
35 obj-$(CONFIG_PROFILING) += profile.o
36 obj-$(CONFIG_STACKTRACE) += stacktrace.o
37 obj-y += time/
38 obj-$(CONFIG_FUTEX) += futex.o
39 ifeq ($(CONFIG_COMPAT),y)
40 obj-$(CONFIG_FUTEX) += futex_compat.o
41 endif
42 obj-$(CONFIG_GENERIC_ISA_DMA) += dma.o
43 obj-$(CONFIG_SMP) += smp.o
44 ifneq ($(CONFIG_SMP),y)
45 obj-y += up.o
46 endif
47 obj-$(CONFIG_UID16) += uid16.o
48 obj-$(CONFIG_SYSTEM_TRUSTED_KEYRING) += system_keyring.o system_certificates.o
49 obj-$(CONFIG_MODULES) += module.o
50 obj-$(CONFIG_MODULE_SIG) += module_signing.o
51 obj-$(CONFIG_KALLSYMS) += kallsyms.o
52 obj-$(CONFIG_BSD_PROCESS_ACCT) += acct.o
53 obj-$(CONFIG_KEXEC) += kexec.o
54 obj-$(CONFIG_BACKTRACE_SELF_TEST) += backtracetest.o
55 obj-$(CONFIG_COMPAT) += compat.o
56 obj-$(CONFIG_CGROUPS) += cgroup.o
57 obj-$(CONFIG_CGROUP_FREEZER) += cgroup_freezer.o
58 obj-$(CONFIG_CPUSETS) += cpuset.o
59 obj-$(CONFIG_UTS_NS) += utsname.o
60 obj-$(CONFIG_USER_NS) += user_namespace.o
61 obj-$(CONFIG_PID_NS) += pid_namespace.o
62 obj-$(CONFIG_IKCONFIG) += configs.o
63 obj-$(CONFIG_SMP) += stop_machine.o
64 obj-$(CONFIG_KPROBES_SANITY_TEST) += test_kprobes.o
65 obj-$(CONFIG_AUDIT) += audit.o auditfilter.o
66 obj-$(CONFIG_AUDITSYSCALL) += auditsc.o
67 obj-$(CONFIG_AUDIT_WATCH) += audit_watch.o
68 obj-$(CONFIG_AUDIT_TREE) += audit_tree.o
69 obj-$(CONFIG_GCOV_KERNEL) += gcov/
70 obj-$(CONFIG_KPROBES) += kprobes.o
71 obj-$(CONFIG_KGDB) += debug/
72 obj-$(CONFIG_DETECT_HUNG_TASK) += hung_task.o
73 obj-$(CONFIG_LOCKUP_DETECTOR) += watchdog.o
74 obj-$(CONFIG_SECCOMP) += seccomp.o
75 obj-$(CONFIG_RELAY) += relay.o
76 obj-$(CONFIG_SYSCTL) += utsname_sysctl.o
77 obj-$(CONFIG_TASK_DELAY_ACCT) += delayacct.o
78 obj-$(CONFIG_TASKSTATS) += taskstats.o tsacct.o
79 obj-$(CONFIG_TRACEPOINTS) += tracepoint.o
80 obj-$(CONFIG_LATENCYTOP) += latencytop.o
81 obj-$(CONFIG_BINFMT_ELF) += elfcore.o
82 obj-$(CONFIG_COMPAT_BINFMT_ELF) += elfcore.o
83 obj-$(CONFIG_BINFMT_ELF_FDPIC) += elfcore.o
84 obj-$(CONFIG_FUNCTION_TRACER) += trace/
85 obj-$(CONFIG_TRACING) += trace/
86 obj-$(CONFIG_TRACE_CLOCK) += trace/
87 obj-$(CONFIG_RING_BUFFER) += trace/
88 obj-$(CONFIG_TRACEPOINTS) += trace/
89 obj-$(CONFIG_IRQ_WORK) += irq_work.o
90 obj-$(CONFIG_CPU_PM) += cpu_pm.o
91 obj-$(CONFIG_BPF) += bpf/
92
93 obj-$(CONFIG_PERF_EVENTS) += events/
94
95 obj-$(CONFIG_USER_RETURN_NOTIFIER) += user-return-notifier.o
96 obj-$(CONFIG_PADATA) += padata.o
97 obj-$(CONFIG_CRASH_DUMP) += crash_dump.o
98 obj-$(CONFIG_JUMP_LABEL) += jump_label.o
99 obj-$(CONFIG_CONTEXT_TRACKING) += context_tracking.o
100 obj-$(CONFIG_TORTURE_TEST) += torture.o
101
102 $(obj)/configs.o: $(obj)/config_data.h
103
104 # config_data.h contains the same information as ikconfig.h but gzipped.
105 # Info from config_data can be extracted from /proc/config*
106 targets += config_data.gz
107 $(obj)/config_data.gz: $(KCONFIG_CONFIG) FORCE
108         $(call if_changed,gzip)
109
110       filechk_ikconfiggz = (echo "static const char kernel_config_data[] __used = MAGIC_START"; cat $< | scripts/basic/bin2c; echo "MAGIC_END;")
111 targets += config_data.h
112 $(obj)/config_data.h: $(obj)/config_data.gz FORCE
113         $(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