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, re_default_answer
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 database.get_suite_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):
327 Sanity check the ar of a .deb, i.e. that there is:
331 3. data.tar.gz or data.tar.bz2
333 in that order, and nothing else.
335 cmd = "ar t %s" % (filename)
336 (result, output) = commands.getstatusoutput(cmd)
338 reject("%s: 'ar t' invocation failed." % (filename))
339 reject(utils.prefix_multi_line_string(output, " [ar output:] "), "")
340 chunks = output.split('\n')
342 reject("%s: found %d chunks, expected 3." % (filename, len(chunks)))
343 if chunks[0] != "debian-binary":
344 reject("%s: first chunk is '%s', expected 'debian-binary'." % (filename, chunks[0]))
345 if chunks[1] != "control.tar.gz":
346 reject("%s: second chunk is '%s', expected 'control.tar.gz'." % (filename, chunks[1]))
347 if chunks[2] not in [ "data.tar.bz2", "data.tar.gz" ]:
348 reject("%s: third chunk is '%s', expected 'data.tar.gz' or 'data.tar.bz2'." % (filename, chunks[2]))
350 ################################################################################
355 archive = utils.where_am_i()
356 file_keys = files.keys()
358 # if reprocess is 2 we've already done this and we're checking
359 # things again for the new .orig.tar.gz.
360 # [Yes, I'm fully aware of how disgusting this is]
361 if not Options["No-Action"] and reprocess < 2:
363 os.chdir(pkg.directory)
368 # Check there isn't already a .changes or .dak file of the same name in
369 # the proposed-updates "CopyChanges" or "CopyDotDak" storage directories.
370 # [NB: this check must be done post-suite mapping]
371 base_filename = os.path.basename(pkg.changes_file)
372 dot_dak_filename = base_filename[:-8]+".dak"
373 for suite in changes["distribution"].keys():
374 copychanges = "Suite::%s::CopyChanges" % (suite)
375 if Cnf.has_key(copychanges) and \
376 os.path.exists(Cnf[copychanges]+"/"+base_filename):
377 reject("%s: a file with this name already exists in %s" \
378 % (base_filename, Cnf[copychanges]))
380 copy_dot_dak = "Suite::%s::CopyDotDak" % (suite)
381 if Cnf.has_key(copy_dot_dak) and \
382 os.path.exists(Cnf[copy_dot_dak]+"/"+dot_dak_filename):
383 reject("%s: a file with this name already exists in %s" \
384 % (dot_dak_filename, Cnf[copy_dot_dak]))
391 # Ensure the file does not already exist in one of the accepted directories
392 for d in [ "Accepted", "Byhand", "New", "ProposedUpdates", "OldProposedUpdates", "Embargoed", "Unembargoed" ]:
393 if not Cnf.has_key("Dir::Queue::%s" % (d)): continue
394 if os.path.exists(Cnf["Dir::Queue::%s" % (d) ] + '/' + f):
395 reject("%s file already exists in the %s directory." % (f, d))
396 if not re_taint_free.match(f):
397 reject("!!WARNING!! tainted filename: '%s'." % (f))
398 # Check the file is readable
399 if os.access(f, os.R_OK) == 0:
400 # When running in -n, copy_to_holding() won't have
401 # generated the reject_message, so we need to.
402 if Options["No-Action"]:
403 if os.path.exists(f):
404 reject("Can't read `%s'. [permission denied]" % (f))
406 reject("Can't read `%s'. [file not found]" % (f))
407 files[f]["type"] = "unreadable"
409 # If it's byhand skip remaining checks
410 if files[f]["section"] == "byhand" or files[f]["section"][:4] == "raw-":
411 files[f]["byhand"] = 1
412 files[f]["type"] = "byhand"
413 # Checks for a binary package...
414 elif re_isadeb.match(f):
416 files[f]["type"] = "deb"
418 # Extract package control information
419 deb_file = utils.open_file(f)
421 control = apt_pkg.ParseSection(apt_inst.debExtractControl(deb_file))
423 reject("%s: debExtractControl() raised %s." % (f, sys.exc_type))
425 # Can't continue, none of the checks on control would work.
429 # Check for mandatory fields
430 for field in [ "Package", "Architecture", "Version" ]:
431 if control.Find(field) == None:
432 reject("%s: No %s field in control." % (f, field))
436 # Ensure the package name matches the one give in the .changes
437 if not changes["binary"].has_key(control.Find("Package", "")):
438 reject("%s: control file lists name as `%s', which isn't in changes file." % (f, control.Find("Package", "")))
440 # Validate the package field
441 package = control.Find("Package")
442 if not re_valid_pkg_name.match(package):
443 reject("%s: invalid package name '%s'." % (f, package))
445 # Validate the version field
446 version = control.Find("Version")
447 if not re_valid_version.match(version):
448 reject("%s: invalid version number '%s'." % (f, version))
450 # Ensure the architecture of the .deb is one we know about.
451 default_suite = Cnf.get("Dinstall::DefaultSuite", "Unstable")
452 architecture = control.Find("Architecture")
453 upload_suite = changes["distribution"].keys()[0]
454 if architecture not in database.get_suite_architectures(default_suite) and architecture not in database.get_suite_architectures(upload_suite):
455 reject("Unknown architecture '%s'." % (architecture))
457 # Ensure the architecture of the .deb is one of the ones
458 # listed in the .changes.
459 if not changes["architecture"].has_key(architecture):
460 reject("%s: control file lists arch as `%s', which isn't in changes file." % (f, architecture))
462 # Sanity-check the Depends field
463 depends = control.Find("Depends")
465 reject("%s: Depends field is empty." % (f))
467 # Sanity-check the Provides field
468 provides = control.Find("Provides")
470 provide = re_spacestrip.sub('', provides)
472 reject("%s: Provides field is empty." % (f))
473 prov_list = provide.split(",")
474 for prov in prov_list:
475 if not re_valid_pkg_name.match(prov):
476 reject("%s: Invalid Provides field content %s." % (f, prov))
479 # Check the section & priority match those given in the .changes (non-fatal)
480 if control.Find("Section") and files[f]["section"] != "" and files[f]["section"] != control.Find("Section"):
481 reject("%s control file lists section as `%s', but changes file has `%s'." % (f, control.Find("Section", ""), files[f]["section"]), "Warning: ")
482 if control.Find("Priority") and files[f]["priority"] != "" and files[f]["priority"] != control.Find("Priority"):
483 reject("%s control file lists priority as `%s', but changes file has `%s'." % (f, control.Find("Priority", ""), files[f]["priority"]),"Warning: ")
485 files[f]["package"] = package
486 files[f]["architecture"] = architecture
487 files[f]["version"] = version
488 files[f]["maintainer"] = control.Find("Maintainer", "")
489 if f.endswith(".udeb"):
490 files[f]["dbtype"] = "udeb"
491 elif f.endswith(".deb"):
492 files[f]["dbtype"] = "deb"
494 reject("%s is neither a .deb or a .udeb." % (f))
495 files[f]["source"] = control.Find("Source", files[f]["package"])
496 # Get the source version
497 source = files[f]["source"]
499 if source.find("(") != -1:
500 m = re_extract_src_version.match(source)
502 source_version = m.group(2)
503 if not source_version:
504 source_version = files[f]["version"]
505 files[f]["source package"] = source
506 files[f]["source version"] = source_version
508 # Ensure the filename matches the contents of the .deb
509 m = re_isadeb.match(f)
511 file_package = m.group(1)
512 if files[f]["package"] != file_package:
513 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"]))
514 epochless_version = re_no_epoch.sub('', control.Find("Version"))
516 file_version = m.group(2)
517 if epochless_version != file_version:
518 reject("%s: version part of filename (%s) does not match package version in the %s (%s)." % (f, file_version, files[f]["dbtype"], epochless_version))
520 file_architecture = m.group(3)
521 if files[f]["architecture"] != file_architecture:
522 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"]))
524 # Check for existent source
525 source_version = files[f]["source version"]
526 source_package = files[f]["source package"]
527 if changes["architecture"].has_key("source"):
528 if source_version != changes["version"]:
529 reject("source version (%s) for %s doesn't match changes version %s." % (source_version, f, changes["version"]))
531 # Check in the SQL database
532 if not Upload.source_exists(source_package, source_version, changes["distribution"].keys()):
533 # Check in one of the other directories
534 source_epochless_version = re_no_epoch.sub('', source_version)
535 dsc_filename = "%s_%s.dsc" % (source_package, source_epochless_version)
536 if os.path.exists(Cnf["Dir::Queue::Byhand"] + '/' + dsc_filename):
537 files[f]["byhand"] = 1
538 elif os.path.exists(Cnf["Dir::Queue::New"] + '/' + dsc_filename):
542 for myq in ["Accepted", "Embargoed", "Unembargoed", "ProposedUpdates", "OldProposedUpdates"]:
543 if Cnf.has_key("Dir::Queue::%s" % (myq)):
544 if os.path.exists(Cnf["Dir::Queue::"+myq] + '/' + dsc_filename):
547 if not dsc_file_exists:
548 reject("no source found for %s %s (%s)." % (source_package, source_version, f))
549 # Check the version and for file overwrites
550 reject(Upload.check_binary_against_db(f),"")
554 # Checks for a source package...
556 m = re_issource.match(f)
559 files[f]["package"] = m.group(1)
560 files[f]["version"] = m.group(2)
561 files[f]["type"] = m.group(3)
563 # Ensure the source package name matches the Source filed in the .changes
564 if changes["source"] != files[f]["package"]:
565 reject("%s: changes file doesn't say %s for Source" % (f, files[f]["package"]))
567 # Ensure the source version matches the version in the .changes file
568 if files[f]["type"] == "orig.tar.gz":
569 changes_version = changes["chopversion2"]
571 changes_version = changes["chopversion"]
572 if changes_version != files[f]["version"]:
573 reject("%s: should be %s according to changes file." % (f, changes_version))
575 # Ensure the .changes lists source in the Architecture field
576 if not changes["architecture"].has_key("source"):
577 reject("%s: changes file doesn't list `source' in Architecture field." % (f))
579 # Check the signature of a .dsc file
580 if files[f]["type"] == "dsc":
581 dsc["fingerprint"] = utils.check_signature(f, reject)
583 files[f]["architecture"] = "source"
585 # Not a binary or source package? Assume byhand...
587 files[f]["byhand"] = 1
588 files[f]["type"] = "byhand"
590 # Per-suite file checks
591 files[f]["oldfiles"] = {}
592 for suite in changes["distribution"].keys():
594 if files[f].has_key("byhand"):
597 # Handle component mappings
598 for m in Cnf.ValueList("ComponentMappings"):
599 (source, dest) = m.split()
600 if files[f]["component"] == source:
601 files[f]["original component"] = source
602 files[f]["component"] = dest
604 # Ensure the component is valid for the target suite
605 if Cnf.has_key("Suite:%s::Components" % (suite)) and \
606 files[f]["component"] not in Cnf.ValueList("Suite::%s::Components" % (suite)):
607 reject("unknown component `%s' for suite `%s'." % (files[f]["component"], suite))
610 # Validate the component
611 component = files[f]["component"]
612 component_id = database.get_component_id(component)
613 if component_id == -1:
614 reject("file '%s' has unknown component '%s'." % (f, component))
617 # See if the package is NEW
618 if not Upload.in_override_p(files[f]["package"], files[f]["component"], suite, files[f].get("dbtype",""), f):
621 # Validate the priority
622 if files[f]["priority"].find('/') != -1:
623 reject("file '%s' has invalid priority '%s' [contains '/']." % (f, files[f]["priority"]))
625 # Determine the location
626 location = Cnf["Dir::Pool"]
627 location_id = database.get_location_id (location, component, archive)
628 if location_id == -1:
629 reject("[INTERNAL ERROR] couldn't determine location (Component: %s, Archive: %s)" % (component, archive))
630 files[f]["location id"] = location_id
632 # Check the md5sum & size against existing files (if any)
633 files[f]["pool name"] = utils.poolify (changes["source"], files[f]["component"])
634 files_id = database.get_files_id(files[f]["pool name"] + f, files[f]["size"], files[f]["md5sum"], files[f]["location id"])
636 reject("INTERNAL ERROR, get_files_id() returned multiple matches for %s." % (f))
638 reject("md5sum and/or size mismatch on existing copy of %s." % (f))
639 files[f]["files id"] = files_id
641 # Check for packages that have moved from one component to another
642 q = Upload.projectB.query("""
643 SELECT c.name FROM binaries b, bin_associations ba, suite s, location l,
644 component c, architecture a, files f
645 WHERE b.package = '%s' AND s.suite_name = '%s'
646 AND (a.arch_string = '%s' OR a.arch_string = 'all')
647 AND ba.bin = b.id AND ba.suite = s.id AND b.architecture = a.id
648 AND f.location = l.id AND l.component = c.id AND b.file = f.id"""
649 % (files[f]["package"], suite,
650 files[f]["architecture"]))
653 files[f]["othercomponents"] = ql[0][0]
655 # If the .changes file says it has source, it must have source.
656 if changes["architecture"].has_key("source"):
658 reject("no source found and Architecture line in changes mention source.")
660 if not has_binaries and Cnf.FindB("Dinstall::Reject::NoSourceOnly"):
661 reject("source only uploads are not supported.")
663 ###############################################################################
668 # Ensure there is source to check
669 if not changes["architecture"].has_key("source"):
674 for f in files.keys():
675 if files[f]["type"] == "dsc":
677 reject("can not process a .changes file with multiple .dsc's.")
682 # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
684 reject("source uploads must contain a dsc file")
687 # Parse the .dsc file
689 dsc.update(utils.parse_changes(dsc_filename, signing_rules=1))
690 except CantOpenError:
691 # if not -n copy_to_holding() will have done this for us...
692 if Options["No-Action"]:
693 reject("%s: can't read file." % (dsc_filename))
694 except ParseChangesError, line:
695 reject("%s: parse error, can't grok: %s." % (dsc_filename, line))
696 except InvalidDscError, line:
697 reject("%s: syntax error on line %s." % (dsc_filename, line))
698 # Build up the file list of files mentioned by the .dsc
700 dsc_files.update(utils.build_file_list(dsc, is_a_dsc=1))
701 except NoFilesFieldError:
702 reject("%s: no Files: field." % (dsc_filename))
704 except UnknownFormatError, format:
705 reject("%s: unknown format '%s'." % (dsc_filename, format))
707 except ParseChangesError, line:
708 reject("%s: parse error, can't grok: %s." % (dsc_filename, line))
711 # Enforce mandatory fields
712 for i in ("format", "source", "version", "binary", "maintainer", "architecture", "files"):
713 if not dsc.has_key(i):
714 reject("%s: missing mandatory field `%s'." % (dsc_filename, i))
717 # Validate the source and version fields
718 if not re_valid_pkg_name.match(dsc["source"]):
719 reject("%s: invalid source name '%s'." % (dsc_filename, dsc["source"]))
720 if not re_valid_version.match(dsc["version"]):
721 reject("%s: invalid version number '%s'." % (dsc_filename, dsc["version"]))
723 # Bumping the version number of the .dsc breaks extraction by stable's
724 # dpkg-source. So let's not do that...
725 if dsc["format"] != "1.0":
726 reject("%s: incompatible 'Format' version produced by a broken version of dpkg-dev 1.9.1{3,4}." % (dsc_filename))
728 # Validate the Maintainer field
730 utils.fix_maintainer (dsc["maintainer"])
731 except ParseMaintError, msg:
732 reject("%s: Maintainer field ('%s') failed to parse: %s" \
733 % (dsc_filename, dsc["maintainer"], msg))
735 # Validate the build-depends field(s)
736 for field_name in [ "build-depends", "build-depends-indep" ]:
737 field = dsc.get(field_name)
739 # Check for broken dpkg-dev lossage...
740 if field.startswith("ARRAY"):
741 reject("%s: invalid %s field produced by a broken version of dpkg-dev (1.10.11)" % (dsc_filename, field_name.title()))
743 # Have apt try to parse them...
745 apt_pkg.ParseSrcDepends(field)
747 reject("%s: invalid %s field (can not be parsed by apt)." % (dsc_filename, field_name.title()))
750 # Ensure the version number in the .dsc matches the version number in the .changes
751 epochless_dsc_version = re_no_epoch.sub('', dsc["version"])
752 changes_version = files[dsc_filename]["version"]
753 if epochless_dsc_version != files[dsc_filename]["version"]:
754 reject("version ('%s') in .dsc does not match version ('%s') in .changes." % (epochless_dsc_version, changes_version))
756 # Ensure there is a .tar.gz in the .dsc file
758 for f in dsc_files.keys():
759 m = re_issource.match(f)
761 reject("%s: %s in Files field not recognised as source." % (dsc_filename, f))
764 if ftype == "orig.tar.gz" or ftype == "tar.gz":
767 reject("%s: no .tar.gz or .orig.tar.gz in 'Files' field." % (dsc_filename))
769 # Ensure source is newer than existing source in target suites
770 reject(Upload.check_source_against_db(dsc_filename),"")
772 (reject_msg, is_in_incoming) = Upload.check_dsc_against_db(dsc_filename)
773 reject(reject_msg, "")
775 if not Options["No-Action"]:
776 copy_to_holding(is_in_incoming)
777 orig_tar_gz = os.path.basename(is_in_incoming)
778 files[orig_tar_gz] = {}
779 files[orig_tar_gz]["size"] = os.stat(orig_tar_gz)[stat.ST_SIZE]
780 files[orig_tar_gz]["md5sum"] = dsc_files[orig_tar_gz]["md5sum"]
781 files[orig_tar_gz]["sha1sum"] = dsc_files[orig_tar_gz]["sha1sum"]
782 files[orig_tar_gz]["sha256sum"] = dsc_files[orig_tar_gz]["sha256sum"]
783 files[orig_tar_gz]["section"] = files[dsc_filename]["section"]
784 files[orig_tar_gz]["priority"] = files[dsc_filename]["priority"]
785 files[orig_tar_gz]["component"] = files[dsc_filename]["component"]
786 files[orig_tar_gz]["type"] = "orig.tar.gz"
791 ################################################################################
793 def get_changelog_versions(source_dir):
794 """Extracts a the source package and (optionally) grabs the
795 version history out of debian/changelog for the BTS."""
797 # Find the .dsc (again)
799 for f in files.keys():
800 if files[f]["type"] == "dsc":
803 # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
807 # Create a symlink mirror of the source files in our temporary directory
808 for f in files.keys():
809 m = re_issource.match(f)
811 src = os.path.join(source_dir, f)
812 # If a file is missing for whatever reason, give up.
813 if not os.path.exists(src):
816 if ftype == "orig.tar.gz" and pkg.orig_tar_gz:
818 dest = os.path.join(os.getcwd(), f)
819 os.symlink(src, dest)
821 # If the orig.tar.gz is not a part of the upload, create a symlink to the
824 dest = os.path.join(os.getcwd(), os.path.basename(pkg.orig_tar_gz))
825 os.symlink(pkg.orig_tar_gz, dest)
828 cmd = "dpkg-source -sn -x %s" % (dsc_filename)
829 (result, output) = commands.getstatusoutput(cmd)
831 reject("'dpkg-source -x' failed for %s [return code: %s]." % (dsc_filename, result))
832 reject(utils.prefix_multi_line_string(output, " [dpkg-source output:] "), "")
835 if not Cnf.Find("Dir::Queue::BTSVersionTrack"):
838 # Get the upstream version
839 upstr_version = re_no_epoch.sub('', dsc["version"])
840 if re_strip_revision.search(upstr_version):
841 upstr_version = re_strip_revision.sub('', upstr_version)
843 # Ensure the changelog file exists
844 changelog_filename = "%s-%s/debian/changelog" % (dsc["source"], upstr_version)
845 if not os.path.exists(changelog_filename):
846 reject("%s: debian/changelog not found in extracted source." % (dsc_filename))
849 # Parse the changelog
850 dsc["bts changelog"] = ""
851 changelog_file = utils.open_file(changelog_filename)
852 for line in changelog_file.readlines():
853 m = re_changelog_versions.match(line)
855 dsc["bts changelog"] += line
856 changelog_file.close()
858 # Check we found at least one revision in the changelog
859 if not dsc["bts changelog"]:
860 reject("%s: changelog format not recognised (empty version tree)." % (dsc_filename))
862 ########################################
866 # a) there's no source
867 # or b) reprocess is 2 - we will do this check next time when orig.tar.gz is in 'files'
868 # or c) the orig.tar.gz is MIA
869 if not changes["architecture"].has_key("source") or reprocess == 2 \
870 or pkg.orig_tar_gz == -1:
873 # Create a temporary directory to extract the source into
874 if Options["No-Action"]:
875 tmpdir = tempfile.mkdtemp()
877 # We're in queue/holding and can create a random directory.
878 tmpdir = "%s" % (os.getpid())
881 # Move into the temporary directory
885 # Get the changelog version history
886 get_changelog_versions(cwd)
888 # Move back and cleanup the temporary tree
891 shutil.rmtree(tmpdir)
893 if errno.errorcode[e.errno] != 'EACCES':
894 utils.fubar("%s: couldn't remove tmp dir for source tree." % (dsc["source"]))
896 reject("%s: source tree could not be cleanly removed." % (dsc["source"]))
897 # We probably have u-r or u-w directories so chmod everything
899 cmd = "chmod -R u+rwx %s" % (tmpdir)
900 result = os.system(cmd)
902 utils.fubar("'%s' failed with result %s." % (cmd, result))
903 shutil.rmtree(tmpdir)
905 utils.fubar("%s: couldn't remove tmp dir for source tree." % (dsc["source"]))
907 ################################################################################
909 # FIXME: should be a debian specific check called from a hook
911 def check_urgency ():
912 if changes["architecture"].has_key("source"):
913 if not changes.has_key("urgency"):
914 changes["urgency"] = Cnf["Urgency::Default"]
915 changes["urgency"] = changes["urgency"].lower()
916 if changes["urgency"] not in Cnf.ValueList("Urgency::Valid"):
917 reject("%s is not a valid urgency; it will be treated as %s by testing." % (changes["urgency"], Cnf["Urgency::Default"]), "Warning: ")
918 changes["urgency"] = Cnf["Urgency::Default"]
920 ################################################################################
923 utils.check_hash(".changes", files, "md5", apt_pkg.md5sum)
924 utils.check_size(".changes", files)
925 utils.check_hash(".dsc", dsc_files, "md5", apt_pkg.md5sum)
926 utils.check_size(".dsc", dsc_files)
928 # This is stupid API, but it'll have to do for now until
929 # we actually have proper abstraction
930 for m in utils.ensure_hashes(changes, dsc, files, dsc_files):
933 ################################################################################
935 # Sanity check the time stamps of files inside debs.
936 # [Files in the near future cause ugly warnings and extreme time
937 # travel can cause errors on extraction]
939 def check_timestamps():
941 def __init__(self, future_cutoff, past_cutoff):
943 self.future_cutoff = future_cutoff
944 self.past_cutoff = past_cutoff
947 self.future_files = {}
948 self.ancient_files = {}
950 def callback(self, Kind,Name,Link,Mode,UID,GID,Size,MTime,Major,Minor):
951 if MTime > self.future_cutoff:
952 self.future_files[Name] = MTime
953 if MTime < self.past_cutoff:
954 self.ancient_files[Name] = MTime
957 future_cutoff = time.time() + int(Cnf["Dinstall::FutureTimeTravelGrace"])
958 past_cutoff = time.mktime(time.strptime(Cnf["Dinstall::PastCutoffYear"],"%Y"))
959 tar = Tar(future_cutoff, past_cutoff)
960 for filename in files.keys():
961 if files[filename]["type"] == "deb":
964 deb_file = utils.open_file(filename)
965 apt_inst.debExtract(deb_file,tar.callback,"control.tar.gz")
968 apt_inst.debExtract(deb_file,tar.callback,"data.tar.gz")
969 except SystemError, e:
970 # If we can't find a data.tar.gz, look for data.tar.bz2 instead.
971 if not re.search(r"Cannot f[ui]nd chunk data.tar.gz$", str(e)):
974 apt_inst.debExtract(deb_file,tar.callback,"data.tar.bz2")
977 future_files = tar.future_files.keys()
979 num_future_files = len(future_files)
980 future_file = future_files[0]
981 future_date = tar.future_files[future_file]
982 reject("%s: has %s file(s) with a time stamp too far into the future (e.g. %s [%s])."
983 % (filename, num_future_files, future_file,
984 time.ctime(future_date)))
986 ancient_files = tar.ancient_files.keys()
988 num_ancient_files = len(ancient_files)
989 ancient_file = ancient_files[0]
990 ancient_date = tar.ancient_files[ancient_file]
991 reject("%s: has %s file(s) with a time stamp too ancient (e.g. %s [%s])."
992 % (filename, num_ancient_files, ancient_file,
993 time.ctime(ancient_date)))
995 reject("%s: deb contents timestamp check failed [%s: %s]" % (filename, sys.exc_type, sys.exc_value))
997 ################################################################################
999 def lookup_uid_from_fingerprint(fpr):
1000 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))
1003 return (None, None, None)
1007 def check_signed_by_key():
1008 """Ensure the .changes is signed by an authorized uploader."""
1010 (uid, uid_name, is_dm) = lookup_uid_from_fingerprint(changes["fingerprint"])
1011 if uid_name == None:
1014 # match claimed name with actual name:
1016 uid, uid_email = changes["fingerprint"], uid
1017 may_nmu, may_sponsor = 1, 1
1018 # XXX by default new dds don't have a fingerprint/uid in the db atm,
1019 # and can't get one in there if we don't allow nmu/sponsorship
1022 may_nmu, may_sponsor = 0, 0
1024 uid_email = "%s@debian.org" % (uid)
1025 may_nmu, may_sponsor = 1, 1
1027 if uid_email in [changes["maintaineremail"], changes["changedbyemail"]]:
1029 elif uid_name in [changes["maintainername"], changes["changedbyname"]]:
1031 if uid_name == "": sponsored = 1
1034 if ("source" in changes["architecture"] and
1035 uid_email and utils.is_email_alias(uid_email)):
1036 sponsor_addresses = utils.gpg_get_key_addresses(changes["fingerprint"])
1037 if (changes["maintaineremail"] not in sponsor_addresses and
1038 changes["changedbyemail"] not in sponsor_addresses):
1039 changes["sponsoremail"] = uid_email
1041 if sponsored and not may_sponsor:
1042 reject("%s is not authorised to sponsor uploads" % (uid))
1044 if not sponsored and not may_nmu:
1046 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"]))
1048 highest_sid, highest_version = None, None
1050 should_reject = True
1051 for si in q.getresult():
1052 if highest_version == None or apt_pkg.VersionCompare(si[1], highest_version) == 1:
1054 highest_version = si[1]
1056 if highest_sid == None:
1057 reject("Source package %s does not have 'DM-Upload-Allowed: yes' in its most recent version" % changes["source"])
1059 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))
1060 for m in q.getresult():
1061 (rfc822, rfc2047, name, email) = utils.fix_maintainer(m[0])
1062 if email == uid_email or name == uid_name:
1066 if should_reject == True:
1067 reject("%s is not in Maintainer or Uploaders of source package %s" % (uid, changes["source"]))
1069 for b in changes["binary"].keys():
1070 for suite in changes["distribution"].keys():
1071 suite_id = database.get_suite_id(suite)
1072 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))
1073 for s in q.getresult():
1074 if s[0] != changes["source"]:
1075 reject("%s may not hijack %s from source package %s in suite %s" % (uid, b, s, suite))
1077 for f in files.keys():
1078 if files[f].has_key("byhand"):
1079 reject("%s may not upload BYHAND file %s" % (uid, f))
1080 if files[f].has_key("new"):
1081 reject("%s may not upload NEW file %s" % (uid, f))
1084 ################################################################################
1085 ################################################################################
1087 # If any file of an upload has a recent mtime then chances are good
1088 # the file is still being uploaded.
1090 def upload_too_new():
1092 # Move back to the original directory to get accurate time stamps
1094 os.chdir(pkg.directory)
1095 file_list = pkg.files.keys()
1096 file_list.extend(pkg.dsc_files.keys())
1097 file_list.append(pkg.changes_file)
1100 last_modified = time.time()-os.path.getmtime(f)
1101 if last_modified < int(Cnf["Dinstall::SkipTime"]):
1109 ################################################################################
1112 # changes["distribution"] may not exist in corner cases
1113 # (e.g. unreadable changes files)
1114 if not changes.has_key("distribution") or not isinstance(changes["distribution"], DictType):
1115 changes["distribution"] = {}
1117 (summary, short_summary) = Upload.build_summaries()
1119 # q-unapproved hax0ring
1121 "New": { "is": is_new, "process": acknowledge_new },
1122 "Autobyhand" : { "is" : is_autobyhand, "process": do_autobyhand },
1123 "Byhand" : { "is": is_byhand, "process": do_byhand },
1124 "OldStableUpdate" : { "is": is_oldstableupdate,
1125 "process": do_oldstableupdate },
1126 "StableUpdate" : { "is": is_stableupdate, "process": do_stableupdate },
1127 "Unembargo" : { "is": is_unembargo, "process": queue_unembargo },
1128 "Embargo" : { "is": is_embargo, "process": queue_embargo },
1130 queues = [ "New", "Autobyhand", "Byhand" ]
1131 if Cnf.FindB("Dinstall::SecurityQueueHandling"):
1132 queues += [ "Unembargo", "Embargo" ]
1134 queues += [ "OldStableUpdate", "StableUpdate" ]
1136 (prompt, answer) = ("", "XXX")
1137 if Options["No-Action"] or Options["Automatic"]:
1142 if reject_message.find("Rejected") != -1:
1143 if upload_too_new():
1144 print "SKIP (too new)\n" + reject_message,
1145 prompt = "[S]kip, Quit ?"
1147 print "REJECT\n" + reject_message,
1148 prompt = "[R]eject, Skip, Quit ?"
1149 if Options["Automatic"]:
1154 if queue_info[q]["is"]():
1158 print "%s for %s\n%s%s" % (
1159 qu.upper(), ", ".join(changes["distribution"].keys()),
1160 reject_message, summary),
1161 queuekey = qu[0].upper()
1162 if queuekey in "RQSA":
1164 prompt = "[D]ivert, Skip, Quit ?"
1166 prompt = "[%s]%s, Skip, Quit ?" % (queuekey, qu[1:].lower())
1167 if Options["Automatic"]:
1170 print "ACCEPT\n" + reject_message + summary,
1171 prompt = "[A]ccept, Skip, Quit ?"
1172 if Options["Automatic"]:
1175 while prompt.find(answer) == -1:
1176 answer = utils.our_raw_input(prompt)
1177 m = re_default_answer.match(prompt)
1180 answer = answer[:1].upper()
1183 os.chdir (pkg.directory)
1184 Upload.do_reject(0, reject_message)
1186 accept(summary, short_summary)
1187 remove_from_unchecked()
1188 elif answer == queuekey:
1189 queue_info[qu]["process"](summary, short_summary)
1190 remove_from_unchecked()
1194 def remove_from_unchecked():
1195 os.chdir (pkg.directory)
1196 for f in files.keys():
1198 os.unlink(pkg.changes_file)
1200 ################################################################################
1202 def accept (summary, short_summary):
1203 Upload.accept(summary, short_summary)
1204 Upload.check_override()
1206 ################################################################################
1208 def move_to_dir (dest, perms=0660, changesperms=0664):
1209 utils.move (pkg.changes_file, dest, perms=changesperms)
1210 file_keys = files.keys()
1212 utils.move (f, dest, perms=perms)
1214 ################################################################################
1216 def is_unembargo ():
1217 q = Upload.projectB.query(
1218 "SELECT package FROM disembargo WHERE package = '%s' AND version = '%s'" %
1219 (changes["source"], changes["version"]))
1224 oldcwd = os.getcwd()
1225 os.chdir(Cnf["Dir::Queue::Disembargo"])
1226 disdir = os.getcwd()
1229 if pkg.directory == disdir:
1230 if changes["architecture"].has_key("source"):
1231 if Options["No-Action"]: return 1
1233 Upload.projectB.query(
1234 "INSERT INTO disembargo (package, version) VALUES ('%s', '%s')" %
1235 (changes["source"], changes["version"]))
1240 def queue_unembargo (summary, short_summary):
1241 print "Moving to UNEMBARGOED holding area."
1242 Logger.log(["Moving to unembargoed", pkg.changes_file])
1244 Upload.dump_vars(Cnf["Dir::Queue::Unembargoed"])
1245 move_to_dir(Cnf["Dir::Queue::Unembargoed"])
1246 Upload.queue_build("unembargoed", Cnf["Dir::Queue::Unembargoed"])
1248 # Check for override disparities
1249 Upload.Subst["__SUMMARY__"] = summary
1250 Upload.check_override()
1252 # Send accept mail, announce to lists, close bugs and check for
1253 # override disparities
1254 if not Cnf["Dinstall::Options::No-Mail"]:
1255 Upload.Subst["__SUITE__"] = ""
1256 mail_message = utils.TemplateSubst(Upload.Subst,Cnf["Dir::Templates"]+"/process-unchecked.accepted")
1257 utils.send_mail(mail_message)
1258 Upload.announce(short_summary, 1)
1260 ################################################################################
1263 # if embargoed queues are enabled always embargo
1266 def queue_embargo (summary, short_summary):
1267 print "Moving to EMBARGOED holding area."
1268 Logger.log(["Moving to embargoed", pkg.changes_file])
1270 Upload.dump_vars(Cnf["Dir::Queue::Embargoed"])
1271 move_to_dir(Cnf["Dir::Queue::Embargoed"])
1272 Upload.queue_build("embargoed", Cnf["Dir::Queue::Embargoed"])
1274 # Check for override disparities
1275 Upload.Subst["__SUMMARY__"] = summary
1276 Upload.check_override()
1278 # Send accept mail, announce to lists, close bugs and check for
1279 # override disparities
1280 if not Cnf["Dinstall::Options::No-Mail"]:
1281 Upload.Subst["__SUITE__"] = ""
1282 mail_message = utils.TemplateSubst(Upload.Subst,Cnf["Dir::Templates"]+"/process-unchecked.accepted")
1283 utils.send_mail(mail_message)
1284 Upload.announce(short_summary, 1)
1286 ################################################################################
1288 def is_stableupdate ():
1289 if not changes["distribution"].has_key("proposed-updates"):
1292 if not changes["architecture"].has_key("source"):
1293 pusuite = database.get_suite_id("proposed-updates")
1294 q = Upload.projectB.query(
1295 "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" %
1296 (changes["source"], changes["version"], pusuite))
1299 # source is already in proposed-updates so no need to hold
1304 def do_stableupdate (summary, short_summary):
1305 print "Moving to PROPOSED-UPDATES holding area."
1306 Logger.log(["Moving to proposed-updates", pkg.changes_file])
1308 Upload.dump_vars(Cnf["Dir::Queue::ProposedUpdates"])
1309 move_to_dir(Cnf["Dir::Queue::ProposedUpdates"], perms=0664)
1311 # Check for override disparities
1312 Upload.Subst["__SUMMARY__"] = summary
1313 Upload.check_override()
1315 ################################################################################
1317 def is_oldstableupdate ():
1318 if not changes["distribution"].has_key("oldstable-proposed-updates"):
1321 if not changes["architecture"].has_key("source"):
1322 pusuite = database.get_suite_id("oldstable-proposed-updates")
1323 q = Upload.projectB.query(
1324 "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" %
1325 (changes["source"], changes["version"], pusuite))
1328 # source is already in oldstable-proposed-updates so no need to hold
1333 def do_oldstableupdate (summary, short_summary):
1334 print "Moving to OLDSTABLE-PROPOSED-UPDATES holding area."
1335 Logger.log(["Moving to oldstable-proposed-updates", pkg.changes_file])
1337 Upload.dump_vars(Cnf["Dir::Queue::OldProposedUpdates"])
1338 move_to_dir(Cnf["Dir::Queue::OldProposedUpdates"], perms=0664)
1340 # Check for override disparities
1341 Upload.Subst["__SUMMARY__"] = summary
1342 Upload.check_override()
1344 ################################################################################
1346 def is_autobyhand ():
1349 for f in files.keys():
1350 if files[f].has_key("byhand"):
1353 # filename is of form "PKG_VER_ARCH.EXT" where PKG, VER and ARCH
1354 # don't contain underscores, and ARCH doesn't contain dots.
1355 # further VER matches the .changes Version:, and ARCH should be in
1356 # the .changes Architecture: list.
1357 if f.count("_") < 2:
1361 (pckg, ver, archext) = f.split("_", 2)
1362 if archext.count(".") < 1 or changes["version"] != ver:
1366 ABH = Cnf.SubTree("AutomaticByHandPackages")
1367 if not ABH.has_key(pckg) or \
1368 ABH["%s::Source" % (pckg)] != changes["source"]:
1369 print "not match %s %s" % (pckg, changes["source"])
1373 (arch, ext) = archext.split(".", 1)
1374 if arch not in changes["architecture"]:
1378 files[f]["byhand-arch"] = arch
1379 files[f]["byhand-script"] = ABH["%s::Script" % (pckg)]
1381 return any_auto and all_auto
1383 def do_autobyhand (summary, short_summary):
1384 print "Attempting AUTOBYHAND."
1386 for f in files.keys():
1388 if not files[f].has_key("byhand"):
1390 if not files[f].has_key("byhand-script"):
1394 os.system("ls -l %s" % byhandfile)
1395 result = os.system("%s %s %s %s %s" % (
1396 files[f]["byhand-script"], byhandfile,
1397 changes["version"], files[f]["byhand-arch"],
1398 os.path.abspath(pkg.changes_file)))
1400 os.unlink(byhandfile)
1403 print "Error processing %s, left as byhand." % (f)
1407 do_byhand(summary, short_summary)
1409 accept(summary, short_summary)
1411 ################################################################################
1414 for f in files.keys():
1415 if files[f].has_key("byhand"):
1419 def do_byhand (summary, short_summary):
1420 print "Moving to BYHAND holding area."
1421 Logger.log(["Moving to byhand", pkg.changes_file])
1423 Upload.dump_vars(Cnf["Dir::Queue::Byhand"])
1424 move_to_dir(Cnf["Dir::Queue::Byhand"])
1426 # Check for override disparities
1427 Upload.Subst["__SUMMARY__"] = summary
1428 Upload.check_override()
1430 ################################################################################
1433 for f in files.keys():
1434 if files[f].has_key("new"):
1438 def acknowledge_new (summary, short_summary):
1439 Subst = Upload.Subst
1441 print "Moving to NEW holding area."
1442 Logger.log(["Moving to new", pkg.changes_file])
1444 Upload.dump_vars(Cnf["Dir::Queue::New"])
1445 move_to_dir(Cnf["Dir::Queue::New"])
1447 if not Options["No-Mail"]:
1448 print "Sending new ack."
1449 Subst["__SUMMARY__"] = summary
1450 new_ack_message = utils.TemplateSubst(Subst,Cnf["Dir::Templates"]+"/process-unchecked.new")
1451 utils.send_mail(new_ack_message)
1453 ################################################################################
1455 # reprocess is necessary for the case of foo_1.2-1 and foo_1.2-2 in
1456 # Incoming. -1 will reference the .orig.tar.gz, but -2 will not.
1457 # Upload.check_dsc_against_db() can find the .orig.tar.gz but it will
1458 # not have processed it during it's checks of -2. If -1 has been
1459 # deleted or otherwise not checked by 'dak process-unchecked', the
1460 # .orig.tar.gz will not have been checked at all. To get round this,
1461 # we force the .orig.tar.gz into the .changes structure and reprocess
1462 # the .changes file.
1464 def process_it (changes_file):
1465 global reprocess, reject_message
1467 # Reset some globals
1470 # Some defaults in case we can't fully process the .changes file
1471 changes["maintainer2047"] = Cnf["Dinstall::MyEmailAddress"]
1472 changes["changedby2047"] = Cnf["Dinstall::MyEmailAddress"]
1475 # Absolutize the filename to avoid the requirement of being in the
1476 # same directory as the .changes file.
1477 pkg.changes_file = os.path.abspath(changes_file)
1479 # Remember where we are so we can come back after cd-ing into the
1480 # holding directory.
1481 pkg.directory = os.getcwd()
1484 # If this is the Real Thing(tm), copy things into a private
1485 # holding directory first to avoid replacable file races.
1486 if not Options["No-Action"]:
1487 os.chdir(Cnf["Dir::Queue::Holding"])
1488 copy_to_holding(pkg.changes_file)
1489 # Relativize the filename so we use the copy in holding
1490 # rather than the original...
1491 pkg.changes_file = os.path.basename(pkg.changes_file)
1492 changes["fingerprint"] = utils.check_signature(pkg.changes_file, reject)
1493 if changes["fingerprint"]:
1494 valid_changes_p = check_changes()
1499 check_distributions()
1501 valid_dsc_p = check_dsc()
1507 check_signed_by_key()
1508 Upload.update_subst(reject_message)
1514 traceback.print_exc(file=sys.stderr)
1517 # Restore previous WD
1518 os.chdir(pkg.directory)
1520 ###############################################################################
1523 global Cnf, Options, Logger
1525 changes_files = init()
1527 # -n/--dry-run invalidates some other options which would involve things happening
1528 if Options["No-Action"]:
1529 Options["Automatic"] = ""
1531 # Ensure all the arguments we were given are .changes files
1532 for f in changes_files:
1533 if not f.endswith(".changes"):
1534 utils.warn("Ignoring '%s' because it's not a .changes file." % (f))
1535 changes_files.remove(f)
1537 if changes_files == []:
1538 utils.fubar("Need at least one .changes file as an argument.")
1540 # Check that we aren't going to clash with the daily cron job
1542 if not Options["No-Action"] and os.path.exists("%s/daily.lock" % (Cnf["Dir::Lock"])) and not Options["No-Lock"]:
1543 utils.fubar("Archive maintenance in progress. Try again later.")
1545 # Obtain lock if not in no-action mode and initialize the log
1547 if not Options["No-Action"]:
1548 lock_fd = os.open(Cnf["Dinstall::LockFile"], os.O_RDWR | os.O_CREAT)
1550 fcntl.lockf(lock_fd, fcntl.LOCK_EX | fcntl.LOCK_NB)
1552 if errno.errorcode[e.errno] == 'EACCES' or errno.errorcode[e.errno] == 'EAGAIN':
1553 utils.fubar("Couldn't obtain lock; assuming another 'dak process-unchecked' is already running.")
1556 Logger = Upload.Logger = logging.Logger(Cnf, "process-unchecked")
1558 # debian-{devel-,}-changes@lists.debian.org toggles writes access based on this header
1559 bcc = "X-DAK: dak process-unchecked\nX-Katie: $Revision: 1.65 $"
1560 if Cnf.has_key("Dinstall::Bcc"):
1561 Upload.Subst["__BCC__"] = bcc + "\nBcc: %s" % (Cnf["Dinstall::Bcc"])
1563 Upload.Subst["__BCC__"] = bcc
1566 # Sort the .changes files so that we process sourceful ones first
1567 changes_files.sort(utils.changes_compare)
1569 # Process the changes files
1570 for changes_file in changes_files:
1571 print "\n" + changes_file
1573 process_it (changes_file)
1575 if not Options["No-Action"]:
1578 accept_count = Upload.accept_count
1579 accept_bytes = Upload.accept_bytes
1582 if accept_count > 1:
1584 print "Accepted %d package %s, %s." % (accept_count, sets, utils.size_type(int(accept_bytes)))
1585 Logger.log(["total",accept_count,accept_bytes])
1587 if not Options["No-Action"]:
1590 ################################################################################
1592 if __name__ == '__main__':