/usr/bin/grok-pull is in grokmirror 0.3.5-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 | #! /usr/bin/python -tt
# Copyright (C) 2013 by The Linux Foundation and contributors
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
import sys
import grokmirror
import logging
import urllib2
import time
import gzip
import json
import fnmatch
import subprocess
import shutil
import calendar
import threading
import Queue
from fcntl import lockf, LOCK_EX, LOCK_UN, LOCK_NB
from StringIO import StringIO
from git import Repo
# default basic logger. We override it later.
logger = logging.getLogger(__name__)
class PullerThread(threading.Thread):
def __init__(self, in_queue, out_queue, config, thread_name):
threading.Thread.__init__(self)
self.in_queue = in_queue
self.out_queue = out_queue
self.toplevel = config['toplevel']
self.hookscript = config['post_update_hook']
self.myname = thread_name
def run(self):
while True:
(gitdir, modified) = self.in_queue.get()
fullpath = os.path.join(self.toplevel, gitdir.lstrip('/'))
try:
grokmirror.lock_repo(fullpath, nonblocking=True)
logger.info('[Thread-%s] Updating %s' % (self.myname, gitdir))
pull_repo(self.toplevel, gitdir)
set_agefile(self.toplevel, gitdir, modified)
run_post_update_hook(self.hookscript, self.toplevel, gitdir)
grokmirror.unlock_repo(fullpath)
self.out_queue.put((gitdir, True))
except IOError, ex:
logger.info('Could not obtain exclusive lock on %s' % gitdir)
logger.info('\tAssuming grok-fsck is running, will try later.')
self.out_queue.put((gitdir, False))
logger.debug('[Thread-%s] done pulling %s' % (self.myname, gitdir))
self.in_queue.task_done()
def fix_remotes(gitdir, toplevel, site):
# Remove all existing remotes and set new origin
repo = Repo(os.path.join(toplevel, gitdir.lstrip('/')))
remotes = repo.git.remote()
if len(remotes.strip()):
logger.debug('existing remotes: %s' % remotes)
for name in remotes.split('\n'):
logger.debug('\tremoving remote: %s' % name)
repo.git.remote('rm', name)
# set my origin
origin = os.path.join(site, gitdir.lstrip('/'))
repo.git.remote('add', '--mirror', 'origin', origin)
logger.debug('\tset new origin as %s' % origin)
def set_owner_description(toplevel, gitdir, owner, description):
if owner is None and description is None:
# Let the default git values be there, then
return
fullpath = os.path.join(toplevel, gitdir.lstrip('/'))
repo = Repo(fullpath)
if description is not None and repo.description != description:
logger.debug('Setting %s description to: %s' % (gitdir, description))
repo.description = description
if owner is not None:
logger.debug('Setting %s owner to: %s' % (gitdir, owner))
repo.git.config('gitweb.owner', owner)
def set_agefile(toplevel, gitdir, last_modified):
# set agefile, which can be used by cgit to show idle times
# cgit recommends it to be yyyy-mm-dd hh:mm:ss
cgit_fmt = time.strftime('%F %T', time.localtime(last_modified))
agefile = os.path.join(toplevel, gitdir.lstrip('/'),
'info/web/last-modified')
if not os.path.exists(os.path.dirname(agefile)):
os.makedirs(os.path.dirname(agefile))
fh = open(agefile, 'w')
fh.write('%s\n' % cgit_fmt)
fh.close()
logger.debug('Wrote "%s" into %s' % (cgit_fmt, agefile))
def run_post_update_hook(hookscript, toplevel, gitdir):
if hookscript == '':
return
if not os.access(hookscript, os.X_OK):
logger.warning('post_update_hook %s is not executable' % hookscript)
return
fullpath = os.path.join(toplevel, gitdir.lstrip('/'))
args = [hookscript, fullpath]
logger.debug('Running: %s' % ' '.join(args))
(output, error) = subprocess.Popen(args, stdout=subprocess.PIPE,
stderr=subprocess.PIPE).communicate()
error = error.strip()
output = output.strip()
if error:
# Put hook stderror into warning
logger.warning('Hook Stderr: %s' % error)
if output:
# Put hook stdout into info
logger.info('Hook Stdout: %s' % output)
def pull_repo(toplevel, gitdir):
env = {'GIT_DIR': os.path.join(toplevel, gitdir.lstrip('/'))}
args = ['/usr/bin/git', 'remote', 'update', '--prune']
logger.debug('Running: GIT_DIR=%s %s' % (env['GIT_DIR'], ' '.join(args)))
(output, error) = subprocess.Popen(args, stdout=subprocess.PIPE,
stderr=subprocess.PIPE, env=env).communicate()
error = error.strip()
if error:
# Put things we recognize into debug
debug = []
warn = []
for line in error.split('\n'):
if line.find('From ') == 0:
debug.append(line)
elif line.find('-> ') > 0:
debug.append(line)
else:
warn.append(line)
if debug:
logger.debug('Stderr: %s' % '\n'.join(debug))
if warn:
logger.warning('Stderr: %s' % '\n'.join(warn))
def clone_repo(toplevel, gitdir, site, reference=None):
source = os.path.join(site, gitdir.lstrip('/'))
dest = os.path.join(toplevel, gitdir.lstrip('/'))
args = ['/usr/bin/git', 'clone', '--mirror']
if reference is not None:
reference = os.path.join(toplevel, reference.lstrip('/'))
args.append('--reference')
args.append(reference)
args.append(source)
args.append(dest)
logger.info('Cloning %s into %s' % (source, dest))
if reference is not None:
logger.info('With reference to %s' % reference)
logger.debug('Running: %s' % ' '.join(args))
(output, error) = subprocess.Popen(args, stdout=subprocess.PIPE,
stderr=subprocess.PIPE).communicate()
error = error.strip()
if error:
# Put things we recognize into debug
debug = []
warn = []
for line in error.split('\n'):
if line.find('cloned an empty repository') > 0:
debug.append(line)
else:
warn.append(line)
if debug:
logger.debug('Stderr: %s' % '\n'.join(debug))
if warn:
logger.warning('Stderr: %s' % '\n'.join(warn))
def clone_order(to_clone, manifest, to_clone_sorted, existing):
# recursively go through the list and resolve dependencies
new_to_clone = []
num_received = len(to_clone)
logger.debug('Another clone_order loop')
for gitdir in to_clone:
reference = manifest[gitdir]['reference']
logger.debug('reference: %s' % reference)
if (reference in existing
or reference in to_clone_sorted
or reference is None):
logger.debug('%s: reference found in existing' % gitdir)
to_clone_sorted.append(gitdir)
else:
logger.debug('%s: reference not found' % gitdir)
new_to_clone.append(gitdir)
if len(new_to_clone) == 0 or len(new_to_clone) == num_received:
# we can resolve no more dependencies, break out
logger.debug('Finished resolving dependencies, quitting')
if len(new_to_clone):
logger.debug('Unresolved: %s' % new_to_clone)
to_clone_sorted.extend(new_to_clone)
return
logger.debug('Going for another clone_order loop')
clone_order(new_to_clone, manifest, to_clone_sorted, existing)
def write_projects_list(manifest, config):
import tempfile
import shutil
if 'projectslist' not in config.keys():
return
if config['projectslist'] == '':
return
plpath = config['projectslist']
trimtop = ''
if 'projectslist_trimtop' in config.keys():
trimtop = config['projectslist_trimtop']
add_symlinks = False
if ('projectslist_symlinks' in config.keys()
and config['projectslist_symlinks'] == 'yes'):
add_symlinks = True
(dirname, basename) = os.path.split(plpath)
(fd, tmpfile) = tempfile.mkstemp(prefix=basename, dir=dirname)
logger.info('Writing new %s' % plpath)
try:
fh = open(tmpfile, 'w')
for gitdir in manifest.keys():
if trimtop and gitdir.find(trimtop) == 0:
pgitdir = gitdir[len(trimtop):]
else:
pgitdir = gitdir
# Always remove leading slash, otherwise cgit breaks
pgitdir = pgitdir.lstrip('/')
fh.write('%s\n' % pgitdir)
if add_symlinks and 'symlinks' in manifest[gitdir].keys():
# Do the same for symlinks
# XXX: Should make this configurable, perhaps
for symlink in manifest[gitdir]['symlinks']:
if trimtop and symlink.find(trimtop) == 0:
symlink = symlink[len(trimtop):]
symlink = symlink.lstrip('/')
fh.write('%s\n' % symlink)
fh.close()
os.chmod(tmpfile, 0644)
shutil.move(tmpfile, plpath)
finally:
# If something failed, don't leave tempfiles trailing around
if os.path.exists(tmpfile):
os.unlink(tmpfile)
def pull_mirror(name, config, opts):
global logger
logger = logging.getLogger(name)
logger.setLevel(logging.DEBUG)
if 'log' in config.keys():
ch = logging.FileHandler(config['log'])
formatter = logging.Formatter("[%(process)d] %(asctime)s - %(levelname)s - %(message)s")
ch.setFormatter(formatter)
loglevel = logging.INFO
if 'loglevel' in config.keys():
if config['loglevel'] == 'debug':
loglevel = logging.DEBUG
ch.setLevel(loglevel)
logger.addHandler(ch)
ch = logging.StreamHandler()
formatter = logging.Formatter('%(message)s')
ch.setFormatter(formatter)
if opts.verbose:
ch.setLevel(logging.INFO)
else:
ch.setLevel(logging.CRITICAL)
logger.addHandler(ch)
# push it into grokmirror to override the default logger
grokmirror.logger = logger
# Lock the tree to make sure we only run one instance
logger.debug('Attempting to obtain lock on %s' % config['lock'])
flockh = open(config['lock'], 'w')
try:
lockf(flockh, LOCK_EX | LOCK_NB)
except IOError, ex:
logger.debug('Could not obtain exclusive lock on %s' % config['lock'])
logger.info('Skipping [%s] - update already running' % name)
return 0
logger.info('Checking [%s]' % name)
mymanifest = config['mymanifest']
if config['manifest'].find('file:///') == 0:
manifile = config['manifest'].replace('file://', '')
if not os.path.exists(manifile):
logger.critical('Remote manifest not found in %s! Quitting!' % config['manifest'])
return 1
fstat = os.stat(manifile)
last_modified = fstat[8]
if os.path.exists(config['mymanifest']):
fstat = os.stat(config['mymanifest'])
my_last_modified = fstat[8]
if not (opts.force or opts.nomtime) and last_modified <= my_last_modified:
logger.info('Manifest file unchanged. Quitting.')
lockf(flockh, LOCK_UN)
flockh.close()
return 0
logger.info('Reading new manifest from %s' % manifile)
manifest = grokmirror.read_manifest(manifile)
# Don't accept empty manifests -- that indicates something is wrong
if not len(manifest.keys()):
logger.critical('Remote manifest empty or unparseable! Quitting.')
return 1
else:
# Load it from remote host using http and header magic
logger.info('Fetching remote manifest from %s' % config['manifest'])
request = urllib2.Request(config['manifest'])
opener = urllib2.build_opener()
# Find out if we need to run at all first
if not (opts.force or opts.nomtime) and os.path.exists(mymanifest):
fstat = os.stat(mymanifest)
mtime = fstat[8]
logger.debug('mtime on %s is: %s' % (mymanifest, mtime))
my_last_modified = time.strftime('%a, %d %b %Y %H:%M:%S GMT',
time.gmtime(mtime))
logger.debug('Our last-modified is: %s' % my_last_modified)
request.add_header('If-Modified-Since', my_last_modified)
try:
ufh = opener.open(request, timeout=30)
except urllib2.HTTPError, ex:
if ex.code == 304:
logger.info('Server says we have the latest manifest. Quitting.')
lockf(flockh, LOCK_UN)
flockh.close()
return 0
logger.critical('Could not fetch %s' % config['manifest'])
logger.critical('Server returned: %s' % ex)
lockf(flockh, LOCK_UN)
flockh.close()
return 1
except urllib2.URLError, ex:
logger.critical('Could not fetch %s' % config['manifest'])
logger.critical('Error was: %s' % ex)
lockf(flockh, LOCK_UN)
flockh.close()
return 1
last_modified = ufh.headers.get('Last-Modified')
last_modified = time.strptime(last_modified, '%a, %d %b %Y %H:%M:%S %Z')
last_modified = calendar.timegm(last_modified)
# We don't use read_manifest for the remote manifest, as it can be
# anything, really. For now, blindly open it with gzipfile if it ends
# with .gz. XXX: some http servers will auto-deflate such files.
if config['manifest'].find('.gz') > 0:
fh = gzip.GzipFile(fileobj=StringIO(ufh.read()))
else:
fh = ufh
try:
manifest = json.load(fh)
except:
logger.critical('Failed to parse %s' % config['manifest'])
lockf(flockh, LOCK_UN)
flockh.close()
return 1
mymanifest = grokmirror.read_manifest(mymanifest)
includes = config['include'].split('\n')
excludes = config['exclude'].split('\n')
# We keep culled, because that becomes our new manifest
culled = {}
for gitdir in manifest.keys():
# does it fall under include?
for include in includes:
if fnmatch.fnmatch(gitdir, include):
# Yes, but does it fall under excludes?
excluded = False
for exclude in excludes:
if fnmatch.fnmatch(gitdir, exclude):
excluded = True
break
if excluded:
continue
culled[gitdir] = manifest[gitdir]
to_clone = []
to_pull = []
existing = []
toplevel = config['toplevel']
if not os.access(toplevel, os.W_OK):
logger.critical('Toplevel %s does not exist or is not writable' % toplevel)
sys.exit(1)
for gitdir in culled.keys():
fullpath = os.path.join(toplevel, gitdir.lstrip('/'))
if gitdir in mymanifest.keys():
# Is the directory in place, too?
if os.path.exists(fullpath):
# Is it newer than what we have in our old manifest?
if gitdir in mymanifest.keys():
# This code is hurky and needs to be cleaned up
desc = culled[gitdir].get('description')
owner = culled[gitdir].get('owner')
mydesc = mymanifest[gitdir].get('description')
myowner = mymanifest[gitdir].get('owner')
if owner is None:
owner = config['default_owner']
if myowner is None:
myowner = config['default_owner']
if (owner != myowner or desc != mydesc):
# we can do this right away without waiting
set_owner_description(toplevel, gitdir, owner, desc)
if (opts.force or culled[gitdir]['modified']
> mymanifest[gitdir]['modified']):
to_pull.append(gitdir)
else:
logger.debug('Repo %s unchanged in manifest' % gitdir)
existing.append(gitdir)
continue
# do we have the dir in place?
if os.path.exists(fullpath):
if not opts.reuse:
logger.critical('Found existing repository in %s' % fullpath)
logger.critical('Run with -r to use existing repos')
sys.exit(1)
logger.info('Found existing %s, will set new origin' % gitdir)
# Accept it, but fix remotes so they are pointing to our origin
fix_remotes(gitdir, toplevel, config['site'])
to_pull.append(gitdir)
continue
to_clone.append(gitdir)
hookscript = config['post_update_hook']
in_queue = Queue.Queue()
out_queue = Queue.Queue()
# start out the number of threads we want
if 'pull_threads' in config.keys():
pull_threads = int(config['pull_threads'])
if pull_threads < 1:
logger.info('The pull_threads option is less than 1, forcing to 1')
pull_threads = 1
else:
# be conservative
logger.info('The pull_threads option is not set, consider setting it')
pull_threads = 5
logger.info('Will use %d threads to pull repos' % pull_threads)
for gitdir in to_pull:
in_queue.put((gitdir, culled[gitdir]['modified']))
for i in range(pull_threads):
t = PullerThread(in_queue, out_queue, config, i)
t.setDaemon(True)
t.start()
# wait till it's all done
in_queue.join()
logger.info('All threads finished.')
while not out_queue.empty():
# see if any of it failed
(gitdir, status) = out_queue.get()
if status == False:
# To make sure we check this again during next run,
# fudge the manifest accordingly.
logger.debug('Will recheck %s during next run' % gitdir)
culled[gitdir] = mymanifest[gitdir]
# this is rather hackish, but effective
last_modified -= 1
if to_clone:
# we use "existing" to track which repos can be used as references
existing.extend(to_pull)
to_clone_sorted = []
clone_order(to_clone, manifest, to_clone_sorted, existing)
for gitdir in to_clone_sorted:
reference = culled[gitdir]['reference']
if reference is not None and reference in existing:
clone_repo(toplevel, gitdir, config['site'],
reference=reference)
else:
clone_repo(toplevel, gitdir, config['site'])
# check dir to make sure cloning succeeded and then add to existing
if os.path.exists(os.path.join(toplevel, gitdir.lstrip('/'))):
logger.debug('Cloning of %s succeeded, adding to existing'
% gitdir)
existing.append(gitdir)
desc = culled[gitdir].get('description')
owner = culled[gitdir].get('owner')
if owner is None:
owner = config['default_owner']
set_owner_description(toplevel, gitdir, owner, desc)
set_agefile(toplevel, gitdir, culled[gitdir]['modified'])
run_post_update_hook(hookscript, toplevel, gitdir)
# loop through all entries and find any symlinks we need to set
# We also collect all symlinks to do purging correctly
symlinks = []
for gitdir in culled.keys():
if 'symlinks' in culled[gitdir].keys():
source = os.path.join(config['toplevel'], gitdir.lstrip('/'))
for symlink in culled[gitdir]['symlinks']:
if symlink not in symlinks:
symlinks.append(symlink)
target = os.path.join(config['toplevel'], symlink.lstrip('/'))
if not os.path.exists(target) and os.path.exists(source):
logger.info('Symlinking %s -> %s' % (target, source))
# Make sure the leading dirs are in place
if not os.path.exists(os.path.dirname(target)):
os.makedirs(os.path.dirname(target))
os.symlink(source, target)
if opts.purge:
for founddir in grokmirror.find_all_gitdirs(config['toplevel']):
gitdir = founddir.replace(config['toplevel'], '')
if gitdir not in culled.keys() and gitdir not in symlinks:
if os.path.islink(founddir):
logger.info('Removing unreferenced symlink %s' % gitdir)
os.unlink(founddir)
else:
logger.info('Purging %s' % gitdir)
shutil.rmtree(founddir)
# Once we're done, save culled as our new manifest
grokmirror.write_manifest(config['mymanifest'], culled,
mtime=last_modified, pretty=opts.pretty)
# write out projects.list, if asked to
write_projects_list(culled, config)
logger.debug('Unlocking %s' % config['lock'])
lockf(flockh, LOCK_UN)
flockh.close()
return 127
if __name__ == '__main__':
from optparse import OptionParser
from ConfigParser import ConfigParser
usage = '''usage: %prog -c repos.conf
Create a grok mirror using the repository configuration found in repos.conf
'''
parser = OptionParser(usage=usage, version=grokmirror.VERSION)
parser.add_option('-v', '--verbose', dest='verbose', action='store_true',
default=False,
help='Be verbose and tell us what you are doing')
parser.add_option('-n', '--no-mtime-check', dest='nomtime',
action='store_true', default=False,
help='Run without checking manifest mtime.')
parser.add_option('-f', '--force', dest='force',
action='store_true', default=False,
help='Force full git update regardless of last-modified times. '
'Also useful when repos.conf has changed.')
parser.add_option('-p', '--purge', dest='purge',
action='store_true', default=False,
help='Remove any git trees that are no longer in manifest.')
parser.add_option('-y', '--pretty', dest='pretty', action='store_true',
default=False,
help='Pretty-print manifest (sort keys and add indentation)')
parser.add_option('-r', '--reuse-existing-repos', dest='reuse',
action='store_true', default=False,
help='If any existing repositories are found on disk, set new '
'remote origin and reuse')
parser.add_option('-c', '--config', dest='config',
help='Location of repos.conf')
(opts, args) = parser.parse_args()
if not opts.config:
parser.error('You must provide the path to the config file')
ini = ConfigParser()
ini.read(opts.config)
retval = 0
for section in ini.sections():
config = {}
for (option, value) in ini.items(section):
config[option] = value
if 'default_owner' not in config.keys():
config['default_owner'] = 'Grokmirror User'
if 'post_update_hook' not in config.keys():
config['post_update_hook'] = ''
if 'include' not in config.keys():
config['include'] = '*'
if 'exclude' not in config.keys():
config['exclude'] = ''
sect_retval = pull_mirror(section, config, opts)
if sect_retval == 1:
# Fatal error encountered at some point
retval = 1
elif sect_retval == 127:
# Successful run with contents modified
retval = 127
sys.exit(retval)
|