blob: bc839431ae6f2d19c669723010f45ed4ace4c755 [file] [log] [blame]
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
# Copyright 2017 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""This is a tool for picking patches from upstream and applying them."""
from __future__ import print_function
import ConfigParser
import argparse
import mailbox
import os
import re
import signal
import subprocess
import sys
import urllib
LINUX_URLS = (
'git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git',
'https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git',
'https://kernel.googlesource.com/pub/scm/linux/kernel/git/torvalds/linux.git',
)
_PWCLIENTRC = os.path.expanduser('~/.pwclientrc')
def _get_conflicts():
"""Report conflicting files."""
resolutions = ('DD', 'AU', 'UD', 'UA', 'DU', 'AA', 'UU')
conflicts = []
lines = subprocess.check_output(['git', 'status', '--porcelain',
'--untracked-files=no']).split('\n')
for line in lines:
if not line:
continue
resolution, name = line.split(None, 1)
if resolution in resolutions:
conflicts.append(' ' + name)
if not conflicts:
return ""
return '\nConflicts:\n%s\n' % '\n'.join(conflicts)
def _find_linux_remote():
"""Find a remote pointing to a Linux upstream repository."""
git_remote = subprocess.Popen(['git', 'remote'], stdout=subprocess.PIPE)
remotes = git_remote.communicate()[0].strip()
for remote in remotes.splitlines():
rurl = subprocess.Popen(['git', 'remote', 'get-url', remote],
stdout=subprocess.PIPE)
url = rurl.communicate()[0].strip()
if not rurl.returncode and url in LINUX_URLS:
return remote
return None
def _pause_for_merge(conflicts):
"""Pause and go in the background till user resolves the conflicts."""
git_root = subprocess.check_output(['git', 'rev-parse',
'--show-toplevel']).strip('\n')
paths = (
os.path.join(git_root, '.git', 'rebase-apply'),
os.path.join(git_root, '.git', 'CHERRY_PICK_HEAD'),
)
for path in paths:
if os.path.exists(path):
sys.stderr.write('Found "%s".\n' % path)
sys.stderr.write(conflicts)
sys.stderr.write('Please resolve the conflicts and restart the ' +
'shell job when done. Kill this job if you ' +
'aborted the conflict.\n')
os.kill(os.getpid(), signal.SIGTSTP)
# TODO: figure out what the state is after the merging, and go based on
# that (should we abort? skip? continue?)
# Perhaps check last commit message to see if it's the one we were using.
def _get_pw_url(project):
"""Retrieve the patchwork server URL from .pwclientrc.
Args:
project: patchwork project name; if None, we retrieve the default
from pwclientrc
"""
config = ConfigParser.ConfigParser()
config.read([_PWCLIENTRC])
if project is None:
try:
project = config.get('options', 'default')
except (ConfigParser.NoSectionError, ConfigParser.NoOptionError):
sys.stderr.write(
'Error: no default patchwork project found in %s.\n'
% _PWCLIENTRC)
sys.exit(1)
if not config.has_option(project, 'url'):
sys.stderr.write('Error: patchwork URL not found for project \'%s\'\n'
% project)
sys.exit(1)
url = config.get(project, 'url')
# Strip trailing 'xmlrpc' and/or trailing slash.
return re.sub('/(xmlrpc/)?$', '', url)
def main(args):
"""This is the main entrypoint for fromupstream.
Args:
args: sys.argv[1:]
Returns:
An int return code.
"""
parser = argparse.ArgumentParser()
parser.add_argument('--bug', '-b',
type=str, help='BUG= line')
parser.add_argument('--test', '-t',
type=str, help='TEST= line')
parser.add_argument('--changeid', '-c',
help='Overrides the gerrit generated Change-Id line')
parser.add_argument('--replace',
action='store_true',
help='Replaces the HEAD commit with this one, taking ' +
'its properties(BUG, TEST, Change-Id). Useful for ' +
'updating commits.')
parser.add_argument('--nosignoff',
dest='signoff', action='store_false')
parser.add_argument('--tag',
help='Overrides the tag from the title')
parser.add_argument('--source', '-s',
dest='source_line', type=str,
help='Overrides the source line, last line, ex: ' +
'(am from http://....)')
parser.add_argument('locations',
nargs='+',
help='Patchwork ID (pw://### or pw://PROJECT/###, ' +
'where PROJECT is defined in ~/.pwclientrc; if no ' +
'PROJECT is specified, the default is retrieved from ' +
'~/.pwclientrc), ' +
'linux commit like linux://HASH, or ' +
'git reference like fromgit://remote/branch/HASH')
args = vars(parser.parse_args(args))
if args['replace']:
old_commit_message = subprocess.check_output(
['git', 'show', '-s', '--format=%B', 'HEAD']
).strip('\n')
changeid = re.findall('Change-Id: (.*)$', old_commit_message, re.MULTILINE)
if changeid:
args['changeid'] = changeid[0]
if args['bug'] == parser.get_default('bug') and \
re.findall('BUG=(.*)$', old_commit_message, re.MULTILINE):
args['bug'] = '\nBUG='.join(re.findall('BUG=(.*)$',
old_commit_message,
re.MULTILINE))
if args['test'] == parser.get_default('test') and \
re.findall('TEST=(.*)$', old_commit_message, re.MULTILINE):
args['test'] = '\nTEST='.join(re.findall('TEST=(.*)$',
old_commit_message,
re.MULTILINE))
# TODO: deal with multiline BUG/TEST better
if args['bug'] is None or args['test'] is None:
parser.error('BUG=/TEST= lines are required; --replace can help automate, or set via --bug/--test')
while len(args['locations']) > 0:
location = args['locations'].pop(0)
patchwork_match = re.match(
r'pw://(([-A-z]+)/)?(\d+)', location
)
linux_match = re.match(
r'linux://([0-9a-f]+)', location
)
fromgit_match = re.match(
r'fromgit://([^/]+)/(.+)/([0-9a-f]+)$', location
)
if patchwork_match is not None:
pw_project = patchwork_match.group(2)
patch_id = int(patchwork_match.group(3))
if args['tag'] is None:
args['tag'] = 'FROMLIST: '
url = _get_pw_url(pw_project)
opener = urllib.urlopen("%s/patch/%d/mbox" % (url, patch_id))
if opener.getcode() != 200:
sys.stderr.write('Error: could not download patch - error code %d\n' \
% opener.getcode())
sys.exit(1)
patch_contents = opener.read()
if not patch_contents:
sys.stderr.write('Error: No patch content found\n')
sys.exit(1)
if args['source_line'] is None:
args['source_line'] = '(am from %s/patch/%d/)' % (url, patch_id)
message_id = mailbox.Message(patch_contents)['Message-Id']
message_id = re.sub('^<|>$', '', message_id.strip())
args['source_line'] += \
'\n(also found at https://lkml.kernel.org/r/%s)' % \
message_id
if args['replace']:
subprocess.call(['git', 'reset', '--hard', 'HEAD~1'])
git_am = subprocess.Popen(['git', 'am', '-3'], stdin=subprocess.PIPE)
git_am.communicate(patch_contents)
ret = git_am.returncode
elif linux_match:
commit = linux_match.group(1)
# Confirm a 'linux' remote is setup.
linux_remote = _find_linux_remote()
if not linux_remote:
sys.stderr.write('Error: need a valid upstream remote\n')
sys.exit(1)
linux_master = '%s/master' % linux_remote
ret = subprocess.call(['git', 'merge-base', '--is-ancestor',
commit, linux_master])
if ret:
sys.stderr.write('Error: Commit not in %s\n' % linux_master)
sys.exit(1)
if args['source_line'] is None:
git_pipe = subprocess.Popen(['git', 'rev-parse', commit],
stdout=subprocess.PIPE)
commit = git_pipe.communicate()[0].strip()
args['source_line'] = ('(cherry picked from commit %s)' %
(commit))
if args['tag'] is None:
args['tag'] = 'UPSTREAM: '
if args['replace']:
subprocess.call(['git', 'reset', '--hard', 'HEAD~1'])
ret = subprocess.call(['git', 'cherry-pick', commit])
elif fromgit_match is not None:
remote = fromgit_match.group(1)
branch = fromgit_match.group(2)
commit = fromgit_match.group(3)
ret = subprocess.call(['git', 'merge-base', '--is-ancestor',
commit, '%s/%s' % (remote, branch)])
if ret:
sys.stderr.write('Error: Commit not in %s/%s\n' %
(remote, branch))
sys.exit(1)
git_pipe = subprocess.Popen(['git', 'remote', 'get-url', remote],
stdout=subprocess.PIPE)
url = git_pipe.communicate()[0].strip()
if args['source_line'] is None:
git_pipe = subprocess.Popen(['git', 'rev-parse', commit],
stdout=subprocess.PIPE)
commit = git_pipe.communicate()[0].strip()
args['source_line'] = \
'(cherry picked from commit %s\n %s %s)' % \
(commit, url, branch)
if args['tag'] is None:
args['tag'] = 'FROMGIT: '
if args['replace']:
subprocess.call(['git', 'reset', '--hard', 'HEAD~1'])
ret = subprocess.call(['git', 'cherry-pick', commit])
else:
sys.stderr.write('Don\'t know what "%s" means.\n' % location)
sys.exit(1)
if ret != 0:
conflicts = _get_conflicts()
if args['tag'] == 'UPSTREAM: ':
args['tag'] = 'BACKPORT: '
else:
args['tag'] = 'BACKPORT: ' + args['tag']
_pause_for_merge(conflicts)
else:
conflicts = ""
# extract commit message
commit_message = subprocess.check_output(
['git', 'show', '-s', '--format=%B', 'HEAD']
).strip('\n')
# Remove stray Change-Id, most likely from merge resolution
commit_message = re.sub(r'Change-Id:.*\n?', '', commit_message)
# Note the source location before tagging anything else
commit_message += '\n' + args['source_line']
# add automatic Change ID, BUG, and TEST (and maybe signoff too) so
# next commands know where to work on
commit_message += '\n'
commit_message += conflicts
commit_message += '\n' + 'BUG=' + args['bug']
commit_message += '\n' + 'TEST=' + args['test']
if args['signoff']:
extra = ['-s']
else:
extra = []
commit = subprocess.Popen(
['git', 'commit'] + extra + ['--amend', '-F', '-'],
stdin=subprocess.PIPE
).communicate(commit_message)
# re-extract commit message
commit_message = subprocess.check_output(
['git', 'show', '-s', '--format=%B', 'HEAD']
).strip('\n')
# replace changeid if needed
if args['changeid'] is not None:
commit_message = re.sub(r'(Change-Id: )(\w+)', r'\1%s' %
args['changeid'], commit_message)
args['changeid'] = None
# decorate it that it's from outside
commit_message = args['tag'] + commit_message
# commit everything
commit = subprocess.Popen(
['git', 'commit', '--amend', '-F', '-'], stdin=subprocess.PIPE
).communicate(commit_message)
return 0
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))