blob: 19420a2df690549036621d80029807161044e36d [file] [log] [blame]
Patrick Williamsc0f7c042017-02-23 20:41:17 -06001#!/usr/bin/env python3
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002
Brad Bishopa5c52ff2018-11-23 10:55:50 +13003# bitbake-diffsigs / bitbake-dumpsig
4# BitBake task signature data dump and comparison utility
Patrick Williamsc124f4f2015-09-15 14:41:29 -05005#
Brad Bishop6e60e8b2018-02-01 10:27:11 -05006# Copyright (C) 2012-2013, 2017 Intel Corporation
Patrick Williamsc124f4f2015-09-15 14:41:29 -05007#
Brad Bishopc342db32019-05-15 21:57:59 -04008# SPDX-License-Identifier: GPL-2.0-only
Patrick Williamsc124f4f2015-09-15 14:41:29 -05009#
Patrick Williamsc124f4f2015-09-15 14:41:29 -050010
11import os
12import sys
13import warnings
Brad Bishop6e60e8b2018-02-01 10:27:11 -050014import argparse
Patrick Williamsc124f4f2015-09-15 14:41:29 -050015import logging
Patrick Williamsc0f7c042017-02-23 20:41:17 -060016import pickle
Patrick Williamsc124f4f2015-09-15 14:41:29 -050017
18sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(sys.argv[0])), 'lib'))
19
20import bb.tinfoil
21import bb.siggen
Brad Bishop6e60e8b2018-02-01 10:27:11 -050022import bb.msg
Patrick Williamsc124f4f2015-09-15 14:41:29 -050023
Brad Bishopa5c52ff2018-11-23 10:55:50 +130024myname = os.path.basename(sys.argv[0])
25logger = bb.msg.logger_create(myname)
26
27is_dump = myname == 'bitbake-dumpsig'
Patrick Williamsc124f4f2015-09-15 14:41:29 -050028
Brad Bishopd7bf8c12018-02-25 22:55:05 -050029def find_siginfo(tinfoil, pn, taskname, sigs=None):
30 result = None
31 tinfoil.set_event_mask(['bb.event.FindSigInfoResult',
32 'logging.LogRecord',
33 'bb.command.CommandCompleted',
34 'bb.command.CommandFailed'])
35 ret = tinfoil.run_command('findSigInfo', pn, taskname, sigs)
36 if ret:
37 while True:
38 event = tinfoil.wait_event(1)
39 if event:
40 if isinstance(event, bb.command.CommandCompleted):
41 break
42 elif isinstance(event, bb.command.CommandFailed):
43 logger.error(str(event))
44 sys.exit(2)
45 elif isinstance(event, bb.event.FindSigInfoResult):
46 result = event.result
47 elif isinstance(event, logging.LogRecord):
48 logger.handle(event)
49 else:
50 logger.error('No result returned from findSigInfo command')
51 sys.exit(2)
52 return result
53
Brad Bishopa5c52ff2018-11-23 10:55:50 +130054def find_siginfo_task(bbhandler, pn, taskname, sig1=None, sig2=None):
55 """ Find the most recent signature files for the specified PN/task """
Patrick Williamsc124f4f2015-09-15 14:41:29 -050056
Patrick Williamsc124f4f2015-09-15 14:41:29 -050057 if not taskname.startswith('do_'):
58 taskname = 'do_%s' % taskname
59
Brad Bishop6e60e8b2018-02-01 10:27:11 -050060 if sig1 and sig2:
Brad Bishopd7bf8c12018-02-25 22:55:05 -050061 sigfiles = find_siginfo(bbhandler, pn, taskname, [sig1, sig2])
Brad Bishop6e60e8b2018-02-01 10:27:11 -050062 if len(sigfiles) == 0:
63 logger.error('No sigdata files found matching %s %s matching either %s or %s' % (pn, taskname, sig1, sig2))
64 sys.exit(1)
65 elif not sig1 in sigfiles:
66 logger.error('No sigdata files found matching %s %s with signature %s' % (pn, taskname, sig1))
67 sys.exit(1)
68 elif not sig2 in sigfiles:
69 logger.error('No sigdata files found matching %s %s with signature %s' % (pn, taskname, sig2))
70 sys.exit(1)
71 latestfiles = [sigfiles[sig1], sigfiles[sig2]]
Patrick Williamsc124f4f2015-09-15 14:41:29 -050072 else:
Brad Bishopd7bf8c12018-02-25 22:55:05 -050073 filedates = find_siginfo(bbhandler, pn, taskname)
Brad Bishopa5c52ff2018-11-23 10:55:50 +130074 latestfiles = sorted(filedates.keys(), key=lambda f: filedates[f])[-2:]
Brad Bishop6e60e8b2018-02-01 10:27:11 -050075 if not latestfiles:
76 logger.error('No sigdata files found matching %s %s' % (pn, taskname))
77 sys.exit(1)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050078
Brad Bishopa5c52ff2018-11-23 10:55:50 +130079 return latestfiles
Patrick Williamsc124f4f2015-09-15 14:41:29 -050080
Patrick Williamsc124f4f2015-09-15 14:41:29 -050081
Brad Bishopa5c52ff2018-11-23 10:55:50 +130082# Define recursion callback
83def recursecb(key, hash1, hash2):
84 hashes = [hash1, hash2]
85 hashfiles = find_siginfo(tinfoil, key, None, hashes)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050086
Brad Bishopa5c52ff2018-11-23 10:55:50 +130087 recout = []
88 if len(hashfiles) == 0:
89 recout.append("Unable to find matching sigdata for %s with hashes %s or %s" % (key, hash1, hash2))
90 elif not hash1 in hashfiles:
91 recout.append("Unable to find matching sigdata for %s with hash %s" % (key, hash1))
92 elif not hash2 in hashfiles:
93 recout.append("Unable to find matching sigdata for %s with hash %s" % (key, hash2))
94 else:
95 out2 = bb.siggen.compare_sigfiles(hashfiles[hash1], hashfiles[hash2], recursecb, color=color)
96 for change in out2:
97 for line in change.splitlines():
Brad Bishopc342db32019-05-15 21:57:59 -040098 recout.append(' ' + line)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050099
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300100 return recout
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500101
102
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500103parser = argparse.ArgumentParser(
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300104 description=("Dumps" if is_dump else "Compares") + " siginfo/sigdata files written out by BitBake")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500105
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300106parser.add_argument('-D', '--debug',
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500107 help='Enable debug output',
108 action='store_true')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500109
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300110if is_dump:
111 parser.add_argument("-t", "--task",
112 help="find the signature data file for the last run of the specified task",
113 action="store", dest="taskargs", nargs=2, metavar=('recipename', 'taskname'))
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500114
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300115 parser.add_argument("sigdatafile1",
116 help="Signature file to dump. Not used when using -t/--task.",
117 action="store", nargs='?', metavar="sigdatafile")
118else:
119 parser.add_argument('-c', '--color',
120 help='Colorize the output (where %(metavar)s is %(choices)s)',
121 choices=['auto', 'always', 'never'], default='auto', metavar='color')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500122
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300123 parser.add_argument('-d', '--dump',
124 help='Dump the last signature data instead of comparing (equivalent to using bitbake-dumpsig)',
125 action='store_true')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500126
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300127 parser.add_argument("-t", "--task",
128 help="find the signature data files for the last two runs of the specified task and compare them",
129 action="store", dest="taskargs", nargs=2, metavar=('recipename', 'taskname'))
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500130
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300131 parser.add_argument("-s", "--signature",
132 help="With -t/--task, specify the signatures to look for instead of taking the last two",
133 action="store", dest="sigargs", nargs=2, metavar=('fromsig', 'tosig'))
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500134
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300135 parser.add_argument("sigdatafile1",
136 help="First signature file to compare (or signature file to dump, if second not specified). Not used when using -t/--task.",
137 action="store", nargs='?')
138
139 parser.add_argument("sigdatafile2",
140 help="Second signature file to compare",
141 action="store", nargs='?')
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500142
143options = parser.parse_args()
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300144if is_dump:
145 options.color = 'never'
146 options.dump = True
147 options.sigdatafile2 = None
148 options.sigargs = None
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500149
150if options.debug:
151 logger.setLevel(logging.DEBUG)
152
153color = (options.color == 'always' or (options.color == 'auto' and sys.stdout.isatty()))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500154
155if options.taskargs:
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600156 with bb.tinfoil.Tinfoil() as tinfoil:
157 tinfoil.prepare(config_only=True)
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300158 if not options.dump and options.sigargs:
159 files = find_siginfo_task(tinfoil, options.taskargs[0], options.taskargs[1], options.sigargs[0], options.sigargs[1])
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500160 else:
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300161 files = find_siginfo_task(tinfoil, options.taskargs[0], options.taskargs[1])
162
163 if options.dump:
164 logger.debug("Signature file: %s" % files[-1])
165 output = bb.siggen.dump_sigfile(files[-1])
166 else:
167 if len(files) < 2:
168 logger.error('Only one matching sigdata file found for the specified task (%s %s)' % (options.taskargs[0], options.taskargs[1]))
169 sys.exit(1)
170
171 # Recurse into signature comparison
172 logger.debug("Signature file (previous): %s" % files[-2])
173 logger.debug("Signature file (latest): %s" % files[-1])
174 output = bb.siggen.compare_sigfiles(files[-2], files[-1], recursecb, color=color)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500175else:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500176 if options.sigargs:
177 logger.error('-s/--signature can only be used together with -t/--task')
178 sys.exit(1)
179 try:
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300180 if not options.dump and options.sigdatafile1 and options.sigdatafile2:
181 with bb.tinfoil.Tinfoil() as tinfoil:
182 tinfoil.prepare(config_only=True)
183 output = bb.siggen.compare_sigfiles(options.sigdatafile1, options.sigdatafile2, recursecb, color=color)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500184 elif options.sigdatafile1:
185 output = bb.siggen.dump_sigfile(options.sigdatafile1)
186 else:
187 logger.error('Must specify signature file(s) or -t/--task')
188 parser.print_help()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500189 sys.exit(1)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500190 except IOError as e:
191 logger.error(str(e))
192 sys.exit(1)
193 except (pickle.UnpicklingError, EOFError):
194 logger.error('Invalid signature data - ensure you are specifying sigdata/siginfo files')
195 sys.exit(1)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500196
Brad Bishopa5c52ff2018-11-23 10:55:50 +1300197if output:
198 print('\n'.join(output))