4 Checks Debian packages from Incoming
5 @contact: Debian FTP Master <ftpmaster@debian.org>
6 @copyright: 2000, 2001, 2002, 2003, 2004, 2005, 2006 James Troup <james@nocrew.org>
7 @copyright: 2009 Joerg Jaspert <joerg@debian.org>
8 @copyright: 2009 Mark Hymers <mhy@debian.org>
9 @license: GNU General Public License version 2 or later
12 # This program is free software; you can redistribute it and/or modify
13 # it under the terms of the GNU General Public License as published by
14 # the Free Software Foundation; either version 2 of the License, or
15 # (at your option) any later version.
17 # This program is distributed in the hope that it will be useful,
18 # but WITHOUT ANY WARRANTY; without even the implied warranty of
19 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 # GNU General Public License for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with this program; if not, write to the Free Software
24 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 # Originally based on dinstall by Guy Maor <maor@debian.org>
28 ################################################################################
30 # Computer games don't affect kids. I mean if Pacman affected our generation as
31 # kids, we'd all run around in a darkened room munching pills and listening to
35 ################################################################################
50 from debian_bundle import deb822
52 from daklib.dbconn import *
53 from daklib.binary import Binary
54 from daklib import daklog
55 from daklib.queue import *
56 from daklib import utils
57 from daklib.textutils import fix_maintainer
58 from daklib.dak_exceptions import *
59 from daklib.regexes import re_default_answer
60 from daklib.summarystats import SummaryStats
61 from daklib.holding import Holding
62 from daklib.config import Config
66 ################################################################################
69 ################################################################################
75 ###############################################################################
83 Arguments = [('a',"automatic","Dinstall::Options::Automatic"),
84 ('h',"help","Dinstall::Options::Help"),
85 ('n',"no-action","Dinstall::Options::No-Action"),
86 ('p',"no-lock", "Dinstall::Options::No-Lock"),
87 ('s',"no-mail", "Dinstall::Options::No-Mail"),
88 ('d',"directory", "Dinstall::Options::Directory", "HasArg")]
90 for i in ["automatic", "help", "no-action", "no-lock", "no-mail",
91 "override-distribution", "version", "directory"]:
92 cnf["Dinstall::Options::%s" % (i)] = ""
94 changes_files = apt_pkg.ParseCommandLine(cnf.Cnf, Arguments, sys.argv)
95 Options = cnf.SubTree("Dinstall::Options")
100 # If we have a directory flag, use it to find our files
101 if cnf["Dinstall::Options::Directory"] != "":
102 # Note that we clobber the list of files we were given in this case
103 # so warn if the user has done both
104 if len(changes_files) > 0:
105 utils.warn("Directory provided so ignoring files given on command line")
107 changes_files = utils.get_changes_files(cnf["Dinstall::Options::Directory"])
111 ################################################################################
113 def usage (exit_code=0):
114 print """Usage: dinstall [OPTION]... [CHANGES]...
115 -a, --automatic automatic run
116 -h, --help show this help and exit.
117 -n, --no-action don't do anything
118 -p, --no-lock don't check lockfile !! for cron.daily only !!
119 -s, --no-mail don't send any mail
120 -V, --version display the version number and exit"""
123 ################################################################################
126 # changes["distribution"] may not exist in corner cases
127 # (e.g. unreadable changes files)
128 if not u.pkg.changes.has_key("distribution") or not isinstance(u.pkg.changes["distribution"], DictType):
129 u.pkg.changes["distribution"] = {}
131 (summary, short_summary) = u.build_summaries()
133 # q-unapproved hax0ring
135 "New": { "is": is_new, "process": acknowledge_new },
136 "Autobyhand" : { "is" : is_autobyhand, "process": do_autobyhand },
137 "Byhand" : { "is": is_byhand, "process": do_byhand },
138 "OldStableUpdate" : { "is": is_oldstableupdate,
139 "process": do_oldstableupdate },
140 "StableUpdate" : { "is": is_stableupdate, "process": do_stableupdate },
141 "Unembargo" : { "is": is_unembargo, "process": queue_unembargo },
142 "Embargo" : { "is": is_embargo, "process": queue_embargo },
145 queues = [ "New", "Autobyhand", "Byhand" ]
146 if cnf.FindB("Dinstall::SecurityQueueHandling"):
147 queues += [ "Unembargo", "Embargo" ]
149 queues += [ "OldStableUpdate", "StableUpdate" ]
151 (prompt, answer) = ("", "XXX")
152 if Options["No-Action"] or Options["Automatic"]:
157 pi = u.package_info()
159 if len(u.rejects) > 0:
160 if u.upload_too_new():
161 print "SKIP (too new)\n" + pi,
162 prompt = "[S]kip, Quit ?"
164 print "REJECT\n" + pi
165 prompt = "[R]eject, Skip, Quit ?"
166 if Options["Automatic"]:
171 if queue_info[q]["is"](u):
175 print "%s for %s\n%s%s" % ( qu.upper(), ", ".join(u.pkg.changes["distribution"].keys()), pi, summary)
176 queuekey = qu[0].upper()
177 if queuekey in "RQSA":
179 prompt = "[D]ivert, Skip, Quit ?"
181 prompt = "[%s]%s, Skip, Quit ?" % (queuekey, qu[1:].lower())
182 if Options["Automatic"]:
185 print "ACCEPT\n" + pi + summary,
186 prompt = "[A]ccept, Skip, Quit ?"
187 if Options["Automatic"]:
190 while prompt.find(answer) == -1:
191 answer = utils.our_raw_input(prompt)
192 m = re_default_answer.match(prompt)
195 answer = answer[:1].upper()
198 os.chdir(u.pkg.directory)
201 u.accept(summary, short_summary)
204 elif answer == queuekey:
205 queue_info[qu]["process"](u, summary, short_summary)
210 ################################################################################
212 def package_to_suite(u, suite):
213 if not u.pkg.changes["distribution"].has_key(suite):
218 if not u.pkg.changes["architecture"].has_key("source"):
219 s = DBConn().session()
220 q = s.query(SrcAssociation.sa_id)
221 q = q.join(Suite).filter_by(suite_name=suite)
222 q = q.join(DBSource).filter_by(source=u.pkg.changes['source'])
223 q = q.filter_by(version=u.pkg.changes['version']).limit(1)
232 def package_to_queue(u, summary, short_summary, queue, perms=0660, build=True, announce=None):
234 dir = cnf["Dir::Queue::%s" % queue]
236 print "Moving to %s holding area" % queue.upper()
237 Logger.log(["Moving to %s" % queue, u.pkg.changes_file])
239 u.pkg.write_dot_dak(dir)
240 u.move_to_dir(dir, perms=perms)
242 get_queue(queue.lower()).autobuild_upload(u.pkg, dir)
244 # Check for override disparities
247 # Send accept mail, announce to lists and close bugs
248 if announce and not cnf["Dinstall::Options::No-Mail"]:
249 template = os.path.join(cnf["Dir::Templates"], announce)
251 u.Subst["__SUITE__"] = ""
252 mail_message = utils.TemplateSubst(u.Subst, template)
253 utils.send_mail(mail_message)
254 u.announce(short_summary, True)
256 ################################################################################
259 session = DBConn().session()
262 q = session.execute("SELECT package FROM disembargo WHERE package = :source AND version = :version", u.pkg.changes)
268 os.chdir(cnf["Dir::Queue::Disembargo"])
274 if u.pkg.directory == disdir:
275 if u.pkg.changes["architecture"].has_key("source"):
276 if not Options["No-Action"]:
277 session.execute("INSERT INTO disembargo (package, version) VALUES (:package, :version)", u.pkg.changes)
286 def queue_unembargo(u, summary, short_summary):
287 return package_to_queue(u, summary, short_summary, "Unembargoed",
288 perms=0660, build=True, announce='process-unchecked.accepted')
290 ################################################################################
293 # if embargoed queues are enabled always embargo
296 def queue_embargo(u, summary, short_summary):
297 return package_to_queue(u, summary, short_summary, "Unembargoed",
298 perms=0660, build=True, announce='process-unchecked.accepted')
300 ################################################################################
302 def is_stableupdate(u):
303 return package_to_suite(u, 'proposed-updates')
305 def do_stableupdate(u, summary, short_summary):
306 return package_to_queue(u, summary, short_summary, "ProposedUpdates",
307 perms=0664, build=False, announce=None)
309 ################################################################################
311 def is_oldstableupdate(u):
312 return package_to_suite(u, 'oldstable-proposed-updates')
314 def do_oldstableupdate(u, summary, short_summary):
315 return package_to_queue(u, summary, short_summary, "OldProposedUpdates",
316 perms=0664, build=False, announce=None)
318 ################################################################################
320 def is_autobyhand(u):
325 for f in u.pkg.files.keys():
326 if u.pkg.files[f].has_key("byhand"):
329 # filename is of form "PKG_VER_ARCH.EXT" where PKG, VER and ARCH
330 # don't contain underscores, and ARCH doesn't contain dots.
331 # further VER matches the .changes Version:, and ARCH should be in
332 # the .changes Architecture: list.
337 (pckg, ver, archext) = f.split("_", 2)
338 if archext.count(".") < 1 or u.pkg.changes["version"] != ver:
342 ABH = cnf.SubTree("AutomaticByHandPackages")
343 if not ABH.has_key(pckg) or \
344 ABH["%s::Source" % (pckg)] != u.pkg.changes["source"]:
345 print "not match %s %s" % (pckg, u.pkg.changes["source"])
349 (arch, ext) = archext.split(".", 1)
350 if arch not in u.pkg.changes["architecture"]:
354 u.pkg.files[f]["byhand-arch"] = arch
355 u.pkg.files[f]["byhand-script"] = ABH["%s::Script" % (pckg)]
357 return any_auto and all_auto
359 def do_autobyhand(u, summary, short_summary):
360 print "Attempting AUTOBYHAND."
362 for f, entry in u.pkg.files.items():
365 if not entry.has_key("byhand"):
368 if not entry.has_key("byhand-script"):
372 os.system("ls -l %s" % byhandfile)
374 result = os.system("%s %s %s %s %s" % (
375 entry["byhand-script"],
377 u.pkg.changes["version"],
378 entry["byhand-arch"],
379 os.path.abspath(u.pkg.changes_file)))
382 os.unlink(byhandfile)
385 print "Error processing %s, left as byhand." % (f)
389 do_byhand(u, summary, short_summary)
391 u.accept(summary, short_summary)
393 # XXX: We seem to be missing a u.remove() here
394 # This might explain why we get byhand leftovers in unchecked - mhy
396 ################################################################################
399 for f in u.pkg.files.keys():
400 if u.pkg.files[f].has_key("byhand"):
404 def do_byhand(u, summary, short_summary):
405 return package_to_queue(u, summary, short_summary, "Byhand",
406 perms=0660, build=False, announce=None)
408 ################################################################################
411 for f in u.pkg.files.keys():
412 if u.pkg.files[f].has_key("new"):
416 def acknowledge_new(u, summary, short_summary):
419 print "Moving to NEW holding area."
420 Logger.log(["Moving to new", u.pkg.changes_file])
422 u.pkg.write_dot_dak(cnf["Dir::Queue::New"])
423 u.move_to_dir(cnf["Dir::Queue::New"], perms=0640, changesperms=0644)
425 if not Options["No-Mail"]:
426 print "Sending new ack."
427 template = os.path.join(cnf["Dir::Templates"], 'process-unchecked.new')
428 u.Subst["__SUMMARY__"] = summary
429 new_ack_message = utils.TemplateSubst(u.Subst, template)
430 utils.send_mail(new_ack_message)
432 ################################################################################
434 # reprocess is necessary for the case of foo_1.2-1 and foo_1.2-2 in
435 # Incoming. -1 will reference the .orig.tar.gz, but -2 will not.
436 # Upload.check_dsc_against_db() can find the .orig.tar.gz but it will
437 # not have processed it during it's checks of -2. If -1 has been
438 # deleted or otherwise not checked by 'dak process-unchecked', the
439 # .orig.tar.gz will not have been checked at all. To get round this,
440 # we force the .orig.tar.gz into the .changes structure and reprocess
443 def process_it(changes_file):
451 u.pkg.changes_file = changes_file
452 u.pkg.directory = os.getcwd()
454 origchanges = os.path.join(u.pkg.directory, u.pkg.changes_file)
456 # Some defaults in case we can't fully process the .changes file
457 u.pkg.changes["maintainer2047"] = cnf["Dinstall::MyEmailAddress"]
458 u.pkg.changes["changedby2047"] = cnf["Dinstall::MyEmailAddress"]
460 # debian-{devel-,}-changes@lists.debian.org toggles writes access based on this header
461 bcc = "X-DAK: dak process-unchecked\nX-Katie: $Revision: 1.65 $"
462 if cnf.has_key("Dinstall::Bcc"):
463 u.Subst["__BCC__"] = bcc + "\nBcc: %s" % (cnf["Dinstall::Bcc"])
465 u.Subst["__BCC__"] = bcc
467 # Remember where we are so we can come back after cd-ing into the
468 # holding directory. TODO: Fix this stupid hack
469 u.prevdir = os.getcwd()
471 # TODO: Figure out something better for this (or whether it's even
472 # necessary - it seems to have been for use when we were
473 # still doing the is_unchecked check; reprocess = 2)
477 # If this is the Real Thing(tm), copy things into a private
478 # holding directory first to avoid replacable file races.
479 if not Options["No-Action"]:
480 os.chdir(cnf["Dir::Queue::Holding"])
482 # Absolutize the filename to avoid the requirement of being in the
483 # same directory as the .changes file.
484 holding.copy_to_holding(origchanges)
486 # Relativize the filename so we use the copy in holding
487 # rather than the original...
488 changespath = os.path.basename(u.pkg.changes_file)
490 (u.pkg.changes["fingerprint"], rejects) = utils.check_signature(changespath)
492 if u.pkg.changes["fingerprint"]:
493 valid_changes_p = u.load_changes(changespath)
495 valid_changes_p = False
496 u.rejects.extend(rejects)
500 u.check_distributions()
501 u.check_files(not Options["No-Action"])
502 valid_dsc_p = u.check_dsc(not Options["No-Action"])
508 u.check_signed_by_key()
517 traceback.print_exc(file=sys.stderr)
519 # Restore previous WD
522 ###############################################################################
525 global Options, Logger
528 changes_files = init()
530 # -n/--dry-run invalidates some other options which would involve things happening
531 if Options["No-Action"]:
532 Options["Automatic"] = ""
534 # Initialize our Holding singleton
537 # Ensure all the arguments we were given are .changes files
538 for f in changes_files:
539 if not f.endswith(".changes"):
540 utils.warn("Ignoring '%s' because it's not a .changes file." % (f))
541 changes_files.remove(f)
543 if changes_files == []:
544 if cnf["Dinstall::Options::Directory"] == "":
545 utils.fubar("Need at least one .changes file as an argument.")
549 # Check that we aren't going to clash with the daily cron job
550 if not Options["No-Action"] and os.path.exists("%s/daily.lock" % (cnf["Dir::Lock"])) and not Options["No-Lock"]:
551 utils.fubar("Archive maintenance in progress. Try again later.")
553 # Obtain lock if not in no-action mode and initialize the log
554 if not Options["No-Action"]:
555 lock_fd = os.open(cnf["Dinstall::LockFile"], os.O_RDWR | os.O_CREAT)
557 fcntl.lockf(lock_fd, fcntl.LOCK_EX | fcntl.LOCK_NB)
559 if errno.errorcode[e.errno] == 'EACCES' or errno.errorcode[e.errno] == 'EAGAIN':
560 utils.fubar("Couldn't obtain lock; assuming another 'dak process-unchecked' is already running.")
563 Logger = daklog.Logger(cnf, "process-unchecked")
565 # Sort the .changes files so that we process sourceful ones first
566 changes_files.sort(utils.changes_compare)
568 # Process the changes files
569 for changes_file in changes_files:
570 print "\n" + changes_file
572 process_it (changes_file)
574 if not Options["No-Action"]:
577 accept_count = SummaryStats().accept_count
578 accept_bytes = SummaryStats().accept_bytes
584 print "Accepted %d package %s, %s." % (accept_count, sets, utils.size_type(int(accept_bytes)))
585 Logger.log(["total",accept_count,accept_bytes])
587 if not Options["No-Action"]:
590 ################################################################################
592 if __name__ == '__main__':