blob: 24e3700ece25cc31479793bd4349dd7c24a18fd4 [file] [log] [blame]
Patrick Williamsc124f4f2015-09-15 14:41:29 -05001# Development tool - upgrade command plugin
2#
Brad Bishopd7bf8c12018-02-25 22:55:05 -05003# Copyright (C) 2014-2017 Intel Corporation
Patrick Williamsc124f4f2015-09-15 14:41:29 -05004#
Brad Bishopc342db32019-05-15 21:57:59 -04005# SPDX-License-Identifier: GPL-2.0-only
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006#
7"""Devtool upgrade plugin"""
8
9import os
10import sys
11import re
12import shutil
13import tempfile
14import logging
15import argparse
16import scriptutils
17import errno
18import bb
Brad Bishop6e60e8b2018-02-01 10:27:11 -050019
20devtool_path = os.path.dirname(os.path.realpath(__file__)) + '/../../../meta/lib'
21sys.path = sys.path + [devtool_path]
22
Patrick Williamsc124f4f2015-09-15 14:41:29 -050023import oe.recipeutils
24from devtool import standard
Brad Bishop316dfdd2018-06-25 12:45:53 -040025from devtool import exec_build_env_command, setup_tinfoil, DevtoolError, parse_recipe, use_external_build, update_unlockedsigs, check_prerelease_version
Patrick Williamsc124f4f2015-09-15 14:41:29 -050026
27logger = logging.getLogger('devtool')
28
Patrick Williamsc124f4f2015-09-15 14:41:29 -050029def _run(cmd, cwd=''):
30 logger.debug("Running command %s> %s" % (cwd,cmd))
31 return bb.process.run('%s' % cmd, cwd=cwd)
32
33def _get_srctree(tmpdir):
34 srctree = tmpdir
Brad Bishop6dbb3162019-11-25 09:41:34 -050035 dirs = scriptutils.filter_src_subdirs(tmpdir)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050036 if len(dirs) == 1:
37 srctree = os.path.join(tmpdir, dirs[0])
38 return srctree
39
40def _copy_source_code(orig, dest):
41 for path in standard._ls_tree(orig):
42 dest_dir = os.path.join(dest, os.path.dirname(path))
43 bb.utils.mkdirhier(dest_dir)
44 dest_path = os.path.join(dest, path)
Patrick Williamsf1e5d692016-03-30 15:21:19 -050045 shutil.move(os.path.join(orig, path), dest_path)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050046
Patrick Williamsc124f4f2015-09-15 14:41:29 -050047def _remove_patch_dirs(recipefolder):
48 for root, dirs, files in os.walk(recipefolder):
49 for d in dirs:
50 shutil.rmtree(os.path.join(root,d))
51
Patrick Williamsf1e5d692016-03-30 15:21:19 -050052def _recipe_contains(rd, var):
Brad Bishop6e60e8b2018-02-01 10:27:11 -050053 rf = rd.getVar('FILE')
Patrick Williamsf1e5d692016-03-30 15:21:19 -050054 varfiles = oe.recipeutils.get_var_files(rf, [var], rd)
Patrick Williamsc0f7c042017-02-23 20:41:17 -060055 for var, fn in varfiles.items():
Patrick Williamsf1e5d692016-03-30 15:21:19 -050056 if fn and fn.startswith(os.path.dirname(rf) + os.sep):
57 return True
58 return False
Patrick Williamsc124f4f2015-09-15 14:41:29 -050059
60def _rename_recipe_dirs(oldpv, newpv, path):
61 for root, dirs, files in os.walk(path):
Patrick Williamsc0f7c042017-02-23 20:41:17 -060062 # Rename directories with the version in their name
Patrick Williamsc124f4f2015-09-15 14:41:29 -050063 for olddir in dirs:
64 if olddir.find(oldpv) != -1:
65 newdir = olddir.replace(oldpv, newpv)
66 if olddir != newdir:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050067 shutil.move(os.path.join(path, olddir), os.path.join(path, newdir))
Patrick Williamsc0f7c042017-02-23 20:41:17 -060068 # Rename any inc files with the version in their name (unusual, but possible)
69 for oldfile in files:
70 if oldfile.endswith('.inc'):
71 if oldfile.find(oldpv) != -1:
72 newfile = oldfile.replace(oldpv, newpv)
73 if oldfile != newfile:
Andrew Geisslerc926e172021-05-07 16:11:35 -050074 bb.utils.rename(os.path.join(path, oldfile),
75 os.path.join(path, newfile))
Patrick Williamsc124f4f2015-09-15 14:41:29 -050076
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050077def _rename_recipe_file(oldrecipe, bpn, oldpv, newpv, path):
78 oldrecipe = os.path.basename(oldrecipe)
79 if oldrecipe.endswith('_%s.bb' % oldpv):
80 newrecipe = '%s_%s.bb' % (bpn, newpv)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050081 if oldrecipe != newrecipe:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050082 shutil.move(os.path.join(path, oldrecipe), os.path.join(path, newrecipe))
Patrick Williamsc124f4f2015-09-15 14:41:29 -050083 else:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050084 newrecipe = oldrecipe
Patrick Williamsc124f4f2015-09-15 14:41:29 -050085 return os.path.join(path, newrecipe)
86
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050087def _rename_recipe_files(oldrecipe, bpn, oldpv, newpv, path):
Patrick Williamsc124f4f2015-09-15 14:41:29 -050088 _rename_recipe_dirs(oldpv, newpv, path)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050089 return _rename_recipe_file(oldrecipe, bpn, oldpv, newpv, path)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050090
Patrick Williamsc0f7c042017-02-23 20:41:17 -060091def _write_append(rc, srctree, same_dir, no_same_dir, rev, copied, workspace, d):
Patrick Williamsc124f4f2015-09-15 14:41:29 -050092 """Writes an append file"""
93 if not os.path.exists(rc):
94 raise DevtoolError("bbappend not created because %s does not exist" % rc)
95
96 appendpath = os.path.join(workspace, 'appends')
97 if not os.path.exists(appendpath):
98 bb.utils.mkdirhier(appendpath)
99
100 brf = os.path.basename(os.path.splitext(rc)[0]) # rc basename
101
102 srctree = os.path.abspath(srctree)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500103 pn = d.getVar('PN')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500104 af = os.path.join(appendpath, '%s.bbappend' % brf)
105 with open(af, 'w') as f:
106 f.write('FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"\n\n')
107 f.write('inherit externalsrc\n')
108 f.write(('# NOTE: We use pn- overrides here to avoid affecting'
109 'multiple variants in the case where the recipe uses BBCLASSEXTEND\n'))
110 f.write('EXTERNALSRC_pn-%s = "%s"\n' % (pn, srctree))
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500111 b_is_s = use_external_build(same_dir, no_same_dir, d)
112 if b_is_s:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500113 f.write('EXTERNALSRC_BUILD_pn-%s = "%s"\n' % (pn, srctree))
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600114 f.write('\n')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500115 if rev:
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600116 f.write('# initial_rev: %s\n' % rev)
117 if copied:
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500118 f.write('# original_path: %s\n' % os.path.dirname(d.getVar('FILE')))
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600119 f.write('# original_files: %s\n' % ' '.join(copied))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500120 return af
121
122def _cleanup_on_error(rf, srctree):
123 rfp = os.path.split(rf)[0] # recipe folder
124 rfpp = os.path.split(rfp)[0] # recipes folder
125 if os.path.exists(rfp):
Brad Bishop96ff1982019-08-19 13:50:42 -0400126 shutil.rmtree(rfp)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500127 if not len(os.listdir(rfpp)):
128 os.rmdir(rfpp)
129 srctree = os.path.abspath(srctree)
130 if os.path.exists(srctree):
131 shutil.rmtree(srctree)
132
Brad Bishop96ff1982019-08-19 13:50:42 -0400133def _upgrade_error(e, rf, srctree, keep_failure=False, extramsg=None):
134 if rf and not keep_failure:
135 _cleanup_on_error(rf, srctree)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500136 logger.error(e)
Brad Bishop96ff1982019-08-19 13:50:42 -0400137 if extramsg:
138 logger.error(extramsg)
139 if keep_failure:
140 logger.info('Preserving failed upgrade files (--keep-failure)')
141 sys.exit(1)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500142
143def _get_uri(rd):
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500144 srcuris = rd.getVar('SRC_URI').split()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500145 if not len(srcuris):
146 raise DevtoolError('SRC_URI not found on recipe')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500147 # Get first non-local entry in SRC_URI - usually by convention it's
148 # the first entry, but not always!
149 srcuri = None
150 for entry in srcuris:
151 if not entry.startswith('file://'):
152 srcuri = entry
153 break
154 if not srcuri:
155 raise DevtoolError('Unable to find non-local entry in SRC_URI')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500156 srcrev = '${AUTOREV}'
157 if '://' in srcuri:
158 # Fetch a URL
159 rev_re = re.compile(';rev=([^;]+)')
160 res = rev_re.search(srcuri)
161 if res:
162 srcrev = res.group(1)
163 srcuri = rev_re.sub('', srcuri)
164 return srcuri, srcrev
165
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500166def _extract_new_source(newpv, srctree, no_patch, srcrev, srcbranch, branch, keep_temp, tinfoil, rd):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500167 """Extract sources of a recipe with a new version"""
168
169 def __run(cmd):
170 """Simple wrapper which calls _run with srctree as cwd"""
171 return _run(cmd, srctree)
172
173 crd = rd.createCopy()
174
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500175 pv = crd.getVar('PV')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500176 crd.setVar('PV', newpv)
177
178 tmpsrctree = None
179 uri, rev = _get_uri(crd)
180 if srcrev:
181 rev = srcrev
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600182 if uri.startswith('git://') or uri.startswith('gitsm://'):
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500183 __run('git fetch')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500184 __run('git checkout %s' % rev)
185 __run('git tag -f devtool-base-new')
186 md5 = None
187 sha256 = None
Brad Bishop316dfdd2018-06-25 12:45:53 -0400188 _, _, _, _, _, params = bb.fetch2.decodeurl(uri)
189 srcsubdir_rel = params.get('destsuffix', 'git')
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500190 if not srcbranch:
191 check_branch, check_branch_err = __run('git branch -r --contains %s' % srcrev)
192 get_branch = [x.strip() for x in check_branch.splitlines()]
193 # Remove HEAD reference point and drop remote prefix
194 get_branch = [x.split('/', 1)[1] for x in get_branch if not x.startswith('origin/HEAD')]
195 if 'master' in get_branch:
196 # If it is master, we do not need to append 'branch=master' as this is default.
197 # Even with the case where get_branch has multiple objects, if 'master' is one
198 # of them, we should default take from 'master'
199 srcbranch = ''
200 elif len(get_branch) == 1:
201 # If 'master' isn't in get_branch and get_branch contains only ONE object, then store result into 'srcbranch'
202 srcbranch = get_branch[0]
203 else:
204 # If get_branch contains more than one objects, then display error and exit.
205 mbrch = '\n ' + '\n '.join(get_branch)
206 raise DevtoolError('Revision %s was found on multiple branches: %s\nPlease provide the correct branch in the devtool command with "--srcbranch" or "-B" option.' % (srcrev, mbrch))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500207 else:
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500208 __run('git checkout devtool-base -b devtool-%s' % newpv)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500209
210 tmpdir = tempfile.mkdtemp(prefix='devtool')
211 try:
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500212 checksums, ftmpdir = scriptutils.fetch_url(tinfoil, uri, rev, tmpdir, logger, preserve_tmp=keep_temp)
213 except scriptutils.FetchUrlFailure as e:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500214 raise DevtoolError(e)
215
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500216 if ftmpdir and keep_temp:
217 logger.info('Fetch temp directory is %s' % ftmpdir)
218
219 md5 = checksums['md5sum']
220 sha256 = checksums['sha256sum']
221
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500222 tmpsrctree = _get_srctree(tmpdir)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500223 srctree = os.path.abspath(srctree)
Brad Bishop316dfdd2018-06-25 12:45:53 -0400224 srcsubdir_rel = os.path.relpath(tmpsrctree, tmpdir)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500225
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500226 # Delete all sources so we ensure no stray files are left over
227 for item in os.listdir(srctree):
228 if item in ['.git', 'oe-local-files']:
229 continue
230 itempath = os.path.join(srctree, item)
231 if os.path.isdir(itempath):
232 shutil.rmtree(itempath)
233 else:
234 os.remove(itempath)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500235
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500236 # Copy in new ones
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500237 _copy_source_code(tmpsrctree, srctree)
238
Andrew Geissler4ed12e12020-06-05 18:00:41 -0500239 (stdout,_) = __run('git ls-files --modified --others')
Brad Bishop316dfdd2018-06-25 12:45:53 -0400240 filelist = stdout.splitlines()
241 pbar = bb.ui.knotty.BBProgress('Adding changed files', len(filelist))
242 pbar.start()
243 batchsize = 100
244 for i in range(0, len(filelist), batchsize):
245 batch = filelist[i:i+batchsize]
Andrew Geissler4ed12e12020-06-05 18:00:41 -0500246 __run('git add -f -A %s' % ' '.join(['"%s"' % item for item in batch]))
Brad Bishop316dfdd2018-06-25 12:45:53 -0400247 pbar.update(i)
248 pbar.finish()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500249
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600250 useroptions = []
251 oe.patch.GitApplyTree.gitCommandUserOptions(useroptions, d=rd)
252 __run('git %s commit -q -m "Commit of upstream changes at version %s" --allow-empty' % (' '.join(useroptions), newpv))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500253 __run('git tag -f devtool-base-%s' % newpv)
254
255 (stdout, _) = __run('git rev-parse HEAD')
256 rev = stdout.rstrip()
257
258 if no_patch:
259 patches = oe.recipeutils.get_recipe_patches(crd)
Brad Bishop316dfdd2018-06-25 12:45:53 -0400260 if patches:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800261 logger.warning('By user choice, the following patches will NOT be applied to the new source tree:\n %s' % '\n '.join([os.path.basename(patch) for patch in patches]))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500262 else:
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600263 __run('git checkout devtool-patched -b %s' % branch)
264 skiptag = False
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500265 try:
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500266 __run('git rebase %s' % rev)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600267 except bb.process.ExecutionError as e:
268 skiptag = True
269 if 'conflict' in e.stdout:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800270 logger.warning('Command \'%s\' failed:\n%s\n\nYou will need to resolve conflicts in order to complete the upgrade.' % (e.command, e.stdout.rstrip()))
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600271 else:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800272 logger.warning('Command \'%s\' failed:\n%s' % (e.command, e.stdout))
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600273 if not skiptag:
Andrew Geisslerd1e89492021-02-12 15:35:20 -0600274 if uri.startswith('git://') or uri.startswith('gitsm://'):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500275 suffix = 'new'
276 else:
277 suffix = newpv
278 __run('git tag -f devtool-patched-%s' % suffix)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500279
280 if tmpsrctree:
281 if keep_temp:
282 logger.info('Preserving temporary directory %s' % tmpsrctree)
283 else:
284 shutil.rmtree(tmpsrctree)
Brad Bishop6dbb3162019-11-25 09:41:34 -0500285 if tmpdir != tmpsrctree:
286 shutil.rmtree(tmpdir)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500287
Brad Bishop316dfdd2018-06-25 12:45:53 -0400288 return (rev, md5, sha256, srcbranch, srcsubdir_rel)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500289
Brad Bishop316dfdd2018-06-25 12:45:53 -0400290def _add_license_diff_to_recipe(path, diff):
291 notice_text = """# FIXME: the LIC_FILES_CHKSUM values have been updated by 'devtool upgrade'.
292# The following is the difference between the old and the new license text.
293# Please update the LICENSE value if needed, and summarize the changes in
294# the commit message via 'License-Update:' tag.
295# (example: 'License-Update: copyright years updated.')
296#
297# The changes:
298#
299"""
300 commented_diff = "\n".join(["# {}".format(l) for l in diff.split('\n')])
301 with open(path, 'rb') as f:
302 orig_content = f.read()
303 with open(path, 'wb') as f:
304 f.write(notice_text.encode())
305 f.write(commented_diff.encode())
306 f.write("\n#\n\n".encode())
307 f.write(orig_content)
308
Brad Bishop96ff1982019-08-19 13:50:42 -0400309def _create_new_recipe(newpv, md5, sha256, srcrev, srcbranch, srcsubdir_old, srcsubdir_new, workspace, tinfoil, rd, license_diff, new_licenses, srctree, keep_failure):
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500310 """Creates the new recipe under workspace"""
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500311
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500312 bpn = rd.getVar('BPN')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500313 path = os.path.join(workspace, 'recipes', bpn)
314 bb.utils.mkdirhier(path)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500315 copied, _ = oe.recipeutils.copy_recipe_files(rd, path, all_variants=True)
316 if not copied:
317 raise DevtoolError('Internal error - no files were copied for recipe %s' % bpn)
318 logger.debug('Copied %s to %s' % (copied, path))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500319
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500320 oldpv = rd.getVar('PV')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500321 if not newpv:
322 newpv = oldpv
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500323 origpath = rd.getVar('FILE')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500324 fullpath = _rename_recipe_files(origpath, bpn, oldpv, newpv, path)
325 logger.debug('Upgraded %s => %s' % (origpath, fullpath))
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500326
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500327 newvalues = {}
328 if _recipe_contains(rd, 'PV') and newpv != oldpv:
329 newvalues['PV'] = newpv
330
331 if srcrev:
332 newvalues['SRCREV'] = srcrev
333
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500334 if srcbranch:
335 src_uri = oe.recipeutils.split_var_value(rd.getVar('SRC_URI', False) or '')
336 changed = False
337 replacing = True
338 new_src_uri = []
339 for entry in src_uri:
340 scheme, network, path, user, passwd, params = bb.fetch2.decodeurl(entry)
341 if replacing and scheme in ['git', 'gitsm']:
342 branch = params.get('branch', 'master')
343 if rd.expand(branch) != srcbranch:
344 # Handle case where branch is set through a variable
345 res = re.match(r'\$\{([^}@]+)\}', branch)
346 if res:
347 newvalues[res.group(1)] = srcbranch
348 # We know we won't change SRC_URI now, so break out
349 break
350 else:
351 params['branch'] = srcbranch
352 entry = bb.fetch2.encodeurl((scheme, network, path, user, passwd, params))
353 changed = True
354 replacing = False
355 new_src_uri.append(entry)
356 if changed:
357 newvalues['SRC_URI'] = ' '.join(new_src_uri)
358
359 newvalues['PR'] = None
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500360
Brad Bishop316dfdd2018-06-25 12:45:53 -0400361 # Work out which SRC_URI entries have changed in case the entry uses a name
362 crd = rd.createCopy()
363 crd.setVar('PV', newpv)
364 for var, value in newvalues.items():
365 crd.setVar(var, value)
366 old_src_uri = (rd.getVar('SRC_URI') or '').split()
367 new_src_uri = (crd.getVar('SRC_URI') or '').split()
368 newnames = []
369 addnames = []
370 for newentry in new_src_uri:
371 _, _, _, _, _, params = bb.fetch2.decodeurl(newentry)
372 if 'name' in params:
373 newnames.append(params['name'])
374 if newentry not in old_src_uri:
375 addnames.append(params['name'])
376 # Find what's been set in the original recipe
377 oldnames = []
378 noname = False
379 for varflag in rd.getVarFlags('SRC_URI'):
380 if varflag.endswith(('.md5sum', '.sha256sum')):
381 name = varflag.rsplit('.', 1)[0]
382 if name not in oldnames:
383 oldnames.append(name)
384 elif varflag in ['md5sum', 'sha256sum']:
385 noname = True
386 # Even if SRC_URI has named entries it doesn't have to actually use the name
387 if noname and addnames and addnames[0] not in oldnames:
388 addnames = []
389 # Drop any old names (the name actually might include ${PV})
390 for name in oldnames:
391 if name not in newnames:
392 newvalues['SRC_URI[%s.md5sum]' % name] = None
393 newvalues['SRC_URI[%s.sha256sum]' % name] = None
394
Andrew Geissler1e34c2d2020-05-29 16:02:59 -0500395 if sha256:
Brad Bishop316dfdd2018-06-25 12:45:53 -0400396 if addnames:
397 nameprefix = '%s.' % addnames[0]
398 else:
399 nameprefix = ''
Andrew Geissler1e34c2d2020-05-29 16:02:59 -0500400 newvalues['SRC_URI[%smd5sum]' % nameprefix] = None
Brad Bishop316dfdd2018-06-25 12:45:53 -0400401 newvalues['SRC_URI[%ssha256sum]' % nameprefix] = sha256
402
403 if srcsubdir_new != srcsubdir_old:
404 s_subdir_old = os.path.relpath(os.path.abspath(rd.getVar('S')), rd.getVar('WORKDIR'))
405 s_subdir_new = os.path.relpath(os.path.abspath(crd.getVar('S')), crd.getVar('WORKDIR'))
406 if srcsubdir_old == s_subdir_old and srcsubdir_new != s_subdir_new:
407 # Subdir for old extracted source matches what S points to (it should!)
408 # but subdir for new extracted source doesn't match what S will be
409 newvalues['S'] = '${WORKDIR}/%s' % srcsubdir_new.replace(newpv, '${PV}')
410 if crd.expand(newvalues['S']) == crd.expand('${WORKDIR}/${BP}'):
411 # It's the default, drop it
412 # FIXME what if S is being set in a .inc?
413 newvalues['S'] = None
414 logger.info('Source subdirectory has changed, dropping S value since it now matches the default ("${WORKDIR}/${BP}")')
415 else:
416 logger.info('Source subdirectory has changed, updating S value')
417
418 if license_diff:
Brad Bishop1a4b7ee2018-12-16 17:11:34 -0800419 newlicchksum = " ".join(["file://{}".format(l['path']) +
420 (";beginline={}".format(l['beginline']) if l['beginline'] else "") +
421 (";endline={}".format(l['endline']) if l['endline'] else "") +
422 (";md5={}".format(l['actual_md5'])) for l in new_licenses])
Brad Bishop316dfdd2018-06-25 12:45:53 -0400423 newvalues["LIC_FILES_CHKSUM"] = newlicchksum
424 _add_license_diff_to_recipe(fullpath, license_diff)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500425
Brad Bishop96ff1982019-08-19 13:50:42 -0400426 try:
427 rd = tinfoil.parse_recipe_file(fullpath, False)
428 except bb.tinfoil.TinfoilCommandFailed as e:
429 _upgrade_error(e, fullpath, srctree, keep_failure, 'Parsing of upgraded recipe failed')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500430 oe.recipeutils.patch_recipe(rd, fullpath, newvalues)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500431
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600432 return fullpath, copied
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500433
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500434
435def _check_git_config():
436 def getconfig(name):
437 try:
438 value = bb.process.run('git config --global %s' % name)[0].strip()
439 except bb.process.ExecutionError as e:
440 if e.exitcode == 1:
441 value = None
442 else:
443 raise
444 return value
445
446 username = getconfig('user.name')
447 useremail = getconfig('user.email')
448 configerr = []
449 if not username:
450 configerr.append('Please set your name using:\n git config --global user.name')
451 if not useremail:
452 configerr.append('Please set your email using:\n git config --global user.email')
453 if configerr:
454 raise DevtoolError('Your git configuration is incomplete which will prevent rebases from working:\n' + '\n'.join(configerr))
455
Brad Bishop316dfdd2018-06-25 12:45:53 -0400456def _extract_licenses(srcpath, recipe_licenses):
457 licenses = []
458 for url in recipe_licenses.split():
459 license = {}
460 (type, host, path, user, pswd, parm) = bb.fetch.decodeurl(url)
461 license['path'] = path
462 license['md5'] = parm.get('md5', '')
463 license['beginline'], license['endline'] = 0, 0
464 if 'beginline' in parm:
465 license['beginline'] = int(parm['beginline'])
466 if 'endline' in parm:
467 license['endline'] = int(parm['endline'])
468 license['text'] = []
469 with open(os.path.join(srcpath, path), 'rb') as f:
470 import hashlib
471 actual_md5 = hashlib.md5()
472 lineno = 0
473 for line in f:
474 lineno += 1
475 if (lineno >= license['beginline']) and ((lineno <= license['endline']) or not license['endline']):
476 license['text'].append(line.decode(errors='ignore'))
477 actual_md5.update(line)
478 license['actual_md5'] = actual_md5.hexdigest()
479 licenses.append(license)
480 return licenses
481
482def _generate_license_diff(old_licenses, new_licenses):
483 need_diff = False
484 for l in new_licenses:
485 if l['md5'] != l['actual_md5']:
486 need_diff = True
487 break
488 if need_diff == False:
489 return None
490
491 import difflib
492 diff = ''
493 for old, new in zip(old_licenses, new_licenses):
494 for line in difflib.unified_diff(old['text'], new['text'], old['path'], new['path']):
495 diff = diff + line
496 return diff
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500497
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500498def upgrade(args, config, basepath, workspace):
499 """Entry point for the devtool 'upgrade' subcommand"""
500
501 if args.recipename in workspace:
502 raise DevtoolError("recipe %s is already in your workspace" % args.recipename)
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500503 if args.srcbranch and not args.srcrev:
504 raise DevtoolError("If you specify --srcbranch/-B then you must use --srcrev/-S to specify the revision" % args.recipename)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500505
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500506 _check_git_config()
507
Patrick Williamsf1e5d692016-03-30 15:21:19 -0500508 tinfoil = setup_tinfoil(basepath=basepath, tracking=True)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500509 try:
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600510 rd = parse_recipe(config, tinfoil, args.recipename, True)
511 if not rd:
512 return 1
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500513
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500514 pn = rd.getVar('PN')
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600515 if pn != args.recipename:
516 logger.info('Mapping %s to %s' % (args.recipename, pn))
517 if pn in workspace:
518 raise DevtoolError("recipe %s is already in your workspace" % pn)
519
520 if args.srctree:
521 srctree = os.path.abspath(args.srctree)
522 else:
523 srctree = standard.get_default_srctree(config, pn)
524
Brad Bishop316dfdd2018-06-25 12:45:53 -0400525 # try to automatically discover latest version and revision if not provided on command line
526 if not args.version and not args.srcrev:
527 version_info = oe.recipeutils.get_recipe_upstream_version(rd)
528 if version_info['version'] and not version_info['version'].endswith("new-commits-available"):
529 args.version = version_info['version']
530 if version_info['revision']:
531 args.srcrev = version_info['revision']
532 if not args.version and not args.srcrev:
533 raise DevtoolError("Automatic discovery of latest version/revision failed - you must provide a version using the --version/-V option, or for recipes that fetch from an SCM such as git, the --srcrev/-S option.")
534
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600535 standard._check_compatible_recipe(pn, rd)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500536 old_srcrev = rd.getVar('SRCREV')
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600537 if old_srcrev == 'INVALID':
538 old_srcrev = None
539 if old_srcrev and not args.srcrev:
540 raise DevtoolError("Recipe specifies a SRCREV value; you must specify a new one when upgrading")
Brad Bishop316dfdd2018-06-25 12:45:53 -0400541 old_ver = rd.getVar('PV')
542 if old_ver == args.version and old_srcrev == args.srcrev:
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600543 raise DevtoolError("Current and upgrade versions are the same version")
Brad Bishop316dfdd2018-06-25 12:45:53 -0400544 if args.version:
545 if bb.utils.vercmp_string(args.version, old_ver) < 0:
546 logger.warning('Upgrade version %s compares as less than the current version %s. If you are using a package feed for on-target upgrades or providing this recipe for general consumption, then you should increment PE in the recipe (or if there is no current PE value set, set it to "1")' % (args.version, old_ver))
547 check_prerelease_version(args.version, 'devtool upgrade')
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600548
549 rf = None
Brad Bishop316dfdd2018-06-25 12:45:53 -0400550 license_diff = None
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600551 try:
Brad Bishop316dfdd2018-06-25 12:45:53 -0400552 logger.info('Extracting current version source...')
553 rev1, srcsubdir1 = standard._extract_source(srctree, False, 'devtool-orig', False, config, basepath, workspace, args.fixed_setup, rd, tinfoil, no_overrides=args.no_overrides)
Andrew Geissler475cb722020-07-10 16:00:51 -0500554 old_licenses = _extract_licenses(srctree, (rd.getVar('LIC_FILES_CHKSUM') or ""))
Brad Bishop316dfdd2018-06-25 12:45:53 -0400555 logger.info('Extracting upgraded version source...')
556 rev2, md5, sha256, srcbranch, srcsubdir2 = _extract_new_source(args.version, srctree, args.no_patch,
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500557 args.srcrev, args.srcbranch, args.branch, args.keep_temp,
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600558 tinfoil, rd)
Andrew Geissler475cb722020-07-10 16:00:51 -0500559 new_licenses = _extract_licenses(srctree, (rd.getVar('LIC_FILES_CHKSUM') or ""))
Brad Bishop316dfdd2018-06-25 12:45:53 -0400560 license_diff = _generate_license_diff(old_licenses, new_licenses)
Brad Bishop96ff1982019-08-19 13:50:42 -0400561 rf, copied = _create_new_recipe(args.version, md5, sha256, args.srcrev, srcbranch, srcsubdir1, srcsubdir2, config.workspace_path, tinfoil, rd, license_diff, new_licenses, srctree, args.keep_failure)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600562 except bb.process.CmdError as e:
Brad Bishop96ff1982019-08-19 13:50:42 -0400563 _upgrade_error(e, rf, srctree, args.keep_failure)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600564 except DevtoolError as e:
Brad Bishop96ff1982019-08-19 13:50:42 -0400565 _upgrade_error(e, rf, srctree, args.keep_failure)
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600566 standard._add_md5(config, pn, os.path.dirname(rf))
567
568 af = _write_append(rf, srctree, args.same_dir, args.no_same_dir, rev2,
569 copied, config.workspace_path, rd)
570 standard._add_md5(config, pn, af)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500571
Brad Bishop316dfdd2018-06-25 12:45:53 -0400572 update_unlockedsigs(basepath, workspace, args.fixed_setup, [pn])
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500573
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600574 logger.info('Upgraded source extracted to %s' % srctree)
575 logger.info('New recipe is %s' % rf)
Brad Bishop316dfdd2018-06-25 12:45:53 -0400576 if license_diff:
577 logger.info('License checksums have been updated in the new recipe; please refer to it for the difference between the old and the new license texts.')
578 finally:
579 tinfoil.shutdown()
580 return 0
581
582def latest_version(args, config, basepath, workspace):
583 """Entry point for the devtool 'latest_version' subcommand"""
584 tinfoil = setup_tinfoil(basepath=basepath, tracking=True)
585 try:
586 rd = parse_recipe(config, tinfoil, args.recipename, True)
587 if not rd:
588 return 1
589 version_info = oe.recipeutils.get_recipe_upstream_version(rd)
590 # "new-commits-available" is an indication that upstream never issues version tags
591 if not version_info['version'].endswith("new-commits-available"):
592 logger.info("Current version: {}".format(version_info['current_version']))
593 logger.info("Latest version: {}".format(version_info['version']))
594 if version_info['revision']:
595 logger.info("Latest version's commit: {}".format(version_info['revision']))
596 else:
597 logger.info("Latest commit: {}".format(version_info['revision']))
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600598 finally:
599 tinfoil.shutdown()
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500600 return 0
601
Brad Bishop19323692019-04-05 15:28:33 -0400602def check_upgrade_status(args, config, basepath, workspace):
603 if not args.recipe:
604 logger.info("Checking the upstream status for all recipes may take a few minutes")
605 results = oe.recipeutils.get_recipe_upgrade_status(args.recipe)
606 for result in results:
607 # pn, update_status, current, latest, maintainer, latest_commit, no_update_reason
608 if args.all or result[1] != 'MATCH':
609 logger.info("{:25} {:15} {:15} {} {} {}".format( result[0],
610 result[2],
611 result[1] if result[1] != 'UPDATE' else (result[3] if not result[3].endswith("new-commits-available") else "new commits"),
612 result[4],
613 result[5] if result[5] != 'N/A' else "",
614 "cannot be updated due to: %s" %(result[6]) if result[6] else ""))
615
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500616def register_commands(subparsers, context):
617 """Register devtool subcommands from this plugin"""
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500618
619 defsrctree = standard.get_default_srctree(context.config)
620
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500621 parser_upgrade = subparsers.add_parser('upgrade', help='Upgrade an existing recipe',
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500622 description='Upgrades an existing recipe to a new upstream version. Puts the upgraded recipe file into the workspace along with any associated files, and extracts the source tree to a specified location (in case patches need rebasing or adding to as a result of the upgrade).',
623 group='starting')
624 parser_upgrade.add_argument('recipename', help='Name of recipe to upgrade (just name - no version, path or extension)')
625 parser_upgrade.add_argument('srctree', nargs='?', help='Path to where to extract the source tree. If not specified, a subdirectory of %s will be used.' % defsrctree)
Brad Bishop316dfdd2018-06-25 12:45:53 -0400626 parser_upgrade.add_argument('--version', '-V', help='Version to upgrade to (PV). If omitted, latest upstream version will be determined and used, if possible.')
627 parser_upgrade.add_argument('--srcrev', '-S', help='Source revision to upgrade to (useful when fetching from an SCM such as git)')
Patrick Williamsd8c66bc2016-06-20 12:57:21 -0500628 parser_upgrade.add_argument('--srcbranch', '-B', help='Branch in source repository containing the revision to use (if fetching from an SCM such as git)')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500629 parser_upgrade.add_argument('--branch', '-b', default="devtool", help='Name for new development branch to checkout (default "%(default)s")')
630 parser_upgrade.add_argument('--no-patch', action="store_true", help='Do not apply patches from the recipe to the new source code')
Brad Bishop316dfdd2018-06-25 12:45:53 -0400631 parser_upgrade.add_argument('--no-overrides', '-O', action="store_true", help='Do not create branches for other override configurations')
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500632 group = parser_upgrade.add_mutually_exclusive_group()
633 group.add_argument('--same-dir', '-s', help='Build in same directory as source', action="store_true")
634 group.add_argument('--no-same-dir', help='Force build in a separate build directory', action="store_true")
635 parser_upgrade.add_argument('--keep-temp', action="store_true", help='Keep temporary directory (for debugging)')
Brad Bishop96ff1982019-08-19 13:50:42 -0400636 parser_upgrade.add_argument('--keep-failure', action="store_true", help='Keep failed upgrade recipe and associated files (for debugging)')
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500637 parser_upgrade.set_defaults(func=upgrade, fixed_setup=context.fixed_setup)
Brad Bishop316dfdd2018-06-25 12:45:53 -0400638
639 parser_latest_version = subparsers.add_parser('latest-version', help='Report the latest version of an existing recipe',
640 description='Queries the upstream server for what the latest upstream release is (for git, tags are checked, for tarballs, a list of them is obtained, and one with the highest version number is reported)',
641 group='info')
642 parser_latest_version.add_argument('recipename', help='Name of recipe to query (just name - no version, path or extension)')
643 parser_latest_version.set_defaults(func=latest_version)
Brad Bishop19323692019-04-05 15:28:33 -0400644
645 parser_check_upgrade_status = subparsers.add_parser('check-upgrade-status', help="Report upgradability for multiple (or all) recipes",
646 description="Prints a table of recipes together with versions currently provided by recipes, and latest upstream versions, when there is a later version available",
647 group='info')
648 parser_check_upgrade_status.add_argument('recipe', help='Name of the recipe to report (omit to report upgrade info for all recipes)', nargs='*')
649 parser_check_upgrade_status.add_argument('--all', '-a', help='Show all recipes, not just recipes needing upgrade', action="store_true")
650 parser_check_upgrade_status.set_defaults(func=check_upgrade_status)