blob: f943df181e6d0e8cee17af5d56959530713734fe [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001#
Patrick Williams92b42cb2022-09-03 06:53:57 -05002# Copyright OpenEmbedded Contributors
3#
Brad Bishopc342db32019-05-15 21:57:59 -04004# SPDX-License-Identifier: GPL-2.0-only
5#
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006import bb.siggen
Andrew Geisslerd25ed322020-06-27 00:28:28 -05007import bb.runqueue
Brad Bishop316dfdd2018-06-25 12:45:53 -04008import oe
Patrick Williamsc124f4f2015-09-15 14:41:29 -05009
Andrew Geisslerd25ed322020-06-27 00:28:28 -050010def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCaches):
Patrick Williamsc124f4f2015-09-15 14:41:29 -050011 # Return True if we should keep the dependency, False to drop it
12 def isNative(x):
13 return x.endswith("-native")
14 def isCross(x):
15 return "-cross-" in x
16 def isNativeSDK(x):
17 return x.startswith("nativesdk-")
Andrew Geisslerd25ed322020-06-27 00:28:28 -050018 def isKernel(mc, fn):
19 inherits = " ".join(dataCaches[mc].inherits[fn])
Patrick Williamsc124f4f2015-09-15 14:41:29 -050020 return inherits.find("/module-base.bbclass") != -1 or inherits.find("/linux-kernel-base.bbclass") != -1
Andrew Geisslerd25ed322020-06-27 00:28:28 -050021 def isPackageGroup(mc, fn):
22 inherits = " ".join(dataCaches[mc].inherits[fn])
Patrick Williamsc124f4f2015-09-15 14:41:29 -050023 return "/packagegroup.bbclass" in inherits
Andrew Geisslerd25ed322020-06-27 00:28:28 -050024 def isAllArch(mc, fn):
25 inherits = " ".join(dataCaches[mc].inherits[fn])
Patrick Williamsc124f4f2015-09-15 14:41:29 -050026 return "/allarch.bbclass" in inherits
Andrew Geisslerd25ed322020-06-27 00:28:28 -050027 def isImage(mc, fn):
28 return "/image.bbclass" in " ".join(dataCaches[mc].inherits[fn])
Patrick Williamsc124f4f2015-09-15 14:41:29 -050029
Andrew Geisslerd25ed322020-06-27 00:28:28 -050030 depmc, _, deptaskname, depmcfn = bb.runqueue.split_tid_mcfn(dep)
31 mc, _ = bb.runqueue.split_mc(fn)
32
Patrick Williams7784c422022-11-17 07:29:11 -060033 # We can skip the rm_work task signature to avoid running the task
34 # when we remove some tasks from the dependencie chain
35 # i.e INHERIT:remove = "create-spdx" will trigger the do_rm_work
36 if task == "do_rm_work":
37 return False
38
Andrew Geisslerd25ed322020-06-27 00:28:28 -050039 # (Almost) always include our own inter-task dependencies (unless it comes
40 # from a mcdepends). The exception is the special
41 # do_kernel_configme->do_unpack_and_patch dependency from archiver.bbclass.
42 if recipename == depname and depmc == mc:
43 if task == "do_kernel_configme" and deptaskname == "do_unpack_and_patch":
Brad Bishop6e60e8b2018-02-01 10:27:11 -050044 return False
Patrick Williamsc124f4f2015-09-15 14:41:29 -050045 return True
46
Patrick Williamsc124f4f2015-09-15 14:41:29 -050047 # Exclude well defined recipe->dependency
48 if "%s->%s" % (recipename, depname) in siggen.saferecipedeps:
49 return False
50
Brad Bishop316dfdd2018-06-25 12:45:53 -040051 # Check for special wildcard
52 if "*->%s" % depname in siggen.saferecipedeps and recipename != depname:
53 return False
54
Patrick Williamsc124f4f2015-09-15 14:41:29 -050055 # Don't change native/cross/nativesdk recipe dependencies any further
56 if isNative(recipename) or isCross(recipename) or isNativeSDK(recipename):
57 return True
58
59 # Only target packages beyond here
60
61 # allarch packagegroups are assumed to have well behaved names which don't change between architecures/tunes
Andrew Geisslerd25ed322020-06-27 00:28:28 -050062 if isPackageGroup(mc, fn) and isAllArch(mc, fn) and not isNative(depname):
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080063 return False
Patrick Williamsc124f4f2015-09-15 14:41:29 -050064
65 # Exclude well defined machine specific configurations which don't change ABI
Andrew Geisslerd25ed322020-06-27 00:28:28 -050066 if depname in siggen.abisaferecipes and not isImage(mc, fn):
Patrick Williamsc124f4f2015-09-15 14:41:29 -050067 return False
68
69 # Kernel modules are well namespaced. We don't want to depend on the kernel's checksum
Patrick Williams213cb262021-08-07 19:21:33 -050070 # if we're just doing an RRECOMMENDS:xxx = "kernel-module-*", not least because the checksum
Patrick Williamsc124f4f2015-09-15 14:41:29 -050071 # is machine specific.
72 # Therefore if we're not a kernel or a module recipe (inheriting the kernel classes)
73 # and we reccomend a kernel-module, we exclude the dependency.
Andrew Geisslerd25ed322020-06-27 00:28:28 -050074 if dataCaches and isKernel(depmc, depmcfn) and not isKernel(mc, fn):
75 for pkg in dataCaches[mc].runrecs[fn]:
76 if " ".join(dataCaches[mc].runrecs[fn][pkg]).find("kernel-module-") != -1:
Patrick Williamsc124f4f2015-09-15 14:41:29 -050077 return False
78
79 # Default to keep dependencies
80 return True
81
82def sstate_lockedsigs(d):
83 sigs = {}
Brad Bishop6e60e8b2018-02-01 10:27:11 -050084 types = (d.getVar("SIGGEN_LOCKEDSIGS_TYPES") or "").split()
Patrick Williamsc124f4f2015-09-15 14:41:29 -050085 for t in types:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050086 siggen_lockedsigs_var = "SIGGEN_LOCKEDSIGS_%s" % t
Brad Bishop6e60e8b2018-02-01 10:27:11 -050087 lockedsigs = (d.getVar(siggen_lockedsigs_var) or "").split()
Patrick Williamsc124f4f2015-09-15 14:41:29 -050088 for ls in lockedsigs:
89 pn, task, h = ls.split(":", 2)
90 if pn not in sigs:
91 sigs[pn] = {}
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050092 sigs[pn][task] = [h, siggen_lockedsigs_var]
Patrick Williamsc124f4f2015-09-15 14:41:29 -050093 return sigs
94
Brad Bishop00e122a2019-10-05 11:10:57 -040095class SignatureGeneratorOEBasicHashMixIn(object):
Andrew Geisslerd25ed322020-06-27 00:28:28 -050096 supports_multiconfig_datacaches = True
97
Patrick Williamsc124f4f2015-09-15 14:41:29 -050098 def init_rundepcheck(self, data):
Brad Bishop6e60e8b2018-02-01 10:27:11 -050099 self.abisaferecipes = (data.getVar("SIGGEN_EXCLUDERECIPES_ABISAFE") or "").split()
100 self.saferecipedeps = (data.getVar("SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS") or "").split()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500101 self.lockedsigs = sstate_lockedsigs(data)
102 self.lockedhashes = {}
103 self.lockedpnmap = {}
104 self.lockedhashfn = {}
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500105 self.machine = data.getVar("MACHINE")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500106 self.mismatch_msgs = []
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500107 self.unlockedrecipes = (data.getVar("SIGGEN_UNLOCKED_RECIPES") or
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500108 "").split()
109 self.unlockedrecipes = { k: "" for k in self.unlockedrecipes }
Andrew Geissler82c905d2020-04-13 13:39:40 -0500110 self._internal = False
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500111 pass
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500112
113 def tasks_resolved(self, virtmap, virtpnmap, dataCache):
114 # Translate virtual/xxx entries to PN values
115 newabisafe = []
116 for a in self.abisaferecipes:
117 if a in virtpnmap:
118 newabisafe.append(virtpnmap[a])
119 else:
120 newabisafe.append(a)
121 self.abisaferecipes = newabisafe
122 newsafedeps = []
123 for a in self.saferecipedeps:
124 a1, a2 = a.split("->")
125 if a1 in virtpnmap:
126 a1 = virtpnmap[a1]
127 if a2 in virtpnmap:
128 a2 = virtpnmap[a2]
129 newsafedeps.append(a1 + "->" + a2)
130 self.saferecipedeps = newsafedeps
131
Andrew Geisslerd25ed322020-06-27 00:28:28 -0500132 def rundep_check(self, fn, recipename, task, dep, depname, dataCaches = None):
133 return sstate_rundepfilter(self, fn, recipename, task, dep, depname, dataCaches)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500134
135 def get_taskdata(self):
Brad Bishop00e122a2019-10-05 11:10:57 -0400136 return (self.lockedpnmap, self.lockedhashfn, self.lockedhashes) + super().get_taskdata()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500137
138 def set_taskdata(self, data):
Brad Bishop00e122a2019-10-05 11:10:57 -0400139 self.lockedpnmap, self.lockedhashfn, self.lockedhashes = data[:3]
140 super().set_taskdata(data[3:])
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500141
142 def dump_sigs(self, dataCache, options):
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600143 sigfile = os.getcwd() + "/locked-sigs.inc"
144 bb.plain("Writing locked sigs to %s" % sigfile)
145 self.dump_lockedsigs(sigfile)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500146 return super(bb.siggen.SignatureGeneratorBasicHash, self).dump_sigs(dataCache, options)
147
Andrew Geissler82c905d2020-04-13 13:39:40 -0500148
Andrew Geisslerd25ed322020-06-27 00:28:28 -0500149 def get_taskhash(self, tid, deps, dataCaches):
Andrew Geissler82c905d2020-04-13 13:39:40 -0500150 if tid in self.lockedhashes:
151 if self.lockedhashes[tid]:
152 return self.lockedhashes[tid]
153 else:
Andrew Geisslerd25ed322020-06-27 00:28:28 -0500154 return super().get_taskhash(tid, deps, dataCaches)
Andrew Geissler82c905d2020-04-13 13:39:40 -0500155
Andrew Geisslerd25ed322020-06-27 00:28:28 -0500156 h = super().get_taskhash(tid, deps, dataCaches)
Brad Bishop08902b02019-08-20 09:16:51 -0400157
158 (mc, _, task, fn) = bb.runqueue.split_tid_mcfn(tid)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500159
Andrew Geisslerd25ed322020-06-27 00:28:28 -0500160 recipename = dataCaches[mc].pkg_fn[fn]
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500161 self.lockedpnmap[fn] = recipename
Andrew Geisslerd25ed322020-06-27 00:28:28 -0500162 self.lockedhashfn[fn] = dataCaches[mc].hashfn[fn]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500163
164 unlocked = False
165 if recipename in self.unlockedrecipes:
166 unlocked = True
167 else:
168 def recipename_from_dep(dep):
Andrew Geisslerd25ed322020-06-27 00:28:28 -0500169 (depmc, _, _, depfn) = bb.runqueue.split_tid_mcfn(dep)
170 return dataCaches[depmc].pkg_fn[depfn]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500171
172 # If any unlocked recipe is in the direct dependencies then the
173 # current recipe should be unlocked as well.
Brad Bishop08902b02019-08-20 09:16:51 -0400174 depnames = [ recipename_from_dep(x) for x in deps if mc == bb.runqueue.mc_from_tid(x)]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500175 if any(x in y for y in depnames for x in self.unlockedrecipes):
176 self.unlockedrecipes[recipename] = ''
177 unlocked = True
178
179 if not unlocked and recipename in self.lockedsigs:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500180 if task in self.lockedsigs[recipename]:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500181 h_locked = self.lockedsigs[recipename][task][0]
182 var = self.lockedsigs[recipename][task][1]
Brad Bishop08902b02019-08-20 09:16:51 -0400183 self.lockedhashes[tid] = h_locked
Andrew Geissler82c905d2020-04-13 13:39:40 -0500184 self._internal = True
185 unihash = self.get_unihash(tid)
186 self._internal = False
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500187 #bb.warn("Using %s %s %s" % (recipename, task, h))
188
Brad Bishop00e122a2019-10-05 11:10:57 -0400189 if h != h_locked and h_locked != unihash:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500190 self.mismatch_msgs.append('The %s:%s sig is computed to be %s, but the sig is locked to %s in %s'
191 % (recipename, task, h, h_locked, var))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500192
193 return h_locked
Andrew Geissler82c905d2020-04-13 13:39:40 -0500194
195 self.lockedhashes[tid] = False
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500196 #bb.warn("%s %s %s" % (recipename, task, h))
197 return h
198
Andrew Geissler82c905d2020-04-13 13:39:40 -0500199 def get_stampfile_hash(self, tid):
200 if tid in self.lockedhashes and self.lockedhashes[tid]:
201 return self.lockedhashes[tid]
202 return super().get_stampfile_hash(tid)
203
Brad Bishop00e122a2019-10-05 11:10:57 -0400204 def get_unihash(self, tid):
Andrew Geissler82c905d2020-04-13 13:39:40 -0500205 if tid in self.lockedhashes and self.lockedhashes[tid] and not self._internal:
Brad Bishop00e122a2019-10-05 11:10:57 -0400206 return self.lockedhashes[tid]
207 return super().get_unihash(tid)
208
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500209 def dump_sigtask(self, fn, task, stampbase, runtime):
Brad Bishop08902b02019-08-20 09:16:51 -0400210 tid = fn + ":" + task
Andrew Geissler82c905d2020-04-13 13:39:40 -0500211 if tid in self.lockedhashes and self.lockedhashes[tid]:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500212 return
213 super(bb.siggen.SignatureGeneratorBasicHash, self).dump_sigtask(fn, task, stampbase, runtime)
214
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600215 def dump_lockedsigs(self, sigfile, taskfilter=None):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500216 types = {}
Brad Bishop08902b02019-08-20 09:16:51 -0400217 for tid in self.runtaskdeps:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500218 if taskfilter:
Brad Bishop08902b02019-08-20 09:16:51 -0400219 if not tid in taskfilter:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500220 continue
Brad Bishop08902b02019-08-20 09:16:51 -0400221 fn = bb.runqueue.fn_from_tid(tid)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500222 t = self.lockedhashfn[fn].split(" ")[1].split(":")[5]
223 t = 't-' + t.replace('_', '-')
224 if t not in types:
225 types[t] = []
Brad Bishop08902b02019-08-20 09:16:51 -0400226 types[t].append(tid)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500227
228 with open(sigfile, "w") as f:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500229 l = sorted(types)
230 for t in l:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500231 f.write('SIGGEN_LOCKEDSIGS_%s = "\\\n' % t)
232 types[t].sort()
Brad Bishop08902b02019-08-20 09:16:51 -0400233 sortedtid = sorted(types[t], key=lambda tid: self.lockedpnmap[bb.runqueue.fn_from_tid(tid)])
234 for tid in sortedtid:
235 (_, _, task, fn) = bb.runqueue.split_tid_mcfn(tid)
236 if tid not in self.taskhash:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500237 continue
Brad Bishop00e122a2019-10-05 11:10:57 -0400238 f.write(" " + self.lockedpnmap[fn] + ":" + task + ":" + self.get_unihash(tid) + " \\\n")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500239 f.write(' "\n')
Patrick Williams213cb262021-08-07 19:21:33 -0500240 f.write('SIGGEN_LOCKEDSIGS_TYPES:%s = "%s"' % (self.machine, " ".join(l)))
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500241
Andrew Geissler09036742021-06-25 14:25:14 -0500242 def dump_siglist(self, sigfile, path_prefix_strip=None):
243 def strip_fn(fn):
244 nonlocal path_prefix_strip
245 if not path_prefix_strip:
246 return fn
247
248 fn_exp = fn.split(":")
249 if fn_exp[-1].startswith(path_prefix_strip):
250 fn_exp[-1] = fn_exp[-1][len(path_prefix_strip):]
251
252 return ":".join(fn_exp)
253
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500254 with open(sigfile, "w") as f:
255 tasks = []
256 for taskitem in self.taskhash:
Brad Bishop08902b02019-08-20 09:16:51 -0400257 (fn, task) = taskitem.rsplit(":", 1)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500258 pn = self.lockedpnmap[fn]
Andrew Geissler09036742021-06-25 14:25:14 -0500259 tasks.append((pn, task, strip_fn(fn), self.taskhash[taskitem]))
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500260 for (pn, task, fn, taskhash) in sorted(tasks):
Brad Bishop08902b02019-08-20 09:16:51 -0400261 f.write('%s:%s %s %s\n' % (pn, task, fn, taskhash))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500262
Brad Bishop08902b02019-08-20 09:16:51 -0400263 def checkhashes(self, sq_data, missed, found, d):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500264 warn_msgs = []
265 error_msgs = []
266 sstate_missing_msgs = []
267
Brad Bishop08902b02019-08-20 09:16:51 -0400268 for tid in sq_data['hash']:
269 if tid not in found:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500270 for pn in self.lockedsigs:
Brad Bishop08902b02019-08-20 09:16:51 -0400271 taskname = bb.runqueue.taskname_from_tid(tid)
272 if sq_data['hash'][tid] in iter(self.lockedsigs[pn].values()):
273 if taskname == 'do_shared_workdir':
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500274 continue
275 sstate_missing_msgs.append("Locked sig is set for %s:%s (%s) yet not in sstate cache?"
Brad Bishop08902b02019-08-20 09:16:51 -0400276 % (pn, taskname, sq_data['hash'][tid]))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500277
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500278 checklevel = d.getVar("SIGGEN_LOCKEDSIGS_TASKSIG_CHECK")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500279 if checklevel == 'warn':
280 warn_msgs += self.mismatch_msgs
281 elif checklevel == 'error':
282 error_msgs += self.mismatch_msgs
283
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500284 checklevel = d.getVar("SIGGEN_LOCKEDSIGS_SSTATE_EXISTS_CHECK")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500285 if checklevel == 'warn':
286 warn_msgs += sstate_missing_msgs
287 elif checklevel == 'error':
288 error_msgs += sstate_missing_msgs
289
290 if warn_msgs:
291 bb.warn("\n".join(warn_msgs))
292 if error_msgs:
293 bb.fatal("\n".join(error_msgs))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500294
Brad Bishop00e122a2019-10-05 11:10:57 -0400295class SignatureGeneratorOEBasicHash(SignatureGeneratorOEBasicHashMixIn, bb.siggen.SignatureGeneratorBasicHash):
296 name = "OEBasicHash"
297
298class SignatureGeneratorOEEquivHash(SignatureGeneratorOEBasicHashMixIn, bb.siggen.SignatureGeneratorUniHashMixIn, bb.siggen.SignatureGeneratorBasicHash):
Brad Bishop19323692019-04-05 15:28:33 -0400299 name = "OEEquivHash"
300
301 def init_rundepcheck(self, data):
302 super().init_rundepcheck(data)
Brad Bishopa34c0302019-09-23 22:34:48 -0400303 self.server = data.getVar('BB_HASHSERVE')
Brad Bishop08902b02019-08-20 09:16:51 -0400304 if not self.server:
Brad Bishopa34c0302019-09-23 22:34:48 -0400305 bb.fatal("OEEquivHash requires BB_HASHSERVE to be set")
Brad Bishop19323692019-04-05 15:28:33 -0400306 self.method = data.getVar('SSTATE_HASHEQUIV_METHOD')
Brad Bishop08902b02019-08-20 09:16:51 -0400307 if not self.method:
308 bb.fatal("OEEquivHash requires SSTATE_HASHEQUIV_METHOD to be set")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500309
310# Insert these classes into siggen's namespace so it can see and select them
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500311bb.siggen.SignatureGeneratorOEBasicHash = SignatureGeneratorOEBasicHash
Brad Bishop19323692019-04-05 15:28:33 -0400312bb.siggen.SignatureGeneratorOEEquivHash = SignatureGeneratorOEEquivHash
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500313
314
315def find_siginfo(pn, taskname, taskhashlist, d):
316 """ Find signature data files for comparison purposes """
317
318 import fnmatch
319 import glob
320
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500321 if not taskname:
322 # We have to derive pn and taskname
323 key = pn
Brad Bishop08902b02019-08-20 09:16:51 -0400324 splitit = key.split('.bb:')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500325 taskname = splitit[1]
326 pn = os.path.basename(splitit[0]).split('_')[0]
327 if key.startswith('virtual:native:'):
328 pn = pn + '-native'
329
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500330 hashfiles = {}
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500331 filedates = {}
332
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500333 def get_hashval(siginfo):
334 if siginfo.endswith('.siginfo'):
335 return siginfo.rpartition(':')[2].partition('_')[0]
336 else:
337 return siginfo.rpartition('.')[2]
338
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500339 # First search in stamps dir
340 localdata = d.createCopy()
341 localdata.setVar('MULTIMACH_TARGET_SYS', '*')
342 localdata.setVar('PN', pn)
343 localdata.setVar('PV', '*')
344 localdata.setVar('PR', '*')
345 localdata.setVar('EXTENDPE', '')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500346 stamp = localdata.getVar('STAMP')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500347 if pn.startswith("gcc-source"):
348 # gcc-source shared workdir is a special case :(
349 stamp = localdata.expand("${STAMPS_DIR}/work-shared/gcc-${PV}-${PR}")
350
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500351 filespec = '%s.%s.sigdata.*' % (stamp, taskname)
352 foundall = False
353 import glob
354 for fullpath in glob.glob(filespec):
355 match = False
356 if taskhashlist:
357 for taskhash in taskhashlist:
358 if fullpath.endswith('.%s' % taskhash):
359 hashfiles[taskhash] = fullpath
360 if len(hashfiles) == len(taskhashlist):
361 foundall = True
362 break
363 else:
364 try:
365 filedates[fullpath] = os.stat(fullpath).st_mtime
366 except OSError:
367 continue
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500368 hashval = get_hashval(fullpath)
369 hashfiles[hashval] = fullpath
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500370
371 if not taskhashlist or (len(filedates) < 2 and not foundall):
372 # That didn't work, look in sstate-cache
Brad Bishop19323692019-04-05 15:28:33 -0400373 hashes = taskhashlist or ['?' * 64]
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500374 localdata = bb.data.createCopy(d)
375 for hashval in hashes:
376 localdata.setVar('PACKAGE_ARCH', '*')
377 localdata.setVar('TARGET_VENDOR', '*')
378 localdata.setVar('TARGET_OS', '*')
379 localdata.setVar('PN', pn)
380 localdata.setVar('PV', '*')
381 localdata.setVar('PR', '*')
382 localdata.setVar('BB_TASKHASH', hashval)
Patrick Williams03907ee2022-05-01 06:28:52 -0500383 localdata.setVar('SSTATE_CURRTASK', taskname[3:])
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500384 swspec = localdata.getVar('SSTATE_SWSPEC')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500385 if taskname in ['do_fetch', 'do_unpack', 'do_patch', 'do_populate_lic', 'do_preconfigure'] and swspec:
386 localdata.setVar('SSTATE_PKGSPEC', '${SSTATE_SWSPEC}')
387 elif pn.endswith('-native') or "-cross-" in pn or "-crosssdk-" in pn:
388 localdata.setVar('SSTATE_EXTRAPATH', "${NATIVELSBSTRING}/")
Patrick Williams03907ee2022-05-01 06:28:52 -0500389 filespec = '%s.siginfo' % localdata.getVar('SSTATE_PKG')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500390
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500391 matchedfiles = glob.glob(filespec)
392 for fullpath in matchedfiles:
393 actual_hashval = get_hashval(fullpath)
394 if actual_hashval in hashfiles:
395 continue
396 hashfiles[hashval] = fullpath
397 if not taskhashlist:
398 try:
399 filedates[fullpath] = os.stat(fullpath).st_mtime
400 except:
401 continue
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500402
403 if taskhashlist:
404 return hashfiles
405 else:
406 return filedates
407
408bb.siggen.find_siginfo = find_siginfo
409
410
411def sstate_get_manifest_filename(task, d):
412 """
413 Return the sstate manifest file path for a particular task.
414 Also returns the datastore that can be used to query related variables.
415 """
416 d2 = d.createCopy()
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500417 extrainf = d.getVarFlag("do_" + task, 'stamp-extra-info')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500418 if extrainf:
419 d2.setVar("SSTATE_MANMACH", extrainf)
420 return (d2.expand("${SSTATE_MANFILEPREFIX}.%s" % task), d2)
Brad Bishop316dfdd2018-06-25 12:45:53 -0400421
422def find_sstate_manifest(taskdata, taskdata2, taskname, d, multilibcache):
423 d2 = d
424 variant = ''
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800425 curr_variant = ''
426 if d.getVar("BBEXTENDCURR") == "multilib":
427 curr_variant = d.getVar("BBEXTENDVARIANT")
428 if "virtclass-multilib" not in d.getVar("OVERRIDES"):
429 curr_variant = "invalid"
Brad Bishop316dfdd2018-06-25 12:45:53 -0400430 if taskdata2.startswith("virtual:multilib"):
431 variant = taskdata2.split(":")[2]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800432 if curr_variant != variant:
Brad Bishop316dfdd2018-06-25 12:45:53 -0400433 if variant not in multilibcache:
434 multilibcache[variant] = oe.utils.get_multilib_datastore(variant, d)
435 d2 = multilibcache[variant]
436
437 if taskdata.endswith("-native"):
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600438 pkgarchs = ["${BUILD_ARCH}", "${BUILD_ARCH}_${ORIGNATIVELSBSTRING}"]
Brad Bishop316dfdd2018-06-25 12:45:53 -0400439 elif taskdata.startswith("nativesdk-"):
440 pkgarchs = ["${SDK_ARCH}_${SDK_OS}", "allarch"]
441 elif "-cross-canadian" in taskdata:
442 pkgarchs = ["${SDK_ARCH}_${SDK_ARCH}-${SDKPKGSUFFIX}"]
443 elif "-cross-" in taskdata:
Andrew Geissler9aee5002022-03-30 16:27:02 +0000444 pkgarchs = ["${BUILD_ARCH}"]
Brad Bishop316dfdd2018-06-25 12:45:53 -0400445 elif "-crosssdk" in taskdata:
446 pkgarchs = ["${BUILD_ARCH}_${SDK_ARCH}_${SDK_OS}"]
447 else:
448 pkgarchs = ['${MACHINE_ARCH}']
449 pkgarchs = pkgarchs + list(reversed(d2.getVar("PACKAGE_EXTRA_ARCHS").split()))
450 pkgarchs.append('allarch')
451 pkgarchs.append('${SDK_ARCH}_${SDK_ARCH}-${SDKPKGSUFFIX}')
452
Andrew Geissler517393d2023-01-13 08:55:19 -0600453 searched_manifests = []
454
Brad Bishop316dfdd2018-06-25 12:45:53 -0400455 for pkgarch in pkgarchs:
456 manifest = d2.expand("${SSTATE_MANIFESTS}/manifest-%s-%s.%s" % (pkgarch, taskdata, taskname))
457 if os.path.exists(manifest):
458 return manifest, d2
Andrew Geissler517393d2023-01-13 08:55:19 -0600459 searched_manifests.append(manifest)
460 bb.fatal("The sstate manifest for task '%s:%s' (multilib variant '%s') could not be found.\nThe pkgarchs considered were: %s.\nBut none of these manifests exists:\n %s"
461 % (taskdata, taskname, variant, d2.expand(", ".join(pkgarchs)),"\n ".join(searched_manifests)))
Brad Bishop316dfdd2018-06-25 12:45:53 -0400462 return None, d2
463
Brad Bishop19323692019-04-05 15:28:33 -0400464def OEOuthashBasic(path, sigfile, task, d):
465 """
466 Basic output hash function
467
468 Calculates the output hash of a task by hashing all output file metadata,
469 and file contents.
470 """
471 import hashlib
472 import stat
473 import pwd
474 import grp
Patrick Williams93c203f2021-10-06 16:15:23 -0500475 import re
476 import fnmatch
Brad Bishop19323692019-04-05 15:28:33 -0400477
478 def update_hash(s):
479 s = s.encode('utf-8')
480 h.update(s)
481 if sigfile:
482 sigfile.write(s)
483
484 h = hashlib.sha256()
485 prev_dir = os.getcwd()
Patrick Williams93c203f2021-10-06 16:15:23 -0500486 corebase = d.getVar("COREBASE")
487 tmpdir = d.getVar("TMPDIR")
Brad Bishop19323692019-04-05 15:28:33 -0400488 include_owners = os.environ.get('PSEUDO_DISABLED') == '0'
Andrew Geisslerf0343792020-11-18 10:42:21 -0600489 if "package_write_" in task or task == "package_qa":
490 include_owners = False
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600491 include_timestamps = False
Andrew Geissler5199d832021-09-24 16:47:35 -0500492 include_root = True
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600493 if task == "package":
Andrew Geisslereff27472021-10-29 15:35:00 -0500494 include_timestamps = True
Andrew Geissler5199d832021-09-24 16:47:35 -0500495 include_root = False
Andrew Geissler595f6302022-01-24 19:11:47 +0000496 hash_version = d.getVar('HASHEQUIV_HASH_VERSION')
497 extra_sigdata = d.getVar("HASHEQUIV_EXTRA_SIGDATA")
Brad Bishop19323692019-04-05 15:28:33 -0400498
Patrick Williams93c203f2021-10-06 16:15:23 -0500499 filemaps = {}
500 for m in (d.getVar('SSTATE_HASHEQUIV_FILEMAP') or '').split():
501 entry = m.split(":")
502 if len(entry) != 3 or entry[0] != task:
503 continue
504 filemaps.setdefault(entry[1], [])
505 filemaps[entry[1]].append(entry[2])
506
Brad Bishop19323692019-04-05 15:28:33 -0400507 try:
508 os.chdir(path)
Patrick Williams93c203f2021-10-06 16:15:23 -0500509 basepath = os.path.normpath(path)
Brad Bishop19323692019-04-05 15:28:33 -0400510
511 update_hash("OEOuthashBasic\n")
Andrew Geissler595f6302022-01-24 19:11:47 +0000512 if hash_version:
513 update_hash(hash_version + "\n")
514
515 if extra_sigdata:
516 update_hash(extra_sigdata + "\n")
Brad Bishop19323692019-04-05 15:28:33 -0400517
518 # It is only currently useful to get equivalent hashes for things that
519 # can be restored from sstate. Since the sstate object is named using
520 # SSTATE_PKGSPEC and the task name, those should be included in the
521 # output hash calculation.
522 update_hash("SSTATE_PKGSPEC=%s\n" % d.getVar('SSTATE_PKGSPEC'))
523 update_hash("task=%s\n" % task)
524
525 for root, dirs, files in os.walk('.', topdown=True):
526 # Sort directories to ensure consistent ordering when recursing
527 dirs.sort()
528 files.sort()
529
530 def process(path):
531 s = os.lstat(path)
532
533 if stat.S_ISDIR(s.st_mode):
534 update_hash('d')
535 elif stat.S_ISCHR(s.st_mode):
536 update_hash('c')
537 elif stat.S_ISBLK(s.st_mode):
538 update_hash('b')
539 elif stat.S_ISSOCK(s.st_mode):
540 update_hash('s')
541 elif stat.S_ISLNK(s.st_mode):
542 update_hash('l')
543 elif stat.S_ISFIFO(s.st_mode):
544 update_hash('p')
545 else:
546 update_hash('-')
547
548 def add_perm(mask, on, off='-'):
549 if mask & s.st_mode:
550 update_hash(on)
551 else:
552 update_hash(off)
553
554 add_perm(stat.S_IRUSR, 'r')
555 add_perm(stat.S_IWUSR, 'w')
556 if stat.S_ISUID & s.st_mode:
557 add_perm(stat.S_IXUSR, 's', 'S')
558 else:
559 add_perm(stat.S_IXUSR, 'x')
560
Brad Bishop19323692019-04-05 15:28:33 -0400561 if include_owners:
Andrew Geisslereff27472021-10-29 15:35:00 -0500562 # Group/other permissions are only relevant in pseudo context
563 add_perm(stat.S_IRGRP, 'r')
564 add_perm(stat.S_IWGRP, 'w')
565 if stat.S_ISGID & s.st_mode:
566 add_perm(stat.S_IXGRP, 's', 'S')
567 else:
568 add_perm(stat.S_IXGRP, 'x')
569
570 add_perm(stat.S_IROTH, 'r')
571 add_perm(stat.S_IWOTH, 'w')
572 if stat.S_ISVTX & s.st_mode:
573 update_hash('t')
574 else:
575 add_perm(stat.S_IXOTH, 'x')
576
Andrew Geissler82c905d2020-04-13 13:39:40 -0500577 try:
578 update_hash(" %10s" % pwd.getpwuid(s.st_uid).pw_name)
579 update_hash(" %10s" % grp.getgrgid(s.st_gid).gr_name)
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600580 except KeyError as e:
Andrew Geissler82c905d2020-04-13 13:39:40 -0500581 bb.warn("KeyError in %s" % path)
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600582 msg = ("KeyError: %s\nPath %s is owned by uid %d, gid %d, which doesn't match "
583 "any user/group on target. This may be due to host contamination." % (e, path, s.st_uid, s.st_gid))
584 raise Exception(msg).with_traceback(e.__traceback__)
Brad Bishop19323692019-04-05 15:28:33 -0400585
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600586 if include_timestamps:
587 update_hash(" %10d" % s.st_mtime)
588
Brad Bishop19323692019-04-05 15:28:33 -0400589 update_hash(" ")
590 if stat.S_ISBLK(s.st_mode) or stat.S_ISCHR(s.st_mode):
591 update_hash("%9s" % ("%d.%d" % (os.major(s.st_rdev), os.minor(s.st_rdev))))
592 else:
593 update_hash(" " * 9)
594
Patrick Williams93c203f2021-10-06 16:15:23 -0500595 filterfile = False
596 for entry in filemaps:
597 if fnmatch.fnmatch(path, entry):
598 filterfile = True
599
Brad Bishop19323692019-04-05 15:28:33 -0400600 update_hash(" ")
Patrick Williams93c203f2021-10-06 16:15:23 -0500601 if stat.S_ISREG(s.st_mode) and not filterfile:
Brad Bishop19323692019-04-05 15:28:33 -0400602 update_hash("%10d" % s.st_size)
603 else:
604 update_hash(" " * 10)
605
606 update_hash(" ")
607 fh = hashlib.sha256()
608 if stat.S_ISREG(s.st_mode):
609 # Hash file contents
Patrick Williams93c203f2021-10-06 16:15:23 -0500610 if filterfile:
611 # Need to ignore paths in crossscripts and postinst-useradd files.
612 with open(path, 'rb') as d:
613 chunk = d.read()
614 chunk = chunk.replace(bytes(basepath, encoding='utf8'), b'')
615 for entry in filemaps:
616 if not fnmatch.fnmatch(path, entry):
617 continue
618 for r in filemaps[entry]:
619 if r.startswith("regex-"):
620 chunk = re.sub(bytes(r[6:], encoding='utf8'), b'', chunk)
621 else:
622 chunk = chunk.replace(bytes(r, encoding='utf8'), b'')
Brad Bishop19323692019-04-05 15:28:33 -0400623 fh.update(chunk)
Patrick Williams93c203f2021-10-06 16:15:23 -0500624 else:
625 with open(path, 'rb') as d:
626 for chunk in iter(lambda: d.read(4096), b""):
627 fh.update(chunk)
Brad Bishop19323692019-04-05 15:28:33 -0400628 update_hash(fh.hexdigest())
629 else:
630 update_hash(" " * len(fh.hexdigest()))
631
632 update_hash(" %s" % path)
633
634 if stat.S_ISLNK(s.st_mode):
635 update_hash(" -> %s" % os.readlink(path))
636
637 update_hash("\n")
638
639 # Process this directory and all its child files
Andrew Geissler5199d832021-09-24 16:47:35 -0500640 if include_root or root != ".":
641 process(root)
Brad Bishop19323692019-04-05 15:28:33 -0400642 for f in files:
643 if f == 'fixmepath':
644 continue
645 process(os.path.join(root, f))
Andrew Geissler6aa7eec2023-03-03 12:41:14 -0600646
647 for dir in dirs:
648 if os.path.islink(os.path.join(root, dir)):
649 process(os.path.join(root, dir))
Brad Bishop19323692019-04-05 15:28:33 -0400650 finally:
651 os.chdir(prev_dir)
652
653 return h.hexdigest()
654
Brad Bishop316dfdd2018-06-25 12:45:53 -0400655