The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 1 | # |
| 2 | # Copyright (C) 2008 The Android Open Source Project |
| 3 | # |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
Shawn O. Pearce | c12c360 | 2009-04-17 21:03:32 -0700 | [diff] [blame] | 16 | import cPickle |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 17 | import os |
| 18 | import re |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 19 | import subprocess |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 20 | import sys |
Doug Anderson | 0048b69 | 2010-12-21 13:39:23 -0800 | [diff] [blame] | 21 | try: |
| 22 | import threading as _threading |
| 23 | except ImportError: |
| 24 | import dummy_threading as _threading |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 25 | import time |
Shawn O. Pearce | f00e0ce | 2009-08-22 18:39:49 -0700 | [diff] [blame] | 26 | import urllib2 |
| 27 | |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 28 | from signal import SIGTERM |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 29 | from urllib2 import urlopen, HTTPError |
| 30 | from error import GitError, UploadError |
Shawn O. Pearce | ad3193a | 2009-04-18 09:54:51 -0700 | [diff] [blame] | 31 | from trace import Trace |
Shawn O. Pearce | ca8c32c | 2010-05-11 18:21:33 -0700 | [diff] [blame] | 32 | |
| 33 | from git_command import GitCommand |
| 34 | from git_command import ssh_sock |
| 35 | from git_command import terminate_ssh_clients |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 36 | |
| 37 | R_HEADS = 'refs/heads/' |
| 38 | R_TAGS = 'refs/tags/' |
| 39 | ID_RE = re.compile('^[0-9a-f]{40}$') |
| 40 | |
Shawn O. Pearce | 146fe90 | 2009-03-25 14:06:43 -0700 | [diff] [blame] | 41 | REVIEW_CACHE = dict() |
| 42 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 43 | def IsId(rev): |
| 44 | return ID_RE.match(rev) |
| 45 | |
Shawn O. Pearce | f8e3273 | 2009-04-17 11:00:31 -0700 | [diff] [blame] | 46 | def _key(name): |
| 47 | parts = name.split('.') |
| 48 | if len(parts) < 2: |
| 49 | return name.lower() |
| 50 | parts[ 0] = parts[ 0].lower() |
| 51 | parts[-1] = parts[-1].lower() |
| 52 | return '.'.join(parts) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 53 | |
| 54 | class GitConfig(object): |
Shawn O. Pearce | 90be5c0 | 2008-10-29 15:21:24 -0700 | [diff] [blame] | 55 | _ForUser = None |
| 56 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 57 | @classmethod |
| 58 | def ForUser(cls): |
Shawn O. Pearce | 90be5c0 | 2008-10-29 15:21:24 -0700 | [diff] [blame] | 59 | if cls._ForUser is None: |
| 60 | cls._ForUser = cls(file = os.path.expanduser('~/.gitconfig')) |
| 61 | return cls._ForUser |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 62 | |
| 63 | @classmethod |
| 64 | def ForRepository(cls, gitdir, defaults=None): |
| 65 | return cls(file = os.path.join(gitdir, 'config'), |
| 66 | defaults = defaults) |
| 67 | |
Shawn O. Pearce | 1b34c91 | 2009-05-21 18:52:49 -0700 | [diff] [blame] | 68 | def __init__(self, file, defaults=None, pickleFile=None): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 69 | self.file = file |
| 70 | self.defaults = defaults |
| 71 | self._cache_dict = None |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 72 | self._section_dict = None |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 73 | self._remotes = {} |
| 74 | self._branches = {} |
Shawn O. Pearce | 1b34c91 | 2009-05-21 18:52:49 -0700 | [diff] [blame] | 75 | |
| 76 | if pickleFile is None: |
| 77 | self._pickle = os.path.join( |
| 78 | os.path.dirname(self.file), |
| 79 | '.repopickle_' + os.path.basename(self.file)) |
| 80 | else: |
| 81 | self._pickle = pickleFile |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 82 | |
| 83 | def Has(self, name, include_defaults = True): |
| 84 | """Return true if this configuration file has the key. |
| 85 | """ |
Shawn O. Pearce | f8e3273 | 2009-04-17 11:00:31 -0700 | [diff] [blame] | 86 | if _key(name) in self._cache: |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 87 | return True |
| 88 | if include_defaults and self.defaults: |
| 89 | return self.defaults.Has(name, include_defaults = True) |
| 90 | return False |
| 91 | |
| 92 | def GetBoolean(self, name): |
| 93 | """Returns a boolean from the configuration file. |
| 94 | None : The value was not defined, or is not a boolean. |
| 95 | True : The value was set to true or yes. |
| 96 | False: The value was set to false or no. |
| 97 | """ |
| 98 | v = self.GetString(name) |
| 99 | if v is None: |
| 100 | return None |
| 101 | v = v.lower() |
| 102 | if v in ('true', 'yes'): |
| 103 | return True |
| 104 | if v in ('false', 'no'): |
| 105 | return False |
| 106 | return None |
| 107 | |
| 108 | def GetString(self, name, all=False): |
| 109 | """Get the first value for a key, or None if it is not defined. |
| 110 | |
| 111 | This configuration file is used first, if the key is not |
| 112 | defined or all = True then the defaults are also searched. |
| 113 | """ |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 114 | try: |
Shawn O. Pearce | f8e3273 | 2009-04-17 11:00:31 -0700 | [diff] [blame] | 115 | v = self._cache[_key(name)] |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 116 | except KeyError: |
| 117 | if self.defaults: |
| 118 | return self.defaults.GetString(name, all = all) |
| 119 | v = [] |
| 120 | |
| 121 | if not all: |
| 122 | if v: |
| 123 | return v[0] |
| 124 | return None |
| 125 | |
| 126 | r = [] |
| 127 | r.extend(v) |
| 128 | if self.defaults: |
| 129 | r.extend(self.defaults.GetString(name, all = True)) |
| 130 | return r |
| 131 | |
| 132 | def SetString(self, name, value): |
| 133 | """Set the value(s) for a key. |
| 134 | Only this configuration file is modified. |
| 135 | |
| 136 | The supplied value should be either a string, |
| 137 | or a list of strings (to store multiple values). |
| 138 | """ |
Shawn O. Pearce | f8e3273 | 2009-04-17 11:00:31 -0700 | [diff] [blame] | 139 | key = _key(name) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 140 | |
| 141 | try: |
Shawn O. Pearce | f8e3273 | 2009-04-17 11:00:31 -0700 | [diff] [blame] | 142 | old = self._cache[key] |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 143 | except KeyError: |
| 144 | old = [] |
| 145 | |
| 146 | if value is None: |
| 147 | if old: |
Shawn O. Pearce | f8e3273 | 2009-04-17 11:00:31 -0700 | [diff] [blame] | 148 | del self._cache[key] |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 149 | self._do('--unset-all', name) |
| 150 | |
| 151 | elif isinstance(value, list): |
| 152 | if len(value) == 0: |
| 153 | self.SetString(name, None) |
| 154 | |
| 155 | elif len(value) == 1: |
| 156 | self.SetString(name, value[0]) |
| 157 | |
| 158 | elif old != value: |
Shawn O. Pearce | f8e3273 | 2009-04-17 11:00:31 -0700 | [diff] [blame] | 159 | self._cache[key] = list(value) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 160 | self._do('--replace-all', name, value[0]) |
| 161 | for i in xrange(1, len(value)): |
| 162 | self._do('--add', name, value[i]) |
| 163 | |
| 164 | elif len(old) != 1 or old[0] != value: |
Shawn O. Pearce | f8e3273 | 2009-04-17 11:00:31 -0700 | [diff] [blame] | 165 | self._cache[key] = [value] |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 166 | self._do('--replace-all', name, value) |
| 167 | |
| 168 | def GetRemote(self, name): |
| 169 | """Get the remote.$name.* configuration values as an object. |
| 170 | """ |
| 171 | try: |
| 172 | r = self._remotes[name] |
| 173 | except KeyError: |
| 174 | r = Remote(self, name) |
| 175 | self._remotes[r.name] = r |
| 176 | return r |
| 177 | |
| 178 | def GetBranch(self, name): |
| 179 | """Get the branch.$name.* configuration values as an object. |
| 180 | """ |
| 181 | try: |
| 182 | b = self._branches[name] |
| 183 | except KeyError: |
| 184 | b = Branch(self, name) |
| 185 | self._branches[b.name] = b |
| 186 | return b |
| 187 | |
Shawn O. Pearce | 366ad21 | 2009-05-19 12:47:37 -0700 | [diff] [blame] | 188 | def GetSubSections(self, section): |
| 189 | """List all subsection names matching $section.*.* |
| 190 | """ |
| 191 | return self._sections.get(section, set()) |
| 192 | |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 193 | def HasSection(self, section, subsection = ''): |
| 194 | """Does at least one key in section.subsection exist? |
| 195 | """ |
| 196 | try: |
| 197 | return subsection in self._sections[section] |
| 198 | except KeyError: |
| 199 | return False |
| 200 | |
| 201 | @property |
| 202 | def _sections(self): |
| 203 | d = self._section_dict |
| 204 | if d is None: |
| 205 | d = {} |
| 206 | for name in self._cache.keys(): |
| 207 | p = name.split('.') |
| 208 | if 2 == len(p): |
| 209 | section = p[0] |
| 210 | subsect = '' |
| 211 | else: |
| 212 | section = p[0] |
| 213 | subsect = '.'.join(p[1:-1]) |
| 214 | if section not in d: |
| 215 | d[section] = set() |
| 216 | d[section].add(subsect) |
| 217 | self._section_dict = d |
| 218 | return d |
| 219 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 220 | @property |
| 221 | def _cache(self): |
| 222 | if self._cache_dict is None: |
| 223 | self._cache_dict = self._Read() |
| 224 | return self._cache_dict |
| 225 | |
| 226 | def _Read(self): |
Shawn O. Pearce | c12c360 | 2009-04-17 21:03:32 -0700 | [diff] [blame] | 227 | d = self._ReadPickle() |
| 228 | if d is None: |
| 229 | d = self._ReadGit() |
| 230 | self._SavePickle(d) |
| 231 | return d |
| 232 | |
| 233 | def _ReadPickle(self): |
| 234 | try: |
| 235 | if os.path.getmtime(self._pickle) \ |
| 236 | <= os.path.getmtime(self.file): |
| 237 | os.remove(self._pickle) |
| 238 | return None |
| 239 | except OSError: |
| 240 | return None |
| 241 | try: |
Shawn O. Pearce | ad3193a | 2009-04-18 09:54:51 -0700 | [diff] [blame] | 242 | Trace(': unpickle %s', self.file) |
Shawn O. Pearce | 76ca9f8 | 2009-04-18 14:48:03 -0700 | [diff] [blame] | 243 | fd = open(self._pickle, 'rb') |
| 244 | try: |
| 245 | return cPickle.load(fd) |
| 246 | finally: |
| 247 | fd.close() |
Shawn O. Pearce | 2a3a81b | 2009-06-12 09:10:07 -0700 | [diff] [blame] | 248 | except EOFError: |
| 249 | os.remove(self._pickle) |
| 250 | return None |
Shawn O. Pearce | c12c360 | 2009-04-17 21:03:32 -0700 | [diff] [blame] | 251 | except IOError: |
| 252 | os.remove(self._pickle) |
| 253 | return None |
| 254 | except cPickle.PickleError: |
| 255 | os.remove(self._pickle) |
| 256 | return None |
| 257 | |
| 258 | def _SavePickle(self, cache): |
| 259 | try: |
Shawn O. Pearce | 76ca9f8 | 2009-04-18 14:48:03 -0700 | [diff] [blame] | 260 | fd = open(self._pickle, 'wb') |
| 261 | try: |
| 262 | cPickle.dump(cache, fd, cPickle.HIGHEST_PROTOCOL) |
| 263 | finally: |
| 264 | fd.close() |
Shawn O. Pearce | c12c360 | 2009-04-17 21:03:32 -0700 | [diff] [blame] | 265 | except IOError: |
Ulrik Sjölin | 99482ae | 2010-10-29 08:23:30 -0700 | [diff] [blame] | 266 | if os.path.exists(self._pickle): |
| 267 | os.remove(self._pickle) |
Shawn O. Pearce | c12c360 | 2009-04-17 21:03:32 -0700 | [diff] [blame] | 268 | except cPickle.PickleError: |
Ulrik Sjölin | 99482ae | 2010-10-29 08:23:30 -0700 | [diff] [blame] | 269 | if os.path.exists(self._pickle): |
| 270 | os.remove(self._pickle) |
Shawn O. Pearce | c12c360 | 2009-04-17 21:03:32 -0700 | [diff] [blame] | 271 | |
| 272 | def _ReadGit(self): |
David Aguilar | 438c547 | 2009-06-28 15:09:16 -0700 | [diff] [blame] | 273 | """ |
| 274 | Read configuration data from git. |
| 275 | |
| 276 | This internal method populates the GitConfig cache. |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 277 | |
David Aguilar | 438c547 | 2009-06-28 15:09:16 -0700 | [diff] [blame] | 278 | """ |
David Aguilar | 438c547 | 2009-06-28 15:09:16 -0700 | [diff] [blame] | 279 | c = {} |
Shawn O. Pearce | c24c720 | 2009-07-02 16:12:57 -0700 | [diff] [blame] | 280 | d = self._do('--null', '--list') |
| 281 | if d is None: |
| 282 | return c |
| 283 | for line in d.rstrip('\0').split('\0'): |
David Aguilar | 438c547 | 2009-06-28 15:09:16 -0700 | [diff] [blame] | 284 | if '\n' in line: |
| 285 | key, val = line.split('\n', 1) |
| 286 | else: |
| 287 | key = line |
| 288 | val = None |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 289 | |
| 290 | if key in c: |
| 291 | c[key].append(val) |
| 292 | else: |
| 293 | c[key] = [val] |
| 294 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 295 | return c |
| 296 | |
| 297 | def _do(self, *args): |
| 298 | command = ['config', '--file', self.file] |
| 299 | command.extend(args) |
| 300 | |
| 301 | p = GitCommand(None, |
| 302 | command, |
| 303 | capture_stdout = True, |
| 304 | capture_stderr = True) |
| 305 | if p.Wait() == 0: |
| 306 | return p.stdout |
| 307 | else: |
| 308 | GitError('git config %s: %s' % (str(args), p.stderr)) |
| 309 | |
| 310 | |
| 311 | class RefSpec(object): |
| 312 | """A Git refspec line, split into its components: |
| 313 | |
| 314 | forced: True if the line starts with '+' |
| 315 | src: Left side of the line |
| 316 | dst: Right side of the line |
| 317 | """ |
| 318 | |
| 319 | @classmethod |
| 320 | def FromString(cls, rs): |
| 321 | lhs, rhs = rs.split(':', 2) |
| 322 | if lhs.startswith('+'): |
| 323 | lhs = lhs[1:] |
| 324 | forced = True |
| 325 | else: |
| 326 | forced = False |
| 327 | return cls(forced, lhs, rhs) |
| 328 | |
| 329 | def __init__(self, forced, lhs, rhs): |
| 330 | self.forced = forced |
| 331 | self.src = lhs |
| 332 | self.dst = rhs |
| 333 | |
| 334 | def SourceMatches(self, rev): |
| 335 | if self.src: |
| 336 | if rev == self.src: |
| 337 | return True |
| 338 | if self.src.endswith('/*') and rev.startswith(self.src[:-1]): |
| 339 | return True |
| 340 | return False |
| 341 | |
| 342 | def DestMatches(self, ref): |
| 343 | if self.dst: |
| 344 | if ref == self.dst: |
| 345 | return True |
| 346 | if self.dst.endswith('/*') and ref.startswith(self.dst[:-1]): |
| 347 | return True |
| 348 | return False |
| 349 | |
| 350 | def MapSource(self, rev): |
| 351 | if self.src.endswith('/*'): |
| 352 | return self.dst[:-1] + rev[len(self.src) - 1:] |
| 353 | return self.dst |
| 354 | |
| 355 | def __str__(self): |
| 356 | s = '' |
| 357 | if self.forced: |
| 358 | s += '+' |
| 359 | if self.src: |
| 360 | s += self.src |
| 361 | if self.dst: |
| 362 | s += ':' |
| 363 | s += self.dst |
| 364 | return s |
| 365 | |
| 366 | |
Doug Anderson | 06d029c | 2010-10-27 17:06:01 -0700 | [diff] [blame] | 367 | _master_processes = [] |
| 368 | _master_keys = set() |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 369 | _ssh_master = True |
Doug Anderson | 0048b69 | 2010-12-21 13:39:23 -0800 | [diff] [blame] | 370 | _master_keys_lock = None |
| 371 | |
| 372 | def init_ssh(): |
| 373 | """Should be called once at the start of repo to init ssh master handling. |
| 374 | |
| 375 | At the moment, all we do is to create our lock. |
| 376 | """ |
| 377 | global _master_keys_lock |
| 378 | assert _master_keys_lock is None, "Should only call init_ssh once" |
| 379 | _master_keys_lock = _threading.Lock() |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 380 | |
Josh Guilfoyle | 7198572 | 2009-08-16 09:44:40 -0700 | [diff] [blame] | 381 | def _open_ssh(host, port=None): |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 382 | global _ssh_master |
| 383 | |
Doug Anderson | 0048b69 | 2010-12-21 13:39:23 -0800 | [diff] [blame] | 384 | # Acquire the lock. This is needed to prevent opening multiple masters for |
| 385 | # the same host when we're running "repo sync -jN" (for N > 1) _and_ the |
| 386 | # manifest <remote fetch="ssh://xyz"> specifies a different host from the |
| 387 | # one that was passed to repo init. |
| 388 | _master_keys_lock.acquire() |
| 389 | try: |
Josh Guilfoyle | 7198572 | 2009-08-16 09:44:40 -0700 | [diff] [blame] | 390 | |
Doug Anderson | 0048b69 | 2010-12-21 13:39:23 -0800 | [diff] [blame] | 391 | # Check to see whether we already think that the master is running; if we |
| 392 | # think it's already running, return right away. |
| 393 | if port is not None: |
| 394 | key = '%s:%s' % (host, port) |
| 395 | else: |
| 396 | key = host |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 397 | |
Doug Anderson | 0048b69 | 2010-12-21 13:39:23 -0800 | [diff] [blame] | 398 | if key in _master_keys: |
| 399 | return True |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 400 | |
Doug Anderson | 0048b69 | 2010-12-21 13:39:23 -0800 | [diff] [blame] | 401 | if not _ssh_master \ |
| 402 | or 'GIT_SSH' in os.environ \ |
| 403 | or sys.platform in ('win32', 'cygwin'): |
| 404 | # failed earlier, or cygwin ssh can't do this |
| 405 | # |
| 406 | return False |
Doug Anderson | 06d029c | 2010-10-27 17:06:01 -0700 | [diff] [blame] | 407 | |
Doug Anderson | 0048b69 | 2010-12-21 13:39:23 -0800 | [diff] [blame] | 408 | # We will make two calls to ssh; this is the common part of both calls. |
| 409 | command_base = ['ssh', |
| 410 | '-o','ControlPath %s' % ssh_sock(), |
| 411 | host] |
| 412 | if port is not None: |
| 413 | command_base[1:1] = ['-p',str(port)] |
Doug Anderson | 06d029c | 2010-10-27 17:06:01 -0700 | [diff] [blame] | 414 | |
Doug Anderson | 0048b69 | 2010-12-21 13:39:23 -0800 | [diff] [blame] | 415 | # Since the key wasn't in _master_keys, we think that master isn't running. |
| 416 | # ...but before actually starting a master, we'll double-check. This can |
| 417 | # be important because we can't tell that that 'git@myhost.com' is the same |
| 418 | # as 'myhost.com' where "User git" is setup in the user's ~/.ssh/config file. |
| 419 | check_command = command_base + ['-O','check'] |
| 420 | try: |
| 421 | Trace(': %s', ' '.join(check_command)) |
| 422 | check_process = subprocess.Popen(check_command, |
| 423 | stdout=subprocess.PIPE, |
| 424 | stderr=subprocess.PIPE) |
| 425 | check_process.communicate() # read output, but ignore it... |
| 426 | isnt_running = check_process.wait() |
Josh Guilfoyle | 7198572 | 2009-08-16 09:44:40 -0700 | [diff] [blame] | 427 | |
Doug Anderson | 0048b69 | 2010-12-21 13:39:23 -0800 | [diff] [blame] | 428 | if not isnt_running: |
| 429 | # Our double-check found that the master _was_ infact running. Add to |
| 430 | # the list of keys. |
| 431 | _master_keys.add(key) |
| 432 | return True |
| 433 | except Exception: |
| 434 | # Ignore excpetions. We we will fall back to the normal command and print |
| 435 | # to the log there. |
| 436 | pass |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 437 | |
Doug Anderson | 0048b69 | 2010-12-21 13:39:23 -0800 | [diff] [blame] | 438 | command = command_base[:1] + \ |
| 439 | ['-M', '-N'] + \ |
| 440 | command_base[1:] |
| 441 | try: |
| 442 | Trace(': %s', ' '.join(command)) |
| 443 | p = subprocess.Popen(command) |
| 444 | except Exception, e: |
| 445 | _ssh_master = False |
| 446 | print >>sys.stderr, \ |
| 447 | '\nwarn: cannot enable ssh control master for %s:%s\n%s' \ |
| 448 | % (host,port, str(e)) |
| 449 | return False |
| 450 | |
| 451 | _master_processes.append(p) |
| 452 | _master_keys.add(key) |
| 453 | time.sleep(1) |
| 454 | return True |
| 455 | finally: |
| 456 | _master_keys_lock.release() |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 457 | |
| 458 | def close_ssh(): |
Doug Anderson | 0048b69 | 2010-12-21 13:39:23 -0800 | [diff] [blame] | 459 | global _master_keys_lock |
| 460 | |
Shawn O. Pearce | ca8c32c | 2010-05-11 18:21:33 -0700 | [diff] [blame] | 461 | terminate_ssh_clients() |
| 462 | |
Doug Anderson | 06d029c | 2010-10-27 17:06:01 -0700 | [diff] [blame] | 463 | for p in _master_processes: |
Shawn O. Pearce | 26120ca | 2009-06-16 11:49:10 -0700 | [diff] [blame] | 464 | try: |
| 465 | os.kill(p.pid, SIGTERM) |
| 466 | p.wait() |
Shawn O. Pearce | fb5c8fd | 2009-06-16 14:57:46 -0700 | [diff] [blame] | 467 | except OSError: |
Shawn O. Pearce | 26120ca | 2009-06-16 11:49:10 -0700 | [diff] [blame] | 468 | pass |
Doug Anderson | 06d029c | 2010-10-27 17:06:01 -0700 | [diff] [blame] | 469 | del _master_processes[:] |
| 470 | _master_keys.clear() |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 471 | |
Nico Sallembien | 1c85f4e | 2010-04-27 14:35:27 -0700 | [diff] [blame] | 472 | d = ssh_sock(create=False) |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 473 | if d: |
| 474 | try: |
| 475 | os.rmdir(os.path.dirname(d)) |
| 476 | except OSError: |
| 477 | pass |
| 478 | |
Doug Anderson | 0048b69 | 2010-12-21 13:39:23 -0800 | [diff] [blame] | 479 | # We're done with the lock, so we can delete it. |
| 480 | _master_keys_lock = None |
| 481 | |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 482 | URI_SCP = re.compile(r'^([^@:]*@?[^:/]{1,}):') |
Shawn O. Pearce | 2f968c9 | 2009-04-30 14:30:28 -0700 | [diff] [blame] | 483 | URI_ALL = re.compile(r'^([a-z][a-z+]*)://([^@/]*@?[^/]*)/') |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 484 | |
| 485 | def _preconnect(url): |
| 486 | m = URI_ALL.match(url) |
| 487 | if m: |
| 488 | scheme = m.group(1) |
| 489 | host = m.group(2) |
| 490 | if ':' in host: |
| 491 | host, port = host.split(':') |
Shawn O. Pearce | 896d5df | 2009-04-21 14:51:04 -0700 | [diff] [blame] | 492 | else: |
Josh Guilfoyle | 7198572 | 2009-08-16 09:44:40 -0700 | [diff] [blame] | 493 | port = None |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 494 | if scheme in ('ssh', 'git+ssh', 'ssh+git'): |
| 495 | return _open_ssh(host, port) |
| 496 | return False |
| 497 | |
| 498 | m = URI_SCP.match(url) |
| 499 | if m: |
| 500 | host = m.group(1) |
Josh Guilfoyle | 7198572 | 2009-08-16 09:44:40 -0700 | [diff] [blame] | 501 | return _open_ssh(host) |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 502 | |
Shawn O. Pearce | 7b4f435 | 2009-06-12 09:06:35 -0700 | [diff] [blame] | 503 | return False |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 504 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 505 | class Remote(object): |
| 506 | """Configuration options related to a remote. |
| 507 | """ |
| 508 | def __init__(self, config, name): |
| 509 | self._config = config |
| 510 | self.name = name |
| 511 | self.url = self._Get('url') |
| 512 | self.review = self._Get('review') |
Shawn O. Pearce | 339ba9f | 2008-11-06 09:52:51 -0800 | [diff] [blame] | 513 | self.projectname = self._Get('projectname') |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 514 | self.fetch = map(lambda x: RefSpec.FromString(x), |
| 515 | self._Get('fetch', all=True)) |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 516 | self._review_protocol = None |
| 517 | |
Ulrik Sjolin | b6ea3bf | 2010-01-03 18:20:17 +0100 | [diff] [blame] | 518 | def _InsteadOf(self): |
| 519 | globCfg = GitConfig.ForUser() |
| 520 | urlList = globCfg.GetSubSections('url') |
| 521 | longest = "" |
| 522 | longestUrl = "" |
| 523 | |
| 524 | for url in urlList: |
| 525 | key = "url." + url + ".insteadOf" |
| 526 | insteadOfList = globCfg.GetString(key, all=True) |
| 527 | |
| 528 | for insteadOf in insteadOfList: |
| 529 | if self.url.startswith(insteadOf) \ |
| 530 | and len(insteadOf) > len(longest): |
| 531 | longest = insteadOf |
| 532 | longestUrl = url |
| 533 | |
| 534 | if len(longest) == 0: |
| 535 | return self.url |
| 536 | |
| 537 | return self.url.replace(longest, longestUrl, 1) |
| 538 | |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 539 | def PreConnectFetch(self): |
Ulrik Sjolin | b6ea3bf | 2010-01-03 18:20:17 +0100 | [diff] [blame] | 540 | connectionUrl = self._InsteadOf() |
| 541 | return _preconnect(connectionUrl) |
Shawn O. Pearce | fb23161 | 2009-04-10 18:53:46 -0700 | [diff] [blame] | 542 | |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 543 | @property |
| 544 | def ReviewProtocol(self): |
| 545 | if self._review_protocol is None: |
| 546 | if self.review is None: |
| 547 | return None |
| 548 | |
| 549 | u = self.review |
| 550 | if not u.startswith('http:') and not u.startswith('https:'): |
| 551 | u = 'http://%s' % u |
Shawn O. Pearce | 13cc384 | 2009-03-25 13:54:54 -0700 | [diff] [blame] | 552 | if u.endswith('/Gerrit'): |
| 553 | u = u[:len(u) - len('/Gerrit')] |
| 554 | if not u.endswith('/ssh_info'): |
| 555 | if not u.endswith('/'): |
| 556 | u += '/' |
| 557 | u += 'ssh_info' |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 558 | |
Shawn O. Pearce | 146fe90 | 2009-03-25 14:06:43 -0700 | [diff] [blame] | 559 | if u in REVIEW_CACHE: |
| 560 | info = REVIEW_CACHE[u] |
| 561 | self._review_protocol = info[0] |
| 562 | self._review_host = info[1] |
| 563 | self._review_port = info[2] |
| 564 | else: |
| 565 | try: |
| 566 | info = urlopen(u).read() |
| 567 | if info == 'NOT_AVAILABLE': |
Shawn O. Pearce | f00e0ce | 2009-08-22 18:39:49 -0700 | [diff] [blame] | 568 | raise UploadError('%s: SSH disabled' % self.review) |
Shawn O. Pearce | 146fe90 | 2009-03-25 14:06:43 -0700 | [diff] [blame] | 569 | if '<' in info: |
| 570 | # Assume the server gave us some sort of HTML |
| 571 | # response back, like maybe a login page. |
| 572 | # |
Shawn O. Pearce | f00e0ce | 2009-08-22 18:39:49 -0700 | [diff] [blame] | 573 | raise UploadError('%s: Cannot parse response' % u) |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 574 | |
Shawn O. Pearce | 146fe90 | 2009-03-25 14:06:43 -0700 | [diff] [blame] | 575 | self._review_protocol = 'ssh' |
| 576 | self._review_host = info.split(" ")[0] |
| 577 | self._review_port = info.split(" ")[1] |
Shawn O. Pearce | f00e0ce | 2009-08-22 18:39:49 -0700 | [diff] [blame] | 578 | except urllib2.URLError, e: |
| 579 | raise UploadError('%s: %s' % (self.review, e.reason[1])) |
Shawn O. Pearce | 146fe90 | 2009-03-25 14:06:43 -0700 | [diff] [blame] | 580 | except HTTPError, e: |
| 581 | if e.code == 404: |
| 582 | self._review_protocol = 'http-post' |
| 583 | self._review_host = None |
| 584 | self._review_port = None |
| 585 | else: |
Shawn O. Pearce | f00e0ce | 2009-08-22 18:39:49 -0700 | [diff] [blame] | 586 | raise UploadError('Upload over ssh unavailable') |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 587 | |
Shawn O. Pearce | 146fe90 | 2009-03-25 14:06:43 -0700 | [diff] [blame] | 588 | REVIEW_CACHE[u] = ( |
| 589 | self._review_protocol, |
| 590 | self._review_host, |
| 591 | self._review_port) |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 592 | return self._review_protocol |
| 593 | |
| 594 | def SshReviewUrl(self, userEmail): |
| 595 | if self.ReviewProtocol != 'ssh': |
| 596 | return None |
Shawn O. Pearce | 3575b8f | 2010-07-15 17:00:14 -0700 | [diff] [blame] | 597 | username = self._config.GetString('review.%s.username' % self.review) |
| 598 | if username is None: |
| 599 | username = userEmail.split("@")[0] |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 600 | return 'ssh://%s@%s:%s/%s' % ( |
Shawn O. Pearce | 3575b8f | 2010-07-15 17:00:14 -0700 | [diff] [blame] | 601 | username, |
Shawn O. Pearce | b54a392 | 2009-01-05 16:18:58 -0800 | [diff] [blame] | 602 | self._review_host, |
| 603 | self._review_port, |
| 604 | self.projectname) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 605 | |
| 606 | def ToLocal(self, rev): |
| 607 | """Convert a remote revision string to something we have locally. |
| 608 | """ |
| 609 | if IsId(rev): |
| 610 | return rev |
| 611 | if rev.startswith(R_TAGS): |
| 612 | return rev |
| 613 | |
| 614 | if not rev.startswith('refs/'): |
| 615 | rev = R_HEADS + rev |
| 616 | |
| 617 | for spec in self.fetch: |
| 618 | if spec.SourceMatches(rev): |
| 619 | return spec.MapSource(rev) |
| 620 | raise GitError('remote %s does not have %s' % (self.name, rev)) |
| 621 | |
| 622 | def WritesTo(self, ref): |
| 623 | """True if the remote stores to the tracking ref. |
| 624 | """ |
| 625 | for spec in self.fetch: |
| 626 | if spec.DestMatches(ref): |
| 627 | return True |
| 628 | return False |
| 629 | |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 630 | def ResetFetch(self, mirror=False): |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 631 | """Set the fetch refspec to its default value. |
| 632 | """ |
Shawn O. Pearce | e284ad1 | 2008-11-04 07:37:10 -0800 | [diff] [blame] | 633 | if mirror: |
| 634 | dst = 'refs/heads/*' |
| 635 | else: |
| 636 | dst = 'refs/remotes/%s/*' % self.name |
| 637 | self.fetch = [RefSpec(True, 'refs/heads/*', dst)] |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 638 | |
| 639 | def Save(self): |
| 640 | """Save this remote to the configuration. |
| 641 | """ |
| 642 | self._Set('url', self.url) |
| 643 | self._Set('review', self.review) |
Shawn O. Pearce | 339ba9f | 2008-11-06 09:52:51 -0800 | [diff] [blame] | 644 | self._Set('projectname', self.projectname) |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 645 | self._Set('fetch', map(lambda x: str(x), self.fetch)) |
| 646 | |
| 647 | def _Set(self, key, value): |
| 648 | key = 'remote.%s.%s' % (self.name, key) |
| 649 | return self._config.SetString(key, value) |
| 650 | |
| 651 | def _Get(self, key, all=False): |
| 652 | key = 'remote.%s.%s' % (self.name, key) |
| 653 | return self._config.GetString(key, all = all) |
| 654 | |
| 655 | |
| 656 | class Branch(object): |
| 657 | """Configuration options related to a single branch. |
| 658 | """ |
| 659 | def __init__(self, config, name): |
| 660 | self._config = config |
| 661 | self.name = name |
| 662 | self.merge = self._Get('merge') |
| 663 | |
| 664 | r = self._Get('remote') |
| 665 | if r: |
| 666 | self.remote = self._config.GetRemote(r) |
| 667 | else: |
| 668 | self.remote = None |
| 669 | |
| 670 | @property |
| 671 | def LocalMerge(self): |
| 672 | """Convert the merge spec to a local name. |
| 673 | """ |
| 674 | if self.remote and self.merge: |
| 675 | return self.remote.ToLocal(self.merge) |
| 676 | return None |
| 677 | |
| 678 | def Save(self): |
| 679 | """Save this branch back into the configuration. |
| 680 | """ |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 681 | if self._config.HasSection('branch', self.name): |
| 682 | if self.remote: |
| 683 | self._Set('remote', self.remote.name) |
| 684 | else: |
| 685 | self._Set('remote', None) |
| 686 | self._Set('merge', self.merge) |
| 687 | |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 688 | else: |
Shawn O. Pearce | accc56d | 2009-04-18 14:45:51 -0700 | [diff] [blame] | 689 | fd = open(self._config.file, 'ab') |
| 690 | try: |
| 691 | fd.write('[branch "%s"]\n' % self.name) |
| 692 | if self.remote: |
| 693 | fd.write('\tremote = %s\n' % self.remote.name) |
| 694 | if self.merge: |
| 695 | fd.write('\tmerge = %s\n' % self.merge) |
| 696 | finally: |
| 697 | fd.close() |
The Android Open Source Project | cf31fe9 | 2008-10-21 07:00:00 -0700 | [diff] [blame] | 698 | |
| 699 | def _Set(self, key, value): |
| 700 | key = 'branch.%s.%s' % (self.name, key) |
| 701 | return self._config.SetString(key, value) |
| 702 | |
| 703 | def _Get(self, key, all=False): |
| 704 | key = 'branch.%s.%s' % (self.name, key) |
| 705 | return self._config.GetString(key, all = all) |