blob: 4b8f264012c33b7b92cf24f7eda0e2e91617fb33 [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001#
2# SPDX-License-Identifier: GPL-2.0-only
3#
Patrick Williamsc124f4f2015-09-15 14:41:29 -05004import bb.siggen
Andrew Geisslerd25ed322020-06-27 00:28:28 -05005import bb.runqueue
Brad Bishop316dfdd2018-06-25 12:45:53 -04006import oe
Patrick Williamsc124f4f2015-09-15 14:41:29 -05007
Andrew Geisslerd25ed322020-06-27 00:28:28 -05008def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCaches):
Patrick Williamsc124f4f2015-09-15 14:41:29 -05009 # Return True if we should keep the dependency, False to drop it
10 def isNative(x):
11 return x.endswith("-native")
12 def isCross(x):
13 return "-cross-" in x
14 def isNativeSDK(x):
15 return x.startswith("nativesdk-")
Andrew Geisslerd25ed322020-06-27 00:28:28 -050016 def isKernel(mc, fn):
17 inherits = " ".join(dataCaches[mc].inherits[fn])
Patrick Williamsc124f4f2015-09-15 14:41:29 -050018 return inherits.find("/module-base.bbclass") != -1 or inherits.find("/linux-kernel-base.bbclass") != -1
Andrew Geisslerd25ed322020-06-27 00:28:28 -050019 def isPackageGroup(mc, fn):
20 inherits = " ".join(dataCaches[mc].inherits[fn])
Patrick Williamsc124f4f2015-09-15 14:41:29 -050021 return "/packagegroup.bbclass" in inherits
Andrew Geisslerd25ed322020-06-27 00:28:28 -050022 def isAllArch(mc, fn):
23 inherits = " ".join(dataCaches[mc].inherits[fn])
Patrick Williamsc124f4f2015-09-15 14:41:29 -050024 return "/allarch.bbclass" in inherits
Andrew Geisslerd25ed322020-06-27 00:28:28 -050025 def isImage(mc, fn):
26 return "/image.bbclass" in " ".join(dataCaches[mc].inherits[fn])
Patrick Williamsc124f4f2015-09-15 14:41:29 -050027
Andrew Geisslerd25ed322020-06-27 00:28:28 -050028 depmc, _, deptaskname, depmcfn = bb.runqueue.split_tid_mcfn(dep)
29 mc, _ = bb.runqueue.split_mc(fn)
30
31 # (Almost) always include our own inter-task dependencies (unless it comes
32 # from a mcdepends). The exception is the special
33 # do_kernel_configme->do_unpack_and_patch dependency from archiver.bbclass.
34 if recipename == depname and depmc == mc:
35 if task == "do_kernel_configme" and deptaskname == "do_unpack_and_patch":
Brad Bishop6e60e8b2018-02-01 10:27:11 -050036 return False
Patrick Williamsc124f4f2015-09-15 14:41:29 -050037 return True
38
Patrick Williamsc124f4f2015-09-15 14:41:29 -050039 # Exclude well defined recipe->dependency
40 if "%s->%s" % (recipename, depname) in siggen.saferecipedeps:
41 return False
42
Brad Bishop316dfdd2018-06-25 12:45:53 -040043 # Check for special wildcard
44 if "*->%s" % depname in siggen.saferecipedeps and recipename != depname:
45 return False
46
Patrick Williamsc124f4f2015-09-15 14:41:29 -050047 # Don't change native/cross/nativesdk recipe dependencies any further
48 if isNative(recipename) or isCross(recipename) or isNativeSDK(recipename):
49 return True
50
51 # Only target packages beyond here
52
53 # allarch packagegroups are assumed to have well behaved names which don't change between architecures/tunes
Andrew Geisslerd25ed322020-06-27 00:28:28 -050054 if isPackageGroup(mc, fn) and isAllArch(mc, fn) and not isNative(depname):
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080055 return False
Patrick Williamsc124f4f2015-09-15 14:41:29 -050056
57 # Exclude well defined machine specific configurations which don't change ABI
Andrew Geisslerd25ed322020-06-27 00:28:28 -050058 if depname in siggen.abisaferecipes and not isImage(mc, fn):
Patrick Williamsc124f4f2015-09-15 14:41:29 -050059 return False
60
61 # Kernel modules are well namespaced. We don't want to depend on the kernel's checksum
62 # if we're just doing an RRECOMMENDS_xxx = "kernel-module-*", not least because the checksum
63 # is machine specific.
64 # Therefore if we're not a kernel or a module recipe (inheriting the kernel classes)
65 # and we reccomend a kernel-module, we exclude the dependency.
Andrew Geisslerd25ed322020-06-27 00:28:28 -050066 if dataCaches and isKernel(depmc, depmcfn) and not isKernel(mc, fn):
67 for pkg in dataCaches[mc].runrecs[fn]:
68 if " ".join(dataCaches[mc].runrecs[fn][pkg]).find("kernel-module-") != -1:
Patrick Williamsc124f4f2015-09-15 14:41:29 -050069 return False
70
71 # Default to keep dependencies
72 return True
73
74def sstate_lockedsigs(d):
75 sigs = {}
Brad Bishop6e60e8b2018-02-01 10:27:11 -050076 types = (d.getVar("SIGGEN_LOCKEDSIGS_TYPES") or "").split()
Patrick Williamsc124f4f2015-09-15 14:41:29 -050077 for t in types:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050078 siggen_lockedsigs_var = "SIGGEN_LOCKEDSIGS_%s" % t
Brad Bishop6e60e8b2018-02-01 10:27:11 -050079 lockedsigs = (d.getVar(siggen_lockedsigs_var) or "").split()
Patrick Williamsc124f4f2015-09-15 14:41:29 -050080 for ls in lockedsigs:
81 pn, task, h = ls.split(":", 2)
82 if pn not in sigs:
83 sigs[pn] = {}
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050084 sigs[pn][task] = [h, siggen_lockedsigs_var]
Patrick Williamsc124f4f2015-09-15 14:41:29 -050085 return sigs
86
87class SignatureGeneratorOEBasic(bb.siggen.SignatureGeneratorBasic):
88 name = "OEBasic"
89 def init_rundepcheck(self, data):
Brad Bishop6e60e8b2018-02-01 10:27:11 -050090 self.abisaferecipes = (data.getVar("SIGGEN_EXCLUDERECIPES_ABISAFE") or "").split()
91 self.saferecipedeps = (data.getVar("SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS") or "").split()
Patrick Williamsc124f4f2015-09-15 14:41:29 -050092 pass
Andrew Geisslerd25ed322020-06-27 00:28:28 -050093 def rundep_check(self, fn, recipename, task, dep, depname, dataCaches = None):
94 return sstate_rundepfilter(self, fn, recipename, task, dep, depname, dataCaches)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050095
Brad Bishop00e122a2019-10-05 11:10:57 -040096class SignatureGeneratorOEBasicHashMixIn(object):
Andrew Geisslerd25ed322020-06-27 00:28:28 -050097 supports_multiconfig_datacaches = True
98
Patrick Williamsc124f4f2015-09-15 14:41:29 -050099 def init_rundepcheck(self, data):
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500100 self.abisaferecipes = (data.getVar("SIGGEN_EXCLUDERECIPES_ABISAFE") or "").split()
101 self.saferecipedeps = (data.getVar("SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS") or "").split()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500102 self.lockedsigs = sstate_lockedsigs(data)
103 self.lockedhashes = {}
104 self.lockedpnmap = {}
105 self.lockedhashfn = {}
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500106 self.machine = data.getVar("MACHINE")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500107 self.mismatch_msgs = []
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500108 self.unlockedrecipes = (data.getVar("SIGGEN_UNLOCKED_RECIPES") or
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500109 "").split()
110 self.unlockedrecipes = { k: "" for k in self.unlockedrecipes }
Andrew Geissler82c905d2020-04-13 13:39:40 -0500111 self.buildarch = data.getVar('BUILD_ARCH')
112 self._internal = False
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500113 pass
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500114
115 def tasks_resolved(self, virtmap, virtpnmap, dataCache):
116 # Translate virtual/xxx entries to PN values
117 newabisafe = []
118 for a in self.abisaferecipes:
119 if a in virtpnmap:
120 newabisafe.append(virtpnmap[a])
121 else:
122 newabisafe.append(a)
123 self.abisaferecipes = newabisafe
124 newsafedeps = []
125 for a in self.saferecipedeps:
126 a1, a2 = a.split("->")
127 if a1 in virtpnmap:
128 a1 = virtpnmap[a1]
129 if a2 in virtpnmap:
130 a2 = virtpnmap[a2]
131 newsafedeps.append(a1 + "->" + a2)
132 self.saferecipedeps = newsafedeps
133
Andrew Geisslerd25ed322020-06-27 00:28:28 -0500134 def rundep_check(self, fn, recipename, task, dep, depname, dataCaches = None):
135 return sstate_rundepfilter(self, fn, recipename, task, dep, depname, dataCaches)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500136
137 def get_taskdata(self):
Brad Bishop00e122a2019-10-05 11:10:57 -0400138 return (self.lockedpnmap, self.lockedhashfn, self.lockedhashes) + super().get_taskdata()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500139
140 def set_taskdata(self, data):
Brad Bishop00e122a2019-10-05 11:10:57 -0400141 self.lockedpnmap, self.lockedhashfn, self.lockedhashes = data[:3]
142 super().set_taskdata(data[3:])
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500143
144 def dump_sigs(self, dataCache, options):
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600145 sigfile = os.getcwd() + "/locked-sigs.inc"
146 bb.plain("Writing locked sigs to %s" % sigfile)
147 self.dump_lockedsigs(sigfile)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500148 return super(bb.siggen.SignatureGeneratorBasicHash, self).dump_sigs(dataCache, options)
149
Andrew Geisslerd25ed322020-06-27 00:28:28 -0500150 def prep_taskhash(self, tid, deps, dataCaches):
151 super().prep_taskhash(tid, deps, dataCaches)
Andrew Geissler82c905d2020-04-13 13:39:40 -0500152 if hasattr(self, "extramethod"):
Andrew Geisslerd25ed322020-06-27 00:28:28 -0500153 (mc, _, _, fn) = bb.runqueue.split_tid_mcfn(tid)
154 inherits = " ".join(dataCaches[mc].inherits[fn])
Andrew Geissler82c905d2020-04-13 13:39:40 -0500155 if inherits.find("/native.bbclass") != -1 or inherits.find("/cross.bbclass") != -1:
156 self.extramethod[tid] = ":" + self.buildarch
157
Andrew Geisslerd25ed322020-06-27 00:28:28 -0500158 def get_taskhash(self, tid, deps, dataCaches):
Andrew Geissler82c905d2020-04-13 13:39:40 -0500159 if tid in self.lockedhashes:
160 if self.lockedhashes[tid]:
161 return self.lockedhashes[tid]
162 else:
Andrew Geisslerd25ed322020-06-27 00:28:28 -0500163 return super().get_taskhash(tid, deps, dataCaches)
Andrew Geissler82c905d2020-04-13 13:39:40 -0500164
Andrew Geisslerd25ed322020-06-27 00:28:28 -0500165 # get_taskhash will call get_unihash internally in the parent class, we
Andrew Geissler82c905d2020-04-13 13:39:40 -0500166 # need to disable our filter of it whilst this runs else
167 # incorrect hashes can be calculated.
168 self._internal = True
Andrew Geisslerd25ed322020-06-27 00:28:28 -0500169 h = super().get_taskhash(tid, deps, dataCaches)
Andrew Geissler82c905d2020-04-13 13:39:40 -0500170 self._internal = False
Brad Bishop08902b02019-08-20 09:16:51 -0400171
172 (mc, _, task, fn) = bb.runqueue.split_tid_mcfn(tid)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500173
Andrew Geisslerd25ed322020-06-27 00:28:28 -0500174 recipename = dataCaches[mc].pkg_fn[fn]
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500175 self.lockedpnmap[fn] = recipename
Andrew Geisslerd25ed322020-06-27 00:28:28 -0500176 self.lockedhashfn[fn] = dataCaches[mc].hashfn[fn]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500177
178 unlocked = False
179 if recipename in self.unlockedrecipes:
180 unlocked = True
181 else:
182 def recipename_from_dep(dep):
Andrew Geisslerd25ed322020-06-27 00:28:28 -0500183 (depmc, _, _, depfn) = bb.runqueue.split_tid_mcfn(dep)
184 return dataCaches[depmc].pkg_fn[depfn]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500185
186 # If any unlocked recipe is in the direct dependencies then the
187 # current recipe should be unlocked as well.
Brad Bishop08902b02019-08-20 09:16:51 -0400188 depnames = [ recipename_from_dep(x) for x in deps if mc == bb.runqueue.mc_from_tid(x)]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500189 if any(x in y for y in depnames for x in self.unlockedrecipes):
190 self.unlockedrecipes[recipename] = ''
191 unlocked = True
192
193 if not unlocked and recipename in self.lockedsigs:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500194 if task in self.lockedsigs[recipename]:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500195 h_locked = self.lockedsigs[recipename][task][0]
196 var = self.lockedsigs[recipename][task][1]
Brad Bishop08902b02019-08-20 09:16:51 -0400197 self.lockedhashes[tid] = h_locked
Andrew Geissler82c905d2020-04-13 13:39:40 -0500198 self._internal = True
199 unihash = self.get_unihash(tid)
200 self._internal = False
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500201 #bb.warn("Using %s %s %s" % (recipename, task, h))
202
Brad Bishop00e122a2019-10-05 11:10:57 -0400203 if h != h_locked and h_locked != unihash:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500204 self.mismatch_msgs.append('The %s:%s sig is computed to be %s, but the sig is locked to %s in %s'
205 % (recipename, task, h, h_locked, var))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500206
207 return h_locked
Andrew Geissler82c905d2020-04-13 13:39:40 -0500208
209 self.lockedhashes[tid] = False
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500210 #bb.warn("%s %s %s" % (recipename, task, h))
211 return h
212
Andrew Geissler82c905d2020-04-13 13:39:40 -0500213 def get_stampfile_hash(self, tid):
214 if tid in self.lockedhashes and self.lockedhashes[tid]:
215 return self.lockedhashes[tid]
216 return super().get_stampfile_hash(tid)
217
Brad Bishop00e122a2019-10-05 11:10:57 -0400218 def get_unihash(self, tid):
Andrew Geissler82c905d2020-04-13 13:39:40 -0500219 if tid in self.lockedhashes and self.lockedhashes[tid] and not self._internal:
Brad Bishop00e122a2019-10-05 11:10:57 -0400220 return self.lockedhashes[tid]
221 return super().get_unihash(tid)
222
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500223 def dump_sigtask(self, fn, task, stampbase, runtime):
Brad Bishop08902b02019-08-20 09:16:51 -0400224 tid = fn + ":" + task
Andrew Geissler82c905d2020-04-13 13:39:40 -0500225 if tid in self.lockedhashes and self.lockedhashes[tid]:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500226 return
227 super(bb.siggen.SignatureGeneratorBasicHash, self).dump_sigtask(fn, task, stampbase, runtime)
228
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600229 def dump_lockedsigs(self, sigfile, taskfilter=None):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500230 types = {}
Brad Bishop08902b02019-08-20 09:16:51 -0400231 for tid in self.runtaskdeps:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500232 if taskfilter:
Brad Bishop08902b02019-08-20 09:16:51 -0400233 if not tid in taskfilter:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500234 continue
Brad Bishop08902b02019-08-20 09:16:51 -0400235 fn = bb.runqueue.fn_from_tid(tid)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500236 t = self.lockedhashfn[fn].split(" ")[1].split(":")[5]
237 t = 't-' + t.replace('_', '-')
238 if t not in types:
239 types[t] = []
Brad Bishop08902b02019-08-20 09:16:51 -0400240 types[t].append(tid)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500241
242 with open(sigfile, "w") as f:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500243 l = sorted(types)
244 for t in l:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500245 f.write('SIGGEN_LOCKEDSIGS_%s = "\\\n' % t)
246 types[t].sort()
Brad Bishop08902b02019-08-20 09:16:51 -0400247 sortedtid = sorted(types[t], key=lambda tid: self.lockedpnmap[bb.runqueue.fn_from_tid(tid)])
248 for tid in sortedtid:
249 (_, _, task, fn) = bb.runqueue.split_tid_mcfn(tid)
250 if tid not in self.taskhash:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500251 continue
Brad Bishop00e122a2019-10-05 11:10:57 -0400252 f.write(" " + self.lockedpnmap[fn] + ":" + task + ":" + self.get_unihash(tid) + " \\\n")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500253 f.write(' "\n')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500254 f.write('SIGGEN_LOCKEDSIGS_TYPES_%s = "%s"' % (self.machine, " ".join(l)))
255
256 def dump_siglist(self, sigfile):
257 with open(sigfile, "w") as f:
258 tasks = []
259 for taskitem in self.taskhash:
Brad Bishop08902b02019-08-20 09:16:51 -0400260 (fn, task) = taskitem.rsplit(":", 1)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500261 pn = self.lockedpnmap[fn]
262 tasks.append((pn, task, fn, self.taskhash[taskitem]))
263 for (pn, task, fn, taskhash) in sorted(tasks):
Brad Bishop08902b02019-08-20 09:16:51 -0400264 f.write('%s:%s %s %s\n' % (pn, task, fn, taskhash))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500265
Brad Bishop08902b02019-08-20 09:16:51 -0400266 def checkhashes(self, sq_data, missed, found, d):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500267 warn_msgs = []
268 error_msgs = []
269 sstate_missing_msgs = []
270
Brad Bishop08902b02019-08-20 09:16:51 -0400271 for tid in sq_data['hash']:
272 if tid not in found:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500273 for pn in self.lockedsigs:
Brad Bishop08902b02019-08-20 09:16:51 -0400274 taskname = bb.runqueue.taskname_from_tid(tid)
275 if sq_data['hash'][tid] in iter(self.lockedsigs[pn].values()):
276 if taskname == 'do_shared_workdir':
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500277 continue
278 sstate_missing_msgs.append("Locked sig is set for %s:%s (%s) yet not in sstate cache?"
Brad Bishop08902b02019-08-20 09:16:51 -0400279 % (pn, taskname, sq_data['hash'][tid]))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500280
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500281 checklevel = d.getVar("SIGGEN_LOCKEDSIGS_TASKSIG_CHECK")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500282 if checklevel == 'warn':
283 warn_msgs += self.mismatch_msgs
284 elif checklevel == 'error':
285 error_msgs += self.mismatch_msgs
286
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500287 checklevel = d.getVar("SIGGEN_LOCKEDSIGS_SSTATE_EXISTS_CHECK")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500288 if checklevel == 'warn':
289 warn_msgs += sstate_missing_msgs
290 elif checklevel == 'error':
291 error_msgs += sstate_missing_msgs
292
293 if warn_msgs:
294 bb.warn("\n".join(warn_msgs))
295 if error_msgs:
296 bb.fatal("\n".join(error_msgs))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500297
Brad Bishop00e122a2019-10-05 11:10:57 -0400298class SignatureGeneratorOEBasicHash(SignatureGeneratorOEBasicHashMixIn, bb.siggen.SignatureGeneratorBasicHash):
299 name = "OEBasicHash"
300
301class SignatureGeneratorOEEquivHash(SignatureGeneratorOEBasicHashMixIn, bb.siggen.SignatureGeneratorUniHashMixIn, bb.siggen.SignatureGeneratorBasicHash):
Brad Bishop19323692019-04-05 15:28:33 -0400302 name = "OEEquivHash"
303
304 def init_rundepcheck(self, data):
305 super().init_rundepcheck(data)
Brad Bishopa34c0302019-09-23 22:34:48 -0400306 self.server = data.getVar('BB_HASHSERVE')
Brad Bishop08902b02019-08-20 09:16:51 -0400307 if not self.server:
Brad Bishopa34c0302019-09-23 22:34:48 -0400308 bb.fatal("OEEquivHash requires BB_HASHSERVE to be set")
Brad Bishop19323692019-04-05 15:28:33 -0400309 self.method = data.getVar('SSTATE_HASHEQUIV_METHOD')
Brad Bishop08902b02019-08-20 09:16:51 -0400310 if not self.method:
311 bb.fatal("OEEquivHash requires SSTATE_HASHEQUIV_METHOD to be set")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500312
313# Insert these classes into siggen's namespace so it can see and select them
314bb.siggen.SignatureGeneratorOEBasic = SignatureGeneratorOEBasic
315bb.siggen.SignatureGeneratorOEBasicHash = SignatureGeneratorOEBasicHash
Brad Bishop19323692019-04-05 15:28:33 -0400316bb.siggen.SignatureGeneratorOEEquivHash = SignatureGeneratorOEEquivHash
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500317
318
319def find_siginfo(pn, taskname, taskhashlist, d):
320 """ Find signature data files for comparison purposes """
321
322 import fnmatch
323 import glob
324
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500325 if not taskname:
326 # We have to derive pn and taskname
327 key = pn
Brad Bishop08902b02019-08-20 09:16:51 -0400328 splitit = key.split('.bb:')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500329 taskname = splitit[1]
330 pn = os.path.basename(splitit[0]).split('_')[0]
331 if key.startswith('virtual:native:'):
332 pn = pn + '-native'
333
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500334 hashfiles = {}
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500335 filedates = {}
336
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500337 def get_hashval(siginfo):
338 if siginfo.endswith('.siginfo'):
339 return siginfo.rpartition(':')[2].partition('_')[0]
340 else:
341 return siginfo.rpartition('.')[2]
342
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500343 # First search in stamps dir
344 localdata = d.createCopy()
345 localdata.setVar('MULTIMACH_TARGET_SYS', '*')
346 localdata.setVar('PN', pn)
347 localdata.setVar('PV', '*')
348 localdata.setVar('PR', '*')
349 localdata.setVar('EXTENDPE', '')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500350 stamp = localdata.getVar('STAMP')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500351 if pn.startswith("gcc-source"):
352 # gcc-source shared workdir is a special case :(
353 stamp = localdata.expand("${STAMPS_DIR}/work-shared/gcc-${PV}-${PR}")
354
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500355 filespec = '%s.%s.sigdata.*' % (stamp, taskname)
356 foundall = False
357 import glob
358 for fullpath in glob.glob(filespec):
359 match = False
360 if taskhashlist:
361 for taskhash in taskhashlist:
362 if fullpath.endswith('.%s' % taskhash):
363 hashfiles[taskhash] = fullpath
364 if len(hashfiles) == len(taskhashlist):
365 foundall = True
366 break
367 else:
368 try:
369 filedates[fullpath] = os.stat(fullpath).st_mtime
370 except OSError:
371 continue
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500372 hashval = get_hashval(fullpath)
373 hashfiles[hashval] = fullpath
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500374
375 if not taskhashlist or (len(filedates) < 2 and not foundall):
376 # That didn't work, look in sstate-cache
Brad Bishop19323692019-04-05 15:28:33 -0400377 hashes = taskhashlist or ['?' * 64]
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500378 localdata = bb.data.createCopy(d)
379 for hashval in hashes:
380 localdata.setVar('PACKAGE_ARCH', '*')
381 localdata.setVar('TARGET_VENDOR', '*')
382 localdata.setVar('TARGET_OS', '*')
383 localdata.setVar('PN', pn)
384 localdata.setVar('PV', '*')
385 localdata.setVar('PR', '*')
386 localdata.setVar('BB_TASKHASH', hashval)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500387 swspec = localdata.getVar('SSTATE_SWSPEC')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500388 if taskname in ['do_fetch', 'do_unpack', 'do_patch', 'do_populate_lic', 'do_preconfigure'] and swspec:
389 localdata.setVar('SSTATE_PKGSPEC', '${SSTATE_SWSPEC}')
390 elif pn.endswith('-native') or "-cross-" in pn or "-crosssdk-" in pn:
391 localdata.setVar('SSTATE_EXTRAPATH', "${NATIVELSBSTRING}/")
392 sstatename = taskname[3:]
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500393 filespec = '%s_%s.*.siginfo' % (localdata.getVar('SSTATE_PKG'), sstatename)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500394
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500395 matchedfiles = glob.glob(filespec)
396 for fullpath in matchedfiles:
397 actual_hashval = get_hashval(fullpath)
398 if actual_hashval in hashfiles:
399 continue
400 hashfiles[hashval] = fullpath
401 if not taskhashlist:
402 try:
403 filedates[fullpath] = os.stat(fullpath).st_mtime
404 except:
405 continue
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500406
407 if taskhashlist:
408 return hashfiles
409 else:
410 return filedates
411
412bb.siggen.find_siginfo = find_siginfo
413
414
415def sstate_get_manifest_filename(task, d):
416 """
417 Return the sstate manifest file path for a particular task.
418 Also returns the datastore that can be used to query related variables.
419 """
420 d2 = d.createCopy()
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500421 extrainf = d.getVarFlag("do_" + task, 'stamp-extra-info')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500422 if extrainf:
423 d2.setVar("SSTATE_MANMACH", extrainf)
424 return (d2.expand("${SSTATE_MANFILEPREFIX}.%s" % task), d2)
Brad Bishop316dfdd2018-06-25 12:45:53 -0400425
426def find_sstate_manifest(taskdata, taskdata2, taskname, d, multilibcache):
427 d2 = d
428 variant = ''
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800429 curr_variant = ''
430 if d.getVar("BBEXTENDCURR") == "multilib":
431 curr_variant = d.getVar("BBEXTENDVARIANT")
432 if "virtclass-multilib" not in d.getVar("OVERRIDES"):
433 curr_variant = "invalid"
Brad Bishop316dfdd2018-06-25 12:45:53 -0400434 if taskdata2.startswith("virtual:multilib"):
435 variant = taskdata2.split(":")[2]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800436 if curr_variant != variant:
Brad Bishop316dfdd2018-06-25 12:45:53 -0400437 if variant not in multilibcache:
438 multilibcache[variant] = oe.utils.get_multilib_datastore(variant, d)
439 d2 = multilibcache[variant]
440
441 if taskdata.endswith("-native"):
442 pkgarchs = ["${BUILD_ARCH}"]
443 elif taskdata.startswith("nativesdk-"):
444 pkgarchs = ["${SDK_ARCH}_${SDK_OS}", "allarch"]
445 elif "-cross-canadian" in taskdata:
446 pkgarchs = ["${SDK_ARCH}_${SDK_ARCH}-${SDKPKGSUFFIX}"]
447 elif "-cross-" in taskdata:
448 pkgarchs = ["${BUILD_ARCH}_${TARGET_ARCH}"]
449 elif "-crosssdk" in taskdata:
450 pkgarchs = ["${BUILD_ARCH}_${SDK_ARCH}_${SDK_OS}"]
451 else:
452 pkgarchs = ['${MACHINE_ARCH}']
453 pkgarchs = pkgarchs + list(reversed(d2.getVar("PACKAGE_EXTRA_ARCHS").split()))
454 pkgarchs.append('allarch')
455 pkgarchs.append('${SDK_ARCH}_${SDK_ARCH}-${SDKPKGSUFFIX}')
456
457 for pkgarch in pkgarchs:
458 manifest = d2.expand("${SSTATE_MANIFESTS}/manifest-%s-%s.%s" % (pkgarch, taskdata, taskname))
459 if os.path.exists(manifest):
460 return manifest, d2
461 bb.warn("Manifest %s not found in %s (variant '%s')?" % (manifest, d2.expand(" ".join(pkgarchs)), variant))
462 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
475
476 def update_hash(s):
477 s = s.encode('utf-8')
478 h.update(s)
479 if sigfile:
480 sigfile.write(s)
481
482 h = hashlib.sha256()
483 prev_dir = os.getcwd()
484 include_owners = os.environ.get('PSEUDO_DISABLED') == '0'
Andrew Geissleraf5e4ef2020-10-16 10:22:50 -0500485 if "package_write_" in task or task == "package_qa":
486 include_owners = False
Andrew Geissler82c905d2020-04-13 13:39:40 -0500487 extra_content = d.getVar('HASHEQUIV_HASH_VERSION')
Brad Bishop19323692019-04-05 15:28:33 -0400488
489 try:
490 os.chdir(path)
491
492 update_hash("OEOuthashBasic\n")
Andrew Geissler82c905d2020-04-13 13:39:40 -0500493 if extra_content:
494 update_hash(extra_content + "\n")
Brad Bishop19323692019-04-05 15:28:33 -0400495
496 # It is only currently useful to get equivalent hashes for things that
497 # can be restored from sstate. Since the sstate object is named using
498 # SSTATE_PKGSPEC and the task name, those should be included in the
499 # output hash calculation.
500 update_hash("SSTATE_PKGSPEC=%s\n" % d.getVar('SSTATE_PKGSPEC'))
501 update_hash("task=%s\n" % task)
502
503 for root, dirs, files in os.walk('.', topdown=True):
504 # Sort directories to ensure consistent ordering when recursing
505 dirs.sort()
506 files.sort()
507
508 def process(path):
509 s = os.lstat(path)
510
511 if stat.S_ISDIR(s.st_mode):
512 update_hash('d')
513 elif stat.S_ISCHR(s.st_mode):
514 update_hash('c')
515 elif stat.S_ISBLK(s.st_mode):
516 update_hash('b')
517 elif stat.S_ISSOCK(s.st_mode):
518 update_hash('s')
519 elif stat.S_ISLNK(s.st_mode):
520 update_hash('l')
521 elif stat.S_ISFIFO(s.st_mode):
522 update_hash('p')
523 else:
524 update_hash('-')
525
526 def add_perm(mask, on, off='-'):
527 if mask & s.st_mode:
528 update_hash(on)
529 else:
530 update_hash(off)
531
532 add_perm(stat.S_IRUSR, 'r')
533 add_perm(stat.S_IWUSR, 'w')
534 if stat.S_ISUID & s.st_mode:
535 add_perm(stat.S_IXUSR, 's', 'S')
536 else:
537 add_perm(stat.S_IXUSR, 'x')
538
539 add_perm(stat.S_IRGRP, 'r')
540 add_perm(stat.S_IWGRP, 'w')
541 if stat.S_ISGID & s.st_mode:
542 add_perm(stat.S_IXGRP, 's', 'S')
543 else:
544 add_perm(stat.S_IXGRP, 'x')
545
546 add_perm(stat.S_IROTH, 'r')
547 add_perm(stat.S_IWOTH, 'w')
548 if stat.S_ISVTX & s.st_mode:
549 update_hash('t')
550 else:
551 add_perm(stat.S_IXOTH, 'x')
552
553 if include_owners:
Andrew Geissler82c905d2020-04-13 13:39:40 -0500554 try:
555 update_hash(" %10s" % pwd.getpwuid(s.st_uid).pw_name)
556 update_hash(" %10s" % grp.getgrgid(s.st_gid).gr_name)
557 except KeyError:
558 bb.warn("KeyError in %s" % path)
559 raise
Brad Bishop19323692019-04-05 15:28:33 -0400560
561 update_hash(" ")
562 if stat.S_ISBLK(s.st_mode) or stat.S_ISCHR(s.st_mode):
563 update_hash("%9s" % ("%d.%d" % (os.major(s.st_rdev), os.minor(s.st_rdev))))
564 else:
565 update_hash(" " * 9)
566
567 update_hash(" ")
568 if stat.S_ISREG(s.st_mode):
569 update_hash("%10d" % s.st_size)
570 else:
571 update_hash(" " * 10)
572
573 update_hash(" ")
574 fh = hashlib.sha256()
575 if stat.S_ISREG(s.st_mode):
576 # Hash file contents
577 with open(path, 'rb') as d:
578 for chunk in iter(lambda: d.read(4096), b""):
579 fh.update(chunk)
580 update_hash(fh.hexdigest())
581 else:
582 update_hash(" " * len(fh.hexdigest()))
583
584 update_hash(" %s" % path)
585
586 if stat.S_ISLNK(s.st_mode):
587 update_hash(" -> %s" % os.readlink(path))
588
589 update_hash("\n")
590
591 # Process this directory and all its child files
592 process(root)
593 for f in files:
594 if f == 'fixmepath':
595 continue
596 process(os.path.join(root, f))
597 finally:
598 os.chdir(prev_dir)
599
600 return h.hexdigest()
601
Brad Bishop316dfdd2018-06-25 12:45:53 -0400602