blob: 50d80bf51a18a6d9b5967b58f3173e1d661fb8ed [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
Brad Bishop316dfdd2018-06-25 12:45:53 -04005import oe
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006
7def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCache):
8 # Return True if we should keep the dependency, False to drop it
9 def isNative(x):
10 return x.endswith("-native")
11 def isCross(x):
12 return "-cross-" in x
13 def isNativeSDK(x):
14 return x.startswith("nativesdk-")
15 def isKernel(fn):
16 inherits = " ".join(dataCache.inherits[fn])
17 return inherits.find("/module-base.bbclass") != -1 or inherits.find("/linux-kernel-base.bbclass") != -1
18 def isPackageGroup(fn):
19 inherits = " ".join(dataCache.inherits[fn])
20 return "/packagegroup.bbclass" in inherits
21 def isAllArch(fn):
22 inherits = " ".join(dataCache.inherits[fn])
23 return "/allarch.bbclass" in inherits
24 def isImage(fn):
25 return "/image.bbclass" in " ".join(dataCache.inherits[fn])
26
Brad Bishop6e60e8b2018-02-01 10:27:11 -050027 # (Almost) always include our own inter-task dependencies.
28 # The exception is the special do_kernel_configme->do_unpack_and_patch
29 # dependency from archiver.bbclass.
Patrick Williamsc124f4f2015-09-15 14:41:29 -050030 if recipename == depname:
Brad Bishop6e60e8b2018-02-01 10:27:11 -050031 if task == "do_kernel_configme" and dep.endswith(".do_unpack_and_patch"):
32 return False
Patrick Williamsc124f4f2015-09-15 14:41:29 -050033 return True
34
Patrick Williamsc124f4f2015-09-15 14:41:29 -050035 # Exclude well defined recipe->dependency
36 if "%s->%s" % (recipename, depname) in siggen.saferecipedeps:
37 return False
38
Brad Bishop316dfdd2018-06-25 12:45:53 -040039 # Check for special wildcard
40 if "*->%s" % depname in siggen.saferecipedeps and recipename != depname:
41 return False
42
Patrick Williamsc124f4f2015-09-15 14:41:29 -050043 # Don't change native/cross/nativesdk recipe dependencies any further
44 if isNative(recipename) or isCross(recipename) or isNativeSDK(recipename):
45 return True
46
47 # Only target packages beyond here
48
49 # allarch packagegroups are assumed to have well behaved names which don't change between architecures/tunes
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050050 if isPackageGroup(fn) and isAllArch(fn) and not isNative(depname):
Brad Bishop1a4b7ee2018-12-16 17:11:34 -080051 return False
Patrick Williamsc124f4f2015-09-15 14:41:29 -050052
53 # Exclude well defined machine specific configurations which don't change ABI
54 if depname in siggen.abisaferecipes and not isImage(fn):
55 return False
56
57 # Kernel modules are well namespaced. We don't want to depend on the kernel's checksum
58 # if we're just doing an RRECOMMENDS_xxx = "kernel-module-*", not least because the checksum
59 # is machine specific.
60 # Therefore if we're not a kernel or a module recipe (inheriting the kernel classes)
61 # and we reccomend a kernel-module, we exclude the dependency.
Brad Bishop08902b02019-08-20 09:16:51 -040062 depfn = dep.rsplit(":", 1)[0]
Patrick Williamsc124f4f2015-09-15 14:41:29 -050063 if dataCache and isKernel(depfn) and not isKernel(fn):
64 for pkg in dataCache.runrecs[fn]:
65 if " ".join(dataCache.runrecs[fn][pkg]).find("kernel-module-") != -1:
66 return False
67
68 # Default to keep dependencies
69 return True
70
71def sstate_lockedsigs(d):
72 sigs = {}
Brad Bishop6e60e8b2018-02-01 10:27:11 -050073 types = (d.getVar("SIGGEN_LOCKEDSIGS_TYPES") or "").split()
Patrick Williamsc124f4f2015-09-15 14:41:29 -050074 for t in types:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050075 siggen_lockedsigs_var = "SIGGEN_LOCKEDSIGS_%s" % t
Brad Bishop6e60e8b2018-02-01 10:27:11 -050076 lockedsigs = (d.getVar(siggen_lockedsigs_var) or "").split()
Patrick Williamsc124f4f2015-09-15 14:41:29 -050077 for ls in lockedsigs:
78 pn, task, h = ls.split(":", 2)
79 if pn not in sigs:
80 sigs[pn] = {}
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050081 sigs[pn][task] = [h, siggen_lockedsigs_var]
Patrick Williamsc124f4f2015-09-15 14:41:29 -050082 return sigs
83
84class SignatureGeneratorOEBasic(bb.siggen.SignatureGeneratorBasic):
85 name = "OEBasic"
86 def init_rundepcheck(self, data):
Brad Bishop6e60e8b2018-02-01 10:27:11 -050087 self.abisaferecipes = (data.getVar("SIGGEN_EXCLUDERECIPES_ABISAFE") or "").split()
88 self.saferecipedeps = (data.getVar("SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS") or "").split()
Patrick Williamsc124f4f2015-09-15 14:41:29 -050089 pass
90 def rundep_check(self, fn, recipename, task, dep, depname, dataCache = None):
91 return sstate_rundepfilter(self, fn, recipename, task, dep, depname, dataCache)
92
93class SignatureGeneratorOEBasicHash(bb.siggen.SignatureGeneratorBasicHash):
94 name = "OEBasicHash"
95 def init_rundepcheck(self, data):
Brad Bishop6e60e8b2018-02-01 10:27:11 -050096 self.abisaferecipes = (data.getVar("SIGGEN_EXCLUDERECIPES_ABISAFE") or "").split()
97 self.saferecipedeps = (data.getVar("SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS") or "").split()
Patrick Williamsc124f4f2015-09-15 14:41:29 -050098 self.lockedsigs = sstate_lockedsigs(data)
99 self.lockedhashes = {}
100 self.lockedpnmap = {}
101 self.lockedhashfn = {}
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500102 self.machine = data.getVar("MACHINE")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500103 self.mismatch_msgs = []
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500104 self.unlockedrecipes = (data.getVar("SIGGEN_UNLOCKED_RECIPES") or
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500105 "").split()
106 self.unlockedrecipes = { k: "" for k in self.unlockedrecipes }
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500107 pass
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500108
109 def tasks_resolved(self, virtmap, virtpnmap, dataCache):
110 # Translate virtual/xxx entries to PN values
111 newabisafe = []
112 for a in self.abisaferecipes:
113 if a in virtpnmap:
114 newabisafe.append(virtpnmap[a])
115 else:
116 newabisafe.append(a)
117 self.abisaferecipes = newabisafe
118 newsafedeps = []
119 for a in self.saferecipedeps:
120 a1, a2 = a.split("->")
121 if a1 in virtpnmap:
122 a1 = virtpnmap[a1]
123 if a2 in virtpnmap:
124 a2 = virtpnmap[a2]
125 newsafedeps.append(a1 + "->" + a2)
126 self.saferecipedeps = newsafedeps
127
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500128 def rundep_check(self, fn, recipename, task, dep, depname, dataCache = None):
129 return sstate_rundepfilter(self, fn, recipename, task, dep, depname, dataCache)
130
131 def get_taskdata(self):
132 data = super(bb.siggen.SignatureGeneratorBasicHash, self).get_taskdata()
133 return (data, self.lockedpnmap, self.lockedhashfn)
134
135 def set_taskdata(self, data):
136 coredata, self.lockedpnmap, self.lockedhashfn = data
137 super(bb.siggen.SignatureGeneratorBasicHash, self).set_taskdata(coredata)
138
139 def dump_sigs(self, dataCache, options):
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600140 sigfile = os.getcwd() + "/locked-sigs.inc"
141 bb.plain("Writing locked sigs to %s" % sigfile)
142 self.dump_lockedsigs(sigfile)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500143 return super(bb.siggen.SignatureGeneratorBasicHash, self).dump_sigs(dataCache, options)
144
Brad Bishop08902b02019-08-20 09:16:51 -0400145 def get_taskhash(self, tid, deps, dataCache):
146 h = super(bb.siggen.SignatureGeneratorBasicHash, self).get_taskhash(tid, deps, dataCache)
147
148 (mc, _, task, fn) = bb.runqueue.split_tid_mcfn(tid)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500149
150 recipename = dataCache.pkg_fn[fn]
151 self.lockedpnmap[fn] = recipename
152 self.lockedhashfn[fn] = dataCache.hashfn[fn]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500153
154 unlocked = False
155 if recipename in self.unlockedrecipes:
156 unlocked = True
157 else:
158 def recipename_from_dep(dep):
Brad Bishop08902b02019-08-20 09:16:51 -0400159 fn = bb.runqueue.fn_from_tid(dep)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500160 return dataCache.pkg_fn[fn]
161
162 # If any unlocked recipe is in the direct dependencies then the
163 # current recipe should be unlocked as well.
Brad Bishop08902b02019-08-20 09:16:51 -0400164 depnames = [ recipename_from_dep(x) for x in deps if mc == bb.runqueue.mc_from_tid(x)]
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500165 if any(x in y for y in depnames for x in self.unlockedrecipes):
166 self.unlockedrecipes[recipename] = ''
167 unlocked = True
168
169 if not unlocked and recipename in self.lockedsigs:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500170 if task in self.lockedsigs[recipename]:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500171 h_locked = self.lockedsigs[recipename][task][0]
172 var = self.lockedsigs[recipename][task][1]
Brad Bishop08902b02019-08-20 09:16:51 -0400173 self.lockedhashes[tid] = h_locked
174 self.taskhash[tid] = h_locked
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500175 #bb.warn("Using %s %s %s" % (recipename, task, h))
176
177 if h != h_locked:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500178 self.mismatch_msgs.append('The %s:%s sig is computed to be %s, but the sig is locked to %s in %s'
179 % (recipename, task, h, h_locked, var))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500180
181 return h_locked
182 #bb.warn("%s %s %s" % (recipename, task, h))
183 return h
184
185 def dump_sigtask(self, fn, task, stampbase, runtime):
Brad Bishop08902b02019-08-20 09:16:51 -0400186 tid = fn + ":" + task
187 if tid in self.lockedhashes:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500188 return
189 super(bb.siggen.SignatureGeneratorBasicHash, self).dump_sigtask(fn, task, stampbase, runtime)
190
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600191 def dump_lockedsigs(self, sigfile, taskfilter=None):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500192 types = {}
Brad Bishop08902b02019-08-20 09:16:51 -0400193 for tid in self.runtaskdeps:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500194 if taskfilter:
Brad Bishop08902b02019-08-20 09:16:51 -0400195 if not tid in taskfilter:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500196 continue
Brad Bishop08902b02019-08-20 09:16:51 -0400197 fn = bb.runqueue.fn_from_tid(tid)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500198 t = self.lockedhashfn[fn].split(" ")[1].split(":")[5]
199 t = 't-' + t.replace('_', '-')
200 if t not in types:
201 types[t] = []
Brad Bishop08902b02019-08-20 09:16:51 -0400202 types[t].append(tid)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500203
204 with open(sigfile, "w") as f:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500205 l = sorted(types)
206 for t in l:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500207 f.write('SIGGEN_LOCKEDSIGS_%s = "\\\n' % t)
208 types[t].sort()
Brad Bishop08902b02019-08-20 09:16:51 -0400209 sortedtid = sorted(types[t], key=lambda tid: self.lockedpnmap[bb.runqueue.fn_from_tid(tid)])
210 for tid in sortedtid:
211 (_, _, task, fn) = bb.runqueue.split_tid_mcfn(tid)
212 if tid not in self.taskhash:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500213 continue
Brad Bishop08902b02019-08-20 09:16:51 -0400214 f.write(" " + self.lockedpnmap[fn] + ":" + task + ":" + self.taskhash[tid] + " \\\n")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500215 f.write(' "\n')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500216 f.write('SIGGEN_LOCKEDSIGS_TYPES_%s = "%s"' % (self.machine, " ".join(l)))
217
218 def dump_siglist(self, sigfile):
219 with open(sigfile, "w") as f:
220 tasks = []
221 for taskitem in self.taskhash:
Brad Bishop08902b02019-08-20 09:16:51 -0400222 (fn, task) = taskitem.rsplit(":", 1)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500223 pn = self.lockedpnmap[fn]
224 tasks.append((pn, task, fn, self.taskhash[taskitem]))
225 for (pn, task, fn, taskhash) in sorted(tasks):
Brad Bishop08902b02019-08-20 09:16:51 -0400226 f.write('%s:%s %s %s\n' % (pn, task, fn, taskhash))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500227
Brad Bishop08902b02019-08-20 09:16:51 -0400228 def checkhashes(self, sq_data, missed, found, d):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500229 warn_msgs = []
230 error_msgs = []
231 sstate_missing_msgs = []
232
Brad Bishop08902b02019-08-20 09:16:51 -0400233 for tid in sq_data['hash']:
234 if tid not in found:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500235 for pn in self.lockedsigs:
Brad Bishop08902b02019-08-20 09:16:51 -0400236 taskname = bb.runqueue.taskname_from_tid(tid)
237 if sq_data['hash'][tid] in iter(self.lockedsigs[pn].values()):
238 if taskname == 'do_shared_workdir':
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500239 continue
240 sstate_missing_msgs.append("Locked sig is set for %s:%s (%s) yet not in sstate cache?"
Brad Bishop08902b02019-08-20 09:16:51 -0400241 % (pn, taskname, sq_data['hash'][tid]))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500242
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500243 checklevel = d.getVar("SIGGEN_LOCKEDSIGS_TASKSIG_CHECK")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500244 if checklevel == 'warn':
245 warn_msgs += self.mismatch_msgs
246 elif checklevel == 'error':
247 error_msgs += self.mismatch_msgs
248
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500249 checklevel = d.getVar("SIGGEN_LOCKEDSIGS_SSTATE_EXISTS_CHECK")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500250 if checklevel == 'warn':
251 warn_msgs += sstate_missing_msgs
252 elif checklevel == 'error':
253 error_msgs += sstate_missing_msgs
254
255 if warn_msgs:
256 bb.warn("\n".join(warn_msgs))
257 if error_msgs:
258 bb.fatal("\n".join(error_msgs))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500259
Brad Bishop08902b02019-08-20 09:16:51 -0400260class SignatureGeneratorOEEquivHash(bb.siggen.SignatureGeneratorUniHashMixIn, SignatureGeneratorOEBasicHash):
Brad Bishop19323692019-04-05 15:28:33 -0400261 name = "OEEquivHash"
262
263 def init_rundepcheck(self, data):
264 super().init_rundepcheck(data)
Brad Bishopa34c0302019-09-23 22:34:48 -0400265 self.server = data.getVar('BB_HASHSERVE')
Brad Bishop08902b02019-08-20 09:16:51 -0400266 if not self.server:
Brad Bishopa34c0302019-09-23 22:34:48 -0400267 bb.fatal("OEEquivHash requires BB_HASHSERVE to be set")
Brad Bishop19323692019-04-05 15:28:33 -0400268 self.method = data.getVar('SSTATE_HASHEQUIV_METHOD')
Brad Bishop08902b02019-08-20 09:16:51 -0400269 if not self.method:
270 bb.fatal("OEEquivHash requires SSTATE_HASHEQUIV_METHOD to be set")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500271
272# Insert these classes into siggen's namespace so it can see and select them
273bb.siggen.SignatureGeneratorOEBasic = SignatureGeneratorOEBasic
274bb.siggen.SignatureGeneratorOEBasicHash = SignatureGeneratorOEBasicHash
Brad Bishop19323692019-04-05 15:28:33 -0400275bb.siggen.SignatureGeneratorOEEquivHash = SignatureGeneratorOEEquivHash
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500276
277
278def find_siginfo(pn, taskname, taskhashlist, d):
279 """ Find signature data files for comparison purposes """
280
281 import fnmatch
282 import glob
283
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500284 if not taskname:
285 # We have to derive pn and taskname
286 key = pn
Brad Bishop08902b02019-08-20 09:16:51 -0400287 splitit = key.split('.bb:')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500288 taskname = splitit[1]
289 pn = os.path.basename(splitit[0]).split('_')[0]
290 if key.startswith('virtual:native:'):
291 pn = pn + '-native'
292
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500293 hashfiles = {}
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500294 filedates = {}
295
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500296 def get_hashval(siginfo):
297 if siginfo.endswith('.siginfo'):
298 return siginfo.rpartition(':')[2].partition('_')[0]
299 else:
300 return siginfo.rpartition('.')[2]
301
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500302 # First search in stamps dir
303 localdata = d.createCopy()
304 localdata.setVar('MULTIMACH_TARGET_SYS', '*')
305 localdata.setVar('PN', pn)
306 localdata.setVar('PV', '*')
307 localdata.setVar('PR', '*')
308 localdata.setVar('EXTENDPE', '')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500309 stamp = localdata.getVar('STAMP')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500310 if pn.startswith("gcc-source"):
311 # gcc-source shared workdir is a special case :(
312 stamp = localdata.expand("${STAMPS_DIR}/work-shared/gcc-${PV}-${PR}")
313
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500314 filespec = '%s.%s.sigdata.*' % (stamp, taskname)
315 foundall = False
316 import glob
317 for fullpath in glob.glob(filespec):
318 match = False
319 if taskhashlist:
320 for taskhash in taskhashlist:
321 if fullpath.endswith('.%s' % taskhash):
322 hashfiles[taskhash] = fullpath
323 if len(hashfiles) == len(taskhashlist):
324 foundall = True
325 break
326 else:
327 try:
328 filedates[fullpath] = os.stat(fullpath).st_mtime
329 except OSError:
330 continue
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500331 hashval = get_hashval(fullpath)
332 hashfiles[hashval] = fullpath
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500333
334 if not taskhashlist or (len(filedates) < 2 and not foundall):
335 # That didn't work, look in sstate-cache
Brad Bishop19323692019-04-05 15:28:33 -0400336 hashes = taskhashlist or ['?' * 64]
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500337 localdata = bb.data.createCopy(d)
338 for hashval in hashes:
339 localdata.setVar('PACKAGE_ARCH', '*')
340 localdata.setVar('TARGET_VENDOR', '*')
341 localdata.setVar('TARGET_OS', '*')
342 localdata.setVar('PN', pn)
343 localdata.setVar('PV', '*')
344 localdata.setVar('PR', '*')
345 localdata.setVar('BB_TASKHASH', hashval)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500346 swspec = localdata.getVar('SSTATE_SWSPEC')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500347 if taskname in ['do_fetch', 'do_unpack', 'do_patch', 'do_populate_lic', 'do_preconfigure'] and swspec:
348 localdata.setVar('SSTATE_PKGSPEC', '${SSTATE_SWSPEC}')
349 elif pn.endswith('-native') or "-cross-" in pn or "-crosssdk-" in pn:
350 localdata.setVar('SSTATE_EXTRAPATH', "${NATIVELSBSTRING}/")
351 sstatename = taskname[3:]
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500352 filespec = '%s_%s.*.siginfo' % (localdata.getVar('SSTATE_PKG'), sstatename)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500353
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500354 matchedfiles = glob.glob(filespec)
355 for fullpath in matchedfiles:
356 actual_hashval = get_hashval(fullpath)
357 if actual_hashval in hashfiles:
358 continue
359 hashfiles[hashval] = fullpath
360 if not taskhashlist:
361 try:
362 filedates[fullpath] = os.stat(fullpath).st_mtime
363 except:
364 continue
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500365
366 if taskhashlist:
367 return hashfiles
368 else:
369 return filedates
370
371bb.siggen.find_siginfo = find_siginfo
372
373
374def sstate_get_manifest_filename(task, d):
375 """
376 Return the sstate manifest file path for a particular task.
377 Also returns the datastore that can be used to query related variables.
378 """
379 d2 = d.createCopy()
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500380 extrainf = d.getVarFlag("do_" + task, 'stamp-extra-info')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500381 if extrainf:
382 d2.setVar("SSTATE_MANMACH", extrainf)
383 return (d2.expand("${SSTATE_MANFILEPREFIX}.%s" % task), d2)
Brad Bishop316dfdd2018-06-25 12:45:53 -0400384
385def find_sstate_manifest(taskdata, taskdata2, taskname, d, multilibcache):
386 d2 = d
387 variant = ''
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800388 curr_variant = ''
389 if d.getVar("BBEXTENDCURR") == "multilib":
390 curr_variant = d.getVar("BBEXTENDVARIANT")
391 if "virtclass-multilib" not in d.getVar("OVERRIDES"):
392 curr_variant = "invalid"
Brad Bishop316dfdd2018-06-25 12:45:53 -0400393 if taskdata2.startswith("virtual:multilib"):
394 variant = taskdata2.split(":")[2]
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800395 if curr_variant != variant:
Brad Bishop316dfdd2018-06-25 12:45:53 -0400396 if variant not in multilibcache:
397 multilibcache[variant] = oe.utils.get_multilib_datastore(variant, d)
398 d2 = multilibcache[variant]
399
400 if taskdata.endswith("-native"):
401 pkgarchs = ["${BUILD_ARCH}"]
402 elif taskdata.startswith("nativesdk-"):
403 pkgarchs = ["${SDK_ARCH}_${SDK_OS}", "allarch"]
404 elif "-cross-canadian" in taskdata:
405 pkgarchs = ["${SDK_ARCH}_${SDK_ARCH}-${SDKPKGSUFFIX}"]
406 elif "-cross-" in taskdata:
407 pkgarchs = ["${BUILD_ARCH}_${TARGET_ARCH}"]
408 elif "-crosssdk" in taskdata:
409 pkgarchs = ["${BUILD_ARCH}_${SDK_ARCH}_${SDK_OS}"]
410 else:
411 pkgarchs = ['${MACHINE_ARCH}']
412 pkgarchs = pkgarchs + list(reversed(d2.getVar("PACKAGE_EXTRA_ARCHS").split()))
413 pkgarchs.append('allarch')
414 pkgarchs.append('${SDK_ARCH}_${SDK_ARCH}-${SDKPKGSUFFIX}')
415
416 for pkgarch in pkgarchs:
417 manifest = d2.expand("${SSTATE_MANIFESTS}/manifest-%s-%s.%s" % (pkgarch, taskdata, taskname))
418 if os.path.exists(manifest):
419 return manifest, d2
420 bb.warn("Manifest %s not found in %s (variant '%s')?" % (manifest, d2.expand(" ".join(pkgarchs)), variant))
421 return None, d2
422
Brad Bishop19323692019-04-05 15:28:33 -0400423def OEOuthashBasic(path, sigfile, task, d):
424 """
425 Basic output hash function
426
427 Calculates the output hash of a task by hashing all output file metadata,
428 and file contents.
429 """
430 import hashlib
431 import stat
432 import pwd
433 import grp
434
435 def update_hash(s):
436 s = s.encode('utf-8')
437 h.update(s)
438 if sigfile:
439 sigfile.write(s)
440
441 h = hashlib.sha256()
442 prev_dir = os.getcwd()
443 include_owners = os.environ.get('PSEUDO_DISABLED') == '0'
444
445 try:
446 os.chdir(path)
447
448 update_hash("OEOuthashBasic\n")
449
450 # It is only currently useful to get equivalent hashes for things that
451 # can be restored from sstate. Since the sstate object is named using
452 # SSTATE_PKGSPEC and the task name, those should be included in the
453 # output hash calculation.
454 update_hash("SSTATE_PKGSPEC=%s\n" % d.getVar('SSTATE_PKGSPEC'))
455 update_hash("task=%s\n" % task)
456
457 for root, dirs, files in os.walk('.', topdown=True):
458 # Sort directories to ensure consistent ordering when recursing
459 dirs.sort()
460 files.sort()
461
462 def process(path):
463 s = os.lstat(path)
464
465 if stat.S_ISDIR(s.st_mode):
466 update_hash('d')
467 elif stat.S_ISCHR(s.st_mode):
468 update_hash('c')
469 elif stat.S_ISBLK(s.st_mode):
470 update_hash('b')
471 elif stat.S_ISSOCK(s.st_mode):
472 update_hash('s')
473 elif stat.S_ISLNK(s.st_mode):
474 update_hash('l')
475 elif stat.S_ISFIFO(s.st_mode):
476 update_hash('p')
477 else:
478 update_hash('-')
479
480 def add_perm(mask, on, off='-'):
481 if mask & s.st_mode:
482 update_hash(on)
483 else:
484 update_hash(off)
485
486 add_perm(stat.S_IRUSR, 'r')
487 add_perm(stat.S_IWUSR, 'w')
488 if stat.S_ISUID & s.st_mode:
489 add_perm(stat.S_IXUSR, 's', 'S')
490 else:
491 add_perm(stat.S_IXUSR, 'x')
492
493 add_perm(stat.S_IRGRP, 'r')
494 add_perm(stat.S_IWGRP, 'w')
495 if stat.S_ISGID & s.st_mode:
496 add_perm(stat.S_IXGRP, 's', 'S')
497 else:
498 add_perm(stat.S_IXGRP, 'x')
499
500 add_perm(stat.S_IROTH, 'r')
501 add_perm(stat.S_IWOTH, 'w')
502 if stat.S_ISVTX & s.st_mode:
503 update_hash('t')
504 else:
505 add_perm(stat.S_IXOTH, 'x')
506
507 if include_owners:
508 update_hash(" %10s" % pwd.getpwuid(s.st_uid).pw_name)
509 update_hash(" %10s" % grp.getgrgid(s.st_gid).gr_name)
510
511 update_hash(" ")
512 if stat.S_ISBLK(s.st_mode) or stat.S_ISCHR(s.st_mode):
513 update_hash("%9s" % ("%d.%d" % (os.major(s.st_rdev), os.minor(s.st_rdev))))
514 else:
515 update_hash(" " * 9)
516
517 update_hash(" ")
518 if stat.S_ISREG(s.st_mode):
519 update_hash("%10d" % s.st_size)
520 else:
521 update_hash(" " * 10)
522
523 update_hash(" ")
524 fh = hashlib.sha256()
525 if stat.S_ISREG(s.st_mode):
526 # Hash file contents
527 with open(path, 'rb') as d:
528 for chunk in iter(lambda: d.read(4096), b""):
529 fh.update(chunk)
530 update_hash(fh.hexdigest())
531 else:
532 update_hash(" " * len(fh.hexdigest()))
533
534 update_hash(" %s" % path)
535
536 if stat.S_ISLNK(s.st_mode):
537 update_hash(" -> %s" % os.readlink(path))
538
539 update_hash("\n")
540
541 # Process this directory and all its child files
542 process(root)
543 for f in files:
544 if f == 'fixmepath':
545 continue
546 process(os.path.join(root, f))
547 finally:
548 os.chdir(prev_dir)
549
550 return h.hexdigest()
551
Brad Bishop316dfdd2018-06-25 12:45:53 -0400552