blob: 62d0d781a115ff498ebcfab6c091163775b3e570 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001#
2# Records history of build output in order to detect regressions
3#
4# Based in part on testlab.bbclass and packagehistory.bbclass
5#
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05006# Copyright (C) 2011-2016 Intel Corporation
Patrick Williamsc124f4f2015-09-15 14:41:29 -05007# Copyright (C) 2007-2011 Koen Kooi <koen@openembedded.org>
8#
9
Andrew Geisslerc9f78652020-09-18 14:11:35 -050010inherit image-artifact-names
11
Patrick Williamsc124f4f2015-09-15 14:41:29 -050012BUILDHISTORY_FEATURES ?= "image package sdk"
13BUILDHISTORY_DIR ?= "${TOPDIR}/buildhistory"
14BUILDHISTORY_DIR_IMAGE = "${BUILDHISTORY_DIR}/images/${MACHINE_ARCH}/${TCLIBC}/${IMAGE_BASENAME}"
15BUILDHISTORY_DIR_PACKAGE = "${BUILDHISTORY_DIR}/packages/${MULTIMACH_TARGET_SYS}/${PN}"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050016
17# Setting this to non-empty will remove the old content of the buildhistory as part of
18# the current bitbake invocation and replace it with information about what was built
19# during the build.
20#
21# This is meant to be used in continuous integration (CI) systems when invoking bitbake
22# for full world builds. The effect in that case is that information about packages
23# that no longer get build also gets removed from the buildhistory, which is not
24# the case otherwise.
25#
26# The advantage over manually cleaning the buildhistory outside of bitbake is that
27# the "version-going-backwards" check still works. When relying on that, be careful
28# about failed world builds: they will lead to incomplete information in the
29# buildhistory because information about packages that could not be built will
30# also get removed. A CI system should handle that by discarding the buildhistory
31# of failed builds.
32#
33# The expected usage is via auto.conf, but passing via the command line also works
34# with: BB_ENV_EXTRAWHITE=BUILDHISTORY_RESET BUILDHISTORY_RESET=1
35BUILDHISTORY_RESET ?= ""
36
37BUILDHISTORY_OLD_DIR = "${BUILDHISTORY_DIR}/${@ "old" if "${BUILDHISTORY_RESET}" else ""}"
38BUILDHISTORY_OLD_DIR_PACKAGE = "${BUILDHISTORY_OLD_DIR}/packages/${MULTIMACH_TARGET_SYS}/${PN}"
39BUILDHISTORY_DIR_SDK = "${BUILDHISTORY_DIR}/sdk/${SDK_NAME}${SDK_EXT}/${IMAGE_BASENAME}"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050040BUILDHISTORY_IMAGE_FILES ?= "/etc/passwd /etc/group"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050041BUILDHISTORY_SDK_FILES ?= "conf/local.conf conf/bblayers.conf conf/auto.conf conf/locked-sigs.inc conf/devtool.conf"
Brad Bishop316dfdd2018-06-25 12:45:53 -040042BUILDHISTORY_COMMIT ?= "1"
Patrick Williamsc124f4f2015-09-15 14:41:29 -050043BUILDHISTORY_COMMIT_AUTHOR ?= "buildhistory <buildhistory@${DISTRO}>"
44BUILDHISTORY_PUSH_REPO ?= ""
Andrew Geissler82c905d2020-04-13 13:39:40 -050045BUILDHISTORY_TAG ?= "build"
Andrew Geissler09036742021-06-25 14:25:14 -050046BUILDHISTORY_PATH_PREFIX_STRIP ?= ""
Patrick Williamsc124f4f2015-09-15 14:41:29 -050047
Patrick Williams213cb262021-08-07 19:21:33 -050048SSTATEPOSTINSTFUNCS:append = " buildhistory_emit_pkghistory"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050049# We want to avoid influencing the signatures of sstate tasks - first the function itself:
Patrick Williamsc124f4f2015-09-15 14:41:29 -050050sstate_install[vardepsexclude] += "buildhistory_emit_pkghistory"
51# then the value added to SSTATEPOSTINSTFUNCS:
52SSTATEPOSTINSTFUNCS[vardepvalueexclude] .= "| buildhistory_emit_pkghistory"
53
Brad Bishop6e60e8b2018-02-01 10:27:11 -050054# Similarly for our function that gets the output signatures
Patrick Williams213cb262021-08-07 19:21:33 -050055SSTATEPOSTUNPACKFUNCS:append = " buildhistory_emit_outputsigs"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050056sstate_installpkgdir[vardepsexclude] += "buildhistory_emit_outputsigs"
57SSTATEPOSTUNPACKFUNCS[vardepvalueexclude] .= "| buildhistory_emit_outputsigs"
58
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050059# All items excepts those listed here will be removed from a recipe's
60# build history directory by buildhistory_emit_pkghistory(). This is
61# necessary because some of these items (package directories, files that
62# we no longer emit) might be obsolete.
Patrick Williamsc124f4f2015-09-15 14:41:29 -050063#
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050064# When extending build history, derive your class from buildhistory.bbclass
65# and extend this list here with the additional files created by the derived
66# class.
Brad Bishop96ff1982019-08-19 13:50:42 -040067BUILDHISTORY_PRESERVE = "latest latest_srcrev sysroot"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050068
Patrick Williamsc0f7c042017-02-23 20:41:17 -060069PATCH_GIT_USER_EMAIL ?= "buildhistory@oe"
70PATCH_GIT_USER_NAME ?= "OpenEmbedded"
71
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050072#
Brad Bishop96ff1982019-08-19 13:50:42 -040073# Write out the contents of the sysroot
74#
75buildhistory_emit_sysroot() {
76 mkdir --parents ${BUILDHISTORY_DIR_PACKAGE}
77 case ${CLASSOVERRIDE} in
78 class-native|class-cross|class-crosssdk)
79 BASE=${SYSROOT_DESTDIR}/${STAGING_DIR_NATIVE}
80 ;;
81 *)
82 BASE=${SYSROOT_DESTDIR}
83 ;;
84 esac
85 buildhistory_list_files_no_owners $BASE ${BUILDHISTORY_DIR_PACKAGE}/sysroot
86}
87
88#
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050089# Write out metadata about this package for comparison when writing future packages
Patrick Williamsc124f4f2015-09-15 14:41:29 -050090#
91python buildhistory_emit_pkghistory() {
Brad Bishop96ff1982019-08-19 13:50:42 -040092 if d.getVar('BB_CURRENTTASK') in ['populate_sysroot', 'populate_sysroot_setscene']:
93 bb.build.exec_func("buildhistory_emit_sysroot", d)
94
Brad Bishop6e60e8b2018-02-01 10:27:11 -050095 if not d.getVar('BB_CURRENTTASK') in ['packagedata', 'packagedata_setscene']:
Patrick Williamsc124f4f2015-09-15 14:41:29 -050096 return 0
97
Brad Bishop6e60e8b2018-02-01 10:27:11 -050098 if not "package" in (d.getVar('BUILDHISTORY_FEATURES') or "").split():
Patrick Williamsc124f4f2015-09-15 14:41:29 -050099 return 0
100
101 import re
102 import json
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800103 import shlex
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500104 import errno
105
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500106 pkghistdir = d.getVar('BUILDHISTORY_DIR_PACKAGE')
107 oldpkghistdir = d.getVar('BUILDHISTORY_OLD_DIR_PACKAGE')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500108
109 class RecipeInfo:
110 def __init__(self, name):
111 self.name = name
112 self.pe = "0"
113 self.pv = "0"
114 self.pr = "r0"
115 self.depends = ""
116 self.packages = ""
117 self.srcrev = ""
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500118 self.layer = ""
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600119 self.license = ""
Andrew Geissler4ed12e12020-06-05 18:00:41 -0500120 self.config = ""
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500121 self.src_uri = ""
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500122
123
124 class PackageInfo:
125 def __init__(self, name):
126 self.name = name
127 self.pe = "0"
128 self.pv = "0"
129 self.pr = "r0"
130 # pkg/pkge/pkgv/pkgr should be empty because we want to be able to default them
131 self.pkg = ""
132 self.pkge = ""
133 self.pkgv = ""
134 self.pkgr = ""
135 self.size = 0
136 self.depends = ""
137 self.rprovides = ""
138 self.rdepends = ""
139 self.rrecommends = ""
140 self.rsuggests = ""
141 self.rreplaces = ""
142 self.rconflicts = ""
143 self.files = ""
144 self.filelist = ""
145 # Variables that need to be written to their own separate file
146 self.filevars = dict.fromkeys(['pkg_preinst', 'pkg_postinst', 'pkg_prerm', 'pkg_postrm'])
147
148 # Should check PACKAGES here to see if anything removed
149
150 def readPackageInfo(pkg, histfile):
151 pkginfo = PackageInfo(pkg)
152 with open(histfile, "r") as f:
153 for line in f:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500154 lns = line.split('=', 1)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500155 name = lns[0].strip()
156 value = lns[1].strip(" \t\r\n").strip('"')
157 if name == "PE":
158 pkginfo.pe = value
159 elif name == "PV":
160 pkginfo.pv = value
161 elif name == "PR":
162 pkginfo.pr = value
163 elif name == "PKG":
164 pkginfo.pkg = value
165 elif name == "PKGE":
166 pkginfo.pkge = value
167 elif name == "PKGV":
168 pkginfo.pkgv = value
169 elif name == "PKGR":
170 pkginfo.pkgr = value
171 elif name == "RPROVIDES":
172 pkginfo.rprovides = value
173 elif name == "RDEPENDS":
174 pkginfo.rdepends = value
175 elif name == "RRECOMMENDS":
176 pkginfo.rrecommends = value
177 elif name == "RSUGGESTS":
178 pkginfo.rsuggests = value
179 elif name == "RREPLACES":
180 pkginfo.rreplaces = value
181 elif name == "RCONFLICTS":
182 pkginfo.rconflicts = value
183 elif name == "PKGSIZE":
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600184 pkginfo.size = int(value)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500185 elif name == "FILES":
186 pkginfo.files = value
187 elif name == "FILELIST":
188 pkginfo.filelist = value
189 # Apply defaults
190 if not pkginfo.pkg:
191 pkginfo.pkg = pkginfo.name
192 if not pkginfo.pkge:
193 pkginfo.pkge = pkginfo.pe
194 if not pkginfo.pkgv:
195 pkginfo.pkgv = pkginfo.pv
196 if not pkginfo.pkgr:
197 pkginfo.pkgr = pkginfo.pr
198 return pkginfo
199
200 def getlastpkgversion(pkg):
201 try:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500202 histfile = os.path.join(oldpkghistdir, pkg, "latest")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500203 return readPackageInfo(pkg, histfile)
204 except EnvironmentError:
205 return None
206
207 def sortpkglist(string):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500208 pkgiter = re.finditer(r'[a-zA-Z0-9.+-]+( \([><=]+[^)]+\))?', string, 0)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500209 pkglist = [p.group(0) for p in pkgiter]
210 pkglist.sort()
211 return ' '.join(pkglist)
212
213 def sortlist(string):
214 items = string.split(' ')
215 items.sort()
216 return ' '.join(items)
217
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500218 pn = d.getVar('PN')
219 pe = d.getVar('PE') or "0"
220 pv = d.getVar('PV')
221 pr = d.getVar('PR')
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500222 layer = bb.utils.get_file_layer(d.getVar('FILE'), d)
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600223 license = d.getVar('LICENSE')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500224
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500225 pkgdata_dir = d.getVar('PKGDATA_DIR')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500226 packages = ""
227 try:
228 with open(os.path.join(pkgdata_dir, pn)) as f:
229 for line in f.readlines():
230 if line.startswith('PACKAGES: '):
231 packages = oe.utils.squashspaces(line.split(': ', 1)[1])
232 break
233 except IOError as e:
234 if e.errno == errno.ENOENT:
235 # Probably a -cross recipe, just ignore
236 return 0
237 else:
238 raise
239
240 packagelist = packages.split()
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500241 preserve = d.getVar('BUILDHISTORY_PRESERVE').split()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500242 if not os.path.exists(pkghistdir):
243 bb.utils.mkdirhier(pkghistdir)
244 else:
245 # Remove files for packages that no longer exist
246 for item in os.listdir(pkghistdir):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500247 if item not in preserve:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500248 if item not in packagelist:
249 itempath = os.path.join(pkghistdir, item)
250 if os.path.isdir(itempath):
251 for subfile in os.listdir(itempath):
252 os.unlink(os.path.join(itempath, subfile))
253 os.rmdir(itempath)
254 else:
255 os.unlink(itempath)
256
257 rcpinfo = RecipeInfo(pn)
258 rcpinfo.pe = pe
259 rcpinfo.pv = pv
260 rcpinfo.pr = pr
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500261 rcpinfo.depends = sortlist(oe.utils.squashspaces(d.getVar('DEPENDS') or ""))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500262 rcpinfo.packages = packages
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500263 rcpinfo.layer = layer
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600264 rcpinfo.license = license
Andrew Geissler4ed12e12020-06-05 18:00:41 -0500265 rcpinfo.config = sortlist(oe.utils.squashspaces(d.getVar('PACKAGECONFIG') or ""))
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500266 rcpinfo.src_uri = oe.utils.squashspaces(d.getVar('SRC_URI') or "")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500267 write_recipehistory(rcpinfo, d)
268
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500269 bb.build.exec_func("read_subpackage_metadata", d)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500270
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500271 for pkg in packagelist:
272 localdata = d.createCopy()
273 localdata.setVar('OVERRIDES', d.getVar("OVERRIDES", False) + ":" + pkg)
274
275 pkge = localdata.getVar("PKGE") or '0'
276 pkgv = localdata.getVar("PKGV")
277 pkgr = localdata.getVar("PKGR")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500278 #
279 # Find out what the last version was
280 # Make sure the version did not decrease
281 #
282 lastversion = getlastpkgversion(pkg)
283 if lastversion:
284 last_pkge = lastversion.pkge
285 last_pkgv = lastversion.pkgv
286 last_pkgr = lastversion.pkgr
287 r = bb.utils.vercmp((pkge, pkgv, pkgr), (last_pkge, last_pkgv, last_pkgr))
288 if r < 0:
Brad Bishop1d80a2e2019-11-15 16:35:03 -0500289 msg = "Package version for package %s went backwards which would break package feeds (from %s:%s-%s to %s:%s-%s)" % (pkg, last_pkge, last_pkgv, last_pkgr, pkge, pkgv, pkgr)
Andrew Geisslereff27472021-10-29 15:35:00 -0500290 oe.qa.handle_error("version-going-backwards", msg, d)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500291
292 pkginfo = PackageInfo(pkg)
293 # Apparently the version can be different on a per-package basis (see Python)
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500294 pkginfo.pe = localdata.getVar("PE") or '0'
295 pkginfo.pv = localdata.getVar("PV")
296 pkginfo.pr = localdata.getVar("PR")
297 pkginfo.pkg = localdata.getVar("PKG")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500298 pkginfo.pkge = pkge
299 pkginfo.pkgv = pkgv
300 pkginfo.pkgr = pkgr
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500301 pkginfo.rprovides = sortpkglist(oe.utils.squashspaces(localdata.getVar("RPROVIDES") or ""))
302 pkginfo.rdepends = sortpkglist(oe.utils.squashspaces(localdata.getVar("RDEPENDS") or ""))
303 pkginfo.rrecommends = sortpkglist(oe.utils.squashspaces(localdata.getVar("RRECOMMENDS") or ""))
304 pkginfo.rsuggests = sortpkglist(oe.utils.squashspaces(localdata.getVar("RSUGGESTS") or ""))
305 pkginfo.replaces = sortpkglist(oe.utils.squashspaces(localdata.getVar("RREPLACES") or ""))
306 pkginfo.rconflicts = sortpkglist(oe.utils.squashspaces(localdata.getVar("RCONFLICTS") or ""))
307 pkginfo.files = oe.utils.squashspaces(localdata.getVar("FILES") or "")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500308 for filevar in pkginfo.filevars:
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500309 pkginfo.filevars[filevar] = localdata.getVar(filevar) or ""
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500310
311 # Gather information about packaged files
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500312 val = localdata.getVar('FILES_INFO') or ''
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500313 dictval = json.loads(val)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600314 filelist = list(dictval.keys())
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500315 filelist.sort()
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800316 pkginfo.filelist = " ".join([shlex.quote(x) for x in filelist])
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500317
Andrew Geisslerc9f78652020-09-18 14:11:35 -0500318 pkginfo.size = int(localdata.getVar('PKGSIZE') or '0')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500319
320 write_pkghistory(pkginfo, d)
321
322 # Create files-in-<package-name>.txt files containing a list of files of each recipe's package
323 bb.build.exec_func("buildhistory_list_pkg_files", d)
Andrew Geisslereff27472021-10-29 15:35:00 -0500324 oe.qa.exit_if_errors(d)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500325}
326
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500327python buildhistory_emit_outputsigs() {
328 if not "task" in (d.getVar('BUILDHISTORY_FEATURES') or "").split():
329 return
330
331 import hashlib
332
333 taskoutdir = os.path.join(d.getVar('BUILDHISTORY_DIR'), 'task', 'output')
334 bb.utils.mkdirhier(taskoutdir)
335 currenttask = d.getVar('BB_CURRENTTASK')
336 pn = d.getVar('PN')
337 taskfile = os.path.join(taskoutdir, '%s.%s' % (pn, currenttask))
338
339 cwd = os.getcwd()
340 filesigs = {}
341 for root, _, files in os.walk(cwd):
342 for fname in files:
343 if fname == 'fixmepath':
344 continue
345 fullpath = os.path.join(root, fname)
346 try:
347 if os.path.islink(fullpath):
348 sha256 = hashlib.sha256(os.readlink(fullpath).encode('utf-8')).hexdigest()
349 elif os.path.isfile(fullpath):
350 sha256 = bb.utils.sha256_file(fullpath)
351 else:
352 continue
353 except OSError:
354 bb.warn('buildhistory: unable to read %s to get output signature' % fullpath)
355 continue
356 filesigs[os.path.relpath(fullpath, cwd)] = sha256
357 with open(taskfile, 'w') as f:
358 for fpath, fsig in sorted(filesigs.items(), key=lambda item: item[0]):
359 f.write('%s %s\n' % (fpath, fsig))
360}
361
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500362
363def write_recipehistory(rcpinfo, d):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500364 bb.debug(2, "Writing recipe history")
365
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500366 pkghistdir = d.getVar('BUILDHISTORY_DIR_PACKAGE')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500367
368 infofile = os.path.join(pkghistdir, "latest")
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600369 with open(infofile, "w") as f:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500370 if rcpinfo.pe != "0":
371 f.write(u"PE = %s\n" % rcpinfo.pe)
372 f.write(u"PV = %s\n" % rcpinfo.pv)
373 f.write(u"PR = %s\n" % rcpinfo.pr)
374 f.write(u"DEPENDS = %s\n" % rcpinfo.depends)
375 f.write(u"PACKAGES = %s\n" % rcpinfo.packages)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500376 f.write(u"LAYER = %s\n" % rcpinfo.layer)
Andrew Geissler6ce62a22020-11-30 19:58:47 -0600377 f.write(u"LICENSE = %s\n" % rcpinfo.license)
Andrew Geissler4ed12e12020-06-05 18:00:41 -0500378 f.write(u"CONFIG = %s\n" % rcpinfo.config)
Andrew Geissler4c19ea12020-10-27 13:52:24 -0500379 f.write(u"SRC_URI = %s\n" % rcpinfo.src_uri)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500380
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500381 write_latest_srcrev(d, pkghistdir)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500382
383def write_pkghistory(pkginfo, d):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500384 bb.debug(2, "Writing package history for package %s" % pkginfo.name)
385
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500386 pkghistdir = d.getVar('BUILDHISTORY_DIR_PACKAGE')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500387
388 pkgpath = os.path.join(pkghistdir, pkginfo.name)
389 if not os.path.exists(pkgpath):
390 bb.utils.mkdirhier(pkgpath)
391
392 infofile = os.path.join(pkgpath, "latest")
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600393 with open(infofile, "w") as f:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500394 if pkginfo.pe != "0":
395 f.write(u"PE = %s\n" % pkginfo.pe)
396 f.write(u"PV = %s\n" % pkginfo.pv)
397 f.write(u"PR = %s\n" % pkginfo.pr)
398
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600399 if pkginfo.pkg != pkginfo.name:
400 f.write(u"PKG = %s\n" % pkginfo.pkg)
401 if pkginfo.pkge != pkginfo.pe:
402 f.write(u"PKGE = %s\n" % pkginfo.pkge)
403 if pkginfo.pkgv != pkginfo.pv:
404 f.write(u"PKGV = %s\n" % pkginfo.pkgv)
405 if pkginfo.pkgr != pkginfo.pr:
406 f.write(u"PKGR = %s\n" % pkginfo.pkgr)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500407 f.write(u"RPROVIDES = %s\n" % pkginfo.rprovides)
408 f.write(u"RDEPENDS = %s\n" % pkginfo.rdepends)
409 f.write(u"RRECOMMENDS = %s\n" % pkginfo.rrecommends)
410 if pkginfo.rsuggests:
411 f.write(u"RSUGGESTS = %s\n" % pkginfo.rsuggests)
412 if pkginfo.rreplaces:
413 f.write(u"RREPLACES = %s\n" % pkginfo.rreplaces)
414 if pkginfo.rconflicts:
415 f.write(u"RCONFLICTS = %s\n" % pkginfo.rconflicts)
416 f.write(u"PKGSIZE = %d\n" % pkginfo.size)
417 f.write(u"FILES = %s\n" % pkginfo.files)
418 f.write(u"FILELIST = %s\n" % pkginfo.filelist)
419
420 for filevar in pkginfo.filevars:
421 filevarpath = os.path.join(pkgpath, "latest.%s" % filevar)
422 val = pkginfo.filevars[filevar]
423 if val:
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600424 with open(filevarpath, "w") as f:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500425 f.write(val)
426 else:
427 if os.path.exists(filevarpath):
428 os.unlink(filevarpath)
429
430#
431# rootfs_type can be: image, sdk_target, sdk_host
432#
433def buildhistory_list_installed(d, rootfs_type="image"):
434 from oe.rootfs import image_list_installed_packages
435 from oe.sdk import sdk_list_installed_packages
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500436 from oe.utils import format_pkg_list
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500437
Andrew Geissler635e0e42020-08-21 15:58:33 -0500438 process_list = [('file', 'bh_installed_pkgs_%s.txt' % os.getpid()),\
439 ('deps', 'bh_installed_pkgs_deps_%s.txt' % os.getpid())]
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500440
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500441 if rootfs_type == "image":
442 pkgs = image_list_installed_packages(d)
443 else:
444 pkgs = sdk_list_installed_packages(d, rootfs_type == "sdk_target")
445
Andrew Geisslereff27472021-10-29 15:35:00 -0500446 if rootfs_type == "sdk_host":
447 pkgdata_dir = d.getVar('PKGDATA_DIR_SDK')
448 else:
449 pkgdata_dir = d.getVar('PKGDATA_DIR')
450
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500451 for output_type, output_file in process_list:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500452 output_file_full = os.path.join(d.getVar('WORKDIR'), output_file)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500453
454 with open(output_file_full, 'w') as output:
Andrew Geisslereff27472021-10-29 15:35:00 -0500455 output.write(format_pkg_list(pkgs, output_type, pkgdata_dir))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500456
457python buildhistory_list_installed_image() {
458 buildhistory_list_installed(d)
459}
460
461python buildhistory_list_installed_sdk_target() {
462 buildhistory_list_installed(d, "sdk_target")
463}
464
465python buildhistory_list_installed_sdk_host() {
466 buildhistory_list_installed(d, "sdk_host")
467}
468
469buildhistory_get_installed() {
470 mkdir -p $1
471
472 # Get list of installed packages
473 pkgcache="$1/installed-packages.tmp"
Andrew Geissler635e0e42020-08-21 15:58:33 -0500474 cat ${WORKDIR}/bh_installed_pkgs_${PID}.txt | sort > $pkgcache && rm ${WORKDIR}/bh_installed_pkgs_${PID}.txt
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500475
476 cat $pkgcache | awk '{ print $1 }' > $1/installed-package-names.txt
Andrew Geissler635e0e42020-08-21 15:58:33 -0500477
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500478 if [ -s $pkgcache ] ; then
479 cat $pkgcache | awk '{ print $2 }' | xargs -n1 basename > $1/installed-packages.txt
480 else
481 printf "" > $1/installed-packages.txt
482 fi
483
484 # Produce dependency graph
485 # First, quote each name to handle characters that cause issues for dot
Andrew Geissler635e0e42020-08-21 15:58:33 -0500486 sed 's:\([^| ]*\):"\1":g' ${WORKDIR}/bh_installed_pkgs_deps_${PID}.txt > $1/depends.tmp &&
487 rm ${WORKDIR}/bh_installed_pkgs_deps_${PID}.txt
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500488 # Remove lines with rpmlib(...) and config(...) dependencies, change the
489 # delimiter from pipe to "->", set the style for recommend lines and
490 # turn versioned dependencies into edge labels.
491 sed -i -e '/rpmlib(/d' \
492 -e '/config(/d' \
493 -e 's:|: -> :' \
494 -e 's:"\[REC\]":[style=dotted]:' \
495 -e 's:"\([<>=]\+\)" "\([^"]*\)":[label="\1 \2"]:' \
Andrew Geisslerd159c7f2021-09-02 21:05:58 -0500496 -e 's:"\([*]\+\)" "\([^"]*\)":[label="\2"]:' \
497 -e 's:"\[RPROVIDES\]":[style=dashed]:' \
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500498 $1/depends.tmp
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500499 # Add header, sorted and de-duped contents and footer and then delete the temp file
500 printf "digraph depends {\n node [shape=plaintext]\n" > $1/depends.dot
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500501 cat $1/depends.tmp | sort -u >> $1/depends.dot
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500502 echo "}" >> $1/depends.dot
503 rm $1/depends.tmp
504
Andrew Geisslereff27472021-10-29 15:35:00 -0500505 # Set correct pkgdatadir
506 pkgdatadir=${PKGDATA_DIR}
507 if [ "$2" == "sdk" ] && [ "$3" == "host" ]; then
508 pkgdatadir="${PKGDATA_DIR_SDK}"
509 fi
510
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500511 # Produce installed package sizes list
Andrew Geisslereff27472021-10-29 15:35:00 -0500512 oe-pkgdata-util -p $pkgdatadir read-value "PKGSIZE" -n -f $pkgcache > $1/installed-package-sizes.tmp
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500513 cat $1/installed-package-sizes.tmp | awk '{print $2 "\tKiB\t" $1}' | sort -n -r > $1/installed-package-sizes.txt
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500514 rm $1/installed-package-sizes.tmp
515
Andrew Geisslerd159c7f2021-09-02 21:05:58 -0500516 # Produce package info: runtime_name, buildtime_name, recipe, version, size
Andrew Geisslereff27472021-10-29 15:35:00 -0500517 oe-pkgdata-util -p $pkgdatadir read-value "PACKAGE,PN,PV,PKGSIZE" -n -f $pkgcache > $1/installed-package-info.tmp
Andrew Geisslerd159c7f2021-09-02 21:05:58 -0500518 cat $1/installed-package-info.tmp | sort -n -r -k 5 > $1/installed-package-info.txt
519 rm $1/installed-package-info.tmp
520
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500521 # We're now done with the cache, delete it
522 rm $pkgcache
523
524 if [ "$2" != "sdk" ] ; then
525 # Produce some cut-down graphs (for readability)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500526 grep -v kernel-image $1/depends.dot | grep -v kernel-3 | grep -v kernel-4 > $1/depends-nokernel.dot
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500527 grep -v libc6 $1/depends-nokernel.dot | grep -v libgcc > $1/depends-nokernel-nolibc.dot
528 grep -v update- $1/depends-nokernel-nolibc.dot > $1/depends-nokernel-nolibc-noupdate.dot
529 grep -v kernel-module $1/depends-nokernel-nolibc-noupdate.dot > $1/depends-nokernel-nolibc-noupdate-nomodules.dot
530 fi
531
532 # add complementary package information
533 if [ -e ${WORKDIR}/complementary_pkgs.txt ]; then
534 cp ${WORKDIR}/complementary_pkgs.txt $1
535 fi
536}
537
538buildhistory_get_image_installed() {
539 # Anything requiring the use of the packaging system should be done in here
540 # in case the packaging files are going to be removed for this image
541
542 if [ "${@bb.utils.contains('BUILDHISTORY_FEATURES', 'image', '1', '0', d)}" = "0" ] ; then
543 return
544 fi
545
546 buildhistory_get_installed ${BUILDHISTORY_DIR_IMAGE}
547}
548
549buildhistory_get_sdk_installed() {
550 # Anything requiring the use of the packaging system should be done in here
551 # in case the packaging files are going to be removed for this SDK
552
553 if [ "${@bb.utils.contains('BUILDHISTORY_FEATURES', 'sdk', '1', '0', d)}" = "0" ] ; then
554 return
555 fi
556
Andrew Geisslereff27472021-10-29 15:35:00 -0500557 buildhistory_get_installed ${BUILDHISTORY_DIR_SDK}/$1 sdk $1
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500558}
559
560buildhistory_get_sdk_installed_host() {
561 buildhistory_get_sdk_installed host
562}
563
564buildhistory_get_sdk_installed_target() {
565 buildhistory_get_sdk_installed target
566}
567
568buildhistory_list_files() {
569 # List the files in the specified directory, but exclude date/time etc.
Brad Bishop19323692019-04-05 15:28:33 -0400570 # This is somewhat messy, but handles where the size is not printed for device files under pseudo
571 ( cd $1
572 find_cmd='find . ! -path . -printf "%M %-10u %-10g %10s %p -> %l\n"'
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500573 if [ "$3" = "fakeroot" ] ; then
Brad Bishop19323692019-04-05 15:28:33 -0400574 eval ${FAKEROOTENV} ${FAKEROOTCMD} $find_cmd
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500575 else
Brad Bishop19323692019-04-05 15:28:33 -0400576 eval $find_cmd
577 fi | sort -k5 | sed 's/ * -> $//' > $2 )
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500578}
579
Brad Bishop96ff1982019-08-19 13:50:42 -0400580buildhistory_list_files_no_owners() {
581 # List the files in the specified directory, but exclude date/time etc.
582 # Also don't output the ownership data, but instead output just - - so
583 # that the same parsing code as for _list_files works.
584 # This is somewhat messy, but handles where the size is not printed for device files under pseudo
585 ( cd $1
586 find_cmd='find . ! -path . -printf "%M - - %10s %p -> %l\n"'
587 if [ "$3" = "fakeroot" ] ; then
588 eval ${FAKEROOTENV} ${FAKEROOTCMD} "$find_cmd"
589 else
590 eval "$find_cmd"
591 fi | sort -k5 | sed 's/ * -> $//' > $2 )
592}
593
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500594buildhistory_list_pkg_files() {
595 # Create individual files-in-package for each recipe's package
596 for pkgdir in $(find ${PKGDEST}/* -maxdepth 0 -type d); do
597 pkgname=$(basename $pkgdir)
598 outfolder="${BUILDHISTORY_DIR_PACKAGE}/$pkgname"
599 outfile="$outfolder/files-in-package.txt"
600 # Make sure the output folder exists so we can create the file
601 if [ ! -d $outfolder ] ; then
602 bbdebug 2 "Folder $outfolder does not exist, file $outfile not created"
603 continue
604 fi
605 buildhistory_list_files $pkgdir $outfile fakeroot
606 done
607}
608
609buildhistory_get_imageinfo() {
610 if [ "${@bb.utils.contains('BUILDHISTORY_FEATURES', 'image', '1', '0', d)}" = "0" ] ; then
611 return
612 fi
613
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500614 mkdir -p ${BUILDHISTORY_DIR_IMAGE}
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500615 buildhistory_list_files ${IMAGE_ROOTFS} ${BUILDHISTORY_DIR_IMAGE}/files-in-image.txt
616
617 # Collect files requested in BUILDHISTORY_IMAGE_FILES
618 rm -rf ${BUILDHISTORY_DIR_IMAGE}/image-files
619 for f in ${BUILDHISTORY_IMAGE_FILES}; do
620 if [ -f ${IMAGE_ROOTFS}/$f ] ; then
621 mkdir -p ${BUILDHISTORY_DIR_IMAGE}/image-files/`dirname $f`
622 cp ${IMAGE_ROOTFS}/$f ${BUILDHISTORY_DIR_IMAGE}/image-files/$f
623 fi
624 done
625
626 # Record some machine-readable meta-information about the image
627 printf "" > ${BUILDHISTORY_DIR_IMAGE}/image-info.txt
628 cat >> ${BUILDHISTORY_DIR_IMAGE}/image-info.txt <<END
629${@buildhistory_get_imagevars(d)}
630END
631 imagesize=`du -ks ${IMAGE_ROOTFS} | awk '{ print $1 }'`
632 echo "IMAGESIZE = $imagesize" >> ${BUILDHISTORY_DIR_IMAGE}/image-info.txt
633
634 # Add some configuration information
635 echo "${MACHINE}: ${IMAGE_BASENAME} configured for ${DISTRO} ${DISTRO_VERSION}" > ${BUILDHISTORY_DIR_IMAGE}/build-id.txt
636
637 cat >> ${BUILDHISTORY_DIR_IMAGE}/build-id.txt <<END
638${@buildhistory_get_build_id(d)}
639END
640}
641
642buildhistory_get_sdkinfo() {
643 if [ "${@bb.utils.contains('BUILDHISTORY_FEATURES', 'sdk', '1', '0', d)}" = "0" ] ; then
644 return
645 fi
646
647 buildhistory_list_files ${SDK_OUTPUT} ${BUILDHISTORY_DIR_SDK}/files-in-sdk.txt
648
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500649 # Collect files requested in BUILDHISTORY_SDK_FILES
650 rm -rf ${BUILDHISTORY_DIR_SDK}/sdk-files
651 for f in ${BUILDHISTORY_SDK_FILES}; do
652 if [ -f ${SDK_OUTPUT}/${SDKPATH}/$f ] ; then
653 mkdir -p ${BUILDHISTORY_DIR_SDK}/sdk-files/`dirname $f`
654 cp ${SDK_OUTPUT}/${SDKPATH}/$f ${BUILDHISTORY_DIR_SDK}/sdk-files/$f
655 fi
656 done
657
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500658 # Record some machine-readable meta-information about the SDK
659 printf "" > ${BUILDHISTORY_DIR_SDK}/sdk-info.txt
660 cat >> ${BUILDHISTORY_DIR_SDK}/sdk-info.txt <<END
661${@buildhistory_get_sdkvars(d)}
662END
663 sdksize=`du -ks ${SDK_OUTPUT} | awk '{ print $1 }'`
664 echo "SDKSIZE = $sdksize" >> ${BUILDHISTORY_DIR_SDK}/sdk-info.txt
665}
666
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500667python buildhistory_get_extra_sdkinfo() {
668 import operator
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500669 from oe.sdk import get_extra_sdkinfo
670
671 sstate_dir = d.expand('${SDK_OUTPUT}/${SDKPATH}/sstate-cache')
672 extra_info = get_extra_sdkinfo(sstate_dir)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500673
674 if d.getVar('BB_CURRENTTASK') == 'populate_sdk_ext' and \
675 "sdk" in (d.getVar('BUILDHISTORY_FEATURES') or "").split():
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500676 with open(d.expand('${BUILDHISTORY_DIR_SDK}/sstate-package-sizes.txt'), 'w') as f:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500677 filesizes_sorted = sorted(extra_info['filesizes'].items(), key=operator.itemgetter(1, 0), reverse=True)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500678 for fn, size in filesizes_sorted:
679 f.write('%10d KiB %s\n' % (size, fn))
680 with open(d.expand('${BUILDHISTORY_DIR_SDK}/sstate-task-sizes.txt'), 'w') as f:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500681 tasksizes_sorted = sorted(extra_info['tasksizes'].items(), key=operator.itemgetter(1, 0), reverse=True)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500682 for task, size in tasksizes_sorted:
683 f.write('%10d KiB %s\n' % (size, task))
684}
685
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500686# By using ROOTFS_POSTUNINSTALL_COMMAND we get in after uninstallation of
687# unneeded packages but before the removal of packaging files
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500688ROOTFS_POSTUNINSTALL_COMMAND += "buildhistory_list_installed_image ;"
689ROOTFS_POSTUNINSTALL_COMMAND += "buildhistory_get_image_installed ;"
690ROOTFS_POSTUNINSTALL_COMMAND[vardepvalueexclude] .= "| buildhistory_list_installed_image ;| buildhistory_get_image_installed ;"
691ROOTFS_POSTUNINSTALL_COMMAND[vardepsexclude] += "buildhistory_list_installed_image buildhistory_get_image_installed"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500692
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500693IMAGE_POSTPROCESS_COMMAND += "buildhistory_get_imageinfo ;"
694IMAGE_POSTPROCESS_COMMAND[vardepvalueexclude] .= "| buildhistory_get_imageinfo ;"
695IMAGE_POSTPROCESS_COMMAND[vardepsexclude] += "buildhistory_get_imageinfo"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500696
697# We want these to be the last run so that we get called after complementary package installation
Patrick Williams213cb262021-08-07 19:21:33 -0500698POPULATE_SDK_POST_TARGET_COMMAND:append = " buildhistory_list_installed_sdk_target;"
699POPULATE_SDK_POST_TARGET_COMMAND:append = " buildhistory_get_sdk_installed_target;"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500700POPULATE_SDK_POST_TARGET_COMMAND[vardepvalueexclude] .= "| buildhistory_list_installed_sdk_target;| buildhistory_get_sdk_installed_target;"
Andrew Geissler95ac1b82021-03-31 14:34:31 -0500701POPULATE_SDK_POST_TARGET_COMMAND[vardepsexclude] += "buildhistory_list_installed_sdk_target buildhistory_get_sdk_installed_target"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500702
Patrick Williams213cb262021-08-07 19:21:33 -0500703POPULATE_SDK_POST_HOST_COMMAND:append = " buildhistory_list_installed_sdk_host;"
704POPULATE_SDK_POST_HOST_COMMAND:append = " buildhistory_get_sdk_installed_host;"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500705POPULATE_SDK_POST_HOST_COMMAND[vardepvalueexclude] .= "| buildhistory_list_installed_sdk_host;| buildhistory_get_sdk_installed_host;"
Andrew Geissler95ac1b82021-03-31 14:34:31 -0500706POPULATE_SDK_POST_HOST_COMMAND[vardepsexclude] += "buildhistory_list_installed_sdk_host buildhistory_get_sdk_installed_host"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500707
Patrick Williams213cb262021-08-07 19:21:33 -0500708SDK_POSTPROCESS_COMMAND:append = " buildhistory_get_sdkinfo ; buildhistory_get_extra_sdkinfo; "
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500709SDK_POSTPROCESS_COMMAND[vardepvalueexclude] .= "| buildhistory_get_sdkinfo ; buildhistory_get_extra_sdkinfo; "
Andrew Geissler95ac1b82021-03-31 14:34:31 -0500710SDK_POSTPROCESS_COMMAND[vardepsexclude] += "buildhistory_get_sdkinfo buildhistory_get_extra_sdkinfo"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500711
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500712python buildhistory_write_sigs() {
713 if not "task" in (d.getVar('BUILDHISTORY_FEATURES') or "").split():
714 return
715
716 # Create sigs file
717 if hasattr(bb.parse.siggen, 'dump_siglist'):
718 taskoutdir = os.path.join(d.getVar('BUILDHISTORY_DIR'), 'task')
719 bb.utils.mkdirhier(taskoutdir)
Andrew Geissler09036742021-06-25 14:25:14 -0500720 bb.parse.siggen.dump_siglist(os.path.join(taskoutdir, 'tasksigs.txt'), d.getVar("BUILDHISTORY_PATH_PREFIX_STRIP"))
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500721}
722
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500723def buildhistory_get_build_id(d):
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500724 if d.getVar('BB_WORKERCONTEXT') != '1':
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500725 return ""
726 localdata = bb.data.createCopy(d)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500727 statuslines = []
728 for func in oe.data.typed_value('BUILDCFG_FUNCS', localdata):
729 g = globals()
730 if func not in g:
731 bb.warn("Build configuration function '%s' does not exist" % func)
732 else:
733 flines = g[func](localdata)
734 if flines:
735 statuslines.extend(flines)
736
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500737 statusheader = d.getVar('BUILDCFG_HEADER')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500738 return('\n%s\n%s\n' % (statusheader, '\n'.join(statuslines)))
739
Brad Bishop19323692019-04-05 15:28:33 -0400740def buildhistory_get_modified(path):
741 # copied from get_layer_git_status() in image-buildinfo.bbclass
742 import subprocess
743 try:
744 subprocess.check_output("""cd %s; export PSEUDO_UNLOAD=1; set -e;
745 git diff --quiet --no-ext-diff
746 git diff --quiet --no-ext-diff --cached""" % path,
747 shell=True,
748 stderr=subprocess.STDOUT)
749 return ""
750 except subprocess.CalledProcessError as ex:
751 # Silently treat errors as "modified", without checking for the
752 # (expected) return code 1 in a modified git repo. For example, we get
753 # output and a 129 return code when a layer isn't a git repo at all.
754 return " -- modified"
755
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500756def buildhistory_get_metadata_revs(d):
757 # We want an easily machine-readable format here, so get_layers_branch_rev isn't quite what we want
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500758 layers = (d.getVar("BBLAYERS") or "").split()
Brad Bishop19323692019-04-05 15:28:33 -0400759 medadata_revs = ["%-17s = %s:%s%s" % (os.path.basename(i), \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500760 base_get_metadata_git_branch(i, None).strip(), \
Brad Bishop19323692019-04-05 15:28:33 -0400761 base_get_metadata_git_revision(i, None), \
762 buildhistory_get_modified(i)) \
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500763 for i in layers]
764 return '\n'.join(medadata_revs)
765
766def outputvars(vars, listvars, d):
767 vars = vars.split()
768 listvars = listvars.split()
769 ret = ""
770 for var in vars:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500771 value = d.getVar(var) or ""
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500772 if var in listvars:
773 # Squash out spaces
774 value = oe.utils.squashspaces(value)
775 ret += "%s = %s\n" % (var, value)
776 return ret.rstrip('\n')
777
778def buildhistory_get_imagevars(d):
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500779 if d.getVar('BB_WORKERCONTEXT') != '1':
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500780 return ""
781 imagevars = "DISTRO DISTRO_VERSION USER_CLASSES IMAGE_CLASSES IMAGE_FEATURES IMAGE_LINGUAS IMAGE_INSTALL BAD_RECOMMENDATIONS NO_RECOMMENDATIONS PACKAGE_EXCLUDE ROOTFS_POSTPROCESS_COMMAND IMAGE_POSTPROCESS_COMMAND"
782 listvars = "USER_CLASSES IMAGE_CLASSES IMAGE_FEATURES IMAGE_LINGUAS IMAGE_INSTALL BAD_RECOMMENDATIONS PACKAGE_EXCLUDE"
783 return outputvars(imagevars, listvars, d)
784
785def buildhistory_get_sdkvars(d):
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500786 if d.getVar('BB_WORKERCONTEXT') != '1':
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500787 return ""
Andrew Geisslereff27472021-10-29 15:35:00 -0500788 sdkvars = "DISTRO DISTRO_VERSION SDK_NAME SDK_VERSION SDKMACHINE SDKIMAGE_FEATURES TOOLCHAIN_HOST_TASK TOOLCHAIN_TARGET_TASK BAD_RECOMMENDATIONS NO_RECOMMENDATIONS PACKAGE_EXCLUDE"
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500789 if d.getVar('BB_CURRENTTASK') == 'populate_sdk_ext':
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500790 # Extensible SDK uses some additional variables
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600791 sdkvars += " SDK_LOCAL_CONF_WHITELIST SDK_LOCAL_CONF_BLACKLIST SDK_INHERIT_BLACKLIST SDK_UPDATE_URL SDK_EXT_TYPE SDK_RECRDEP_TASKS SDK_INCLUDE_PKGDATA SDK_INCLUDE_TOOLCHAIN"
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500792 listvars = "SDKIMAGE_FEATURES BAD_RECOMMENDATIONS PACKAGE_EXCLUDE SDK_LOCAL_CONF_WHITELIST SDK_LOCAL_CONF_BLACKLIST SDK_INHERIT_BLACKLIST"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500793 return outputvars(sdkvars, listvars, d)
794
795
796def buildhistory_get_cmdline(d):
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500797 argv = d.getVar('BB_CMDLINE', False)
798 if argv:
799 if argv[0].endswith('bin/bitbake'):
800 bincmd = 'bitbake'
801 else:
802 bincmd = argv[0]
803 return '%s %s' % (bincmd, ' '.join(argv[1:]))
804 return ''
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500805
806
807buildhistory_single_commit() {
808 if [ "$3" = "" ] ; then
809 commitopts="${BUILDHISTORY_DIR}/ --allow-empty"
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500810 shortlogprefix="No changes: "
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500811 else
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500812 commitopts=""
813 shortlogprefix=""
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500814 fi
815 if [ "${BUILDHISTORY_BUILD_FAILURES}" = "0" ] ; then
816 result="succeeded"
817 else
818 result="failed"
819 fi
820 case ${BUILDHISTORY_BUILD_INTERRUPTED} in
821 1)
822 result="$result (interrupted)"
823 ;;
824 2)
825 result="$result (force interrupted)"
826 ;;
827 esac
828 commitmsgfile=`mktemp`
829 cat > $commitmsgfile << END
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500830${shortlogprefix}Build ${BUILDNAME} of ${DISTRO} ${DISTRO_VERSION} for machine ${MACHINE} on $2
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500831
832cmd: $1
833
834result: $result
835
836metadata revisions:
837END
838 cat ${BUILDHISTORY_DIR}/metadata-revs >> $commitmsgfile
839 git commit $commitopts -F $commitmsgfile --author "${BUILDHISTORY_COMMIT_AUTHOR}" > /dev/null
840 rm $commitmsgfile
841}
842
843buildhistory_commit() {
844 if [ ! -d ${BUILDHISTORY_DIR} ] ; then
845 # Code above that creates this dir never executed, so there can't be anything to commit
846 return
847 fi
848
849 # Create a machine-readable list of metadata revisions for each layer
850 cat > ${BUILDHISTORY_DIR}/metadata-revs <<END
851${@buildhistory_get_metadata_revs(d)}
852END
853
854 ( cd ${BUILDHISTORY_DIR}/
855 # Initialise the repo if necessary
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500856 if [ ! -e .git ] ; then
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500857 git init -q
858 else
Andrew Geissler82c905d2020-04-13 13:39:40 -0500859 git tag -f ${BUILDHISTORY_TAG}-minus-3 ${BUILDHISTORY_TAG}-minus-2 > /dev/null 2>&1 || true
860 git tag -f ${BUILDHISTORY_TAG}-minus-2 ${BUILDHISTORY_TAG}-minus-1 > /dev/null 2>&1 || true
861 git tag -f ${BUILDHISTORY_TAG}-minus-1 > /dev/null 2>&1 || true
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500862 fi
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600863
864 check_git_config
865
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500866 # Check if there are new/changed files to commit (other than metadata-revs)
867 repostatus=`git status --porcelain | grep -v " metadata-revs$"`
868 HOSTNAME=`hostname 2>/dev/null || echo unknown`
869 CMDLINE="${@buildhistory_get_cmdline(d)}"
870 if [ "$repostatus" != "" ] ; then
871 git add -A .
872 # porcelain output looks like "?? packages/foo/bar"
873 # Ensure we commit metadata-revs with the first commit
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500874 buildhistory_single_commit "$CMDLINE" "$HOSTNAME" dummy
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500875 git gc --auto --quiet
876 else
877 buildhistory_single_commit "$CMDLINE" "$HOSTNAME"
878 fi
879 if [ "${BUILDHISTORY_PUSH_REPO}" != "" ] ; then
880 git push -q ${BUILDHISTORY_PUSH_REPO}
881 fi) || true
882}
883
884python buildhistory_eventhandler() {
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600885 if (e.data.getVar('BUILDHISTORY_FEATURES') or "").strip():
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500886 reset = e.data.getVar("BUILDHISTORY_RESET")
887 olddir = e.data.getVar("BUILDHISTORY_OLD_DIR")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500888 if isinstance(e, bb.event.BuildStarted):
889 if reset:
890 import shutil
891 # Clean up after potentially interrupted build.
892 if os.path.isdir(olddir):
893 shutil.rmtree(olddir)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500894 rootdir = e.data.getVar("BUILDHISTORY_DIR")
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500895 entries = [ x for x in os.listdir(rootdir) if not x.startswith('.') ]
896 bb.utils.mkdirhier(olddir)
897 for entry in entries:
Andrew Geisslerc926e172021-05-07 16:11:35 -0500898 bb.utils.rename(os.path.join(rootdir, entry),
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500899 os.path.join(olddir, entry))
900 elif isinstance(e, bb.event.BuildCompleted):
901 if reset:
902 import shutil
903 shutil.rmtree(olddir)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500904 if e.data.getVar("BUILDHISTORY_COMMIT") == "1":
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500905 bb.note("Writing buildhistory")
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500906 bb.build.exec_func("buildhistory_write_sigs", d)
Brad Bishopf3fd2882019-06-21 08:06:37 -0400907 import time
908 start=time.time()
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500909 localdata = bb.data.createCopy(e.data)
910 localdata.setVar('BUILDHISTORY_BUILD_FAILURES', str(e._failures))
911 interrupted = getattr(e, '_interrupted', 0)
912 localdata.setVar('BUILDHISTORY_BUILD_INTERRUPTED', str(interrupted))
913 bb.build.exec_func("buildhistory_commit", localdata)
Brad Bishopf3fd2882019-06-21 08:06:37 -0400914 stop=time.time()
915 bb.note("Writing buildhistory took: %s seconds" % round(stop-start))
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500916 else:
917 bb.note("No commit since BUILDHISTORY_COMMIT != '1'")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500918}
919
920addhandler buildhistory_eventhandler
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500921buildhistory_eventhandler[eventmask] = "bb.event.BuildCompleted bb.event.BuildStarted"
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500922
923
924# FIXME this ought to be moved into the fetcher
925def _get_srcrev_values(d):
926 """
927 Return the version strings for the current recipe
928 """
929
930 scms = []
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500931 fetcher = bb.fetch.Fetch(d.getVar('SRC_URI').split(), d)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500932 urldata = fetcher.ud
933 for u in urldata:
934 if urldata[u].method.supports_srcrev():
935 scms.append(u)
936
937 autoinc_templ = 'AUTOINC+'
938 dict_srcrevs = {}
939 dict_tag_srcrevs = {}
940 for scm in scms:
941 ud = urldata[scm]
942 for name in ud.names:
943 try:
944 rev = ud.method.sortable_revision(ud, d, name)
945 except TypeError:
946 # support old bitbake versions
947 rev = ud.method.sortable_revision(scm, ud, d, name)
948 # Clean this up when we next bump bitbake version
949 if type(rev) != str:
950 autoinc, rev = rev
951 elif rev.startswith(autoinc_templ):
952 rev = rev[len(autoinc_templ):]
953 dict_srcrevs[name] = rev
954 if 'tag' in ud.parm:
955 tag = ud.parm['tag'];
956 key = name+'_'+tag
957 dict_tag_srcrevs[key] = rev
958 return (dict_srcrevs, dict_tag_srcrevs)
959
960do_fetch[postfuncs] += "write_srcrev"
961do_fetch[vardepsexclude] += "write_srcrev"
962python write_srcrev() {
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500963 write_latest_srcrev(d, d.getVar('BUILDHISTORY_DIR_PACKAGE'))
964}
965
966def write_latest_srcrev(d, pkghistdir):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500967 srcrevfile = os.path.join(pkghistdir, 'latest_srcrev')
968
969 srcrevs, tag_srcrevs = _get_srcrev_values(d)
970 if srcrevs:
971 if not os.path.exists(pkghistdir):
972 bb.utils.mkdirhier(pkghistdir)
973 old_tag_srcrevs = {}
974 if os.path.exists(srcrevfile):
975 with open(srcrevfile) as f:
976 for line in f:
977 if line.startswith('# tag_'):
978 key, value = line.split("=", 1)
979 key = key.replace('# tag_', '').strip()
980 value = value.replace('"', '').strip()
981 old_tag_srcrevs[key] = value
982 with open(srcrevfile, 'w') as f:
983 orig_srcrev = d.getVar('SRCREV', False) or 'INVALID'
984 if orig_srcrev != 'INVALID':
985 f.write('# SRCREV = "%s"\n' % orig_srcrev)
986 if len(srcrevs) > 1:
Brad Bishop19323692019-04-05 15:28:33 -0400987 for name, srcrev in sorted(srcrevs.items()):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500988 orig_srcrev = d.getVar('SRCREV_%s' % name, False)
989 if orig_srcrev:
990 f.write('# SRCREV_%s = "%s"\n' % (name, orig_srcrev))
991 f.write('SRCREV_%s = "%s"\n' % (name, srcrev))
992 else:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500993 f.write('SRCREV = "%s"\n' % next(iter(srcrevs.values())))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500994 if len(tag_srcrevs) > 0:
Brad Bishop19323692019-04-05 15:28:33 -0400995 for name, srcrev in sorted(tag_srcrevs.items()):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500996 f.write('# tag_%s = "%s"\n' % (name, srcrev))
997 if name in old_tag_srcrevs and old_tag_srcrevs[name] != srcrev:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500998 pkg = d.getVar('PN')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500999 bb.warn("Revision for tag %s in package %s was changed since last build (from %s to %s)" % (name, pkg, old_tag_srcrevs[name], srcrev))
1000
1001 else:
1002 if os.path.exists(srcrevfile):
1003 os.remove(srcrevfile)
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001004
1005do_testimage[postfuncs] += "write_ptest_result"
1006do_testimage[vardepsexclude] += "write_ptest_result"
1007
1008python write_ptest_result() {
1009 write_latest_ptest_result(d, d.getVar('BUILDHISTORY_DIR'))
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001010}
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001011
1012def write_latest_ptest_result(d, histdir):
1013 import glob
1014 import subprocess
1015 test_log_dir = d.getVar('TEST_LOG_DIR')
1016 input_ptest = os.path.join(test_log_dir, 'ptest_log')
1017 output_ptest = os.path.join(histdir, 'ptest')
1018 if os.path.exists(input_ptest):
1019 try:
1020 # Lock it avoid race issue
1021 lock = bb.utils.lockfile(output_ptest + "/ptest.lock")
1022 bb.utils.mkdirhier(output_ptest)
1023 oe.path.copytree(input_ptest, output_ptest)
1024 # Sort test result
1025 for result in glob.glob('%s/pass.fail.*' % output_ptest):
1026 bb.debug(1, 'Processing %s' % result)
1027 cmd = ['sort', result, '-o', result]
1028 bb.debug(1, 'Running %s' % cmd)
1029 ret = subprocess.call(cmd)
1030 if ret != 0:
1031 bb.error('Failed to run %s!' % cmd)
1032 finally:
1033 bb.utils.unlockfile(lock)