Brad Bishop | c342db3 | 2019-05-15 21:57:59 -0400 | [diff] [blame] | 1 | # |
| 2 | # SPDX-License-Identifier: GPL-2.0-only |
| 3 | # |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 4 | import bb.siggen |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 5 | import bb.runqueue |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 6 | import oe |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 7 | |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 8 | def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCaches): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 9 | # 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 Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 16 | def isKernel(mc, fn): |
| 17 | inherits = " ".join(dataCaches[mc].inherits[fn]) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 18 | return inherits.find("/module-base.bbclass") != -1 or inherits.find("/linux-kernel-base.bbclass") != -1 |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 19 | def isPackageGroup(mc, fn): |
| 20 | inherits = " ".join(dataCaches[mc].inherits[fn]) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 21 | return "/packagegroup.bbclass" in inherits |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 22 | def isAllArch(mc, fn): |
| 23 | inherits = " ".join(dataCaches[mc].inherits[fn]) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 24 | return "/allarch.bbclass" in inherits |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 25 | def isImage(mc, fn): |
| 26 | return "/image.bbclass" in " ".join(dataCaches[mc].inherits[fn]) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 27 | |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 28 | 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 Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 36 | return False |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 37 | return True |
| 38 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 39 | # Exclude well defined recipe->dependency |
| 40 | if "%s->%s" % (recipename, depname) in siggen.saferecipedeps: |
| 41 | return False |
| 42 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 43 | # Check for special wildcard |
| 44 | if "*->%s" % depname in siggen.saferecipedeps and recipename != depname: |
| 45 | return False |
| 46 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 47 | # 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 Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 54 | if isPackageGroup(mc, fn) and isAllArch(mc, fn) and not isNative(depname): |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 55 | return False |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 56 | |
| 57 | # Exclude well defined machine specific configurations which don't change ABI |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 58 | if depname in siggen.abisaferecipes and not isImage(mc, fn): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 59 | return False |
| 60 | |
| 61 | # Kernel modules are well namespaced. We don't want to depend on the kernel's checksum |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 62 | # if we're just doing an RRECOMMENDS:xxx = "kernel-module-*", not least because the checksum |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 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 Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 66 | 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 Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 69 | return False |
| 70 | |
| 71 | # Default to keep dependencies |
| 72 | return True |
| 73 | |
| 74 | def sstate_lockedsigs(d): |
| 75 | sigs = {} |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 76 | types = (d.getVar("SIGGEN_LOCKEDSIGS_TYPES") or "").split() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 77 | for t in types: |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 78 | siggen_lockedsigs_var = "SIGGEN_LOCKEDSIGS_%s" % t |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 79 | lockedsigs = (d.getVar(siggen_lockedsigs_var) or "").split() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 80 | for ls in lockedsigs: |
| 81 | pn, task, h = ls.split(":", 2) |
| 82 | if pn not in sigs: |
| 83 | sigs[pn] = {} |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 84 | sigs[pn][task] = [h, siggen_lockedsigs_var] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 85 | return sigs |
| 86 | |
| 87 | class SignatureGeneratorOEBasic(bb.siggen.SignatureGeneratorBasic): |
| 88 | name = "OEBasic" |
| 89 | def init_rundepcheck(self, data): |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 90 | self.abisaferecipes = (data.getVar("SIGGEN_EXCLUDERECIPES_ABISAFE") or "").split() |
| 91 | self.saferecipedeps = (data.getVar("SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS") or "").split() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 92 | pass |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 93 | def rundep_check(self, fn, recipename, task, dep, depname, dataCaches = None): |
| 94 | return sstate_rundepfilter(self, fn, recipename, task, dep, depname, dataCaches) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 95 | |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 96 | class SignatureGeneratorOEBasicHashMixIn(object): |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 97 | supports_multiconfig_datacaches = True |
| 98 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 99 | def init_rundepcheck(self, data): |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 100 | self.abisaferecipes = (data.getVar("SIGGEN_EXCLUDERECIPES_ABISAFE") or "").split() |
| 101 | self.saferecipedeps = (data.getVar("SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS") or "").split() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 102 | self.lockedsigs = sstate_lockedsigs(data) |
| 103 | self.lockedhashes = {} |
| 104 | self.lockedpnmap = {} |
| 105 | self.lockedhashfn = {} |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 106 | self.machine = data.getVar("MACHINE") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 107 | self.mismatch_msgs = [] |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 108 | self.unlockedrecipes = (data.getVar("SIGGEN_UNLOCKED_RECIPES") or |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 109 | "").split() |
| 110 | self.unlockedrecipes = { k: "" for k in self.unlockedrecipes } |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 111 | self._internal = False |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 112 | pass |
Patrick Williams | f1e5d69 | 2016-03-30 15:21:19 -0500 | [diff] [blame] | 113 | |
| 114 | def tasks_resolved(self, virtmap, virtpnmap, dataCache): |
| 115 | # Translate virtual/xxx entries to PN values |
| 116 | newabisafe = [] |
| 117 | for a in self.abisaferecipes: |
| 118 | if a in virtpnmap: |
| 119 | newabisafe.append(virtpnmap[a]) |
| 120 | else: |
| 121 | newabisafe.append(a) |
| 122 | self.abisaferecipes = newabisafe |
| 123 | newsafedeps = [] |
| 124 | for a in self.saferecipedeps: |
| 125 | a1, a2 = a.split("->") |
| 126 | if a1 in virtpnmap: |
| 127 | a1 = virtpnmap[a1] |
| 128 | if a2 in virtpnmap: |
| 129 | a2 = virtpnmap[a2] |
| 130 | newsafedeps.append(a1 + "->" + a2) |
| 131 | self.saferecipedeps = newsafedeps |
| 132 | |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 133 | def rundep_check(self, fn, recipename, task, dep, depname, dataCaches = None): |
| 134 | return sstate_rundepfilter(self, fn, recipename, task, dep, depname, dataCaches) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 135 | |
| 136 | def get_taskdata(self): |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 137 | return (self.lockedpnmap, self.lockedhashfn, self.lockedhashes) + super().get_taskdata() |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 138 | |
| 139 | def set_taskdata(self, data): |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 140 | self.lockedpnmap, self.lockedhashfn, self.lockedhashes = data[:3] |
| 141 | super().set_taskdata(data[3:]) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 142 | |
| 143 | def dump_sigs(self, dataCache, options): |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 144 | sigfile = os.getcwd() + "/locked-sigs.inc" |
| 145 | bb.plain("Writing locked sigs to %s" % sigfile) |
| 146 | self.dump_lockedsigs(sigfile) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 147 | return super(bb.siggen.SignatureGeneratorBasicHash, self).dump_sigs(dataCache, options) |
| 148 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 149 | |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 150 | def get_taskhash(self, tid, deps, dataCaches): |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 151 | if tid in self.lockedhashes: |
| 152 | if self.lockedhashes[tid]: |
| 153 | return self.lockedhashes[tid] |
| 154 | else: |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 155 | return super().get_taskhash(tid, deps, dataCaches) |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 156 | |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 157 | h = super().get_taskhash(tid, deps, dataCaches) |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 158 | |
| 159 | (mc, _, task, fn) = bb.runqueue.split_tid_mcfn(tid) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 160 | |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 161 | recipename = dataCaches[mc].pkg_fn[fn] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 162 | self.lockedpnmap[fn] = recipename |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 163 | self.lockedhashfn[fn] = dataCaches[mc].hashfn[fn] |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 164 | |
| 165 | unlocked = False |
| 166 | if recipename in self.unlockedrecipes: |
| 167 | unlocked = True |
| 168 | else: |
| 169 | def recipename_from_dep(dep): |
Andrew Geissler | d25ed32 | 2020-06-27 00:28:28 -0500 | [diff] [blame] | 170 | (depmc, _, _, depfn) = bb.runqueue.split_tid_mcfn(dep) |
| 171 | return dataCaches[depmc].pkg_fn[depfn] |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 172 | |
| 173 | # If any unlocked recipe is in the direct dependencies then the |
| 174 | # current recipe should be unlocked as well. |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 175 | depnames = [ recipename_from_dep(x) for x in deps if mc == bb.runqueue.mc_from_tid(x)] |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 176 | if any(x in y for y in depnames for x in self.unlockedrecipes): |
| 177 | self.unlockedrecipes[recipename] = '' |
| 178 | unlocked = True |
| 179 | |
| 180 | if not unlocked and recipename in self.lockedsigs: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 181 | if task in self.lockedsigs[recipename]: |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 182 | h_locked = self.lockedsigs[recipename][task][0] |
| 183 | var = self.lockedsigs[recipename][task][1] |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 184 | self.lockedhashes[tid] = h_locked |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 185 | self._internal = True |
| 186 | unihash = self.get_unihash(tid) |
| 187 | self._internal = False |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 188 | #bb.warn("Using %s %s %s" % (recipename, task, h)) |
| 189 | |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 190 | if h != h_locked and h_locked != unihash: |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 191 | self.mismatch_msgs.append('The %s:%s sig is computed to be %s, but the sig is locked to %s in %s' |
| 192 | % (recipename, task, h, h_locked, var)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 193 | |
| 194 | return h_locked |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 195 | |
| 196 | self.lockedhashes[tid] = False |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 197 | #bb.warn("%s %s %s" % (recipename, task, h)) |
| 198 | return h |
| 199 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 200 | def get_stampfile_hash(self, tid): |
| 201 | if tid in self.lockedhashes and self.lockedhashes[tid]: |
| 202 | return self.lockedhashes[tid] |
| 203 | return super().get_stampfile_hash(tid) |
| 204 | |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 205 | def get_unihash(self, tid): |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 206 | if tid in self.lockedhashes and self.lockedhashes[tid] and not self._internal: |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 207 | return self.lockedhashes[tid] |
| 208 | return super().get_unihash(tid) |
| 209 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 210 | def dump_sigtask(self, fn, task, stampbase, runtime): |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 211 | tid = fn + ":" + task |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 212 | if tid in self.lockedhashes and self.lockedhashes[tid]: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 213 | return |
| 214 | super(bb.siggen.SignatureGeneratorBasicHash, self).dump_sigtask(fn, task, stampbase, runtime) |
| 215 | |
Patrick Williams | c0f7c04 | 2017-02-23 20:41:17 -0600 | [diff] [blame] | 216 | def dump_lockedsigs(self, sigfile, taskfilter=None): |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 217 | types = {} |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 218 | for tid in self.runtaskdeps: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 219 | if taskfilter: |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 220 | if not tid in taskfilter: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 221 | continue |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 222 | fn = bb.runqueue.fn_from_tid(tid) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 223 | t = self.lockedhashfn[fn].split(" ")[1].split(":")[5] |
| 224 | t = 't-' + t.replace('_', '-') |
| 225 | if t not in types: |
| 226 | types[t] = [] |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 227 | types[t].append(tid) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 228 | |
| 229 | with open(sigfile, "w") as f: |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 230 | l = sorted(types) |
| 231 | for t in l: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 232 | f.write('SIGGEN_LOCKEDSIGS_%s = "\\\n' % t) |
| 233 | types[t].sort() |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 234 | sortedtid = sorted(types[t], key=lambda tid: self.lockedpnmap[bb.runqueue.fn_from_tid(tid)]) |
| 235 | for tid in sortedtid: |
| 236 | (_, _, task, fn) = bb.runqueue.split_tid_mcfn(tid) |
| 237 | if tid not in self.taskhash: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 238 | continue |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 239 | f.write(" " + self.lockedpnmap[fn] + ":" + task + ":" + self.get_unihash(tid) + " \\\n") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 240 | f.write(' "\n') |
Patrick Williams | 213cb26 | 2021-08-07 19:21:33 -0500 | [diff] [blame] | 241 | f.write('SIGGEN_LOCKEDSIGS_TYPES:%s = "%s"' % (self.machine, " ".join(l))) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 242 | |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 243 | def dump_siglist(self, sigfile, path_prefix_strip=None): |
| 244 | def strip_fn(fn): |
| 245 | nonlocal path_prefix_strip |
| 246 | if not path_prefix_strip: |
| 247 | return fn |
| 248 | |
| 249 | fn_exp = fn.split(":") |
| 250 | if fn_exp[-1].startswith(path_prefix_strip): |
| 251 | fn_exp[-1] = fn_exp[-1][len(path_prefix_strip):] |
| 252 | |
| 253 | return ":".join(fn_exp) |
| 254 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 255 | with open(sigfile, "w") as f: |
| 256 | tasks = [] |
| 257 | for taskitem in self.taskhash: |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 258 | (fn, task) = taskitem.rsplit(":", 1) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 259 | pn = self.lockedpnmap[fn] |
Andrew Geissler | 0903674 | 2021-06-25 14:25:14 -0500 | [diff] [blame] | 260 | tasks.append((pn, task, strip_fn(fn), self.taskhash[taskitem])) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 261 | for (pn, task, fn, taskhash) in sorted(tasks): |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 262 | f.write('%s:%s %s %s\n' % (pn, task, fn, taskhash)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 263 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 264 | def checkhashes(self, sq_data, missed, found, d): |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 265 | warn_msgs = [] |
| 266 | error_msgs = [] |
| 267 | sstate_missing_msgs = [] |
| 268 | |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 269 | for tid in sq_data['hash']: |
| 270 | if tid not in found: |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 271 | for pn in self.lockedsigs: |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 272 | taskname = bb.runqueue.taskname_from_tid(tid) |
| 273 | if sq_data['hash'][tid] in iter(self.lockedsigs[pn].values()): |
| 274 | if taskname == 'do_shared_workdir': |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 275 | continue |
| 276 | sstate_missing_msgs.append("Locked sig is set for %s:%s (%s) yet not in sstate cache?" |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 277 | % (pn, taskname, sq_data['hash'][tid])) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 278 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 279 | checklevel = d.getVar("SIGGEN_LOCKEDSIGS_TASKSIG_CHECK") |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 280 | if checklevel == 'warn': |
| 281 | warn_msgs += self.mismatch_msgs |
| 282 | elif checklevel == 'error': |
| 283 | error_msgs += self.mismatch_msgs |
| 284 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 285 | checklevel = d.getVar("SIGGEN_LOCKEDSIGS_SSTATE_EXISTS_CHECK") |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 286 | if checklevel == 'warn': |
| 287 | warn_msgs += sstate_missing_msgs |
| 288 | elif checklevel == 'error': |
| 289 | error_msgs += sstate_missing_msgs |
| 290 | |
| 291 | if warn_msgs: |
| 292 | bb.warn("\n".join(warn_msgs)) |
| 293 | if error_msgs: |
| 294 | bb.fatal("\n".join(error_msgs)) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 295 | |
Brad Bishop | 00e122a | 2019-10-05 11:10:57 -0400 | [diff] [blame] | 296 | class SignatureGeneratorOEBasicHash(SignatureGeneratorOEBasicHashMixIn, bb.siggen.SignatureGeneratorBasicHash): |
| 297 | name = "OEBasicHash" |
| 298 | |
| 299 | class SignatureGeneratorOEEquivHash(SignatureGeneratorOEBasicHashMixIn, bb.siggen.SignatureGeneratorUniHashMixIn, bb.siggen.SignatureGeneratorBasicHash): |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 300 | name = "OEEquivHash" |
| 301 | |
| 302 | def init_rundepcheck(self, data): |
| 303 | super().init_rundepcheck(data) |
Brad Bishop | a34c030 | 2019-09-23 22:34:48 -0400 | [diff] [blame] | 304 | self.server = data.getVar('BB_HASHSERVE') |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 305 | if not self.server: |
Brad Bishop | a34c030 | 2019-09-23 22:34:48 -0400 | [diff] [blame] | 306 | bb.fatal("OEEquivHash requires BB_HASHSERVE to be set") |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 307 | self.method = data.getVar('SSTATE_HASHEQUIV_METHOD') |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 308 | if not self.method: |
| 309 | bb.fatal("OEEquivHash requires SSTATE_HASHEQUIV_METHOD to be set") |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 310 | |
| 311 | # Insert these classes into siggen's namespace so it can see and select them |
| 312 | bb.siggen.SignatureGeneratorOEBasic = SignatureGeneratorOEBasic |
| 313 | bb.siggen.SignatureGeneratorOEBasicHash = SignatureGeneratorOEBasicHash |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 314 | bb.siggen.SignatureGeneratorOEEquivHash = SignatureGeneratorOEEquivHash |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 315 | |
| 316 | |
| 317 | def find_siginfo(pn, taskname, taskhashlist, d): |
| 318 | """ Find signature data files for comparison purposes """ |
| 319 | |
| 320 | import fnmatch |
| 321 | import glob |
| 322 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 323 | if not taskname: |
| 324 | # We have to derive pn and taskname |
| 325 | key = pn |
Brad Bishop | 08902b0 | 2019-08-20 09:16:51 -0400 | [diff] [blame] | 326 | splitit = key.split('.bb:') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 327 | taskname = splitit[1] |
| 328 | pn = os.path.basename(splitit[0]).split('_')[0] |
| 329 | if key.startswith('virtual:native:'): |
| 330 | pn = pn + '-native' |
| 331 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 332 | hashfiles = {} |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 333 | filedates = {} |
| 334 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 335 | def get_hashval(siginfo): |
| 336 | if siginfo.endswith('.siginfo'): |
| 337 | return siginfo.rpartition(':')[2].partition('_')[0] |
| 338 | else: |
| 339 | return siginfo.rpartition('.')[2] |
| 340 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 341 | # First search in stamps dir |
| 342 | localdata = d.createCopy() |
| 343 | localdata.setVar('MULTIMACH_TARGET_SYS', '*') |
| 344 | localdata.setVar('PN', pn) |
| 345 | localdata.setVar('PV', '*') |
| 346 | localdata.setVar('PR', '*') |
| 347 | localdata.setVar('EXTENDPE', '') |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 348 | stamp = localdata.getVar('STAMP') |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 349 | if pn.startswith("gcc-source"): |
| 350 | # gcc-source shared workdir is a special case :( |
| 351 | stamp = localdata.expand("${STAMPS_DIR}/work-shared/gcc-${PV}-${PR}") |
| 352 | |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 353 | filespec = '%s.%s.sigdata.*' % (stamp, taskname) |
| 354 | foundall = False |
| 355 | import glob |
| 356 | for fullpath in glob.glob(filespec): |
| 357 | match = False |
| 358 | if taskhashlist: |
| 359 | for taskhash in taskhashlist: |
| 360 | if fullpath.endswith('.%s' % taskhash): |
| 361 | hashfiles[taskhash] = fullpath |
| 362 | if len(hashfiles) == len(taskhashlist): |
| 363 | foundall = True |
| 364 | break |
| 365 | else: |
| 366 | try: |
| 367 | filedates[fullpath] = os.stat(fullpath).st_mtime |
| 368 | except OSError: |
| 369 | continue |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 370 | hashval = get_hashval(fullpath) |
| 371 | hashfiles[hashval] = fullpath |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 372 | |
| 373 | if not taskhashlist or (len(filedates) < 2 and not foundall): |
| 374 | # That didn't work, look in sstate-cache |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 375 | hashes = taskhashlist or ['?' * 64] |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 376 | localdata = bb.data.createCopy(d) |
| 377 | for hashval in hashes: |
| 378 | localdata.setVar('PACKAGE_ARCH', '*') |
| 379 | localdata.setVar('TARGET_VENDOR', '*') |
| 380 | localdata.setVar('TARGET_OS', '*') |
| 381 | localdata.setVar('PN', pn) |
| 382 | localdata.setVar('PV', '*') |
| 383 | localdata.setVar('PR', '*') |
| 384 | localdata.setVar('BB_TASKHASH', hashval) |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 385 | swspec = localdata.getVar('SSTATE_SWSPEC') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 386 | if taskname in ['do_fetch', 'do_unpack', 'do_patch', 'do_populate_lic', 'do_preconfigure'] and swspec: |
| 387 | localdata.setVar('SSTATE_PKGSPEC', '${SSTATE_SWSPEC}') |
| 388 | elif pn.endswith('-native') or "-cross-" in pn or "-crosssdk-" in pn: |
| 389 | localdata.setVar('SSTATE_EXTRAPATH', "${NATIVELSBSTRING}/") |
| 390 | sstatename = taskname[3:] |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 391 | filespec = '%s_%s.*.siginfo' % (localdata.getVar('SSTATE_PKG'), sstatename) |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 392 | |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 393 | matchedfiles = glob.glob(filespec) |
| 394 | for fullpath in matchedfiles: |
| 395 | actual_hashval = get_hashval(fullpath) |
| 396 | if actual_hashval in hashfiles: |
| 397 | continue |
| 398 | hashfiles[hashval] = fullpath |
| 399 | if not taskhashlist: |
| 400 | try: |
| 401 | filedates[fullpath] = os.stat(fullpath).st_mtime |
| 402 | except: |
| 403 | continue |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 404 | |
| 405 | if taskhashlist: |
| 406 | return hashfiles |
| 407 | else: |
| 408 | return filedates |
| 409 | |
| 410 | bb.siggen.find_siginfo = find_siginfo |
| 411 | |
| 412 | |
| 413 | def sstate_get_manifest_filename(task, d): |
| 414 | """ |
| 415 | Return the sstate manifest file path for a particular task. |
| 416 | Also returns the datastore that can be used to query related variables. |
| 417 | """ |
| 418 | d2 = d.createCopy() |
Brad Bishop | 6e60e8b | 2018-02-01 10:27:11 -0500 | [diff] [blame] | 419 | extrainf = d.getVarFlag("do_" + task, 'stamp-extra-info') |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 420 | if extrainf: |
| 421 | d2.setVar("SSTATE_MANMACH", extrainf) |
| 422 | return (d2.expand("${SSTATE_MANFILEPREFIX}.%s" % task), d2) |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 423 | |
| 424 | def find_sstate_manifest(taskdata, taskdata2, taskname, d, multilibcache): |
| 425 | d2 = d |
| 426 | variant = '' |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 427 | curr_variant = '' |
| 428 | if d.getVar("BBEXTENDCURR") == "multilib": |
| 429 | curr_variant = d.getVar("BBEXTENDVARIANT") |
| 430 | if "virtclass-multilib" not in d.getVar("OVERRIDES"): |
| 431 | curr_variant = "invalid" |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 432 | if taskdata2.startswith("virtual:multilib"): |
| 433 | variant = taskdata2.split(":")[2] |
Brad Bishop | 1a4b7ee | 2018-12-16 17:11:34 -0800 | [diff] [blame] | 434 | if curr_variant != variant: |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 435 | if variant not in multilibcache: |
| 436 | multilibcache[variant] = oe.utils.get_multilib_datastore(variant, d) |
| 437 | d2 = multilibcache[variant] |
| 438 | |
| 439 | if taskdata.endswith("-native"): |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 440 | pkgarchs = ["${BUILD_ARCH}", "${BUILD_ARCH}_${ORIGNATIVELSBSTRING}"] |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 441 | elif taskdata.startswith("nativesdk-"): |
| 442 | pkgarchs = ["${SDK_ARCH}_${SDK_OS}", "allarch"] |
| 443 | elif "-cross-canadian" in taskdata: |
| 444 | pkgarchs = ["${SDK_ARCH}_${SDK_ARCH}-${SDKPKGSUFFIX}"] |
| 445 | elif "-cross-" in taskdata: |
| 446 | pkgarchs = ["${BUILD_ARCH}_${TARGET_ARCH}"] |
| 447 | elif "-crosssdk" in taskdata: |
| 448 | pkgarchs = ["${BUILD_ARCH}_${SDK_ARCH}_${SDK_OS}"] |
| 449 | else: |
| 450 | pkgarchs = ['${MACHINE_ARCH}'] |
| 451 | pkgarchs = pkgarchs + list(reversed(d2.getVar("PACKAGE_EXTRA_ARCHS").split())) |
| 452 | pkgarchs.append('allarch') |
| 453 | pkgarchs.append('${SDK_ARCH}_${SDK_ARCH}-${SDKPKGSUFFIX}') |
| 454 | |
| 455 | 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 |
William A. Kennington III | ac69b48 | 2021-06-02 12:28:27 -0700 | [diff] [blame] | 459 | bb.fatal("Manifest %s not found in %s (variant '%s')?" % (manifest, d2.expand(" ".join(pkgarchs)), variant)) |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 460 | return None, d2 |
| 461 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 462 | def OEOuthashBasic(path, sigfile, task, d): |
| 463 | """ |
| 464 | Basic output hash function |
| 465 | |
| 466 | Calculates the output hash of a task by hashing all output file metadata, |
| 467 | and file contents. |
| 468 | """ |
| 469 | import hashlib |
| 470 | import stat |
| 471 | import pwd |
| 472 | import grp |
Patrick Williams | 93c203f | 2021-10-06 16:15:23 -0500 | [diff] [blame] | 473 | import re |
| 474 | import fnmatch |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 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() |
Patrick Williams | 93c203f | 2021-10-06 16:15:23 -0500 | [diff] [blame] | 484 | corebase = d.getVar("COREBASE") |
| 485 | tmpdir = d.getVar("TMPDIR") |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 486 | include_owners = os.environ.get('PSEUDO_DISABLED') == '0' |
Andrew Geissler | f034379 | 2020-11-18 10:42:21 -0600 | [diff] [blame] | 487 | if "package_write_" in task or task == "package_qa": |
| 488 | include_owners = False |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 489 | include_timestamps = False |
Andrew Geissler | 5199d83 | 2021-09-24 16:47:35 -0500 | [diff] [blame] | 490 | include_root = True |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 491 | if task == "package": |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 492 | include_timestamps = True |
Andrew Geissler | 5199d83 | 2021-09-24 16:47:35 -0500 | [diff] [blame] | 493 | include_root = False |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 494 | extra_content = d.getVar('HASHEQUIV_HASH_VERSION') |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 495 | |
Patrick Williams | 93c203f | 2021-10-06 16:15:23 -0500 | [diff] [blame] | 496 | filemaps = {} |
| 497 | for m in (d.getVar('SSTATE_HASHEQUIV_FILEMAP') or '').split(): |
| 498 | entry = m.split(":") |
| 499 | if len(entry) != 3 or entry[0] != task: |
| 500 | continue |
| 501 | filemaps.setdefault(entry[1], []) |
| 502 | filemaps[entry[1]].append(entry[2]) |
| 503 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 504 | try: |
| 505 | os.chdir(path) |
Patrick Williams | 93c203f | 2021-10-06 16:15:23 -0500 | [diff] [blame] | 506 | basepath = os.path.normpath(path) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 507 | |
| 508 | update_hash("OEOuthashBasic\n") |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 509 | if extra_content: |
| 510 | update_hash(extra_content + "\n") |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 511 | |
| 512 | # It is only currently useful to get equivalent hashes for things that |
| 513 | # can be restored from sstate. Since the sstate object is named using |
| 514 | # SSTATE_PKGSPEC and the task name, those should be included in the |
| 515 | # output hash calculation. |
| 516 | update_hash("SSTATE_PKGSPEC=%s\n" % d.getVar('SSTATE_PKGSPEC')) |
| 517 | update_hash("task=%s\n" % task) |
| 518 | |
| 519 | for root, dirs, files in os.walk('.', topdown=True): |
| 520 | # Sort directories to ensure consistent ordering when recursing |
| 521 | dirs.sort() |
| 522 | files.sort() |
| 523 | |
| 524 | def process(path): |
| 525 | s = os.lstat(path) |
| 526 | |
| 527 | if stat.S_ISDIR(s.st_mode): |
| 528 | update_hash('d') |
| 529 | elif stat.S_ISCHR(s.st_mode): |
| 530 | update_hash('c') |
| 531 | elif stat.S_ISBLK(s.st_mode): |
| 532 | update_hash('b') |
| 533 | elif stat.S_ISSOCK(s.st_mode): |
| 534 | update_hash('s') |
| 535 | elif stat.S_ISLNK(s.st_mode): |
| 536 | update_hash('l') |
| 537 | elif stat.S_ISFIFO(s.st_mode): |
| 538 | update_hash('p') |
| 539 | else: |
| 540 | update_hash('-') |
| 541 | |
| 542 | def add_perm(mask, on, off='-'): |
| 543 | if mask & s.st_mode: |
| 544 | update_hash(on) |
| 545 | else: |
| 546 | update_hash(off) |
| 547 | |
| 548 | add_perm(stat.S_IRUSR, 'r') |
| 549 | add_perm(stat.S_IWUSR, 'w') |
| 550 | if stat.S_ISUID & s.st_mode: |
| 551 | add_perm(stat.S_IXUSR, 's', 'S') |
| 552 | else: |
| 553 | add_perm(stat.S_IXUSR, 'x') |
| 554 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 555 | if include_owners: |
Andrew Geissler | eff2747 | 2021-10-29 15:35:00 -0500 | [diff] [blame] | 556 | # Group/other permissions are only relevant in pseudo context |
| 557 | add_perm(stat.S_IRGRP, 'r') |
| 558 | add_perm(stat.S_IWGRP, 'w') |
| 559 | if stat.S_ISGID & s.st_mode: |
| 560 | add_perm(stat.S_IXGRP, 's', 'S') |
| 561 | else: |
| 562 | add_perm(stat.S_IXGRP, 'x') |
| 563 | |
| 564 | add_perm(stat.S_IROTH, 'r') |
| 565 | add_perm(stat.S_IWOTH, 'w') |
| 566 | if stat.S_ISVTX & s.st_mode: |
| 567 | update_hash('t') |
| 568 | else: |
| 569 | add_perm(stat.S_IXOTH, 'x') |
| 570 | |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 571 | try: |
| 572 | update_hash(" %10s" % pwd.getpwuid(s.st_uid).pw_name) |
| 573 | update_hash(" %10s" % grp.getgrgid(s.st_gid).gr_name) |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 574 | except KeyError as e: |
Andrew Geissler | 82c905d | 2020-04-13 13:39:40 -0500 | [diff] [blame] | 575 | bb.warn("KeyError in %s" % path) |
Andrew Geissler | d1e8949 | 2021-02-12 15:35:20 -0600 | [diff] [blame] | 576 | msg = ("KeyError: %s\nPath %s is owned by uid %d, gid %d, which doesn't match " |
| 577 | "any user/group on target. This may be due to host contamination." % (e, path, s.st_uid, s.st_gid)) |
| 578 | raise Exception(msg).with_traceback(e.__traceback__) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 579 | |
Andrew Geissler | 6ce62a2 | 2020-11-30 19:58:47 -0600 | [diff] [blame] | 580 | if include_timestamps: |
| 581 | update_hash(" %10d" % s.st_mtime) |
| 582 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 583 | update_hash(" ") |
| 584 | if stat.S_ISBLK(s.st_mode) or stat.S_ISCHR(s.st_mode): |
| 585 | update_hash("%9s" % ("%d.%d" % (os.major(s.st_rdev), os.minor(s.st_rdev)))) |
| 586 | else: |
| 587 | update_hash(" " * 9) |
| 588 | |
Patrick Williams | 93c203f | 2021-10-06 16:15:23 -0500 | [diff] [blame] | 589 | filterfile = False |
| 590 | for entry in filemaps: |
| 591 | if fnmatch.fnmatch(path, entry): |
| 592 | filterfile = True |
| 593 | |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 594 | update_hash(" ") |
Patrick Williams | 93c203f | 2021-10-06 16:15:23 -0500 | [diff] [blame] | 595 | if stat.S_ISREG(s.st_mode) and not filterfile: |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 596 | update_hash("%10d" % s.st_size) |
| 597 | else: |
| 598 | update_hash(" " * 10) |
| 599 | |
| 600 | update_hash(" ") |
| 601 | fh = hashlib.sha256() |
| 602 | if stat.S_ISREG(s.st_mode): |
| 603 | # Hash file contents |
Patrick Williams | 93c203f | 2021-10-06 16:15:23 -0500 | [diff] [blame] | 604 | if filterfile: |
| 605 | # Need to ignore paths in crossscripts and postinst-useradd files. |
| 606 | with open(path, 'rb') as d: |
| 607 | chunk = d.read() |
| 608 | chunk = chunk.replace(bytes(basepath, encoding='utf8'), b'') |
| 609 | for entry in filemaps: |
| 610 | if not fnmatch.fnmatch(path, entry): |
| 611 | continue |
| 612 | for r in filemaps[entry]: |
| 613 | if r.startswith("regex-"): |
| 614 | chunk = re.sub(bytes(r[6:], encoding='utf8'), b'', chunk) |
| 615 | else: |
| 616 | chunk = chunk.replace(bytes(r, encoding='utf8'), b'') |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 617 | fh.update(chunk) |
Patrick Williams | 93c203f | 2021-10-06 16:15:23 -0500 | [diff] [blame] | 618 | else: |
| 619 | with open(path, 'rb') as d: |
| 620 | for chunk in iter(lambda: d.read(4096), b""): |
| 621 | fh.update(chunk) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 622 | update_hash(fh.hexdigest()) |
| 623 | else: |
| 624 | update_hash(" " * len(fh.hexdigest())) |
| 625 | |
| 626 | update_hash(" %s" % path) |
| 627 | |
| 628 | if stat.S_ISLNK(s.st_mode): |
| 629 | update_hash(" -> %s" % os.readlink(path)) |
| 630 | |
| 631 | update_hash("\n") |
| 632 | |
| 633 | # Process this directory and all its child files |
Andrew Geissler | 5199d83 | 2021-09-24 16:47:35 -0500 | [diff] [blame] | 634 | if include_root or root != ".": |
| 635 | process(root) |
Brad Bishop | 1932369 | 2019-04-05 15:28:33 -0400 | [diff] [blame] | 636 | for f in files: |
| 637 | if f == 'fixmepath': |
| 638 | continue |
| 639 | process(os.path.join(root, f)) |
| 640 | finally: |
| 641 | os.chdir(prev_dir) |
| 642 | |
| 643 | return h.hexdigest() |
| 644 | |
Brad Bishop | 316dfdd | 2018-06-25 12:45:53 -0400 | [diff] [blame] | 645 | |