blob: 26668a39a8a9b2500d23b153dcf948737eeba879 [file] [log] [blame]
Mike Frysingerf6013762019-06-13 02:30:51 -04001# -*- coding:utf-8 -*-
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -07002#
3# Copyright (C) 2008 The Android Open Source Project
4#
5# Licensed under the Apache License, Version 2.0 (the "License");
6# you may not use this file except in compliance with the License.
7# You may obtain a copy of the License at
8#
9# http://www.apache.org/licenses/LICENSE-2.0
10#
11# Unless required by applicable law or agreed to in writing, software
12# distributed under the License is distributed on an "AS IS" BASIS,
13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14# See the License for the specific language governing permissions and
15# limitations under the License.
16
Sarah Owenscecd1d82012-11-01 22:59:27 -070017from __future__ import print_function
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070018import os
19import sys
20import subprocess
Shawn O. Pearcefb231612009-04-10 18:53:46 -070021import tempfile
Shawn O. Pearceca8c32c2010-05-11 18:21:33 -070022from signal import SIGTERM
Renaud Paquay2e702912016-11-01 11:23:38 -070023
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070024from error import GitError
Mike Frysinger71b0f312019-09-30 22:39:49 -040025from git_refs import HEAD
Renaud Paquay2e702912016-11-01 11:23:38 -070026import platform_utils
Mike Frysinger8a11f6f2019-08-27 00:26:15 -040027from repo_trace import REPO_TRACE, IsTrace, Trace
Conley Owensff0a3c82014-01-30 14:46:03 -080028from wrapper import Wrapper
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070029
30GIT = 'git'
Mike Frysinger82caef62020-02-11 18:51:08 -050031# NB: These do not need to be kept in sync with the repo launcher script.
32# These may be much newer as it allows the repo launcher to roll between
33# different repo releases while source versions might require a newer git.
34#
35# The soft version is when we start warning users that the version is old and
36# we'll be dropping support for it. We'll refuse to work with versions older
37# than the hard version.
38#
39# git-1.7 is in (EOL) Ubuntu Precise. git-1.9 is in Ubuntu Trusty.
40MIN_GIT_VERSION_SOFT = (1, 9, 1)
41MIN_GIT_VERSION_HARD = (1, 7, 2)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070042GIT_DIR = 'GIT_DIR'
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070043
44LAST_GITDIR = None
45LAST_CWD = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070046
Shawn O. Pearcefb231612009-04-10 18:53:46 -070047_ssh_proxy_path = None
48_ssh_sock_path = None
Shawn O. Pearceca8c32c2010-05-11 18:21:33 -070049_ssh_clients = []
Shawn O. Pearcefb231612009-04-10 18:53:46 -070050
David Pursehouse819827a2020-02-12 15:20:19 +090051
Nico Sallembien1c85f4e2010-04-27 14:35:27 -070052def ssh_sock(create=True):
Shawn O. Pearcefb231612009-04-10 18:53:46 -070053 global _ssh_sock_path
54 if _ssh_sock_path is None:
55 if not create:
56 return None
Mickaël Salaün2f6ab7f2012-09-30 00:37:55 +020057 tmp_dir = '/tmp'
58 if not os.path.exists(tmp_dir):
59 tmp_dir = tempfile.gettempdir()
Shawn O. Pearcefb231612009-04-10 18:53:46 -070060 _ssh_sock_path = os.path.join(
David Pursehouseabdf7502020-02-12 14:58:39 +090061 tempfile.mkdtemp('', 'ssh-', tmp_dir),
62 'master-%r@%h:%p')
Shawn O. Pearcefb231612009-04-10 18:53:46 -070063 return _ssh_sock_path
64
David Pursehouse819827a2020-02-12 15:20:19 +090065
Shawn O. Pearcefb231612009-04-10 18:53:46 -070066def _ssh_proxy():
67 global _ssh_proxy_path
68 if _ssh_proxy_path is None:
69 _ssh_proxy_path = os.path.join(
David Pursehouseabdf7502020-02-12 14:58:39 +090070 os.path.dirname(__file__),
71 'git_ssh')
Shawn O. Pearcefb231612009-04-10 18:53:46 -070072 return _ssh_proxy_path
73
David Pursehouse819827a2020-02-12 15:20:19 +090074
Shawn O. Pearceca8c32c2010-05-11 18:21:33 -070075def _add_ssh_client(p):
76 _ssh_clients.append(p)
77
David Pursehouse819827a2020-02-12 15:20:19 +090078
Shawn O. Pearceca8c32c2010-05-11 18:21:33 -070079def _remove_ssh_client(p):
80 try:
81 _ssh_clients.remove(p)
82 except ValueError:
83 pass
84
David Pursehouse819827a2020-02-12 15:20:19 +090085
Shawn O. Pearceca8c32c2010-05-11 18:21:33 -070086def terminate_ssh_clients():
87 global _ssh_clients
88 for p in _ssh_clients:
89 try:
90 os.kill(p.pid, SIGTERM)
91 p.wait()
92 except OSError:
93 pass
94 _ssh_clients = []
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070095
David Pursehouse819827a2020-02-12 15:20:19 +090096
Shawn O. Pearce334851e2011-09-19 08:05:31 -070097_git_version = None
98
David Pursehouse819827a2020-02-12 15:20:19 +090099
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700100class _GitCall(object):
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700101 def version_tuple(self):
102 global _git_version
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700103 if _git_version is None:
Mike Frysingerca540ae2019-07-10 15:42:30 -0400104 _git_version = Wrapper().ParseGitVersion()
Conley Owensff0a3c82014-01-30 14:46:03 -0800105 if _git_version is None:
Mike Frysingerca540ae2019-07-10 15:42:30 -0400106 print('fatal: unable to detect git version', file=sys.stderr)
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700107 sys.exit(1)
108 return _git_version
109
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700110 def __getattr__(self, name):
David Pursehouse54a4e602020-02-12 14:31:05 +0900111 name = name.replace('_', '-')
David Pursehouse819827a2020-02-12 15:20:19 +0900112
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700113 def fun(*cmdv):
114 command = [name]
115 command.extend(cmdv)
116 return GitCommand(None, command).Wait() == 0
117 return fun
David Pursehouse819827a2020-02-12 15:20:19 +0900118
119
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700120git = _GitCall()
121
Mike Frysinger369814b2019-07-10 17:10:07 -0400122
Mike Frysinger71b0f312019-09-30 22:39:49 -0400123def RepoSourceVersion():
124 """Return the version of the repo.git tree."""
125 ver = getattr(RepoSourceVersion, 'version', None)
Mike Frysinger369814b2019-07-10 17:10:07 -0400126
Mike Frysinger71b0f312019-09-30 22:39:49 -0400127 # We avoid GitCommand so we don't run into circular deps -- GitCommand needs
128 # to initialize version info we provide.
129 if ver is None:
130 env = GitCommand._GetBasicEnv()
131
132 proj = os.path.dirname(os.path.abspath(__file__))
133 env[GIT_DIR] = os.path.join(proj, '.git')
134
135 p = subprocess.Popen([GIT, 'describe', HEAD], stdout=subprocess.PIPE,
136 env=env)
137 if p.wait() == 0:
138 ver = p.stdout.read().strip().decode('utf-8')
139 if ver.startswith('v'):
140 ver = ver[1:]
141 else:
142 ver = 'unknown'
143 setattr(RepoSourceVersion, 'version', ver)
144
145 return ver
146
147
148class UserAgent(object):
149 """Mange User-Agent settings when talking to external services
Mike Frysinger369814b2019-07-10 17:10:07 -0400150
151 We follow the style as documented here:
152 https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/User-Agent
153 """
Mike Frysinger369814b2019-07-10 17:10:07 -0400154
Mike Frysinger71b0f312019-09-30 22:39:49 -0400155 _os = None
156 _repo_ua = None
Mike Frysinger2f0951b2019-07-10 17:13:46 -0400157 _git_ua = None
Mike Frysinger369814b2019-07-10 17:10:07 -0400158
Mike Frysinger71b0f312019-09-30 22:39:49 -0400159 @property
160 def os(self):
161 """The operating system name."""
162 if self._os is None:
163 os_name = sys.platform
164 if os_name.lower().startswith('linux'):
165 os_name = 'Linux'
166 elif os_name == 'win32':
167 os_name = 'Win32'
168 elif os_name == 'cygwin':
169 os_name = 'Cygwin'
170 elif os_name == 'darwin':
171 os_name = 'Darwin'
172 self._os = os_name
Mike Frysinger369814b2019-07-10 17:10:07 -0400173
Mike Frysinger71b0f312019-09-30 22:39:49 -0400174 return self._os
Mike Frysinger369814b2019-07-10 17:10:07 -0400175
Mike Frysinger71b0f312019-09-30 22:39:49 -0400176 @property
177 def repo(self):
178 """The UA when connecting directly from repo."""
179 if self._repo_ua is None:
180 py_version = sys.version_info
181 self._repo_ua = 'git-repo/%s (%s) git/%s Python/%d.%d.%d' % (
182 RepoSourceVersion(),
183 self.os,
184 git.version_tuple().full,
185 py_version.major, py_version.minor, py_version.micro)
Mike Frysinger369814b2019-07-10 17:10:07 -0400186
Mike Frysinger71b0f312019-09-30 22:39:49 -0400187 return self._repo_ua
Mike Frysinger369814b2019-07-10 17:10:07 -0400188
Mike Frysinger2f0951b2019-07-10 17:13:46 -0400189 @property
190 def git(self):
191 """The UA when running git."""
192 if self._git_ua is None:
193 self._git_ua = 'git/%s (%s) git-repo/%s' % (
194 git.version_tuple().full,
195 self.os,
196 RepoSourceVersion())
197
198 return self._git_ua
199
David Pursehouse819827a2020-02-12 15:20:19 +0900200
Mike Frysinger71b0f312019-09-30 22:39:49 -0400201user_agent = UserAgent()
Mike Frysinger369814b2019-07-10 17:10:07 -0400202
David Pursehouse819827a2020-02-12 15:20:19 +0900203
Xin Li745be2e2019-06-03 11:24:30 -0700204def git_require(min_version, fail=False, msg=''):
Shawn O. Pearce334851e2011-09-19 08:05:31 -0700205 git_version = git.version_tuple()
206 if min_version <= git_version:
Shawn O. Pearce2ec00b92009-06-12 09:32:50 -0700207 return True
208 if fail:
David Pursehouse7e6dd2d2012-10-25 12:40:51 +0900209 need = '.'.join(map(str, min_version))
Xin Li745be2e2019-06-03 11:24:30 -0700210 if msg:
211 msg = ' for ' + msg
212 print('fatal: git %s or later required%s' % (need, msg), file=sys.stderr)
Shawn O. Pearce2ec00b92009-06-12 09:32:50 -0700213 sys.exit(1)
214 return False
215
David Pursehouse819827a2020-02-12 15:20:19 +0900216
Shawn O. Pearcef18cb762010-12-07 11:41:05 -0800217def _setenv(env, name, value):
218 env[name] = value.encode()
219
David Pursehouse819827a2020-02-12 15:20:19 +0900220
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700221class GitCommand(object):
222 def __init__(self,
223 project,
224 cmdv,
David Pursehousee5913ae2020-02-12 13:56:59 +0900225 bare=False,
226 provide_stdin=False,
227 capture_stdout=False,
228 capture_stderr=False,
Mike Frysinger31990f02020-02-17 01:35:18 -0500229 merge_output=False,
David Pursehousee5913ae2020-02-12 13:56:59 +0900230 disable_editor=False,
231 ssh_proxy=False,
232 cwd=None,
233 gitdir=None):
Mike Frysinger71b0f312019-09-30 22:39:49 -0400234 env = self._GetBasicEnv()
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700235
John L. Villalovos9c76f672015-03-16 20:49:10 -0700236 # If we are not capturing std* then need to print it.
237 self.tee = {'stdout': not capture_stdout, 'stderr': not capture_stderr}
238
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700239 if disable_editor:
Shawn O. Pearcef18cb762010-12-07 11:41:05 -0800240 _setenv(env, 'GIT_EDITOR', ':')
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700241 if ssh_proxy:
Shawn O. Pearcef18cb762010-12-07 11:41:05 -0800242 _setenv(env, 'REPO_SSH_SOCK', ssh_sock())
243 _setenv(env, 'GIT_SSH', _ssh_proxy())
Jonathan Niederc00d28b2017-10-19 14:23:10 -0700244 _setenv(env, 'GIT_SSH_VARIANT', 'ssh')
Shawn O. Pearce62d0b102012-06-05 15:11:15 -0700245 if 'http_proxy' in env and 'darwin' == sys.platform:
Shawn O. Pearce337aee02012-06-13 10:40:46 -0700246 s = "'http.proxy=%s'" % (env['http_proxy'],)
Shawn O. Pearce62d0b102012-06-05 15:11:15 -0700247 p = env.get('GIT_CONFIG_PARAMETERS')
248 if p is not None:
249 s = p + ' ' + s
250 _setenv(env, 'GIT_CONFIG_PARAMETERS', s)
Dan Willemsen466b8c42015-11-25 13:26:39 -0800251 if 'GIT_ALLOW_PROTOCOL' not in env:
252 _setenv(env, 'GIT_ALLOW_PROTOCOL',
Jonathan Nieder203153e2016-02-26 18:53:54 -0800253 'file:git:http:https:ssh:persistent-http:persistent-https:sso:rpc')
Mike Frysinger2f0951b2019-07-10 17:13:46 -0400254 _setenv(env, 'GIT_HTTP_USER_AGENT', user_agent.git)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700255
256 if project:
257 if not cwd:
258 cwd = project.worktree
259 if not gitdir:
260 gitdir = project.gitdir
261
262 command = [GIT]
263 if bare:
264 if gitdir:
Shawn O. Pearcef18cb762010-12-07 11:41:05 -0800265 _setenv(env, GIT_DIR, gitdir)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700266 cwd = None
John L. Villalovos9c76f672015-03-16 20:49:10 -0700267 command.append(cmdv[0])
268 # Need to use the --progress flag for fetch/clone so output will be
269 # displayed as by default git only does progress output if stderr is a TTY.
270 if sys.stderr.isatty() and cmdv[0] in ('fetch', 'clone'):
271 if '--progress' not in cmdv and '--quiet' not in cmdv:
272 command.append('--progress')
273 command.extend(cmdv[1:])
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700274
275 if provide_stdin:
276 stdin = subprocess.PIPE
277 else:
278 stdin = None
279
John L. Villalovos9c76f672015-03-16 20:49:10 -0700280 stdout = subprocess.PIPE
Mike Frysinger31990f02020-02-17 01:35:18 -0500281 stderr = subprocess.STDOUT if merge_output else subprocess.PIPE
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700282
Shawn O. Pearcead3193a2009-04-18 09:54:51 -0700283 if IsTrace():
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700284 global LAST_CWD
285 global LAST_GITDIR
286
287 dbg = ''
288
289 if cwd and LAST_CWD != cwd:
290 if LAST_GITDIR or LAST_CWD:
291 dbg += '\n'
292 dbg += ': cd %s\n' % cwd
293 LAST_CWD = cwd
294
295 if GIT_DIR in env and LAST_GITDIR != env[GIT_DIR]:
296 if LAST_GITDIR or LAST_CWD:
297 dbg += '\n'
298 dbg += ': export GIT_DIR=%s\n' % env[GIT_DIR]
299 LAST_GITDIR = env[GIT_DIR]
300
301 dbg += ': '
302 dbg += ' '.join(command)
303 if stdin == subprocess.PIPE:
304 dbg += ' 0<|'
305 if stdout == subprocess.PIPE:
306 dbg += ' 1>|'
307 if stderr == subprocess.PIPE:
308 dbg += ' 2>|'
Mike Frysinger31990f02020-02-17 01:35:18 -0500309 elif stderr == subprocess.STDOUT:
310 dbg += ' 2>&1'
Shawn O. Pearcead3193a2009-04-18 09:54:51 -0700311 Trace('%s', dbg)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700312
313 try:
314 p = subprocess.Popen(command,
David Pursehousee5913ae2020-02-12 13:56:59 +0900315 cwd=cwd,
316 env=env,
317 stdin=stdin,
318 stdout=stdout,
319 stderr=stderr)
Sarah Owensa5be53f2012-09-09 15:37:57 -0700320 except Exception as e:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700321 raise GitError('%s: %s' % (command[1], e))
322
Shawn O. Pearceca8c32c2010-05-11 18:21:33 -0700323 if ssh_proxy:
324 _add_ssh_client(p)
325
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700326 self.process = p
327 self.stdin = p.stdin
328
Mike Frysinger71b0f312019-09-30 22:39:49 -0400329 @staticmethod
330 def _GetBasicEnv():
331 """Return a basic env for running git under.
332
333 This is guaranteed to be side-effect free.
334 """
335 env = os.environ.copy()
336 for key in (REPO_TRACE,
337 GIT_DIR,
338 'GIT_ALTERNATE_OBJECT_DIRECTORIES',
339 'GIT_OBJECT_DIRECTORY',
340 'GIT_WORK_TREE',
341 'GIT_GRAFT_FILE',
342 'GIT_INDEX_FILE'):
343 env.pop(key, None)
344 return env
345
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700346 def Wait(self):
Shawn O. Pearceca8c32c2010-05-11 18:21:33 -0700347 try:
Ulrik Sjölin498fe902011-09-11 22:59:37 +0200348 p = self.process
John L. Villalovos9c76f672015-03-16 20:49:10 -0700349 rc = self._CaptureOutput()
Shawn O. Pearceca8c32c2010-05-11 18:21:33 -0700350 finally:
351 _remove_ssh_client(p)
352 return rc
John L. Villalovos9c76f672015-03-16 20:49:10 -0700353
354 def _CaptureOutput(self):
355 p = self.process
Renaud Paquay2e702912016-11-01 11:23:38 -0700356 s_in = platform_utils.FileDescriptorStreams.create()
357 s_in.add(p.stdout, sys.stdout, 'stdout')
Mike Frysinger31990f02020-02-17 01:35:18 -0500358 if p.stderr is not None:
359 s_in.add(p.stderr, sys.stderr, 'stderr')
John L. Villalovos9c76f672015-03-16 20:49:10 -0700360 self.stdout = ''
361 self.stderr = ''
362
Renaud Paquay2e702912016-11-01 11:23:38 -0700363 while not s_in.is_done:
364 in_ready = s_in.select()
John L. Villalovos9c76f672015-03-16 20:49:10 -0700365 for s in in_ready:
Renaud Paquay2e702912016-11-01 11:23:38 -0700366 buf = s.read()
John L. Villalovos9c76f672015-03-16 20:49:10 -0700367 if not buf:
368 s_in.remove(s)
369 continue
Anthony King6cfc68e2015-06-03 16:39:32 +0100370 if not hasattr(buf, 'encode'):
371 buf = buf.decode()
John L. Villalovos9c76f672015-03-16 20:49:10 -0700372 if s.std_name == 'stdout':
373 self.stdout += buf
374 else:
375 self.stderr += buf
376 if self.tee[s.std_name]:
377 s.dest.write(buf)
378 s.dest.flush()
379 return p.wait()