blob: 8de3200c6c6565bbc509d2cfb4d6aaa148e2b274 [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
Chirayu Desai217ea7d2013-03-01 19:14:38 +053018
Dan Willemsen0745bb22015-08-17 13:41:45 -070019import contextlib
20import errno
Anthony King85b24ac2014-05-06 15:57:48 +010021import json
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070022import os
23import re
Łukasz Gardońbed59ce2017-08-08 10:18:11 +020024import ssl
Shawn O. Pearcefb231612009-04-10 18:53:46 -070025import subprocess
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070026import sys
Doug Anderson0048b692010-12-21 13:39:23 -080027try:
28 import threading as _threading
29except ImportError:
30 import dummy_threading as _threading
Shawn O. Pearcefb231612009-04-10 18:53:46 -070031import time
David Pursehouse59bbb582013-05-17 10:49:33 +090032
33from pyversion import is_python3
34if is_python3():
Sarah Owens1f7627f2012-10-31 09:21:55 -070035 import urllib.request
36 import urllib.error
37else:
David Pursehouse59bbb582013-05-17 10:49:33 +090038 import urllib2
Sarah Owens1f7627f2012-10-31 09:21:55 -070039 import imp
40 urllib = imp.new_module('urllib')
41 urllib.request = urllib2
42 urllib.error = urllib2
Shawn O. Pearcef00e0ce2009-08-22 18:39:49 -070043
Shawn O. Pearcefb231612009-04-10 18:53:46 -070044from signal import SIGTERM
Shawn O. Pearceb54a3922009-01-05 16:18:58 -080045from error import GitError, UploadError
Renaud Paquay010fed72016-11-11 14:25:29 -080046import platform_utils
Mike Frysinger8a11f6f2019-08-27 00:26:15 -040047from repo_trace import Trace
David Pursehouseecf8f2b2013-05-24 12:12:23 +090048if is_python3():
49 from http.client import HTTPException
50else:
51 from httplib import HTTPException
Shawn O. Pearceca8c32c2010-05-11 18:21:33 -070052
53from git_command import GitCommand
54from git_command import ssh_sock
55from git_command import terminate_ssh_clients
Zac Livingston9ead97b2017-06-13 08:29:04 -060056from git_refs import R_CHANGES, R_HEADS, R_TAGS
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070057
David Pursehouse1d947b32012-10-25 12:23:11 +090058ID_RE = re.compile(r'^[0-9a-f]{40}$')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070059
Shawn O. Pearce146fe902009-03-25 14:06:43 -070060REVIEW_CACHE = dict()
61
Zac Livingston9ead97b2017-06-13 08:29:04 -060062def IsChange(rev):
63 return rev.startswith(R_CHANGES)
64
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070065def IsId(rev):
66 return ID_RE.match(rev)
67
Zac Livingston9ead97b2017-06-13 08:29:04 -060068def IsTag(rev):
69 return rev.startswith(R_TAGS)
70
71def IsImmutable(rev):
72 return IsChange(rev) or IsId(rev) or IsTag(rev)
73
Shawn O. Pearcef8e32732009-04-17 11:00:31 -070074def _key(name):
75 parts = name.split('.')
76 if len(parts) < 2:
77 return name.lower()
78 parts[ 0] = parts[ 0].lower()
79 parts[-1] = parts[-1].lower()
80 return '.'.join(parts)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070081
82class GitConfig(object):
Shawn O. Pearce90be5c02008-10-29 15:21:24 -070083 _ForUser = None
84
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070085 @classmethod
86 def ForUser(cls):
Shawn O. Pearce90be5c02008-10-29 15:21:24 -070087 if cls._ForUser is None:
David Pursehouse8a68ff92012-09-24 12:15:13 +090088 cls._ForUser = cls(configfile = os.path.expanduser('~/.gitconfig'))
Shawn O. Pearce90be5c02008-10-29 15:21:24 -070089 return cls._ForUser
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070090
91 @classmethod
92 def ForRepository(cls, gitdir, defaults=None):
David Pursehouse8a68ff92012-09-24 12:15:13 +090093 return cls(configfile = os.path.join(gitdir, 'config'),
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070094 defaults = defaults)
95
Anthony King85b24ac2014-05-06 15:57:48 +010096 def __init__(self, configfile, defaults=None, jsonFile=None):
David Pursehouse8a68ff92012-09-24 12:15:13 +090097 self.file = configfile
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -070098 self.defaults = defaults
99 self._cache_dict = None
Shawn O. Pearceaccc56d2009-04-18 14:45:51 -0700100 self._section_dict = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700101 self._remotes = {}
102 self._branches = {}
Shawn O. Pearce1b34c912009-05-21 18:52:49 -0700103
Anthony King85b24ac2014-05-06 15:57:48 +0100104 self._json = jsonFile
105 if self._json is None:
106 self._json = os.path.join(
Shawn O. Pearce1b34c912009-05-21 18:52:49 -0700107 os.path.dirname(self.file),
Anthony King85b24ac2014-05-06 15:57:48 +0100108 '.repo_' + os.path.basename(self.file) + '.json')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700109
110 def Has(self, name, include_defaults = True):
111 """Return true if this configuration file has the key.
112 """
Shawn O. Pearcef8e32732009-04-17 11:00:31 -0700113 if _key(name) in self._cache:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700114 return True
115 if include_defaults and self.defaults:
116 return self.defaults.Has(name, include_defaults = True)
117 return False
118
119 def GetBoolean(self, name):
120 """Returns a boolean from the configuration file.
121 None : The value was not defined, or is not a boolean.
122 True : The value was set to true or yes.
123 False: The value was set to false or no.
124 """
125 v = self.GetString(name)
126 if v is None:
127 return None
128 v = v.lower()
129 if v in ('true', 'yes'):
130 return True
131 if v in ('false', 'no'):
132 return False
133 return None
134
David Pursehouse8a68ff92012-09-24 12:15:13 +0900135 def GetString(self, name, all_keys=False):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700136 """Get the first value for a key, or None if it is not defined.
137
138 This configuration file is used first, if the key is not
David Pursehouse8a68ff92012-09-24 12:15:13 +0900139 defined or all_keys = True then the defaults are also searched.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700140 """
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700141 try:
Shawn O. Pearcef8e32732009-04-17 11:00:31 -0700142 v = self._cache[_key(name)]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700143 except KeyError:
144 if self.defaults:
David Pursehouse8a68ff92012-09-24 12:15:13 +0900145 return self.defaults.GetString(name, all_keys = all_keys)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700146 v = []
147
David Pursehouse8a68ff92012-09-24 12:15:13 +0900148 if not all_keys:
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700149 if v:
150 return v[0]
151 return None
152
153 r = []
154 r.extend(v)
155 if self.defaults:
David Pursehouse8a68ff92012-09-24 12:15:13 +0900156 r.extend(self.defaults.GetString(name, all_keys = True))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700157 return r
158
159 def SetString(self, name, value):
160 """Set the value(s) for a key.
161 Only this configuration file is modified.
162
163 The supplied value should be either a string,
164 or a list of strings (to store multiple values).
165 """
Shawn O. Pearcef8e32732009-04-17 11:00:31 -0700166 key = _key(name)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700167
168 try:
Shawn O. Pearcef8e32732009-04-17 11:00:31 -0700169 old = self._cache[key]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700170 except KeyError:
171 old = []
172
173 if value is None:
174 if old:
Shawn O. Pearcef8e32732009-04-17 11:00:31 -0700175 del self._cache[key]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700176 self._do('--unset-all', name)
177
178 elif isinstance(value, list):
179 if len(value) == 0:
180 self.SetString(name, None)
181
182 elif len(value) == 1:
183 self.SetString(name, value[0])
184
185 elif old != value:
Shawn O. Pearcef8e32732009-04-17 11:00:31 -0700186 self._cache[key] = list(value)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700187 self._do('--replace-all', name, value[0])
Sarah Owensa6053d52012-11-01 13:36:50 -0700188 for i in range(1, len(value)):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700189 self._do('--add', name, value[i])
190
191 elif len(old) != 1 or old[0] != value:
Shawn O. Pearcef8e32732009-04-17 11:00:31 -0700192 self._cache[key] = [value]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700193 self._do('--replace-all', name, value)
194
195 def GetRemote(self, name):
196 """Get the remote.$name.* configuration values as an object.
197 """
198 try:
199 r = self._remotes[name]
200 except KeyError:
201 r = Remote(self, name)
202 self._remotes[r.name] = r
203 return r
204
205 def GetBranch(self, name):
206 """Get the branch.$name.* configuration values as an object.
207 """
208 try:
209 b = self._branches[name]
210 except KeyError:
211 b = Branch(self, name)
212 self._branches[b.name] = b
213 return b
214
Shawn O. Pearce366ad212009-05-19 12:47:37 -0700215 def GetSubSections(self, section):
216 """List all subsection names matching $section.*.*
217 """
218 return self._sections.get(section, set())
219
Shawn O. Pearceaccc56d2009-04-18 14:45:51 -0700220 def HasSection(self, section, subsection = ''):
221 """Does at least one key in section.subsection exist?
222 """
223 try:
224 return subsection in self._sections[section]
225 except KeyError:
226 return False
227
Shawn O. Pearce13111b42011-09-19 11:00:31 -0700228 def UrlInsteadOf(self, url):
229 """Resolve any url.*.insteadof references.
230 """
231 for new_url in self.GetSubSections('url'):
Dan Willemsen4e4d40f2013-10-28 22:28:42 -0700232 for old_url in self.GetString('url.%s.insteadof' % new_url, True):
233 if old_url is not None and url.startswith(old_url):
234 return new_url + url[len(old_url):]
Shawn O. Pearce13111b42011-09-19 11:00:31 -0700235 return url
236
Shawn O. Pearceaccc56d2009-04-18 14:45:51 -0700237 @property
238 def _sections(self):
239 d = self._section_dict
240 if d is None:
241 d = {}
242 for name in self._cache.keys():
243 p = name.split('.')
244 if 2 == len(p):
245 section = p[0]
246 subsect = ''
247 else:
248 section = p[0]
249 subsect = '.'.join(p[1:-1])
250 if section not in d:
251 d[section] = set()
252 d[section].add(subsect)
253 self._section_dict = d
254 return d
255
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700256 @property
257 def _cache(self):
258 if self._cache_dict is None:
259 self._cache_dict = self._Read()
260 return self._cache_dict
261
262 def _Read(self):
Anthony King85b24ac2014-05-06 15:57:48 +0100263 d = self._ReadJson()
Shawn O. Pearcec12c3602009-04-17 21:03:32 -0700264 if d is None:
265 d = self._ReadGit()
Anthony King85b24ac2014-05-06 15:57:48 +0100266 self._SaveJson(d)
Shawn O. Pearcec12c3602009-04-17 21:03:32 -0700267 return d
268
Anthony King85b24ac2014-05-06 15:57:48 +0100269 def _ReadJson(self):
Shawn O. Pearcec12c3602009-04-17 21:03:32 -0700270 try:
Anthony King85b24ac2014-05-06 15:57:48 +0100271 if os.path.getmtime(self._json) \
Shawn O. Pearcec12c3602009-04-17 21:03:32 -0700272 <= os.path.getmtime(self.file):
Renaud Paquay010fed72016-11-11 14:25:29 -0800273 platform_utils.remove(self._json)
Shawn O. Pearcec12c3602009-04-17 21:03:32 -0700274 return None
275 except OSError:
276 return None
277 try:
Anthony King85b24ac2014-05-06 15:57:48 +0100278 Trace(': parsing %s', self.file)
Mike Frysinger3164d402019-11-11 05:40:22 -0500279 with open(self._json) as fd:
Anthony King85b24ac2014-05-06 15:57:48 +0100280 return json.load(fd)
Anthony King85b24ac2014-05-06 15:57:48 +0100281 except (IOError, ValueError):
Renaud Paquay010fed72016-11-11 14:25:29 -0800282 platform_utils.remove(self._json)
Shawn O. Pearcec12c3602009-04-17 21:03:32 -0700283 return None
284
Anthony King85b24ac2014-05-06 15:57:48 +0100285 def _SaveJson(self, cache):
Shawn O. Pearcec12c3602009-04-17 21:03:32 -0700286 try:
Mike Frysinger3164d402019-11-11 05:40:22 -0500287 with open(self._json, 'w') as fd:
Anthony King85b24ac2014-05-06 15:57:48 +0100288 json.dump(cache, fd, indent=2)
Anthony King85b24ac2014-05-06 15:57:48 +0100289 except (IOError, TypeError):
Anthony Kingb1d1fd72015-06-03 17:02:26 +0100290 if os.path.exists(self._json):
Renaud Paquay010fed72016-11-11 14:25:29 -0800291 platform_utils.remove(self._json)
Shawn O. Pearcec12c3602009-04-17 21:03:32 -0700292
293 def _ReadGit(self):
David Aguilar438c5472009-06-28 15:09:16 -0700294 """
295 Read configuration data from git.
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700296
David Aguilar438c5472009-06-28 15:09:16 -0700297 This internal method populates the GitConfig cache.
298
299 """
David Aguilar438c5472009-06-28 15:09:16 -0700300 c = {}
Shawn O. Pearcec24c7202009-07-02 16:12:57 -0700301 d = self._do('--null', '--list')
302 if d is None:
303 return c
Dylan Denge469a0c2018-06-23 15:02:26 +0800304 if not is_python3():
305 d = d.decode('utf-8')
306 for line in d.rstrip('\0').split('\0'):
David Aguilar438c5472009-06-28 15:09:16 -0700307 if '\n' in line:
David Pursehousec1b86a22012-11-14 11:36:51 +0900308 key, val = line.split('\n', 1)
David Aguilar438c5472009-06-28 15:09:16 -0700309 else:
David Pursehousec1b86a22012-11-14 11:36:51 +0900310 key = line
311 val = None
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700312
313 if key in c:
314 c[key].append(val)
315 else:
316 c[key] = [val]
317
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700318 return c
319
320 def _do(self, *args):
321 command = ['config', '--file', self.file]
322 command.extend(args)
323
324 p = GitCommand(None,
325 command,
326 capture_stdout = True,
327 capture_stderr = True)
328 if p.Wait() == 0:
329 return p.stdout
330 else:
331 GitError('git config %s: %s' % (str(args), p.stderr))
332
333
334class RefSpec(object):
335 """A Git refspec line, split into its components:
336
337 forced: True if the line starts with '+'
338 src: Left side of the line
339 dst: Right side of the line
340 """
341
342 @classmethod
343 def FromString(cls, rs):
344 lhs, rhs = rs.split(':', 2)
345 if lhs.startswith('+'):
346 lhs = lhs[1:]
347 forced = True
348 else:
349 forced = False
350 return cls(forced, lhs, rhs)
351
352 def __init__(self, forced, lhs, rhs):
353 self.forced = forced
354 self.src = lhs
355 self.dst = rhs
356
357 def SourceMatches(self, rev):
358 if self.src:
359 if rev == self.src:
360 return True
361 if self.src.endswith('/*') and rev.startswith(self.src[:-1]):
362 return True
363 return False
364
365 def DestMatches(self, ref):
366 if self.dst:
367 if ref == self.dst:
368 return True
369 if self.dst.endswith('/*') and ref.startswith(self.dst[:-1]):
370 return True
371 return False
372
373 def MapSource(self, rev):
374 if self.src.endswith('/*'):
375 return self.dst[:-1] + rev[len(self.src) - 1:]
376 return self.dst
377
378 def __str__(self):
379 s = ''
380 if self.forced:
381 s += '+'
382 if self.src:
383 s += self.src
384 if self.dst:
385 s += ':'
386 s += self.dst
387 return s
388
389
Doug Anderson06d029c2010-10-27 17:06:01 -0700390_master_processes = []
391_master_keys = set()
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700392_ssh_master = True
Doug Anderson0048b692010-12-21 13:39:23 -0800393_master_keys_lock = None
394
395def init_ssh():
396 """Should be called once at the start of repo to init ssh master handling.
397
398 At the moment, all we do is to create our lock.
399 """
400 global _master_keys_lock
401 assert _master_keys_lock is None, "Should only call init_ssh once"
402 _master_keys_lock = _threading.Lock()
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700403
Josh Guilfoyle71985722009-08-16 09:44:40 -0700404def _open_ssh(host, port=None):
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700405 global _ssh_master
406
Doug Anderson0048b692010-12-21 13:39:23 -0800407 # Acquire the lock. This is needed to prevent opening multiple masters for
408 # the same host when we're running "repo sync -jN" (for N > 1) _and_ the
409 # manifest <remote fetch="ssh://xyz"> specifies a different host from the
410 # one that was passed to repo init.
411 _master_keys_lock.acquire()
Doug Anderson06d029c2010-10-27 17:06:01 -0700412 try:
Doug Anderson06d029c2010-10-27 17:06:01 -0700413
Doug Anderson0048b692010-12-21 13:39:23 -0800414 # Check to see whether we already think that the master is running; if we
415 # think it's already running, return right away.
416 if port is not None:
417 key = '%s:%s' % (host, port)
418 else:
419 key = host
420
421 if key in _master_keys:
Doug Anderson06d029c2010-10-27 17:06:01 -0700422 return True
Doug Anderson06d029c2010-10-27 17:06:01 -0700423
Doug Anderson0048b692010-12-21 13:39:23 -0800424 if not _ssh_master \
425 or 'GIT_SSH' in os.environ \
426 or sys.platform in ('win32', 'cygwin'):
427 # failed earlier, or cygwin ssh can't do this
428 #
429 return False
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700430
Doug Anderson0048b692010-12-21 13:39:23 -0800431 # We will make two calls to ssh; this is the common part of both calls.
432 command_base = ['ssh',
433 '-o','ControlPath %s' % ssh_sock(),
434 host]
435 if port is not None:
David Pursehouse8f62fb72012-11-14 12:09:38 +0900436 command_base[1:1] = ['-p', str(port)]
Doug Anderson0048b692010-12-21 13:39:23 -0800437
438 # Since the key wasn't in _master_keys, we think that master isn't running.
439 # ...but before actually starting a master, we'll double-check. This can
440 # be important because we can't tell that that 'git@myhost.com' is the same
441 # as 'myhost.com' where "User git" is setup in the user's ~/.ssh/config file.
442 check_command = command_base + ['-O','check']
443 try:
444 Trace(': %s', ' '.join(check_command))
445 check_process = subprocess.Popen(check_command,
446 stdout=subprocess.PIPE,
447 stderr=subprocess.PIPE)
448 check_process.communicate() # read output, but ignore it...
449 isnt_running = check_process.wait()
450
451 if not isnt_running:
452 # Our double-check found that the master _was_ infact running. Add to
453 # the list of keys.
454 _master_keys.add(key)
455 return True
456 except Exception:
457 # Ignore excpetions. We we will fall back to the normal command and print
458 # to the log there.
459 pass
460
461 command = command_base[:1] + \
462 ['-M', '-N'] + \
463 command_base[1:]
464 try:
465 Trace(': %s', ' '.join(command))
466 p = subprocess.Popen(command)
Sarah Owensa5be53f2012-09-09 15:37:57 -0700467 except Exception as e:
Doug Anderson0048b692010-12-21 13:39:23 -0800468 _ssh_master = False
Sarah Owenscecd1d82012-11-01 22:59:27 -0700469 print('\nwarn: cannot enable ssh control master for %s:%s\n%s'
470 % (host,port, str(e)), file=sys.stderr)
Doug Anderson0048b692010-12-21 13:39:23 -0800471 return False
472
Timo Lotterbach05dc46b2016-07-15 16:48:42 +0200473 time.sleep(1)
474 ssh_died = (p.poll() is not None)
475 if ssh_died:
476 return False
477
Doug Anderson0048b692010-12-21 13:39:23 -0800478 _master_processes.append(p)
479 _master_keys.add(key)
Doug Anderson0048b692010-12-21 13:39:23 -0800480 return True
481 finally:
482 _master_keys_lock.release()
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700483
484def close_ssh():
Doug Anderson0048b692010-12-21 13:39:23 -0800485 global _master_keys_lock
486
Shawn O. Pearceca8c32c2010-05-11 18:21:33 -0700487 terminate_ssh_clients()
488
Doug Anderson06d029c2010-10-27 17:06:01 -0700489 for p in _master_processes:
Shawn O. Pearce26120ca2009-06-16 11:49:10 -0700490 try:
491 os.kill(p.pid, SIGTERM)
492 p.wait()
Shawn O. Pearcefb5c8fd2009-06-16 14:57:46 -0700493 except OSError:
Shawn O. Pearce26120ca2009-06-16 11:49:10 -0700494 pass
Doug Anderson06d029c2010-10-27 17:06:01 -0700495 del _master_processes[:]
496 _master_keys.clear()
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700497
Nico Sallembien1c85f4e2010-04-27 14:35:27 -0700498 d = ssh_sock(create=False)
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700499 if d:
500 try:
Renaud Paquaybed8b622018-09-27 10:46:58 -0700501 platform_utils.rmdir(os.path.dirname(d))
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700502 except OSError:
503 pass
504
Doug Anderson0048b692010-12-21 13:39:23 -0800505 # We're done with the lock, so we can delete it.
506 _master_keys_lock = None
507
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700508URI_SCP = re.compile(r'^([^@:]*@?[^:/]{1,}):')
Shawn O. Pearce898e12a2012-03-14 15:22:28 -0700509URI_ALL = re.compile(r'^([a-z][a-z+-]*)://([^@/]*@?[^/]*)/')
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700510
Shawn O. Pearcef322b9a2011-09-19 14:50:58 -0700511def GetSchemeFromUrl(url):
512 m = URI_ALL.match(url)
513 if m:
514 return m.group(1)
515 return None
516
Dan Willemsen0745bb22015-08-17 13:41:45 -0700517@contextlib.contextmanager
518def GetUrlCookieFile(url, quiet):
519 if url.startswith('persistent-'):
520 try:
521 p = subprocess.Popen(
522 ['git-remote-persistent-https', '-print_config', url],
523 stdin=subprocess.PIPE, stdout=subprocess.PIPE,
524 stderr=subprocess.PIPE)
525 try:
526 cookieprefix = 'http.cookiefile='
527 proxyprefix = 'http.proxy='
528 cookiefile = None
529 proxy = None
530 for line in p.stdout:
Mike Frysingerded477d2020-02-07 23:18:23 -0500531 line = line.strip().decode('utf-8')
Dan Willemsen0745bb22015-08-17 13:41:45 -0700532 if line.startswith(cookieprefix):
Daichi Ueurace7e0262018-02-26 08:49:36 +0900533 cookiefile = os.path.expanduser(line[len(cookieprefix):])
Dan Willemsen0745bb22015-08-17 13:41:45 -0700534 if line.startswith(proxyprefix):
535 proxy = line[len(proxyprefix):]
536 # Leave subprocess open, as cookie file may be transient.
537 if cookiefile or proxy:
538 yield cookiefile, proxy
539 return
540 finally:
541 p.stdin.close()
542 if p.wait():
Mike Frysingerded477d2020-02-07 23:18:23 -0500543 err_msg = p.stderr.read().decode('utf-8')
Dan Willemsen0745bb22015-08-17 13:41:45 -0700544 if ' -print_config' in err_msg:
545 pass # Persistent proxy doesn't support -print_config.
546 elif not quiet:
547 print(err_msg, file=sys.stderr)
548 except OSError as e:
549 if e.errno == errno.ENOENT:
550 pass # No persistent proxy.
551 raise
Daichi Ueurace7e0262018-02-26 08:49:36 +0900552 cookiefile = GitConfig.ForUser().GetString('http.cookiefile')
553 if cookiefile:
554 cookiefile = os.path.expanduser(cookiefile)
555 yield cookiefile, None
Dan Willemsen0745bb22015-08-17 13:41:45 -0700556
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700557def _preconnect(url):
558 m = URI_ALL.match(url)
559 if m:
560 scheme = m.group(1)
561 host = m.group(2)
562 if ':' in host:
563 host, port = host.split(':')
Shawn O. Pearce896d5df2009-04-21 14:51:04 -0700564 else:
Josh Guilfoyle71985722009-08-16 09:44:40 -0700565 port = None
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700566 if scheme in ('ssh', 'git+ssh', 'ssh+git'):
567 return _open_ssh(host, port)
568 return False
569
570 m = URI_SCP.match(url)
571 if m:
572 host = m.group(1)
Josh Guilfoyle71985722009-08-16 09:44:40 -0700573 return _open_ssh(host)
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700574
Shawn O. Pearce7b4f4352009-06-12 09:06:35 -0700575 return False
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700576
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700577class Remote(object):
578 """Configuration options related to a remote.
579 """
580 def __init__(self, config, name):
581 self._config = config
582 self.name = name
583 self.url = self._Get('url')
Steve Raed6480452016-08-10 15:00:00 -0700584 self.pushUrl = self._Get('pushurl')
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700585 self.review = self._Get('review')
Shawn O. Pearce339ba9f2008-11-06 09:52:51 -0800586 self.projectname = self._Get('projectname')
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530587 self.fetch = list(map(RefSpec.FromString,
588 self._Get('fetch', all_keys=True)))
Shawn O. Pearcec9571422012-01-11 14:58:54 -0800589 self._review_url = None
Shawn O. Pearceb54a3922009-01-05 16:18:58 -0800590
Ulrik Sjolinb6ea3bf2010-01-03 18:20:17 +0100591 def _InsteadOf(self):
592 globCfg = GitConfig.ForUser()
593 urlList = globCfg.GetSubSections('url')
594 longest = ""
595 longestUrl = ""
596
597 for url in urlList:
598 key = "url." + url + ".insteadOf"
David Pursehouse8a68ff92012-09-24 12:15:13 +0900599 insteadOfList = globCfg.GetString(key, all_keys=True)
Ulrik Sjolinb6ea3bf2010-01-03 18:20:17 +0100600
601 for insteadOf in insteadOfList:
602 if self.url.startswith(insteadOf) \
603 and len(insteadOf) > len(longest):
604 longest = insteadOf
605 longestUrl = url
606
607 if len(longest) == 0:
608 return self.url
609
610 return self.url.replace(longest, longestUrl, 1)
611
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700612 def PreConnectFetch(self):
Ulrik Sjolinb6ea3bf2010-01-03 18:20:17 +0100613 connectionUrl = self._InsteadOf()
614 return _preconnect(connectionUrl)
Shawn O. Pearcefb231612009-04-10 18:53:46 -0700615
Łukasz Gardońbed59ce2017-08-08 10:18:11 +0200616 def ReviewUrl(self, userEmail, validate_certs):
Shawn O. Pearcec9571422012-01-11 14:58:54 -0800617 if self._review_url is None:
Shawn O. Pearceb54a3922009-01-05 16:18:58 -0800618 if self.review is None:
619 return None
620
621 u = self.review
Conley Owens7e12e0a2014-10-23 15:40:00 -0700622 if u.startswith('persistent-'):
623 u = u[len('persistent-'):]
Christian Koestlin2ec2a5d2016-12-05 20:32:45 +0100624 if u.split(':')[0] not in ('http', 'https', 'sso', 'ssh'):
Shawn O. Pearceb54a3922009-01-05 16:18:58 -0800625 u = 'http://%s' % u
Shawn O. Pearce13cc3842009-03-25 13:54:54 -0700626 if u.endswith('/Gerrit'):
627 u = u[:len(u) - len('/Gerrit')]
Shawn O. Pearcec9571422012-01-11 14:58:54 -0800628 if u.endswith('/ssh_info'):
629 u = u[:len(u) - len('/ssh_info')]
630 if not u.endswith('/'):
David Pursehouse8a68ff92012-09-24 12:15:13 +0900631 u += '/'
Shawn O. Pearcec9571422012-01-11 14:58:54 -0800632 http_url = u
Shawn O. Pearceb54a3922009-01-05 16:18:58 -0800633
Shawn O. Pearce146fe902009-03-25 14:06:43 -0700634 if u in REVIEW_CACHE:
Shawn O. Pearcec9571422012-01-11 14:58:54 -0800635 self._review_url = REVIEW_CACHE[u]
Shawn O. Pearce1a68dc52011-10-11 14:12:46 -0700636 elif 'REPO_HOST_PORT_INFO' in os.environ:
Shawn O. Pearcec9571422012-01-11 14:58:54 -0800637 host, port = os.environ['REPO_HOST_PORT_INFO'].split()
638 self._review_url = self._SshReviewUrl(userEmail, host, port)
639 REVIEW_CACHE[u] = self._review_url
Christian Koestlin2ec2a5d2016-12-05 20:32:45 +0100640 elif u.startswith('sso:') or u.startswith('ssh:'):
Steve Pucci143d8a72014-01-30 09:45:53 -0800641 self._review_url = u # Assume it's right
642 REVIEW_CACHE[u] = self._review_url
Timo Lotterbacheec726c2016-10-07 10:52:08 +0200643 elif 'REPO_IGNORE_SSH_INFO' in os.environ:
644 self._review_url = http_url
645 REVIEW_CACHE[u] = self._review_url
Shawn O. Pearce146fe902009-03-25 14:06:43 -0700646 else:
647 try:
Shawn O. Pearcec9571422012-01-11 14:58:54 -0800648 info_url = u + 'ssh_info'
Łukasz Gardońbed59ce2017-08-08 10:18:11 +0200649 if not validate_certs:
650 context = ssl._create_unverified_context()
651 info = urllib.request.urlopen(info_url, context=context).read()
652 else:
653 info = urllib.request.urlopen(info_url).read()
Mike Frysinger1b9adab2019-07-04 17:54:54 -0400654 if info == b'NOT_AVAILABLE' or b'<' in info:
Conley Owens745a39b2013-06-05 13:16:18 -0700655 # If `info` contains '<', we assume the server gave us some sort
656 # of HTML response back, like maybe a login page.
Shawn O. Pearce146fe902009-03-25 14:06:43 -0700657 #
Conley Owens745a39b2013-06-05 13:16:18 -0700658 # Assume HTTP if SSH is not enabled or ssh_info doesn't look right.
Conley Owens2cd38a02014-02-04 15:32:29 -0800659 self._review_url = http_url
Shawn O. Pearce146fe902009-03-25 14:06:43 -0700660 else:
Mike Frysinger1b9adab2019-07-04 17:54:54 -0400661 info = info.decode('utf-8')
Shawn O. Pearcec9571422012-01-11 14:58:54 -0800662 host, port = info.split()
Dan Willemsen16889ba2016-09-22 16:39:06 +0000663 self._review_url = self._SshReviewUrl(userEmail, host, port)
Sarah Owens1f7627f2012-10-31 09:21:55 -0700664 except urllib.error.HTTPError as e:
Shawn O. Pearcec9571422012-01-11 14:58:54 -0800665 raise UploadError('%s: %s' % (self.review, str(e)))
Sarah Owens1f7627f2012-10-31 09:21:55 -0700666 except urllib.error.URLError as e:
Shawn O. Pearcebf1fbb22011-10-11 09:31:58 -0700667 raise UploadError('%s: %s' % (self.review, str(e)))
David Pursehouseecf8f2b2013-05-24 12:12:23 +0900668 except HTTPException as e:
669 raise UploadError('%s: %s' % (self.review, e.__class__.__name__))
Shawn O. Pearceb54a3922009-01-05 16:18:58 -0800670
Shawn O. Pearcec9571422012-01-11 14:58:54 -0800671 REVIEW_CACHE[u] = self._review_url
672 return self._review_url + self.projectname
Shawn O. Pearceb54a3922009-01-05 16:18:58 -0800673
Shawn O. Pearcec9571422012-01-11 14:58:54 -0800674 def _SshReviewUrl(self, userEmail, host, port):
Shawn O. Pearce3575b8f2010-07-15 17:00:14 -0700675 username = self._config.GetString('review.%s.username' % self.review)
676 if username is None:
Shawn O. Pearcec9571422012-01-11 14:58:54 -0800677 username = userEmail.split('@')[0]
678 return 'ssh://%s@%s:%s/' % (username, host, port)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700679
680 def ToLocal(self, rev):
681 """Convert a remote revision string to something we have locally.
682 """
Yann Droneaud936183a2013-09-12 10:51:18 +0200683 if self.name == '.' or IsId(rev):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700684 return rev
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700685
686 if not rev.startswith('refs/'):
687 rev = R_HEADS + rev
688
689 for spec in self.fetch:
690 if spec.SourceMatches(rev):
691 return spec.MapSource(rev)
Nasser Grainawi909d58b2014-09-19 12:13:04 -0600692
693 if not rev.startswith(R_HEADS):
694 return rev
695
Mike Frysinger1f2462e2019-08-03 01:57:09 -0400696 raise GitError('%s: remote %s does not have %s' %
697 (self.projectname, self.name, rev))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700698
699 def WritesTo(self, ref):
700 """True if the remote stores to the tracking ref.
701 """
702 for spec in self.fetch:
703 if spec.DestMatches(ref):
704 return True
705 return False
706
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800707 def ResetFetch(self, mirror=False):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700708 """Set the fetch refspec to its default value.
709 """
Shawn O. Pearcee284ad12008-11-04 07:37:10 -0800710 if mirror:
711 dst = 'refs/heads/*'
712 else:
713 dst = 'refs/remotes/%s/*' % self.name
714 self.fetch = [RefSpec(True, 'refs/heads/*', dst)]
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700715
716 def Save(self):
717 """Save this remote to the configuration.
718 """
719 self._Set('url', self.url)
Steve Raed6480452016-08-10 15:00:00 -0700720 if self.pushUrl is not None:
721 self._Set('pushurl', self.pushUrl + '/' + self.projectname)
722 else:
723 self._Set('pushurl', self.pushUrl)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700724 self._Set('review', self.review)
Shawn O. Pearce339ba9f2008-11-06 09:52:51 -0800725 self._Set('projectname', self.projectname)
Chirayu Desai217ea7d2013-03-01 19:14:38 +0530726 self._Set('fetch', list(map(str, self.fetch)))
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700727
728 def _Set(self, key, value):
729 key = 'remote.%s.%s' % (self.name, key)
730 return self._config.SetString(key, value)
731
David Pursehouse8a68ff92012-09-24 12:15:13 +0900732 def _Get(self, key, all_keys=False):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700733 key = 'remote.%s.%s' % (self.name, key)
David Pursehouse8a68ff92012-09-24 12:15:13 +0900734 return self._config.GetString(key, all_keys = all_keys)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700735
736
737class Branch(object):
738 """Configuration options related to a single branch.
739 """
740 def __init__(self, config, name):
741 self._config = config
742 self.name = name
743 self.merge = self._Get('merge')
744
745 r = self._Get('remote')
746 if r:
747 self.remote = self._config.GetRemote(r)
748 else:
749 self.remote = None
750
751 @property
752 def LocalMerge(self):
753 """Convert the merge spec to a local name.
754 """
755 if self.remote and self.merge:
756 return self.remote.ToLocal(self.merge)
757 return None
758
759 def Save(self):
760 """Save this branch back into the configuration.
761 """
Shawn O. Pearceaccc56d2009-04-18 14:45:51 -0700762 if self._config.HasSection('branch', self.name):
763 if self.remote:
764 self._Set('remote', self.remote.name)
765 else:
766 self._Set('remote', None)
767 self._Set('merge', self.merge)
768
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700769 else:
Mike Frysinger3164d402019-11-11 05:40:22 -0500770 with open(self._config.file, 'a') as fd:
Shawn O. Pearceaccc56d2009-04-18 14:45:51 -0700771 fd.write('[branch "%s"]\n' % self.name)
772 if self.remote:
773 fd.write('\tremote = %s\n' % self.remote.name)
774 if self.merge:
775 fd.write('\tmerge = %s\n' % self.merge)
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700776
777 def _Set(self, key, value):
778 key = 'branch.%s.%s' % (self.name, key)
779 return self._config.SetString(key, value)
780
David Pursehouse8a68ff92012-09-24 12:15:13 +0900781 def _Get(self, key, all_keys=False):
The Android Open Source Projectcf31fe92008-10-21 07:00:00 -0700782 key = 'branch.%s.%s' % (self.name, key)
David Pursehouse8a68ff92012-09-24 12:15:13 +0900783 return self._config.GetString(key, all_keys = all_keys)