3 # Checks Debian packages from Incoming
4 # Copyright (C) 2000, 2001, 2002 James Troup <james@nocrew.org>
5 # $Id: jennifer,v 1.21 2002-05-19 00:47:16 troup Exp $
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program; if not, write to the Free Software
19 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 # Originally based on dinstall by Guy Maor <maor@debian.org>
23 ################################################################################
25 # Computer games don't affect kids. I mean if Pacman affected our generation as
26 # kids, we'd all run around in a darkened room munching pills and listening to
30 ################################################################################
32 import FCNTL, errno, fcntl, gzip, os, re, select, shutil, stat, string, sys, time, traceback;
33 import apt_inst, apt_pkg;
34 import db_access, katie, logging, utils;
38 ################################################################################
40 re_bad_diff = re.compile("^[\-\+][\-\+][\-\+] /dev/null");
41 re_is_changes = re.compile (r"(.+?)_(.+?)_(.+?)\.changes$");
43 ################################################################################
46 jennifer_version = "$Revision: 1.21 $";
56 # Aliases to the real vars in the Katie class; hysterical raisins.
64 ###############################################################################
67 global Cnf, Options, Katie, changes, dsc, dsc_files, files, pkg;
71 Cnf = apt_pkg.newConfiguration();
72 apt_pkg.ReadConfigFileISC(Cnf,utils.which_conf_file());
74 Arguments = [('a',"automatic","Dinstall::Options::Automatic"),
75 ('h',"help","Dinstall::Options::Help"),
76 ('n',"no-action","Dinstall::Options::No-Action"),
77 ('p',"no-lock", "Dinstall::Options::No-Lock"),
78 ('s',"no-mail", "Dinstall::Options::No-Mail"),
79 ('V',"version","Dinstall::Options::Version")];
81 for i in ["automatic", "help", "no-action", "no-lock", "no-mail",
82 "override-distribution", "version"]:
83 Cnf["Dinstall::Options::%s" % (i)] = "";
85 changes_files = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
86 Options = Cnf.SubTree("Dinstall::Options")
88 Katie = katie.Katie(Cnf);
90 changes = Katie.pkg.changes;
92 dsc_files = Katie.pkg.dsc_files;
93 files = Katie.pkg.files;
98 #########################################################################################
100 def usage (exit_code=0):
101 print """Usage: dinstall [OPTION]... [CHANGES]...
102 -a, --automatic automatic run
103 -h, --help show this help and exit.
104 -n, --no-action don't do anything
105 -p, --no-lock don't check lockfile !! for cron.daily only !!
106 -s, --no-mail don't send any mail
107 -V, --version display the version number and exit"""
110 #########################################################################################
112 # Our very own version of commands.getouputstatus(), hacked to support
114 def get_status_output(cmd, status_read, status_write):
115 cmd = ['/bin/sh', '-c', cmd];
116 p2cread, p2cwrite = os.pipe();
117 c2pread, c2pwrite = os.pipe();
118 errout, errin = os.pipe();
128 for i in range(3, 256):
129 if i != status_write:
135 os.execvp(cmd[0], cmd);
141 os.dup2(c2pread, c2pwrite);
142 os.dup2(errout, errin);
144 output = status = "";
146 i, o, e = select.select([c2pwrite, errin, status_read], [], []);
149 r = os.read(fd, 8196);
151 more_data.append(fd);
152 if fd == c2pwrite or fd == errin:
154 elif fd == status_read:
157 utils.fubar("Unexpected file descriptor [%s] returned from select\n" % (fd));
159 pid, exit_status = os.waitpid(pid, 0)
161 os.close(status_write);
162 os.close(status_read);
172 return output, status, exit_status;
174 #########################################################################################
176 def Dict(**dict): return dict
178 def reject (str, prefix="Rejected: "):
179 global reject_message;
181 reject_message = reject_message + prefix + str + "\n";
183 #########################################################################################
185 def check_signature (filename):
186 if not utils.re_taint_free.match(os.path.basename(filename)):
187 reject("!!WARNING!! tainted filename: '%s'." % (filename));
190 status_read, status_write = os.pipe();
191 cmd = "gpgv --status-fd %s --keyring %s --keyring %s %s" \
192 % (status_write, Cnf["Dinstall::PGPKeyring"], Cnf["Dinstall::GPGKeyring"], filename);
193 (output, status, exit_status) = get_status_output(cmd, status_read, status_write);
195 # Process the status-fd output
197 bad = internal_error = "";
198 for line in string.split(status, '\n'):
199 line = string.strip(line);
202 split = string.split(line);
204 internal_error = internal_error + "gpgv status line is malformed (< 2 atoms) ['%s'].\n" % (line);
206 (gnupg, keyword) = split[:2];
207 if gnupg != "[GNUPG:]":
208 internal_error = internal_error + "gpgv status line is malformed (incorrect prefix '%s').\n" % (gnupg);
211 if keywords.has_key(keyword) and keyword != "NODATA":
212 internal_error = internal_error + "found duplicate status token ('%s').\n" % (keyword);
215 keywords[keyword] = args;
217 # If we failed to parse the status-fd output, let's just whine and bail now
219 reject("internal error while performing signature check on %s." % (filename));
220 reject(internal_error, "");
221 reject("Please report the above errors to the Archive maintainers by replying to this mail.", "");
224 # Now check for obviously bad things in the processed output
225 if keywords.has_key("SIGEXPIRED"):
226 reject("key used to sign %s has expired." % (filename));
228 if keywords.has_key("KEYREVOKED"):
229 reject("key used to sign %s has been revoked." % (filename));
231 if keywords.has_key("BADSIG"):
232 reject("bad signature on %s." % (filename));
234 if keywords.has_key("ERRSIG") and not keywords.has_key("NO_PUBKEY"):
235 reject("failed to check signature on %s." % (filename));
237 if keywords.has_key("NO_PUBKEY"):
238 reject("key used to sign %s not found in keyring." % (filename));
240 if keywords.has_key("BADARMOR"):
241 reject("ascii armour of signature was corrupt in %s." % (filename));
243 if keywords.has_key("NODATA"):
244 reject("no signature found in %s." % (filename));
250 # Next check gpgv exited with a zero return code
252 reject("gpgv failed while checking %s." % (filename));
253 if string.strip(status):
254 reject(utils.prefix_multi_line_string(status, " [GPG status-fd output:] "), "");
256 reject(utils.prefix_multi_line_string(output, " [GPG output:] "), "");
259 # Sanity check the good stuff we expect
260 if not keywords.has_key("VALIDSIG"):
261 reject("signature on %s does not appear to be valid [No VALIDSIG]." % (filename));
264 args = keywords["VALIDSIG"];
266 reject("internal error while checking signature on %s." % (filename));
269 fingerprint = args[0];
270 if not keywords.has_key("GOODSIG"):
271 reject("signature on %s does not appear to be valid [No GOODSIG]." % (filename));
273 if not keywords.has_key("SIG_ID"):
274 reject("signature on %s does not appear to be valid [No SIG_ID]." % (filename));
277 # Finally ensure there's not something we don't recognise
278 known_keywords = Dict(VALIDSIG="",SIG_ID="",GOODSIG="",BADSIG="",ERRSIG="",
279 SIGEXPIRED="",KEYREVOKED="",NO_PUBKEY="",BADARMOR="",
282 for keyword in keywords.keys():
283 if not known_keywords.has_key(keyword):
284 reject("found unknown status token '%s' from gpgv with args '%s' in %s." % (keyword, repr(keywords[keyword]), filename));
292 ################################################################################
294 def copy_to_holding(filename):
297 base_filename = os.path.basename(filename);
299 dest = Cnf["Dir::Queue::Holding"] + '/' + base_filename;
301 fd = os.open(dest, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0640);
304 # Shouldn't happen, but will if, for example, someone lists a
305 # file twice in the .changes.
306 if errno.errorcode[e.errno] == 'EEXIST':
307 reject("%s already exists in holding area; can not overwrite." % (base_filename));
312 shutil.copy(filename, dest);
314 # In either case (ENOENT or EACCES) we want to remove the
315 # O_CREAT | O_EXCLed ghost file, so add the file to the list
316 # of 'in holding' even if it's not the real file.
317 if errno.errorcode[e.errno] == 'ENOENT':
318 reject("can not copy %s to holding area: file not found." % (base_filename));
321 elif errno.errorcode[e.errno] == 'EACCES':
322 reject("can not copy %s to holding area: read permission denied." % (base_filename));
327 in_holding[base_filename] = "";
330 ################################################################################
336 os.chdir(Cnf["Dir::Queue::Holding"]);
337 for file in in_holding.keys():
338 if os.path.exists(file):
339 if string.find(file, '/') != -1:
340 utils.fubar("WTF? clean_holding() got a file ('%s') with / in it!" % (file));
346 ################################################################################
349 filename = pkg.changes_file;
351 # Default in case we bail out
352 changes["maintainer822"] = Cnf["Dinstall::MyEmailAddress"];
353 changes["changedby822"] = Cnf["Dinstall::MyEmailAddress"];
354 changes["architecture"] = {};
356 # Parse the .changes field into a dictionary
358 changes.update(utils.parse_changes(filename));
359 except utils.cant_open_exc:
360 reject("can't read changes file '%s'." % (filename));
362 except utils.changes_parse_error_exc, line:
363 reject("error parsing changes file '%s', can't grok: %s." % (filename, line));
366 # Parse the Files field from the .changes into another dictionary
368 files.update(utils.build_file_list(changes));
369 except utils.changes_parse_error_exc, line:
370 reject("error parsing changes file '%s', can't grok: %s." % (filename, line));
371 except utils.nk_format_exc, format:
372 reject("unknown format '%s' of changes file '%s'." % (format, filename));
375 # Check for mandatory fields
376 for i in ("source", "binary", "architecture", "version", "distribution", "maintainer", "files"):
377 if not changes.has_key(i):
378 reject("Missing field `%s' in changes file." % (i));
379 return 0 # Avoid <undef> errors during later tests
381 # Split multi-value fields into a lower-level dictionary
382 for i in ("architecture", "distribution", "binary", "closes"):
383 o = changes.get(i, "")
387 for j in string.split(o):
390 # Fix the Maintainer: field to be RFC822 compatible
391 (changes["maintainer822"], changes["maintainername"], changes["maintaineremail"]) = utils.fix_maintainer (changes["maintainer"])
393 # Fix the Changed-By: field to be RFC822 compatible; if it exists.
394 (changes["changedby822"], changes["changedbyname"], changes["changedbyemail"]) = utils.fix_maintainer(changes.get("changed-by",""));
396 # Ensure all the values in Closes: are numbers
397 if changes.has_key("closes"):
398 for i in changes["closes"].keys():
399 if katie.re_isanum.match (i) == None:
400 reject("`%s' from Closes field isn't a number." % (i));
403 # chopversion = no epoch; chopversion2 = no epoch and no revision (e.g. for .orig.tar.gz comparison)
404 changes["chopversion"] = utils.re_no_epoch.sub('', changes["version"])
405 changes["chopversion2"] = utils.re_no_revision.sub('', changes["chopversion"])
407 # Check there isn't already a changes file of the same name in one
408 # of the queue directories.
409 base_filename = os.path.basename(filename);
410 for dir in [ "Accepted", "Byhand", "Done", "New" ]:
411 if os.path.exists(Cnf["Dir::Queue::%s" % (dir) ]+'/'+base_filename):
412 reject("a changes file with the same name already exists in the %s directory." % (dir));
416 ################################################################################
418 def check_distributions():
419 "Check and map the Distribution field of a .changes file."
421 # Handle suite mappings
422 if Cnf.has_key("SuiteMappings"):
423 for map in Cnf.ValueList("SuiteMappings"):
424 args = string.split(map);
427 (source, dest) = args[1:3];
428 if changes["distribution"].has_key(source):
429 del changes["distribution"][source]
430 changes["distribution"][dest] = 1;
431 reject("Mapping %s to %s." % (source, dest),"");
432 elif type == "map-unreleased":
433 (source, dest) = args[1:3];
434 if changes["distribution"].has_key(source):
435 for arch in changes["architecture"].keys():
436 if arch not in Cnf.ValueList("Suite::%s::Architectures" % (source)):
437 reject("Mapping %s to %s for unreleased architecture %s." % (source, dest, arch),"");
438 del changes["distribution"][source];
439 changes["distribution"][dest] = 1;
441 elif type == "ignore":
443 if changes["distribution"].has_key(suite):
444 del changes["distribution"][suite];
445 reject("Ignoring %s as a target suite." % (suite), "Warning: ");
447 # Ensure there is (still) a target distribution
448 if changes["distribution"].keys() == []:
449 reject("no valid distribution.");
451 # Ensure target distributions exist
452 for suite in changes["distribution"].keys():
453 if not Cnf.has_key("Suite::%s" % (suite)):
454 reject("Unknown distribution `%s'." % (suite));
456 ################################################################################
461 archive = utils.where_am_i();
462 file_keys = files.keys();
464 # if reprocess is 2 we've already done this and we're checking
465 # things again for the new .orig.tar.gz.
466 # [Yes, I'm fully aware of how disgusting this is]
467 if not Options["No-Action"] and reprocess < 2:
469 os.chdir(pkg.directory);
470 for file in file_keys:
471 copy_to_holding(file);
476 for file in file_keys:
477 # Ensure the file does not already exist in one of the accepted directories
478 for dir in [ "Accepted", "Byhand", "New" ]:
479 if os.path.exists(Cnf["Dir::Queue::%s" % (dir) ]+'/'+file):
480 reject("%s file already exists in the %s directory." % (file, dir));
481 if not utils.re_taint_free.match(file):
482 reject("!!WARNING!! tainted filename: '%s'." % (file));
483 # Check the file is readable
484 if os.access(file,os.R_OK) == 0:
485 # When running in -n, copy_to_holding() won't have
486 # generated the reject_message, so we need to.
487 if Options["No-Action"]:
488 if os.path.exists(file):
489 reject("Can't read `%s'. [permission denied]" % (file));
491 reject("Can't read `%s'. [file not found]" % (file));
492 files[file]["type"] = "unreadable";
494 # If it's byhand skip remaining checks
495 if files[file]["section"] == "byhand":
496 files[file]["byhand"] = 1;
497 files[file]["type"] = "byhand";
498 # Checks for a binary package...
499 elif utils.re_isadeb.match(file) != None:
500 files[file]["type"] = "deb";
502 # Extract package control information
503 deb_file = utils.open_file(file);
505 control = apt_pkg.ParseSection(apt_inst.debExtractControl(deb_file));
507 reject("%s: debExtractControl() raised %s." % (file, sys.exc_type));
509 # Can't continue, none of the checks on control would work.
513 # Check for mandatory fields
514 for field in [ "Package", "Architecture", "Version" ]:
515 if control.Find(field) == None:
516 reject("%s: No %s field in control." % (file, field));
518 # Ensure the package name matches the one give in the .changes
519 if not changes["binary"].has_key(control.Find("Package", "")):
520 reject("%s: control file lists name as `%s', which isn't in changes file." % (file, control.Find("Package", "")));
522 # Ensure the architecture of the .deb is one we know about.
523 default_suite = Cnf.get("Dinstall::DefaultSuite", "Unstable")
524 architecture = control.Find("Architecture", "");
525 if architecture not in Cnf.ValueList("Suite::%s::Architectures" % (default_suite)):
526 reject("Unknown architecture '%s'." % (architecture));
528 # Ensure the architecture of the .deb is one of the ones
529 # listed in the .changes.
530 if not changes["architecture"].has_key(architecture):
531 reject("%s: control file lists arch as `%s', which isn't in changes file." % (file, architecture));
533 # Check the section & priority match those given in the .changes (non-fatal)
534 if control.Find("Section") != None and files[file]["section"] != "" and files[file]["section"] != control.Find("Section"):
535 reject("%s control file lists section as `%s', but changes file has `%s'." % (file, control.Find("Section", ""), files[file]["section"]), "Warning: ");
536 if control.Find("Priority") != None and files[file]["priority"] != "" and files[file]["priority"] != control.Find("Priority"):
537 reject("%s control file lists priority as `%s', but changes file has `%s'." % (file, control.Find("Priority", ""), files[file]["priority"]),"Warning: ");
539 files[file]["package"] = control.Find("Package");
540 files[file]["architecture"] = architecture;
541 files[file]["version"] = control.Find("Version");
542 files[file]["maintainer"] = control.Find("Maintainer", "");
543 if file[-5:] == ".udeb":
544 files[file]["dbtype"] = "udeb";
545 elif file[-4:] == ".deb":
546 files[file]["dbtype"] = "deb";
548 reject("%s is neither a .deb or a .udeb." % (file));
549 files[file]["source"] = control.Find("Source", "");
550 if files[file]["source"] == "":
551 files[file]["source"] = files[file]["package"];
552 # Get the source version
553 source = files[file]["source"];
555 if string.find(source, "(") != -1:
556 m = utils.re_extract_src_version.match(source)
558 source_version = m.group(2)
559 if not source_version:
560 source_version = files[file]["version"];
561 files[file]["source package"] = source;
562 files[file]["source version"] = source_version;
564 # Ensure the filename matches the contents of the .deb
565 m = utils.re_isadeb.match(file);
567 file_package = m.group(1);
568 if files[file]["package"] != file_package:
569 reject("%s: package part of filename (%s) does not match package name in the %s (%s)." % (file, file_package, files[file]["dbtype"], files[file]["package"]));
570 epochless_version = utils.re_no_epoch.sub('', control.Find("Version", ""))
572 file_version = m.group(2);
573 if epochless_version != file_version:
574 reject("%s: version part of filename (%s) does not match package version in the %s (%s)." % (file, file_version, files[file]["dbtype"], epochless_version));
576 file_architecture = m.group(3);
577 if files[file]["architecture"] != file_architecture:
578 reject("%s: architecture part of filename (%s) does not match package architecture in the %s (%s)." % (file, file_architecture, files[file]["dbtype"], files[file]["architecture"]));
580 # Check for existent source
581 source_version = files[file]["source version"];
582 source_package = files[file]["source package"];
583 if changes["architecture"].has_key("source"):
584 if source_version != changes["version"]:
585 reject("source version (%s) for %s doesn't match changes version %s." % (source_version, file, changes["version"]));
587 # Check in the SQL database
588 if not Katie.source_exists(source_package, source_version):
589 # Check in one of the other directories
590 source_epochless_version = utils.re_no_epoch.sub('', source_version);
591 dsc_filename = "%s_%s.dsc" % (source_package, source_epochless_version);
592 if os.path.exists(Cnf["Dir::Queue::Byhand"] + '/' + dsc_filename):
593 files[file]["byhand"] = 1;
594 elif os.path.exists(Cnf["Dir::Queue::New"] + '/' + dsc_filename):
595 files[file]["new"] = 1;
596 elif not os.path.exists(Cnf["Dir::Queue::Accepted"] + '/' + dsc_filename):
597 reject("no source found for %s %s (%s)." % (source_package, source_version, file));
598 # Check the version and for file overwrites
599 reject(Katie.check_binary_against_db(file),"");
601 # Checks for a source package...
603 m = utils.re_issource.match(file);
605 files[file]["package"] = m.group(1);
606 files[file]["version"] = m.group(2);
607 files[file]["type"] = m.group(3);
609 # Ensure the source package name matches the Source filed in the .changes
610 if changes["source"] != files[file]["package"]:
611 reject("%s: changes file doesn't say %s for Source" % (file, files[file]["package"]));
613 # Ensure the source version matches the version in the .changes file
614 if files[file]["type"] == "orig.tar.gz":
615 changes_version = changes["chopversion2"];
617 changes_version = changes["chopversion"];
618 if changes_version != files[file]["version"]:
619 reject("%s: should be %s according to changes file." % (file, changes_version));
621 # Ensure the .changes lists source in the Architecture field
622 if not changes["architecture"].has_key("source"):
623 reject("%s: changes file doesn't list `source' in Architecture field." % (file));
625 # Check the signature of a .dsc file
626 if files[file]["type"] == "dsc":
627 dsc["fingerprint"] = check_signature(file);
629 files[file]["architecture"] = "source";
631 # Not a binary or source package? Assume byhand...
633 files[file]["byhand"] = 1;
634 files[file]["type"] = "byhand";
636 # Per-suite file checks
637 files[file]["oldfiles"] = {};
638 for suite in changes["distribution"].keys():
640 if files[file].has_key("byhand"):
643 # Ensure the component is valid for the target suite
644 if Cnf.has_key("Suite:%s::Components" % (suite)) and \
645 files[file]["component"] not in Cnf.ValueList("Suite::%s::Components" % (suite)):
646 reject("unknown component `%s' for suite `%s'." % (files[file]["component"], suite));
649 # See if the package is NEW
650 if not Katie.in_override_p(files[file]["package"], files[file]["component"], suite, files[file].get("dbtype",""), file):
651 files[file]["new"] = 1;
653 # Validate the component
654 component = files[file]["component"];
655 component_id = db_access.get_component_id(component);
656 if component_id == -1:
657 reject("file '%s' has unknown component '%s'." % (file, component));
660 # Validate the priority
661 if string.find(files[file]["priority"],'/') != -1:
662 reject("file '%s' has invalid priority '%s' [contains '/']." % (file, files[file]["priority"]));
664 # Determine the location
665 location = Cnf["Dir::Pool"];
666 location_id = db_access.get_location_id (location, component, archive);
667 if location_id == -1:
668 reject("[INTERNAL ERROR] couldn't determine location (Component: %s, Archive: %s)" % (component, archive));
669 files[file]["location id"] = location_id;
671 # Check the md5sum & size against existing files (if any)
672 files[file]["pool name"] = utils.poolify (changes["source"], files[file]["component"]);
673 files_id = db_access.get_files_id(files[file]["pool name"] + file, files[file]["size"], files[file]["md5sum"], files[file]["location id"]);
675 reject("INTERNAL ERROR, get_files_id() returned multiple matches for %s." % (file));
677 reject("md5sum and/or size mismatch on existing copy of %s." % (file));
678 files[file]["files id"] = files_id
680 # Check for packages that have moved from one component to another
681 q = Katie.projectB.query("""
682 SELECT c.name FROM binaries b, bin_associations ba, suite s, location l,
683 component c, architecture a, files f
684 WHERE b.package = '%s' AND s.suite_name = '%s'
685 AND (a.arch_string = '%s' OR a.arch_string = 'all')
686 AND ba.bin = b.id AND ba.suite = s.id AND b.architecture = a.id
687 AND f.location = l.id AND l.component = c.id AND b.file = f.id"""
688 % (files[file]["package"], suite,
689 files[file]["architecture"]));
692 files[file]["othercomponents"] = ql[0][0];
694 # If the .changes file says it has source, it must have source.
695 if changes["architecture"].has_key("source"):
697 for file in file_keys:
698 if files[file]["type"] == "dsc":
701 reject("no source found and Architecture line in changes mention source.");
703 ###############################################################################
708 for file in files.keys():
709 # The .orig.tar.gz can disappear out from under us is it's a
710 # duplicate of one in the archive.
711 if not files.has_key(file):
713 if files[file]["type"] == "dsc":
714 # Parse the .dsc file
716 dsc.update(utils.parse_changes(file, dsc_whitespace_rules=1));
717 except utils.cant_open_exc:
718 # if not -n copy_to_holding() will have done this for us...
719 if Options["No-Action"]:
720 reject("can't read .dsc file '%s'." % (file));
721 except utils.changes_parse_error_exc, line:
722 reject("error parsing .dsc file '%s', can't grok: %s." % (file, line));
723 except utils.invalid_dsc_format_exc, line:
724 reject("syntax error in .dsc file '%s', line %s." % (file, line));
725 # Build up the file list of files mentioned by the .dsc
727 dsc_files.update(utils.build_file_list(dsc, is_a_dsc=1));
728 except utils.no_files_exc:
729 reject("no Files: field in .dsc file.");
731 except utils.changes_parse_error_exc, line:
732 reject("error parsing .dsc file '%s', can't grok: %s." % (file, line));
735 # Enforce mandatory fields
736 for i in ("format", "source", "version", "binary", "maintainer", "architecture", "files"):
737 if not dsc.has_key(i):
738 reject("Missing field `%s' in dsc file." % (i));
740 # The dpkg maintainer from hell strikes again! Bumping the
741 # version number of the .dsc breaks extraction by stable's
743 if dsc["format"] != "1.0":
744 reject("""[dpkg-sucks] source package was produced by a broken version
745 of dpkg-dev 1.9.1{3,4}; please rebuild with >= 1.9.15 version
748 # Ensure the version number in the .dsc matches the version number in the .changes
749 epochless_dsc_version = utils.re_no_epoch.sub('', dsc.get("version"));
750 changes_version = files[file]["version"];
751 if epochless_dsc_version != files[file]["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 = utils.re_issource.match(f);
759 reject("%s mentioned in the Files field of %s not recognised as source." % (f, file));
761 if type == "orig.tar.gz" or type == "tar.gz":
764 reject("no .tar.gz or .orig.tar.gz listed in the Files field of %s." % (file));
766 # Ensure source is newer than existing source in target suites
767 reject(Katie.check_source_against_db(file),"");
769 (reject_msg, is_in_incoming) = Katie.check_dsc_against_db(file);
770 reject(reject_msg, "");
772 if not Options["No-Action"]:
773 copy_to_holding(is_in_incoming);
774 orig_tar_gz = os.path.basename(is_in_incoming);
775 files[orig_tar_gz] = {};
776 files[orig_tar_gz]["size"] = os.stat(orig_tar_gz)[stat.ST_SIZE];
777 files[orig_tar_gz]["md5sum"] = dsc_files[orig_tar_gz]["md5sum"];
778 files[orig_tar_gz]["section"] = files[file]["section"];
779 files[orig_tar_gz]["priority"] = files[file]["priority"];
780 files[orig_tar_gz]["component"] = files[file]["component"];
781 files[orig_tar_gz]["type"] = "orig.tar.gz";
784 ################################################################################
786 # Some cunning stunt broke dpkg-source in dpkg 1.8{,.1}; detect the
787 # resulting bad source packages and reject them.
789 # Even more amusingly the fix in 1.8.1.1 didn't actually fix the
790 # problem just changed the symptoms.
793 for filename in files.keys():
794 if files[filename]["type"] == "diff.gz":
795 file = gzip.GzipFile(filename, 'r');
796 for line in file.readlines():
797 if re_bad_diff.search(line):
798 reject("[dpkg-sucks] source package was produced by a broken version of dpkg-dev 1.8.x; please rebuild with >= 1.8.3 version installed.");
801 ################################################################################
803 # FIXME: should be a debian specific check called from a hook
805 def check_urgency ():
806 if changes["architecture"].has_key("source"):
807 if not changes.has_key("urgency"):
808 changes["urgency"] = Cnf["Urgency::Default"];
809 if changes["urgency"] not in Cnf.ValueList("Urgency::Valid"):
810 reject("%s is not a valid urgency; it will be treated as %s by testing." % (changes["urgency"], Cnf["Urgency::Default"]), "Warning: ");
811 changes["urgency"] = Cnf["Urgency::Default"];
812 changes["urgency"] = string.lower(changes["urgency"]);
814 ################################################################################
816 def check_md5sums ():
817 for file in files.keys():
819 file_handle = utils.open_file(file);
820 except utils.cant_open_exc:
823 if apt_pkg.md5sum(file_handle) != files[file]["md5sum"]:
824 reject("md5sum check failed for %s." % (file));
827 ################################################################################
829 # Sanity check the time stamps of files inside debs.
830 # [Files in the near future cause ugly warnings and extreme time
831 # travel can cause errors on extraction]
833 def check_timestamps():
835 def __init__(self, future_cutoff, past_cutoff):
837 self.future_cutoff = future_cutoff;
838 self.past_cutoff = past_cutoff;
841 self.future_files = {};
842 self.ancient_files = {};
844 def callback(self, Kind,Name,Link,Mode,UID,GID,Size,MTime,Major,Minor):
845 if MTime > self.future_cutoff:
846 self.future_files[Name] = MTime;
847 if MTime < self.past_cutoff:
848 self.ancient_files[Name] = MTime;
851 future_cutoff = time.time() + int(Cnf["Dinstall::FutureTimeTravelGrace"]);
852 past_cutoff = time.mktime(time.strptime(Cnf["Dinstall::PastCutoffYear"],"%Y"));
853 tar = Tar(future_cutoff, past_cutoff);
854 for filename in files.keys():
855 if files[filename]["type"] == "deb":
858 deb_file = utils.open_file(filename);
859 apt_inst.debExtract(deb_file,tar.callback,"control.tar.gz");
861 apt_inst.debExtract(deb_file,tar.callback,"data.tar.gz");
864 future_files = tar.future_files.keys();
866 num_future_files = len(future_files);
867 future_file = future_files[0];
868 future_date = tar.future_files[future_file];
869 reject("%s: has %s file(s) with a time stamp too far into the future (e.g. %s [%s])."
870 % (filename, num_future_files, future_file,
871 time.ctime(future_date)));
873 ancient_files = tar.ancient_files.keys();
875 num_ancient_files = len(ancient_files);
876 ancient_file = ancient_files[0];
877 ancient_date = tar.ancient_files[ancient_file];
878 reject("%s: has %s file(s) with a time stamp too ancient (e.g. %s [%s])."
879 % (filename, num_ancient_files, ancient_file,
880 time.ctime(ancient_date)));
882 reject("%s: timestamp check failed; caught %s" % (filename, sys.exc_type));
884 ################################################################################
885 ################################################################################
887 # If any file of an upload has a recent mtime then chances are good
888 # the file is still being uploaded.
890 def upload_too_new():
892 # Move back to the original directory to get accurate time stamps
894 os.chdir(pkg.directory);
895 file_list = pkg.files.keys();
896 file_list.extend(pkg.dsc_files.keys());
897 file_list.append(pkg.changes_file);
898 for file in file_list:
900 last_modified = time.time()-os.path.getmtime(file);
901 if last_modified < int(Cnf["Dinstall::SkipTime"]):
909 ################################################################################
912 # changes["distribution"] may not exist in corner cases
913 # (e.g. unreadable changes files)
914 if not changes.has_key("distribution") or not isinstance(changes["distribution"], DictType):
915 changes["distribution"] = {};
917 (summary, short_summary) = Katie.build_summaries();
920 for file in files.keys():
921 if files[file].has_key("byhand"):
923 elif files[file].has_key("new"):
926 (prompt, answer) = ("", "XXX")
927 if Options["No-Action"] or Options["Automatic"]:
930 if string.find(reject_message, "Rejected") != -1:
932 print "SKIP (too new)\n" + reject_message,;
933 prompt = "[S]kip, Quit ?";
935 print "REJECT\n" + reject_message,;
936 prompt = "[R]eject, Skip, Quit ?";
937 if Options["Automatic"]:
940 print "NEW to %s\n%s%s" % (string.join(changes["distribution"].keys(), ", "), reject_message, summary),;
941 prompt = "[N]ew, Skip, Quit ?";
942 if Options["Automatic"]:
945 print "BYHAND\n" + reject_message + summary,;
946 prompt = "[B]yhand, Skip, Quit ?";
947 if Options["Automatic"]:
950 print "ACCEPT\n" + reject_message + summary,;
951 prompt = "[A]ccept, Skip, Quit ?";
952 if Options["Automatic"]:
955 while string.find(prompt, answer) == -1:
956 answer = utils.our_raw_input(prompt);
957 m = katie.re_default_answer.match(prompt);
960 answer = string.upper(answer[:1]);
963 os.chdir (pkg.directory);
964 Katie.do_reject(0, reject_message);
966 accept(summary, short_summary);
970 acknowledge_new (summary);
974 ################################################################################
976 def accept (summary, short_summary):
977 Katie.accept(summary, short_summary);
978 Katie.check_override();
980 # Finally, remove the originals from the unchecked directory
981 os.chdir (pkg.directory);
982 for file in files.keys():
984 os.unlink(pkg.changes_file);
986 ################################################################################
988 def do_byhand (summary):
989 print "Moving to BYHAND holding area."
990 Logger.log(["Moving to byhand", pkg.changes_file]);
992 Katie.dump_vars(Cnf["Dir::Queue::Byhand"]);
994 file_keys = files.keys();
996 # Move all the files into the byhand directory
997 utils.move (pkg.changes_file, Cnf["Dir::Queue::Byhand"]);
998 for file in file_keys:
999 utils.move (file, Cnf["Dir::Queue::Byhand"], perms=0660);
1001 # Check for override disparities
1002 Katie.Subst["__SUMMARY__"] = summary;
1003 Katie.check_override();
1005 # Finally remove the originals.
1006 os.chdir (pkg.directory);
1007 for file in file_keys:
1009 os.unlink(pkg.changes_file);
1011 ################################################################################
1013 def acknowledge_new (summary):
1014 Subst = Katie.Subst;
1016 print "Moving to NEW holding area."
1017 Logger.log(["Moving to new", pkg.changes_file]);
1019 Katie.dump_vars(Cnf["Dir::Queue::New"]);
1021 file_keys = files.keys();
1023 # Move all the files into the 'new' directory
1024 utils.move (pkg.changes_file, Cnf["Dir::Queue::New"]);
1025 for file in file_keys:
1026 utils.move (file, Cnf["Dir::Queue::New"], perms=0660);
1028 if not Options["No-Mail"]:
1029 print "Sending new ack.";
1030 Subst["__SUMMARY__"] = summary;
1031 new_ack_message = utils.TemplateSubst(Subst,Cnf["Dir::Templates"]+"/jennifer.new");
1032 utils.send_mail(new_ack_message,"");
1034 # Finally remove the originals.
1035 os.chdir (pkg.directory);
1036 for file in file_keys:
1038 os.unlink(pkg.changes_file);
1040 ################################################################################
1042 # reprocess is necessary for the case of foo_1.2-1 and foo_1.2-2 in
1043 # Incoming. -1 will reference the .orig.tar.gz, but -2 will not.
1044 # Katie.check_dsc_against_db() can find the .orig.tar.gz but it will
1045 # not have processed it during it's checks of -2. If -1 has been
1046 # deleted or otherwise not checked by jennifer, the .orig.tar.gz will
1047 # not have been checked at all. To get round this, we force the
1048 # .orig.tar.gz into the .changes structure and reprocess the .changes
1051 def process_it (changes_file):
1052 global reprocess, reject_message;
1054 # Reset some globals
1057 reject_message = "";
1059 # Absolutize the filename to avoid the requirement of being in the
1060 # same directory as the .changes file.
1061 pkg.changes_file = os.path.abspath(changes_file);
1063 # Remember where we are so we can come back after cd-ing into the
1064 # holding directory.
1065 pkg.directory = os.getcwd();
1068 # If this is the Real Thing(tm), copy things into a private
1069 # holding directory first to avoid replacable file races.
1070 if not Options["No-Action"]:
1071 os.chdir(Cnf["Dir::Queue::Holding"]);
1072 copy_to_holding(pkg.changes_file);
1073 # Relativize the filename so we use the copy in holding
1074 # rather than the original...
1075 pkg.changes_file = os.path.basename(pkg.changes_file);
1076 changes["fingerprint"] = check_signature(pkg.changes_file);
1077 changes_valid = check_changes();
1080 check_distributions();
1087 Katie.update_subst(reject_message);
1093 traceback.print_exc(file=sys.stderr);
1096 # Restore previous WD
1097 os.chdir(pkg.directory);
1099 ###############################################################################
1102 global Cnf, Options, Logger, nmu;
1104 changes_files = init();
1109 if Options["Version"]:
1110 print "jennifer %s" % (jennifer_version);
1113 # -n/--dry-run invalidates some other options which would involve things happening
1114 if Options["No-Action"]:
1115 Options["Automatic"] = "";
1117 # Ensure all the arguments we were given are .changes files
1118 for file in changes_files:
1119 if file[-8:] != ".changes":
1120 utils.warn("Ignoring '%s' because it's not a .changes file." % (file));
1121 changes_files.remove(file);
1123 if changes_files == []:
1124 utils.fubar("Need at least one .changes file as an argument.");
1126 # Check that we aren't going to clash with the daily cron job
1128 if not Options["No-Action"] and os.path.exists("%s/Archive_Maintenance_In_Progress" % (Cnf["Dir::Root"])) and not Options["No-Lock"]:
1129 utils.fubar("Archive maintenance in progress. Try again later.");
1131 # Obtain lock if not in no-action mode and initialize the log
1133 if not Options["No-Action"]:
1134 lock_fd = os.open(Cnf["Dinstall::LockFile"], os.O_RDWR | os.O_CREAT);
1135 fcntl.lockf(lock_fd, FCNTL.F_TLOCK);
1136 Logger = Katie.Logger = logging.Logger(Cnf, "jennifer");
1138 # debian-{devel-,}-changes@lists.debian.org toggles writes access based on this header
1139 bcc = "X-Katie: %s" % (jennifer_version);
1140 if Cnf.has_key("Dinstall::Bcc"):
1141 Katie.Subst["__BCC__"] = bcc + "\nBcc: %s" % (Cnf["Dinstall::Bcc"]);
1143 Katie.Subst["__BCC__"] = bcc;
1146 # Sort the .changes files so that we process sourceful ones first
1147 changes_files.sort(utils.changes_compare);
1149 # Process the changes files
1150 for changes_file in changes_files:
1151 print "\n" + changes_file;
1153 process_it (changes_file);
1155 if not Options["No-Action"]:
1158 accept_count = Katie.accept_count;
1159 accept_bytes = Katie.accept_bytes;
1162 if accept_count > 1:
1164 print "Accepted %d package %s, %s." % (accept_count, sets, utils.size_type(int(accept_bytes)));
1165 Logger.log(["total",accept_count,accept_bytes]);
1167 if not Options["No-Action"]:
1170 ################################################################################
1172 if __name__ == '__main__':