3 """ Checks Debian packages from Incoming """
4 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006 James Troup <james@nocrew.org>
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 # Originally based on dinstall by Guy Maor <maor@debian.org>
22 ################################################################################
24 # Computer games don't affect kids. I mean if Pacman affected our generation as
25 # kids, we'd all run around in a darkened room munching pills and listening to
29 ################################################################################
31 import commands, errno, fcntl, os, re, shutil, stat, sys, time, tempfile, traceback
32 import apt_inst, apt_pkg
33 from daklib import database
34 from daklib import logging
35 from daklib import queue
36 from daklib import utils
37 from daklib.dak_exceptions import *
38 from daklib.regexes import re_valid_version, re_valid_pkg_name, re_changelog_versions, \
39 re_strip_revision, re_strip_srcver, re_spacestrip, \
40 re_isanum, re_no_epoch, re_no_revision, re_taint_free, \
41 re_isadeb, re_extract_src_version, re_issource
45 ################################################################################
48 ################################################################################
59 # Aliases to the real vars in the Upload class; hysterical raisins.
67 ###############################################################################
70 global Cnf, Options, Upload, changes, dsc, dsc_files, files, pkg
74 Cnf = apt_pkg.newConfiguration()
75 apt_pkg.ReadConfigFileISC(Cnf,utils.which_conf_file())
77 Arguments = [('a',"automatic","Dinstall::Options::Automatic"),
78 ('h',"help","Dinstall::Options::Help"),
79 ('n',"no-action","Dinstall::Options::No-Action"),
80 ('p',"no-lock", "Dinstall::Options::No-Lock"),
81 ('s',"no-mail", "Dinstall::Options::No-Mail")]
83 for i in ["automatic", "help", "no-action", "no-lock", "no-mail",
84 "override-distribution", "version"]:
85 Cnf["Dinstall::Options::%s" % (i)] = ""
87 changes_files = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv)
88 Options = Cnf.SubTree("Dinstall::Options")
93 Upload = queue.Upload(Cnf)
95 changes = Upload.pkg.changes
97 dsc_files = Upload.pkg.dsc_files
98 files = Upload.pkg.files
103 ################################################################################
105 def usage (exit_code=0):
106 print """Usage: dinstall [OPTION]... [CHANGES]...
107 -a, --automatic automatic run
108 -h, --help show this help and exit.
109 -n, --no-action don't do anything
110 -p, --no-lock don't check lockfile !! for cron.daily only !!
111 -s, --no-mail don't send any mail
112 -V, --version display the version number and exit"""
115 ################################################################################
117 def reject (str, prefix="Rejected: "):
118 global reject_message
120 reject_message += prefix + str + "\n"
122 ################################################################################
124 def copy_to_holding(filename):
127 base_filename = os.path.basename(filename)
129 dest = Cnf["Dir::Queue::Holding"] + '/' + base_filename
131 fd = os.open(dest, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0640)
134 # Shouldn't happen, but will if, for example, someone lists a
135 # file twice in the .changes.
136 if errno.errorcode[e.errno] == 'EEXIST':
137 reject("%s: already exists in holding area; can not overwrite." % (base_filename))
142 shutil.copy(filename, dest)
144 # In either case (ENOENT or EACCES) we want to remove the
145 # O_CREAT | O_EXCLed ghost file, so add the file to the list
146 # of 'in holding' even if it's not the real file.
147 if errno.errorcode[e.errno] == 'ENOENT':
148 reject("%s: can not copy to holding area: file not found." % (base_filename))
151 elif errno.errorcode[e.errno] == 'EACCES':
152 reject("%s: can not copy to holding area: read permission denied." % (base_filename))
157 in_holding[base_filename] = ""
159 ################################################################################
165 os.chdir(Cnf["Dir::Queue::Holding"])
166 for f in in_holding.keys():
167 if os.path.exists(f):
168 if f.find('/') != -1:
169 utils.fubar("WTF? clean_holding() got a file ('%s') with / in it!" % (f))
175 ################################################################################
178 filename = pkg.changes_file
180 # Parse the .changes field into a dictionary
182 changes.update(utils.parse_changes(filename))
183 except CantOpenError:
184 reject("%s: can't read file." % (filename))
186 except ParseChangesError, line:
187 reject("%s: parse error, can't grok: %s." % (filename, line))
190 # Parse the Files field from the .changes into another dictionary
192 files.update(utils.build_file_list(changes))
193 except ParseChangesError, line:
194 reject("%s: parse error, can't grok: %s." % (filename, line))
195 except UnknownFormatError, format:
196 reject("%s: unknown format '%s'." % (filename, format))
199 # Check for mandatory fields
200 for i in ("source", "binary", "architecture", "version", "distribution",
201 "maintainer", "files", "changes", "description"):
202 if not changes.has_key(i):
203 reject("%s: Missing mandatory field `%s'." % (filename, i))
204 return 0 # Avoid <undef> errors during later tests
206 # Strip a source version in brackets from the source field
207 if re_strip_srcver.search(changes["source"]):
208 changes["source"] = re_strip_srcver.sub('', changes["source"])
210 # Ensure the source field is a valid package name.
211 if not re_valid_pkg_name.match(changes["source"]):
212 reject("%s: invalid source name '%s'." % (filename, changes["source"]))
214 # Split multi-value fields into a lower-level dictionary
215 for i in ("architecture", "distribution", "binary", "closes"):
216 o = changes.get(i, "")
223 # Fix the Maintainer: field to be RFC822/2047 compatible
225 (changes["maintainer822"], changes["maintainer2047"],
226 changes["maintainername"], changes["maintaineremail"]) = \
227 utils.fix_maintainer (changes["maintainer"])
228 except ParseMaintError, msg:
229 reject("%s: Maintainer field ('%s') failed to parse: %s" \
230 % (filename, changes["maintainer"], msg))
232 # ...likewise for the Changed-By: field if it exists.
234 (changes["changedby822"], changes["changedby2047"],
235 changes["changedbyname"], changes["changedbyemail"]) = \
236 utils.fix_maintainer (changes.get("changed-by", ""))
237 except ParseMaintError, msg:
238 (changes["changedby822"], changes["changedby2047"],
239 changes["changedbyname"], changes["changedbyemail"]) = \
241 reject("%s: Changed-By field ('%s') failed to parse: %s" \
242 % (filename, changes["changed-by"], msg))
244 # Ensure all the values in Closes: are numbers
245 if changes.has_key("closes"):
246 for i in changes["closes"].keys():
247 if re_isanum.match (i) == None:
248 reject("%s: `%s' from Closes field isn't a number." % (filename, i))
251 # chopversion = no epoch; chopversion2 = no epoch and no revision (e.g. for .orig.tar.gz comparison)
252 changes["chopversion"] = re_no_epoch.sub('', changes["version"])
253 changes["chopversion2"] = re_no_revision.sub('', changes["chopversion"])
255 # Check there isn't already a changes file of the same name in one
256 # of the queue directories.
257 base_filename = os.path.basename(filename)
258 for d in [ "Accepted", "Byhand", "Done", "New", "ProposedUpdates", "OldProposedUpdates" ]:
259 if os.path.exists(Cnf["Dir::Queue::%s" % (d) ]+'/'+base_filename):
260 reject("%s: a file with this name already exists in the %s directory." % (base_filename, d))
262 # Check the .changes is non-empty
264 reject("%s: nothing to do (Files field is empty)." % (base_filename))
269 ################################################################################
271 def check_distributions():
272 "Check and map the Distribution field of a .changes file."
274 # Handle suite mappings
275 for m in Cnf.ValueList("SuiteMappings"):
278 if mtype == "map" or mtype == "silent-map":
279 (source, dest) = args[1:3]
280 if changes["distribution"].has_key(source):
281 del changes["distribution"][source]
282 changes["distribution"][dest] = 1
283 if mtype != "silent-map":
284 reject("Mapping %s to %s." % (source, dest),"")
285 if changes.has_key("distribution-version"):
286 if changes["distribution-version"].has_key(source):
287 changes["distribution-version"][source]=dest
288 elif mtype == "map-unreleased":
289 (source, dest) = args[1:3]
290 if changes["distribution"].has_key(source):
291 for arch in changes["architecture"].keys():
292 if arch not in Cnf.ValueList("Suite::%s::Architectures" % (source)):
293 reject("Mapping %s to %s for unreleased architecture %s." % (source, dest, arch),"")
294 del changes["distribution"][source]
295 changes["distribution"][dest] = 1
297 elif mtype == "ignore":
299 if changes["distribution"].has_key(suite):
300 del changes["distribution"][suite]
301 reject("Ignoring %s as a target suite." % (suite), "Warning: ")
302 elif mtype == "reject":
304 if changes["distribution"].has_key(suite):
305 reject("Uploads to %s are not accepted." % (suite))
306 elif mtype == "propup-version":
307 # give these as "uploaded-to(non-mapped) suites-to-add-when-upload-obsoletes"
309 # changes["distribution-version"] looks like: {'testing': 'testing-proposed-updates'}
310 if changes["distribution"].has_key(args[1]):
311 changes.setdefault("distribution-version", {})
312 for suite in args[2:]: changes["distribution-version"][suite]=suite
314 # Ensure there is (still) a target distribution
315 if changes["distribution"].keys() == []:
316 reject("no valid distribution.")
318 # Ensure target distributions exist
319 for suite in changes["distribution"].keys():
320 if not Cnf.has_key("Suite::%s" % (suite)):
321 reject("Unknown distribution `%s'." % (suite))
323 ################################################################################
325 def check_deb_ar(filename):
326 """Sanity check the ar of a .deb, i.e. that there is:
330 o data.tar.gz or data.tar.bz2
332 in that order, and nothing else."""
333 cmd = "ar t %s" % (filename)
334 (result, output) = commands.getstatusoutput(cmd)
336 reject("%s: 'ar t' invocation failed." % (filename))
337 reject(utils.prefix_multi_line_string(output, " [ar output:] "), "")
338 chunks = output.split('\n')
340 reject("%s: found %d chunks, expected 3." % (filename, len(chunks)))
341 if chunks[0] != "debian-binary":
342 reject("%s: first chunk is '%s', expected 'debian-binary'." % (filename, chunks[0]))
343 if chunks[1] != "control.tar.gz":
344 reject("%s: second chunk is '%s', expected 'control.tar.gz'." % (filename, chunks[1]))
345 if chunks[2] not in [ "data.tar.bz2", "data.tar.gz" ]:
346 reject("%s: third chunk is '%s', expected 'data.tar.gz' or 'data.tar.bz2'." % (filename, chunks[2]))
348 ################################################################################
353 archive = utils.where_am_i()
354 file_keys = files.keys()
356 # if reprocess is 2 we've already done this and we're checking
357 # things again for the new .orig.tar.gz.
358 # [Yes, I'm fully aware of how disgusting this is]
359 if not Options["No-Action"] and reprocess < 2:
361 os.chdir(pkg.directory)
366 # Check there isn't already a .changes or .dak file of the same name in
367 # the proposed-updates "CopyChanges" or "CopyDotDak" storage directories.
368 # [NB: this check must be done post-suite mapping]
369 base_filename = os.path.basename(pkg.changes_file)
370 dot_dak_filename = base_filename[:-8]+".dak"
371 for suite in changes["distribution"].keys():
372 copychanges = "Suite::%s::CopyChanges" % (suite)
373 if Cnf.has_key(copychanges) and \
374 os.path.exists(Cnf[copychanges]+"/"+base_filename):
375 reject("%s: a file with this name already exists in %s" \
376 % (base_filename, Cnf[copychanges]))
378 copy_dot_dak = "Suite::%s::CopyDotDak" % (suite)
379 if Cnf.has_key(copy_dot_dak) and \
380 os.path.exists(Cnf[copy_dot_dak]+"/"+dot_dak_filename):
381 reject("%s: a file with this name already exists in %s" \
382 % (dot_dak_filename, Cnf[copy_dot_dak]))
389 # Ensure the file does not already exist in one of the accepted directories
390 for d in [ "Accepted", "Byhand", "New", "ProposedUpdates", "OldProposedUpdates", "Embargoed", "Unembargoed" ]:
391 if not Cnf.has_key("Dir::Queue::%s" % (d)): continue
392 if os.path.exists(Cnf["Dir::Queue::%s" % (d) ] + '/' + f):
393 reject("%s file already exists in the %s directory." % (f, d))
394 if not re_taint_free.match(f):
395 reject("!!WARNING!! tainted filename: '%s'." % (f))
396 # Check the file is readable
397 if os.access(f, os.R_OK) == 0:
398 # When running in -n, copy_to_holding() won't have
399 # generated the reject_message, so we need to.
400 if Options["No-Action"]:
401 if os.path.exists(f):
402 reject("Can't read `%s'. [permission denied]" % (f))
404 reject("Can't read `%s'. [file not found]" % (f))
405 files[f]["type"] = "unreadable"
407 # If it's byhand skip remaining checks
408 if files[f]["section"] == "byhand" or files[f]["section"][:4] == "raw-":
409 files[f]["byhand"] = 1
410 files[f]["type"] = "byhand"
411 # Checks for a binary package...
412 elif re_isadeb.match(f):
414 files[f]["type"] = "deb"
416 # Extract package control information
417 deb_file = utils.open_file(f)
419 control = apt_pkg.ParseSection(apt_inst.debExtractControl(deb_file))
421 reject("%s: debExtractControl() raised %s." % (f, sys.exc_type))
423 # Can't continue, none of the checks on control would work.
427 # Check for mandatory fields
428 for field in [ "Package", "Architecture", "Version" ]:
429 if control.Find(field) == None:
430 reject("%s: No %s field in control." % (f, field))
434 # Ensure the package name matches the one give in the .changes
435 if not changes["binary"].has_key(control.Find("Package", "")):
436 reject("%s: control file lists name as `%s', which isn't in changes file." % (f, control.Find("Package", "")))
438 # Validate the package field
439 package = control.Find("Package")
440 if not re_valid_pkg_name.match(package):
441 reject("%s: invalid package name '%s'." % (f, package))
443 # Validate the version field
444 version = control.Find("Version")
445 if not re_valid_version.match(version):
446 reject("%s: invalid version number '%s'." % (f, version))
448 # Ensure the architecture of the .deb is one we know about.
449 default_suite = Cnf.get("Dinstall::DefaultSuite", "Unstable")
450 architecture = control.Find("Architecture")
451 upload_suite = changes["distribution"].keys()[0]
452 if architecture not in Cnf.ValueList("Suite::%s::Architectures" % (default_suite)) and architecture not in Cnf.ValueList("Suite::%s::Architectures" % (upload_suite)):
453 reject("Unknown architecture '%s'." % (architecture))
455 # Ensure the architecture of the .deb is one of the ones
456 # listed in the .changes.
457 if not changes["architecture"].has_key(architecture):
458 reject("%s: control file lists arch as `%s', which isn't in changes file." % (f, architecture))
460 # Sanity-check the Depends field
461 depends = control.Find("Depends")
463 reject("%s: Depends field is empty." % (f))
465 # Sanity-check the Provides field
466 provides = control.Find("Provides")
468 provide = re_spacestrip.sub('', provides)
470 reject("%s: Provides field is empty." % (f))
471 prov_list = provide.split(",")
472 for prov in prov_list:
473 if not re_valid_pkg_name.match(prov):
474 reject("%s: Invalid Provides field content %s." % (f, prov))
477 # Check the section & priority match those given in the .changes (non-fatal)
478 if control.Find("Section") and files[f]["section"] != "" and files[f]["section"] != control.Find("Section"):
479 reject("%s control file lists section as `%s', but changes file has `%s'." % (f, control.Find("Section", ""), files[f]["section"]), "Warning: ")
480 if control.Find("Priority") and files[f]["priority"] != "" and files[f]["priority"] != control.Find("Priority"):
481 reject("%s control file lists priority as `%s', but changes file has `%s'." % (f, control.Find("Priority", ""), files[f]["priority"]),"Warning: ")
483 files[f]["package"] = package
484 files[f]["architecture"] = architecture
485 files[f]["version"] = version
486 files[f]["maintainer"] = control.Find("Maintainer", "")
487 if f.endswith(".udeb"):
488 files[f]["dbtype"] = "udeb"
489 elif f.endswith(".deb"):
490 files[f]["dbtype"] = "deb"
492 reject("%s is neither a .deb or a .udeb." % (f))
493 files[f]["source"] = control.Find("Source", files[f]["package"])
494 # Get the source version
495 source = files[f]["source"]
497 if source.find("(") != -1:
498 m = re_extract_src_version.match(source)
500 source_version = m.group(2)
501 if not source_version:
502 source_version = files[f]["version"]
503 files[f]["source package"] = source
504 files[f]["source version"] = source_version
506 # Ensure the filename matches the contents of the .deb
507 m = re_isadeb.match(f)
509 file_package = m.group(1)
510 if files[f]["package"] != file_package:
511 reject("%s: package part of filename (%s) does not match package name in the %s (%s)." % (f, file_package, files[f]["dbtype"], files[f]["package"]))
512 epochless_version = re_no_epoch.sub('', control.Find("Version"))
514 file_version = m.group(2)
515 if epochless_version != file_version:
516 reject("%s: version part of filename (%s) does not match package version in the %s (%s)." % (f, file_version, files[f]["dbtype"], epochless_version))
518 file_architecture = m.group(3)
519 if files[f]["architecture"] != file_architecture:
520 reject("%s: architecture part of filename (%s) does not match package architecture in the %s (%s)." % (f, file_architecture, files[f]["dbtype"], files[f]["architecture"]))
522 # Check for existent source
523 source_version = files[f]["source version"]
524 source_package = files[f]["source package"]
525 if changes["architecture"].has_key("source"):
526 if source_version != changes["version"]:
527 reject("source version (%s) for %s doesn't match changes version %s." % (source_version, f, changes["version"]))
529 # Check in the SQL database
530 if not Upload.source_exists(source_package, source_version, changes["distribution"].keys()):
531 # Check in one of the other directories
532 source_epochless_version = re_no_epoch.sub('', source_version)
533 dsc_filename = "%s_%s.dsc" % (source_package, source_epochless_version)
534 if os.path.exists(Cnf["Dir::Queue::Byhand"] + '/' + dsc_filename):
535 files[f]["byhand"] = 1
536 elif os.path.exists(Cnf["Dir::Queue::New"] + '/' + dsc_filename):
540 for myq in ["Accepted", "Embargoed", "Unembargoed", "ProposedUpdates", "OldProposedUpdates"]:
541 if Cnf.has_key("Dir::Queue::%s" % (myq)):
542 if os.path.exists(Cnf["Dir::Queue::"+myq] + '/' + dsc_filename):
545 if not dsc_file_exists:
546 reject("no source found for %s %s (%s)." % (source_package, source_version, f))
547 # Check the version and for file overwrites
548 reject(Upload.check_binary_against_db(f),"")
552 # Checks for a source package...
554 m = re_issource.match(f)
557 files[f]["package"] = m.group(1)
558 files[f]["version"] = m.group(2)
559 files[f]["type"] = m.group(3)
561 # Ensure the source package name matches the Source filed in the .changes
562 if changes["source"] != files[f]["package"]:
563 reject("%s: changes file doesn't say %s for Source" % (f, files[f]["package"]))
565 # Ensure the source version matches the version in the .changes file
566 if files[f]["type"] == "orig.tar.gz":
567 changes_version = changes["chopversion2"]
569 changes_version = changes["chopversion"]
570 if changes_version != files[f]["version"]:
571 reject("%s: should be %s according to changes file." % (f, changes_version))
573 # Ensure the .changes lists source in the Architecture field
574 if not changes["architecture"].has_key("source"):
575 reject("%s: changes file doesn't list `source' in Architecture field." % (f))
577 # Check the signature of a .dsc file
578 if files[f]["type"] == "dsc":
579 dsc["fingerprint"] = utils.check_signature(f, reject)
581 files[f]["architecture"] = "source"
583 # Not a binary or source package? Assume byhand...
585 files[f]["byhand"] = 1
586 files[f]["type"] = "byhand"
588 # Per-suite file checks
589 files[f]["oldfiles"] = {}
590 for suite in changes["distribution"].keys():
592 if files[f].has_key("byhand"):
595 # Handle component mappings
596 for m in Cnf.ValueList("ComponentMappings"):
597 (source, dest) = m.split()
598 if files[f]["component"] == source:
599 files[f]["original component"] = source
600 files[f]["component"] = dest
602 # Ensure the component is valid for the target suite
603 if Cnf.has_key("Suite:%s::Components" % (suite)) and \
604 files[f]["component"] not in Cnf.ValueList("Suite::%s::Components" % (suite)):
605 reject("unknown component `%s' for suite `%s'." % (files[f]["component"], suite))
608 # Validate the component
609 component = files[f]["component"]
610 component_id = database.get_component_id(component)
611 if component_id == -1:
612 reject("file '%s' has unknown component '%s'." % (f, component))
615 # See if the package is NEW
616 if not Upload.in_override_p(files[f]["package"], files[f]["component"], suite, files[f].get("dbtype",""), f):
619 # Validate the priority
620 if files[f]["priority"].find('/') != -1:
621 reject("file '%s' has invalid priority '%s' [contains '/']." % (f, files[f]["priority"]))
623 # Determine the location
624 location = Cnf["Dir::Pool"]
625 location_id = database.get_location_id (location, component, archive)
626 if location_id == -1:
627 reject("[INTERNAL ERROR] couldn't determine location (Component: %s, Archive: %s)" % (component, archive))
628 files[f]["location id"] = location_id
630 # Check the md5sum & size against existing files (if any)
631 files[f]["pool name"] = utils.poolify (changes["source"], files[f]["component"])
632 files_id = database.get_files_id(files[f]["pool name"] + f, files[f]["size"], files[f]["md5sum"], files[f]["location id"])
634 reject("INTERNAL ERROR, get_files_id() returned multiple matches for %s." % (f))
636 reject("md5sum and/or size mismatch on existing copy of %s." % (f))
637 files[f]["files id"] = files_id
639 # Check for packages that have moved from one component to another
640 q = Upload.projectB.query("""
641 SELECT c.name FROM binaries b, bin_associations ba, suite s, location l,
642 component c, architecture a, files f
643 WHERE b.package = '%s' AND s.suite_name = '%s'
644 AND (a.arch_string = '%s' OR a.arch_string = 'all')
645 AND ba.bin = b.id AND ba.suite = s.id AND b.architecture = a.id
646 AND f.location = l.id AND l.component = c.id AND b.file = f.id"""
647 % (files[f]["package"], suite,
648 files[f]["architecture"]))
651 files[f]["othercomponents"] = ql[0][0]
653 # If the .changes file says it has source, it must have source.
654 if changes["architecture"].has_key("source"):
656 reject("no source found and Architecture line in changes mention source.")
658 if not has_binaries and Cnf.FindB("Dinstall::Reject::NoSourceOnly"):
659 reject("source only uploads are not supported.")
661 ###############################################################################
666 # Ensure there is source to check
667 if not changes["architecture"].has_key("source"):
672 for f in files.keys():
673 if files[f]["type"] == "dsc":
675 reject("can not process a .changes file with multiple .dsc's.")
680 # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
682 reject("source uploads must contain a dsc file")
685 # Parse the .dsc file
687 dsc.update(utils.parse_changes(dsc_filename, signing_rules=1))
688 except CantOpenError:
689 # if not -n copy_to_holding() will have done this for us...
690 if Options["No-Action"]:
691 reject("%s: can't read file." % (dsc_filename))
692 except ParseChangesError, line:
693 reject("%s: parse error, can't grok: %s." % (dsc_filename, line))
694 except InvalidDscError, line:
695 reject("%s: syntax error on line %s." % (dsc_filename, line))
696 # Build up the file list of files mentioned by the .dsc
698 dsc_files.update(utils.build_file_list(dsc, is_a_dsc=1))
699 except NoFilesFieldError:
700 reject("%s: no Files: field." % (dsc_filename))
702 except UnknownFormatError, format:
703 reject("%s: unknown format '%s'." % (dsc_filename, format))
705 except ParseChangesError, line:
706 reject("%s: parse error, can't grok: %s." % (dsc_filename, line))
709 # Enforce mandatory fields
710 for i in ("format", "source", "version", "binary", "maintainer", "architecture", "files"):
711 if not dsc.has_key(i):
712 reject("%s: missing mandatory field `%s'." % (dsc_filename, i))
715 # Validate the source and version fields
716 if not re_valid_pkg_name.match(dsc["source"]):
717 reject("%s: invalid source name '%s'." % (dsc_filename, dsc["source"]))
718 if not re_valid_version.match(dsc["version"]):
719 reject("%s: invalid version number '%s'." % (dsc_filename, dsc["version"]))
721 # Bumping the version number of the .dsc breaks extraction by stable's
722 # dpkg-source. So let's not do that...
723 if dsc["format"] != "1.0":
724 reject("%s: incompatible 'Format' version produced by a broken version of dpkg-dev 1.9.1{3,4}." % (dsc_filename))
726 # Validate the Maintainer field
728 utils.fix_maintainer (dsc["maintainer"])
729 except ParseMaintError, msg:
730 reject("%s: Maintainer field ('%s') failed to parse: %s" \
731 % (dsc_filename, dsc["maintainer"], msg))
733 # Validate the build-depends field(s)
734 for field_name in [ "build-depends", "build-depends-indep" ]:
735 field = dsc.get(field_name)
737 # Check for broken dpkg-dev lossage...
738 if field.startswith("ARRAY"):
739 reject("%s: invalid %s field produced by a broken version of dpkg-dev (1.10.11)" % (dsc_filename, field_name.title()))
741 # Have apt try to parse them...
743 apt_pkg.ParseSrcDepends(field)
745 reject("%s: invalid %s field (can not be parsed by apt)." % (dsc_filename, field_name.title()))
748 # Ensure the version number in the .dsc matches the version number in the .changes
749 epochless_dsc_version = re_no_epoch.sub('', dsc["version"])
750 changes_version = files[dsc_filename]["version"]
751 if epochless_dsc_version != files[dsc_filename]["version"]:
752 reject("version ('%s') in .dsc does not match version ('%s') in .changes." % (epochless_dsc_version, changes_version))
754 # Ensure there is a .tar.gz in the .dsc file
756 for f in dsc_files.keys():
757 m = re_issource.match(f)
759 reject("%s: %s in Files field not recognised as source." % (dsc_filename, f))
762 if ftype == "orig.tar.gz" or ftype == "tar.gz":
765 reject("%s: no .tar.gz or .orig.tar.gz in 'Files' field." % (dsc_filename))
767 # Ensure source is newer than existing source in target suites
768 reject(Upload.check_source_against_db(dsc_filename),"")
770 (reject_msg, is_in_incoming) = Upload.check_dsc_against_db(dsc_filename)
771 reject(reject_msg, "")
773 if not Options["No-Action"]:
774 copy_to_holding(is_in_incoming)
775 orig_tar_gz = os.path.basename(is_in_incoming)
776 files[orig_tar_gz] = {}
777 files[orig_tar_gz]["size"] = os.stat(orig_tar_gz)[stat.ST_SIZE]
778 files[orig_tar_gz]["md5sum"] = dsc_files[orig_tar_gz]["md5sum"]
779 files[orig_tar_gz]["sha1sum"] = dsc_files[orig_tar_gz]["sha1sum"]
780 files[orig_tar_gz]["sha256sum"] = dsc_files[orig_tar_gz]["sha256sum"]
781 files[orig_tar_gz]["section"] = files[dsc_filename]["section"]
782 files[orig_tar_gz]["priority"] = files[dsc_filename]["priority"]
783 files[orig_tar_gz]["component"] = files[dsc_filename]["component"]
784 files[orig_tar_gz]["type"] = "orig.tar.gz"
789 ################################################################################
791 def get_changelog_versions(source_dir):
792 """Extracts a the source package and (optionally) grabs the
793 version history out of debian/changelog for the BTS."""
795 # Find the .dsc (again)
797 for f in files.keys():
798 if files[f]["type"] == "dsc":
801 # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
805 # Create a symlink mirror of the source files in our temporary directory
806 for f in files.keys():
807 m = re_issource.match(f)
809 src = os.path.join(source_dir, f)
810 # If a file is missing for whatever reason, give up.
811 if not os.path.exists(src):
814 if ftype == "orig.tar.gz" and pkg.orig_tar_gz:
816 dest = os.path.join(os.getcwd(), f)
817 os.symlink(src, dest)
819 # If the orig.tar.gz is not a part of the upload, create a symlink to the
822 dest = os.path.join(os.getcwd(), os.path.basename(pkg.orig_tar_gz))
823 os.symlink(pkg.orig_tar_gz, dest)
826 cmd = "dpkg-source -sn -x %s" % (dsc_filename)
827 (result, output) = commands.getstatusoutput(cmd)
829 reject("'dpkg-source -x' failed for %s [return code: %s]." % (dsc_filename, result))
830 reject(utils.prefix_multi_line_string(output, " [dpkg-source output:] "), "")
833 if not Cnf.Find("Dir::Queue::BTSVersionTrack"):
836 # Get the upstream version
837 upstr_version = re_no_epoch.sub('', dsc["version"])
838 if re_strip_revision.search(upstr_version):
839 upstr_version = re_strip_revision.sub('', upstr_version)
841 # Ensure the changelog file exists
842 changelog_filename = "%s-%s/debian/changelog" % (dsc["source"], upstr_version)
843 if not os.path.exists(changelog_filename):
844 reject("%s: debian/changelog not found in extracted source." % (dsc_filename))
847 # Parse the changelog
848 dsc["bts changelog"] = ""
849 changelog_file = utils.open_file(changelog_filename)
850 for line in changelog_file.readlines():
851 m = re_changelog_versions.match(line)
853 dsc["bts changelog"] += line
854 changelog_file.close()
856 # Check we found at least one revision in the changelog
857 if not dsc["bts changelog"]:
858 reject("%s: changelog format not recognised (empty version tree)." % (dsc_filename))
860 ########################################
864 # a) there's no source
865 # or b) reprocess is 2 - we will do this check next time when orig.tar.gz is in 'files'
866 # or c) the orig.tar.gz is MIA
867 if not changes["architecture"].has_key("source") or reprocess == 2 \
868 or pkg.orig_tar_gz == -1:
871 # Create a temporary directory to extract the source into
872 if Options["No-Action"]:
873 tmpdir = tempfile.mkdtemp()
875 # We're in queue/holding and can create a random directory.
876 tmpdir = "%s" % (os.getpid())
879 # Move into the temporary directory
883 # Get the changelog version history
884 get_changelog_versions(cwd)
886 # Move back and cleanup the temporary tree
889 shutil.rmtree(tmpdir)
891 if errno.errorcode[e.errno] != 'EACCES':
892 utils.fubar("%s: couldn't remove tmp dir for source tree." % (dsc["source"]))
894 reject("%s: source tree could not be cleanly removed." % (dsc["source"]))
895 # We probably have u-r or u-w directories so chmod everything
897 cmd = "chmod -R u+rwx %s" % (tmpdir)
898 result = os.system(cmd)
900 utils.fubar("'%s' failed with result %s." % (cmd, result))
901 shutil.rmtree(tmpdir)
903 utils.fubar("%s: couldn't remove tmp dir for source tree." % (dsc["source"]))
905 ################################################################################
907 # FIXME: should be a debian specific check called from a hook
909 def check_urgency ():
910 if changes["architecture"].has_key("source"):
911 if not changes.has_key("urgency"):
912 changes["urgency"] = Cnf["Urgency::Default"]
913 changes["urgency"] = changes["urgency"].lower()
914 if changes["urgency"] not in Cnf.ValueList("Urgency::Valid"):
915 reject("%s is not a valid urgency; it will be treated as %s by testing." % (changes["urgency"], Cnf["Urgency::Default"]), "Warning: ")
916 changes["urgency"] = Cnf["Urgency::Default"]
918 ################################################################################
921 utils.check_hash(".changes", files, "md5", apt_pkg.md5sum)
922 utils.check_size(".changes", files)
923 utils.check_hash(".dsc", dsc_files, "md5", apt_pkg.md5sum)
924 utils.check_size(".dsc", dsc_files)
926 # This is stupid API, but it'll have to do for now until
927 # we actually have proper abstraction
928 for m in utils.ensure_hashes(changes, dsc, files, dsc_files):
931 ################################################################################
933 # Sanity check the time stamps of files inside debs.
934 # [Files in the near future cause ugly warnings and extreme time
935 # travel can cause errors on extraction]
937 def check_timestamps():
939 def __init__(self, future_cutoff, past_cutoff):
941 self.future_cutoff = future_cutoff
942 self.past_cutoff = past_cutoff
945 self.future_files = {}
946 self.ancient_files = {}
948 def callback(self, Kind,Name,Link,Mode,UID,GID,Size,MTime,Major,Minor):
949 if MTime > self.future_cutoff:
950 self.future_files[Name] = MTime
951 if MTime < self.past_cutoff:
952 self.ancient_files[Name] = MTime
955 future_cutoff = time.time() + int(Cnf["Dinstall::FutureTimeTravelGrace"])
956 past_cutoff = time.mktime(time.strptime(Cnf["Dinstall::PastCutoffYear"],"%Y"))
957 tar = Tar(future_cutoff, past_cutoff)
958 for filename in files.keys():
959 if files[filename]["type"] == "deb":
962 deb_file = utils.open_file(filename)
963 apt_inst.debExtract(deb_file,tar.callback,"control.tar.gz")
966 apt_inst.debExtract(deb_file,tar.callback,"data.tar.gz")
967 except SystemError, e:
968 # If we can't find a data.tar.gz, look for data.tar.bz2 instead.
969 if not re.search(r"Cannot f[ui]nd chunk data.tar.gz$", str(e)):
972 apt_inst.debExtract(deb_file,tar.callback,"data.tar.bz2")
975 future_files = tar.future_files.keys()
977 num_future_files = len(future_files)
978 future_file = future_files[0]
979 future_date = tar.future_files[future_file]
980 reject("%s: has %s file(s) with a time stamp too far into the future (e.g. %s [%s])."
981 % (filename, num_future_files, future_file,
982 time.ctime(future_date)))
984 ancient_files = tar.ancient_files.keys()
986 num_ancient_files = len(ancient_files)
987 ancient_file = ancient_files[0]
988 ancient_date = tar.ancient_files[ancient_file]
989 reject("%s: has %s file(s) with a time stamp too ancient (e.g. %s [%s])."
990 % (filename, num_ancient_files, ancient_file,
991 time.ctime(ancient_date)))
993 reject("%s: deb contents timestamp check failed [%s: %s]" % (filename, sys.exc_type, sys.exc_value))
995 ################################################################################
997 def lookup_uid_from_fingerprint(fpr):
998 q = Upload.projectB.query("SELECT u.uid, u.name, k.debian_maintainer FROM fingerprint f JOIN keyrings k ON (f.keyring=k.id), uid u WHERE f.uid = u.id AND f.fingerprint = '%s'" % (fpr))
1001 return (None, None, None)
1005 def check_signed_by_key():
1006 """Ensure the .changes is signed by an authorized uploader."""
1008 (uid, uid_name, is_dm) = lookup_uid_from_fingerprint(changes["fingerprint"])
1009 if uid_name == None:
1012 # match claimed name with actual name:
1014 uid, uid_email = changes["fingerprint"], uid
1015 may_nmu, may_sponsor = 1, 1
1016 # XXX by default new dds don't have a fingerprint/uid in the db atm,
1017 # and can't get one in there if we don't allow nmu/sponsorship
1020 may_nmu, may_sponsor = 0, 0
1022 uid_email = "%s@debian.org" % (uid)
1023 may_nmu, may_sponsor = 1, 1
1025 if uid_email in [changes["maintaineremail"], changes["changedbyemail"]]:
1027 elif uid_name in [changes["maintainername"], changes["changedbyname"]]:
1029 if uid_name == "": sponsored = 1
1032 if ("source" in changes["architecture"] and
1033 uid_email and utils.is_email_alias(uid_email)):
1034 sponsor_addresses = utils.gpg_get_key_addresses(changes["fingerprint"])
1035 if (changes["maintaineremail"] not in sponsor_addresses and
1036 changes["changedbyemail"] not in sponsor_addresses):
1037 changes["sponsoremail"] = uid_email
1039 if sponsored and not may_sponsor:
1040 reject("%s is not authorised to sponsor uploads" % (uid))
1042 if not sponsored and not may_nmu:
1044 q = Upload.projectB.query("SELECT s.id, s.version FROM source s JOIN src_associations sa ON (s.id = sa.source) WHERE s.source = '%s' AND s.dm_upload_allowed = 'yes'" % (changes["source"]))
1046 highest_sid, highest_version = None, None
1048 should_reject = True
1049 for si in q.getresult():
1050 if highest_version == None or apt_pkg.VersionCompare(si[1], highest_version) == 1:
1052 highest_version = si[1]
1054 if highest_sid == None:
1055 reject("Source package %s does not have 'DM-Upload-Allowed: yes' in its most recent version" % changes["source"])
1057 q = Upload.projectB.query("SELECT m.name FROM maintainer m WHERE m.id IN (SELECT su.maintainer FROM src_uploaders su JOIN source s ON (s.id = su.source) WHERE su.source = %s)" % (highest_sid))
1058 for m in q.getresult():
1059 (rfc822, rfc2047, name, email) = utils.fix_maintainer(m[0])
1060 if email == uid_email or name == uid_name:
1064 if should_reject == True:
1065 reject("%s is not in Maintainer or Uploaders of source package %s" % (uid, changes["source"]))
1067 for b in changes["binary"].keys():
1068 for suite in changes["distribution"].keys():
1069 suite_id = database.get_suite_id(suite)
1070 q = Upload.projectB.query("SELECT DISTINCT s.source FROM source s JOIN binaries b ON (s.id = b.source) JOIN bin_associations ba On (b.id = ba.bin) WHERE b.package = '%s' AND ba.suite = %s" % (b, suite_id))
1071 for s in q.getresult():
1072 if s[0] != changes["source"]:
1073 reject("%s may not hijack %s from source package %s in suite %s" % (uid, b, s, suite))
1075 for f in files.keys():
1076 if files[f].has_key("byhand"):
1077 reject("%s may not upload BYHAND file %s" % (uid, f))
1078 if files[f].has_key("new"):
1079 reject("%s may not upload NEW file %s" % (uid, f))
1082 ################################################################################
1083 ################################################################################
1085 # If any file of an upload has a recent mtime then chances are good
1086 # the file is still being uploaded.
1088 def upload_too_new():
1090 # Move back to the original directory to get accurate time stamps
1092 os.chdir(pkg.directory)
1093 file_list = pkg.files.keys()
1094 file_list.extend(pkg.dsc_files.keys())
1095 file_list.append(pkg.changes_file)
1098 last_modified = time.time()-os.path.getmtime(f)
1099 if last_modified < int(Cnf["Dinstall::SkipTime"]):
1107 ################################################################################
1110 # changes["distribution"] may not exist in corner cases
1111 # (e.g. unreadable changes files)
1112 if not changes.has_key("distribution") or not isinstance(changes["distribution"], DictType):
1113 changes["distribution"] = {}
1115 (summary, short_summary) = Upload.build_summaries()
1117 # q-unapproved hax0ring
1119 "New": { "is": is_new, "process": acknowledge_new },
1120 "Autobyhand" : { "is" : is_autobyhand, "process": do_autobyhand },
1121 "Byhand" : { "is": is_byhand, "process": do_byhand },
1122 "OldStableUpdate" : { "is": is_oldstableupdate,
1123 "process": do_oldstableupdate },
1124 "StableUpdate" : { "is": is_stableupdate, "process": do_stableupdate },
1125 "Unembargo" : { "is": is_unembargo, "process": queue_unembargo },
1126 "Embargo" : { "is": is_embargo, "process": queue_embargo },
1128 queues = [ "New", "Autobyhand", "Byhand" ]
1129 if Cnf.FindB("Dinstall::SecurityQueueHandling"):
1130 queues += [ "Unembargo", "Embargo" ]
1132 queues += [ "OldStableUpdate", "StableUpdate" ]
1134 (prompt, answer) = ("", "XXX")
1135 if Options["No-Action"] or Options["Automatic"]:
1140 if reject_message.find("Rejected") != -1:
1141 if upload_too_new():
1142 print "SKIP (too new)\n" + reject_message,
1143 prompt = "[S]kip, Quit ?"
1145 print "REJECT\n" + reject_message,
1146 prompt = "[R]eject, Skip, Quit ?"
1147 if Options["Automatic"]:
1152 if queue_info[q]["is"]():
1156 print "%s for %s\n%s%s" % (
1157 qu.upper(), ", ".join(changes["distribution"].keys()),
1158 reject_message, summary),
1159 queuekey = qu[0].upper()
1160 if queuekey in "RQSA":
1162 prompt = "[D]ivert, Skip, Quit ?"
1164 prompt = "[%s]%s, Skip, Quit ?" % (queuekey, qu[1:].lower())
1165 if Options["Automatic"]:
1168 print "ACCEPT\n" + reject_message + summary,
1169 prompt = "[A]ccept, Skip, Quit ?"
1170 if Options["Automatic"]:
1173 while prompt.find(answer) == -1:
1174 answer = utils.our_raw_input(prompt)
1175 m = re_default_answer.match(prompt)
1178 answer = answer[:1].upper()
1181 os.chdir (pkg.directory)
1182 Upload.do_reject(0, reject_message)
1184 accept(summary, short_summary)
1185 remove_from_unchecked()
1186 elif answer == queuekey:
1187 queue_info[qu]["process"](summary, short_summary)
1188 remove_from_unchecked()
1192 def remove_from_unchecked():
1193 os.chdir (pkg.directory)
1194 for f in files.keys():
1196 os.unlink(pkg.changes_file)
1198 ################################################################################
1200 def accept (summary, short_summary):
1201 Upload.accept(summary, short_summary)
1202 Upload.check_override()
1204 ################################################################################
1206 def move_to_dir (dest, perms=0660, changesperms=0664):
1207 utils.move (pkg.changes_file, dest, perms=changesperms)
1208 file_keys = files.keys()
1210 utils.move (f, dest, perms=perms)
1212 ################################################################################
1214 def is_unembargo ():
1215 q = Upload.projectB.query(
1216 "SELECT package FROM disembargo WHERE package = '%s' AND version = '%s'" %
1217 (changes["source"], changes["version"]))
1222 oldcwd = os.getcwd()
1223 os.chdir(Cnf["Dir::Queue::Disembargo"])
1224 disdir = os.getcwd()
1227 if pkg.directory == disdir:
1228 if changes["architecture"].has_key("source"):
1229 if Options["No-Action"]: return 1
1231 Upload.projectB.query(
1232 "INSERT INTO disembargo (package, version) VALUES ('%s', '%s')" %
1233 (changes["source"], changes["version"]))
1238 def queue_unembargo (summary, short_summary):
1239 print "Moving to UNEMBARGOED holding area."
1240 Logger.log(["Moving to unembargoed", pkg.changes_file])
1242 Upload.dump_vars(Cnf["Dir::Queue::Unembargoed"])
1243 move_to_dir(Cnf["Dir::Queue::Unembargoed"])
1244 Upload.queue_build("unembargoed", Cnf["Dir::Queue::Unembargoed"])
1246 # Check for override disparities
1247 Upload.Subst["__SUMMARY__"] = summary
1248 Upload.check_override()
1250 # Send accept mail, announce to lists, close bugs and check for
1251 # override disparities
1252 if not Cnf["Dinstall::Options::No-Mail"]:
1253 Upload.Subst["__SUITE__"] = ""
1254 mail_message = utils.TemplateSubst(Upload.Subst,Cnf["Dir::Templates"]+"/process-unchecked.accepted")
1255 utils.send_mail(mail_message)
1256 Upload.announce(short_summary, 1)
1258 ################################################################################
1261 # if embargoed queues are enabled always embargo
1264 def queue_embargo (summary, short_summary):
1265 print "Moving to EMBARGOED holding area."
1266 Logger.log(["Moving to embargoed", pkg.changes_file])
1268 Upload.dump_vars(Cnf["Dir::Queue::Embargoed"])
1269 move_to_dir(Cnf["Dir::Queue::Embargoed"])
1270 Upload.queue_build("embargoed", Cnf["Dir::Queue::Embargoed"])
1272 # Check for override disparities
1273 Upload.Subst["__SUMMARY__"] = summary
1274 Upload.check_override()
1276 # Send accept mail, announce to lists, close bugs and check for
1277 # override disparities
1278 if not Cnf["Dinstall::Options::No-Mail"]:
1279 Upload.Subst["__SUITE__"] = ""
1280 mail_message = utils.TemplateSubst(Upload.Subst,Cnf["Dir::Templates"]+"/process-unchecked.accepted")
1281 utils.send_mail(mail_message)
1282 Upload.announce(short_summary, 1)
1284 ################################################################################
1286 def is_stableupdate ():
1287 if not changes["distribution"].has_key("proposed-updates"):
1290 if not changes["architecture"].has_key("source"):
1291 pusuite = database.get_suite_id("proposed-updates")
1292 q = Upload.projectB.query(
1293 "SELECT S.source FROM source s JOIN src_associations sa ON (s.id = sa.source) WHERE s.source = '%s' AND s.version = '%s' AND sa.suite = %d" %
1294 (changes["source"], changes["version"], pusuite))
1297 # source is already in proposed-updates so no need to hold
1302 def do_stableupdate (summary, short_summary):
1303 print "Moving to PROPOSED-UPDATES holding area."
1304 Logger.log(["Moving to proposed-updates", pkg.changes_file])
1306 Upload.dump_vars(Cnf["Dir::Queue::ProposedUpdates"])
1307 move_to_dir(Cnf["Dir::Queue::ProposedUpdates"], perms=0664)
1309 # Check for override disparities
1310 Upload.Subst["__SUMMARY__"] = summary
1311 Upload.check_override()
1313 ################################################################################
1315 def is_oldstableupdate ():
1316 if not changes["distribution"].has_key("oldstable-proposed-updates"):
1319 if not changes["architecture"].has_key("source"):
1320 pusuite = database.get_suite_id("oldstable-proposed-updates")
1321 q = Upload.projectB.query(
1322 "SELECT S.source FROM source s JOIN src_associations sa ON (s.id = sa.source) WHERE s.source = '%s' AND s.version = '%s' AND sa.suite = %d" %
1323 (changes["source"], changes["version"], pusuite))
1326 # source is already in oldstable-proposed-updates so no need to hold
1331 def do_oldstableupdate (summary, short_summary):
1332 print "Moving to OLDSTABLE-PROPOSED-UPDATES holding area."
1333 Logger.log(["Moving to oldstable-proposed-updates", pkg.changes_file])
1335 Upload.dump_vars(Cnf["Dir::Queue::OldProposedUpdates"])
1336 move_to_dir(Cnf["Dir::Queue::OldProposedUpdates"], perms=0664)
1338 # Check for override disparities
1339 Upload.Subst["__SUMMARY__"] = summary
1340 Upload.check_override()
1342 ################################################################################
1344 def is_autobyhand ():
1347 for f in files.keys():
1348 if files[f].has_key("byhand"):
1351 # filename is of form "PKG_VER_ARCH.EXT" where PKG, VER and ARCH
1352 # don't contain underscores, and ARCH doesn't contain dots.
1353 # further VER matches the .changes Version:, and ARCH should be in
1354 # the .changes Architecture: list.
1355 if f.count("_") < 2:
1359 (pckg, ver, archext) = f.split("_", 2)
1360 if archext.count(".") < 1 or changes["version"] != ver:
1364 ABH = Cnf.SubTree("AutomaticByHandPackages")
1365 if not ABH.has_key(pckg) or \
1366 ABH["%s::Source" % (pckg)] != changes["source"]:
1367 print "not match %s %s" % (pckg, changes["source"])
1371 (arch, ext) = archext.split(".", 1)
1372 if arch not in changes["architecture"]:
1376 files[f]["byhand-arch"] = arch
1377 files[f]["byhand-script"] = ABH["%s::Script" % (pckg)]
1379 return any_auto and all_auto
1381 def do_autobyhand (summary, short_summary):
1382 print "Attempting AUTOBYHAND."
1384 for f in files.keys():
1386 if not files[f].has_key("byhand"):
1388 if not files[f].has_key("byhand-script"):
1392 os.system("ls -l %s" % byhandfile)
1393 result = os.system("%s %s %s %s %s" % (
1394 files[f]["byhand-script"], byhandfile,
1395 changes["version"], files[f]["byhand-arch"],
1396 os.path.abspath(pkg.changes_file)))
1398 os.unlink(byhandfile)
1401 print "Error processing %s, left as byhand." % (f)
1405 do_byhand(summary, short_summary)
1407 accept(summary, short_summary)
1409 ################################################################################
1412 for f in files.keys():
1413 if files[f].has_key("byhand"):
1417 def do_byhand (summary, short_summary):
1418 print "Moving to BYHAND holding area."
1419 Logger.log(["Moving to byhand", pkg.changes_file])
1421 Upload.dump_vars(Cnf["Dir::Queue::Byhand"])
1422 move_to_dir(Cnf["Dir::Queue::Byhand"])
1424 # Check for override disparities
1425 Upload.Subst["__SUMMARY__"] = summary
1426 Upload.check_override()
1428 ################################################################################
1431 for f in files.keys():
1432 if files[f].has_key("new"):
1436 def acknowledge_new (summary, short_summary):
1437 Subst = Upload.Subst
1439 print "Moving to NEW holding area."
1440 Logger.log(["Moving to new", pkg.changes_file])
1442 Upload.dump_vars(Cnf["Dir::Queue::New"])
1443 move_to_dir(Cnf["Dir::Queue::New"])
1445 if not Options["No-Mail"]:
1446 print "Sending new ack."
1447 Subst["__SUMMARY__"] = summary
1448 new_ack_message = utils.TemplateSubst(Subst,Cnf["Dir::Templates"]+"/process-unchecked.new")
1449 utils.send_mail(new_ack_message)
1451 ################################################################################
1453 # reprocess is necessary for the case of foo_1.2-1 and foo_1.2-2 in
1454 # Incoming. -1 will reference the .orig.tar.gz, but -2 will not.
1455 # Upload.check_dsc_against_db() can find the .orig.tar.gz but it will
1456 # not have processed it during it's checks of -2. If -1 has been
1457 # deleted or otherwise not checked by 'dak process-unchecked', the
1458 # .orig.tar.gz will not have been checked at all. To get round this,
1459 # we force the .orig.tar.gz into the .changes structure and reprocess
1460 # the .changes file.
1462 def process_it (changes_file):
1463 global reprocess, reject_message
1465 # Reset some globals
1468 # Some defaults in case we can't fully process the .changes file
1469 changes["maintainer2047"] = Cnf["Dinstall::MyEmailAddress"]
1470 changes["changedby2047"] = Cnf["Dinstall::MyEmailAddress"]
1473 # Absolutize the filename to avoid the requirement of being in the
1474 # same directory as the .changes file.
1475 pkg.changes_file = os.path.abspath(changes_file)
1477 # Remember where we are so we can come back after cd-ing into the
1478 # holding directory.
1479 pkg.directory = os.getcwd()
1482 # If this is the Real Thing(tm), copy things into a private
1483 # holding directory first to avoid replacable file races.
1484 if not Options["No-Action"]:
1485 os.chdir(Cnf["Dir::Queue::Holding"])
1486 copy_to_holding(pkg.changes_file)
1487 # Relativize the filename so we use the copy in holding
1488 # rather than the original...
1489 pkg.changes_file = os.path.basename(pkg.changes_file)
1490 changes["fingerprint"] = utils.check_signature(pkg.changes_file, reject)
1491 if changes["fingerprint"]:
1492 valid_changes_p = check_changes()
1497 check_distributions()
1499 valid_dsc_p = check_dsc()
1505 check_signed_by_key()
1506 Upload.update_subst(reject_message)
1512 traceback.print_exc(file=sys.stderr)
1515 # Restore previous WD
1516 os.chdir(pkg.directory)
1518 ###############################################################################
1521 global Cnf, Options, Logger
1523 changes_files = init()
1525 # -n/--dry-run invalidates some other options which would involve things happening
1526 if Options["No-Action"]:
1527 Options["Automatic"] = ""
1529 # Ensure all the arguments we were given are .changes files
1530 for f in changes_files:
1531 if not f.endswith(".changes"):
1532 utils.warn("Ignoring '%s' because it's not a .changes file." % (f))
1533 changes_files.remove(f)
1535 if changes_files == []:
1536 utils.fubar("Need at least one .changes file as an argument.")
1538 # Check that we aren't going to clash with the daily cron job
1540 if not Options["No-Action"] and os.path.exists("%s/daily.lock" % (Cnf["Dir::Lock"])) and not Options["No-Lock"]:
1541 utils.fubar("Archive maintenance in progress. Try again later.")
1543 # Obtain lock if not in no-action mode and initialize the log
1545 if not Options["No-Action"]:
1546 lock_fd = os.open(Cnf["Dinstall::LockFile"], os.O_RDWR | os.O_CREAT)
1548 fcntl.lockf(lock_fd, fcntl.LOCK_EX | fcntl.LOCK_NB)
1550 if errno.errorcode[e.errno] == 'EACCES' or errno.errorcode[e.errno] == 'EAGAIN':
1551 utils.fubar("Couldn't obtain lock; assuming another 'dak process-unchecked' is already running.")
1554 Logger = Upload.Logger = logging.Logger(Cnf, "process-unchecked")
1556 # debian-{devel-,}-changes@lists.debian.org toggles writes access based on this header
1557 bcc = "X-DAK: dak process-unchecked\nX-Katie: $Revision: 1.65 $"
1558 if Cnf.has_key("Dinstall::Bcc"):
1559 Upload.Subst["__BCC__"] = bcc + "\nBcc: %s" % (Cnf["Dinstall::Bcc"])
1561 Upload.Subst["__BCC__"] = bcc
1564 # Sort the .changes files so that we process sourceful ones first
1565 changes_files.sort(utils.changes_compare)
1567 # Process the changes files
1568 for changes_file in changes_files:
1569 print "\n" + changes_file
1571 process_it (changes_file)
1573 if not Options["No-Action"]:
1576 accept_count = Upload.accept_count
1577 accept_bytes = Upload.accept_bytes
1580 if accept_count > 1:
1582 print "Accepted %d package %s, %s." % (accept_count, sets, utils.size_type(int(accept_bytes)))
1583 Logger.log(["total",accept_count,accept_bytes])
1585 if not Options["No-Action"]:
1588 ################################################################################
1590 if __name__ == '__main__':