3 # Checks Debian packages from Incoming
4 # Copyright (C) 2000, 2001, 2002 James Troup <james@nocrew.org>
5 # $Id: jennifer,v 1.28 2002-10-21 13:54:53 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, 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$");
42 re_valid_version = re.compile(r"^([0-9]+:)?[0-9A-Za-z\.\-\+:]+$");
43 re_valid_pkg_name = re.compile(r"^[\dA-Za-z][\dA-Za-z\+\-\.]+$");
45 ################################################################################
48 jennifer_version = "$Revision: 1.28 $";
58 # Aliases to the real vars in the Katie class; hysterical raisins.
66 ###############################################################################
69 global Cnf, Options, Katie, changes, dsc, dsc_files, files, pkg;
73 Cnf = apt_pkg.newConfiguration();
74 apt_pkg.ReadConfigFileISC(Cnf,utils.which_conf_file());
76 Arguments = [('a',"automatic","Dinstall::Options::Automatic"),
77 ('h',"help","Dinstall::Options::Help"),
78 ('n',"no-action","Dinstall::Options::No-Action"),
79 ('p',"no-lock", "Dinstall::Options::No-Lock"),
80 ('s',"no-mail", "Dinstall::Options::No-Mail"),
81 ('V',"version","Dinstall::Options::Version")];
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")
90 Katie = katie.Katie(Cnf);
92 changes = Katie.pkg.changes;
94 dsc_files = Katie.pkg.dsc_files;
95 files = Katie.pkg.files;
100 #########################################################################################
102 def usage (exit_code=0):
103 print """Usage: dinstall [OPTION]... [CHANGES]...
104 -a, --automatic automatic run
105 -h, --help show this help and exit.
106 -n, --no-action don't do anything
107 -p, --no-lock don't check lockfile !! for cron.daily only !!
108 -s, --no-mail don't send any mail
109 -V, --version display the version number and exit"""
112 #########################################################################################
114 # Our very own version of commands.getouputstatus(), hacked to support
116 def get_status_output(cmd, status_read, status_write):
117 cmd = ['/bin/sh', '-c', cmd];
118 p2cread, p2cwrite = os.pipe();
119 c2pread, c2pwrite = os.pipe();
120 errout, errin = os.pipe();
130 for i in range(3, 256):
131 if i != status_write:
137 os.execvp(cmd[0], cmd);
143 os.dup2(c2pread, c2pwrite);
144 os.dup2(errout, errin);
146 output = status = "";
148 i, o, e = select.select([c2pwrite, errin, status_read], [], []);
151 r = os.read(fd, 8196);
153 more_data.append(fd);
154 if fd == c2pwrite or fd == errin:
156 elif fd == status_read:
159 utils.fubar("Unexpected file descriptor [%s] returned from select\n" % (fd));
161 pid, exit_status = os.waitpid(pid, 0)
163 os.close(status_write);
164 os.close(status_read);
174 return output, status, exit_status;
176 #########################################################################################
178 def Dict(**dict): return dict
180 def reject (str, prefix="Rejected: "):
181 global reject_message;
183 reject_message += prefix + str + "\n";
185 #########################################################################################
187 def check_signature (filename):
188 if not utils.re_taint_free.match(os.path.basename(filename)):
189 reject("!!WARNING!! tainted filename: '%s'." % (filename));
192 status_read, status_write = os.pipe();
193 cmd = "gpgv --status-fd %s --keyring %s --keyring %s %s" \
194 % (status_write, Cnf["Dinstall::PGPKeyring"], Cnf["Dinstall::GPGKeyring"], filename);
195 (output, status, exit_status) = get_status_output(cmd, status_read, status_write);
197 # Process the status-fd output
199 bad = internal_error = "";
200 for line in status.split('\n'):
204 split = line.split();
206 internal_error += "gpgv status line is malformed (< 2 atoms) ['%s'].\n" % (line);
208 (gnupg, keyword) = split[:2];
209 if gnupg != "[GNUPG:]":
210 internal_error += "gpgv status line is malformed (incorrect prefix '%s').\n" % (gnupg);
213 if keywords.has_key(keyword) and keyword != "NODATA":
214 internal_error += "found duplicate status token ('%s').\n" % (keyword);
217 keywords[keyword] = args;
219 # If we failed to parse the status-fd output, let's just whine and bail now
221 reject("internal error while performing signature check on %s." % (filename));
222 reject(internal_error, "");
223 reject("Please report the above errors to the Archive maintainers by replying to this mail.", "");
226 # Now check for obviously bad things in the processed output
227 if keywords.has_key("SIGEXPIRED"):
228 reject("key used to sign %s has expired." % (filename));
230 if keywords.has_key("KEYREVOKED"):
231 reject("key used to sign %s has been revoked." % (filename));
233 if keywords.has_key("BADSIG"):
234 reject("bad signature on %s." % (filename));
236 if keywords.has_key("ERRSIG") and not keywords.has_key("NO_PUBKEY"):
237 reject("failed to check signature on %s." % (filename));
239 if keywords.has_key("NO_PUBKEY"):
240 reject("key used to sign %s not found in keyring." % (filename));
242 if keywords.has_key("BADARMOR"):
243 reject("ascii armour of signature was corrupt in %s." % (filename));
245 if keywords.has_key("NODATA"):
246 reject("no signature found in %s." % (filename));
252 # Next check gpgv exited with a zero return code
254 reject("gpgv failed while checking %s." % (filename));
256 reject(utils.prefix_multi_line_string(status, " [GPG status-fd output:] "), "");
258 reject(utils.prefix_multi_line_string(output, " [GPG output:] "), "");
261 # Sanity check the good stuff we expect
262 if not keywords.has_key("VALIDSIG"):
263 reject("signature on %s does not appear to be valid [No VALIDSIG]." % (filename));
266 args = keywords["VALIDSIG"];
268 reject("internal error while checking signature on %s." % (filename));
271 fingerprint = args[0];
272 if not keywords.has_key("GOODSIG"):
273 reject("signature on %s does not appear to be valid [No GOODSIG]." % (filename));
275 if not keywords.has_key("SIG_ID"):
276 reject("signature on %s does not appear to be valid [No SIG_ID]." % (filename));
279 # Finally ensure there's not something we don't recognise
280 known_keywords = Dict(VALIDSIG="",SIG_ID="",GOODSIG="",BADSIG="",ERRSIG="",
281 SIGEXPIRED="",KEYREVOKED="",NO_PUBKEY="",BADARMOR="",
284 for keyword in keywords.keys():
285 if not known_keywords.has_key(keyword):
286 reject("found unknown status token '%s' from gpgv with args '%r' in %s." % (keyword, keywords[keyword], filename));
294 ################################################################################
296 def copy_to_holding(filename):
299 base_filename = os.path.basename(filename);
301 dest = Cnf["Dir::Queue::Holding"] + '/' + base_filename;
303 fd = os.open(dest, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0640);
306 # Shouldn't happen, but will if, for example, someone lists a
307 # file twice in the .changes.
308 if errno.errorcode[e.errno] == 'EEXIST':
309 reject("%s already exists in holding area; can not overwrite." % (base_filename));
314 shutil.copy(filename, dest);
316 # In either case (ENOENT or EACCES) we want to remove the
317 # O_CREAT | O_EXCLed ghost file, so add the file to the list
318 # of 'in holding' even if it's not the real file.
319 if errno.errorcode[e.errno] == 'ENOENT':
320 reject("can not copy %s to holding area: file not found." % (base_filename));
323 elif errno.errorcode[e.errno] == 'EACCES':
324 reject("can not copy %s to holding area: read permission denied." % (base_filename));
329 in_holding[base_filename] = "";
331 ################################################################################
337 os.chdir(Cnf["Dir::Queue::Holding"]);
338 for file in in_holding.keys():
339 if os.path.exists(file):
340 if file.find('/') != -1:
341 utils.fubar("WTF? clean_holding() got a file ('%s') with / in it!" % (file));
347 ################################################################################
350 filename = pkg.changes_file;
352 # Default in case we bail out
353 changes["maintainer822"] = Cnf["Dinstall::MyEmailAddress"];
354 changes["changedby822"] = Cnf["Dinstall::MyEmailAddress"];
355 changes["architecture"] = {};
357 # Parse the .changes field into a dictionary
359 changes.update(utils.parse_changes(filename));
360 except utils.cant_open_exc:
361 reject("can't read changes file '%s'." % (filename));
363 except utils.changes_parse_error_exc, line:
364 reject("error parsing changes file '%s', can't grok: %s." % (filename, line));
367 # Parse the Files field from the .changes into another dictionary
369 files.update(utils.build_file_list(changes));
370 except utils.changes_parse_error_exc, line:
371 reject("error parsing changes file '%s', can't grok: %s." % (filename, line));
372 except utils.nk_format_exc, format:
373 reject("unknown format '%s' of changes file '%s'." % (format, filename));
376 # Check for mandatory fields
377 for i in ("source", "binary", "architecture", "version", "distribution", "maintainer", "files"):
378 if not changes.has_key(i):
379 reject("Missing field `%s' in changes file." % (i));
380 return 0 # Avoid <undef> errors during later tests
382 # Split multi-value fields into a lower-level dictionary
383 for i in ("architecture", "distribution", "binary", "closes"):
384 o = changes.get(i, "")
391 # Fix the Maintainer: field to be RFC822 compatible
392 (changes["maintainer822"], changes["maintainername"], changes["maintaineremail"]) = utils.fix_maintainer (changes["maintainer"])
394 # Fix the Changed-By: field to be RFC822 compatible; if it exists.
395 (changes["changedby822"], changes["changedbyname"], changes["changedbyemail"]) = utils.fix_maintainer(changes.get("changed-by",""));
397 # Ensure all the values in Closes: are numbers
398 if changes.has_key("closes"):
399 for i in changes["closes"].keys():
400 if katie.re_isanum.match (i) == None:
401 reject("`%s' from Closes field isn't a number." % (i));
404 # chopversion = no epoch; chopversion2 = no epoch and no revision (e.g. for .orig.tar.gz comparison)
405 changes["chopversion"] = utils.re_no_epoch.sub('', changes["version"])
406 changes["chopversion2"] = utils.re_no_revision.sub('', changes["chopversion"])
408 # Check there isn't already a changes file of the same name in one
409 # of the queue directories.
410 base_filename = os.path.basename(filename);
411 for dir in [ "Accepted", "Byhand", "Done", "New" ]:
412 if os.path.exists(Cnf["Dir::Queue::%s" % (dir) ]+'/'+base_filename):
413 reject("a changes file with the same name already exists in the %s directory." % (dir));
417 ################################################################################
419 def check_distributions():
420 "Check and map the Distribution field of a .changes file."
422 # Handle suite mappings
423 for map in Cnf.ValueList("SuiteMappings"):
426 if type == "map" or type == "silent-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 if type != "silent-map":
432 reject("Mapping %s to %s." % (source, dest),"");
433 elif type == "map-unreleased":
434 (source, dest) = args[1:3];
435 if changes["distribution"].has_key(source):
436 for arch in changes["architecture"].keys():
437 if arch not in Cnf.ValueList("Suite::%s::Architectures" % (source)):
438 reject("Mapping %s to %s for unreleased architecture %s." % (source, dest, arch),"");
439 del changes["distribution"][source];
440 changes["distribution"][dest] = 1;
442 elif type == "ignore":
444 if changes["distribution"].has_key(suite):
445 del changes["distribution"][suite];
446 reject("Ignoring %s as a target suite." % (suite), "Warning: ");
448 # Ensure there is (still) a target distribution
449 if changes["distribution"].keys() == []:
450 reject("no valid distribution.");
452 # Ensure target distributions exist
453 for suite in changes["distribution"].keys():
454 if not Cnf.has_key("Suite::%s" % (suite)):
455 reject("Unknown distribution `%s'." % (suite));
457 ################################################################################
462 archive = utils.where_am_i();
463 file_keys = files.keys();
465 # if reprocess is 2 we've already done this and we're checking
466 # things again for the new .orig.tar.gz.
467 # [Yes, I'm fully aware of how disgusting this is]
468 if not Options["No-Action"] and reprocess < 2:
470 os.chdir(pkg.directory);
471 for file in file_keys:
472 copy_to_holding(file);
477 for file in file_keys:
478 # Ensure the file does not already exist in one of the accepted directories
479 for dir in [ "Accepted", "Byhand", "New" ]:
480 if os.path.exists(Cnf["Dir::Queue::%s" % (dir) ]+'/'+file):
481 reject("%s file already exists in the %s directory." % (file, dir));
482 if not utils.re_taint_free.match(file):
483 reject("!!WARNING!! tainted filename: '%s'." % (file));
484 # Check the file is readable
485 if os.access(file,os.R_OK) == 0:
486 # When running in -n, copy_to_holding() won't have
487 # generated the reject_message, so we need to.
488 if Options["No-Action"]:
489 if os.path.exists(file):
490 reject("Can't read `%s'. [permission denied]" % (file));
492 reject("Can't read `%s'. [file not found]" % (file));
493 files[file]["type"] = "unreadable";
495 # If it's byhand skip remaining checks
496 if files[file]["section"] == "byhand":
497 files[file]["byhand"] = 1;
498 files[file]["type"] = "byhand";
499 # Checks for a binary package...
500 elif utils.re_isadeb.match(file) != None:
501 files[file]["type"] = "deb";
503 # Extract package control information
504 deb_file = utils.open_file(file);
506 control = apt_pkg.ParseSection(apt_inst.debExtractControl(deb_file));
508 reject("%s: debExtractControl() raised %s." % (file, sys.exc_type));
510 # Can't continue, none of the checks on control would work.
514 # Check for mandatory fields
515 for field in [ "Package", "Architecture", "Version" ]:
516 if control.Find(field) == None:
517 reject("%s: No %s field in control." % (file, field));
521 # Ensure the package name matches the one give in the .changes
522 if not changes["binary"].has_key(control.Find("Package", "")):
523 reject("%s: control file lists name as `%s', which isn't in changes file." % (file, control.Find("Package", "")));
525 # Validate the package field
526 package = control.Find("Package");
527 if not re_valid_pkg_name.match(package):
528 reject("%s: invalid package name '%s'." % (file, package));
530 # Validate the version field
531 version = control.Find("Version");
532 if not re_valid_version.match(version):
533 reject("%s: invalid version number '%s'." % (file, version));
535 # Ensure the architecture of the .deb is one we know about.
536 default_suite = Cnf.get("Dinstall::DefaultSuite", "Unstable")
537 architecture = control.Find("Architecture");
538 if architecture not in Cnf.ValueList("Suite::%s::Architectures" % (default_suite)):
539 reject("Unknown architecture '%s'." % (architecture));
541 # Ensure the architecture of the .deb is one of the ones
542 # listed in the .changes.
543 if not changes["architecture"].has_key(architecture):
544 reject("%s: control file lists arch as `%s', which isn't in changes file." % (file, architecture));
546 # Check the section & priority match those given in the .changes (non-fatal)
547 if control.Find("Section") != None and files[file]["section"] != "" and files[file]["section"] != control.Find("Section"):
548 reject("%s control file lists section as `%s', but changes file has `%s'." % (file, control.Find("Section", ""), files[file]["section"]), "Warning: ");
549 if control.Find("Priority") != None and files[file]["priority"] != "" and files[file]["priority"] != control.Find("Priority"):
550 reject("%s control file lists priority as `%s', but changes file has `%s'." % (file, control.Find("Priority", ""), files[file]["priority"]),"Warning: ");
552 files[file]["package"] = package;
553 files[file]["architecture"] = architecture;
554 files[file]["version"] = version;
555 files[file]["maintainer"] = control.Find("Maintainer", "");
556 if file.endswith(".udeb"):
557 files[file]["dbtype"] = "udeb";
558 elif file.endswith(".deb"):
559 files[file]["dbtype"] = "deb";
561 reject("%s is neither a .deb or a .udeb." % (file));
562 files[file]["source"] = control.Find("Source", files[file]["package"]);
563 # Get the source version
564 source = files[file]["source"];
566 if source.find("(") != -1:
567 m = utils.re_extract_src_version.match(source)
569 source_version = m.group(2)
570 if not source_version:
571 source_version = files[file]["version"];
572 files[file]["source package"] = source;
573 files[file]["source version"] = source_version;
575 # Ensure the filename matches the contents of the .deb
576 m = utils.re_isadeb.match(file);
578 file_package = m.group(1);
579 if files[file]["package"] != file_package:
580 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"]));
581 epochless_version = utils.re_no_epoch.sub('', control.Find("Version"));
583 file_version = m.group(2);
584 if epochless_version != file_version:
585 reject("%s: version part of filename (%s) does not match package version in the %s (%s)." % (file, file_version, files[file]["dbtype"], epochless_version));
587 file_architecture = m.group(3);
588 if files[file]["architecture"] != file_architecture:
589 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"]));
591 # Check for existent source
592 source_version = files[file]["source version"];
593 source_package = files[file]["source package"];
594 if changes["architecture"].has_key("source"):
595 if source_version != changes["version"]:
596 reject("source version (%s) for %s doesn't match changes version %s." % (source_version, file, changes["version"]));
598 # Check in the SQL database
599 if not Katie.source_exists(source_package, source_version):
600 # Check in one of the other directories
601 source_epochless_version = utils.re_no_epoch.sub('', source_version);
602 dsc_filename = "%s_%s.dsc" % (source_package, source_epochless_version);
603 if os.path.exists(Cnf["Dir::Queue::Byhand"] + '/' + dsc_filename):
604 files[file]["byhand"] = 1;
605 elif os.path.exists(Cnf["Dir::Queue::New"] + '/' + dsc_filename):
606 files[file]["new"] = 1;
607 elif not os.path.exists(Cnf["Dir::Queue::Accepted"] + '/' + dsc_filename):
608 reject("no source found for %s %s (%s)." % (source_package, source_version, file));
609 # Check the version and for file overwrites
610 reject(Katie.check_binary_against_db(file),"");
612 # Checks for a source package...
614 m = utils.re_issource.match(file);
616 files[file]["package"] = m.group(1);
617 files[file]["version"] = m.group(2);
618 files[file]["type"] = m.group(3);
620 # Ensure the source package name matches the Source filed in the .changes
621 if changes["source"] != files[file]["package"]:
622 reject("%s: changes file doesn't say %s for Source" % (file, files[file]["package"]));
624 # Ensure the source version matches the version in the .changes file
625 if files[file]["type"] == "orig.tar.gz":
626 changes_version = changes["chopversion2"];
628 changes_version = changes["chopversion"];
629 if changes_version != files[file]["version"]:
630 reject("%s: should be %s according to changes file." % (file, changes_version));
632 # Ensure the .changes lists source in the Architecture field
633 if not changes["architecture"].has_key("source"):
634 reject("%s: changes file doesn't list `source' in Architecture field." % (file));
636 # Check the signature of a .dsc file
637 if files[file]["type"] == "dsc":
638 dsc["fingerprint"] = check_signature(file);
640 files[file]["architecture"] = "source";
642 # Not a binary or source package? Assume byhand...
644 files[file]["byhand"] = 1;
645 files[file]["type"] = "byhand";
647 # Per-suite file checks
648 files[file]["oldfiles"] = {};
649 for suite in changes["distribution"].keys():
651 if files[file].has_key("byhand"):
654 # Handle component mappings
655 for map in Cnf.ValueList("ComponentMappings"):
656 (source, dest) = map.split();
657 if files[file]["component"] == source:
658 files[file]["original component"] = source;
659 files[file]["component"] = dest;
660 # Ensure the component is valid for the target suite
661 if Cnf.has_key("Suite:%s::Components" % (suite)) and \
662 files[file]["component"] not in Cnf.ValueList("Suite::%s::Components" % (suite)):
663 reject("unknown component `%s' for suite `%s'." % (files[file]["component"], suite));
666 # See if the package is NEW
667 if not Katie.in_override_p(files[file]["package"], files[file]["component"], suite, files[file].get("dbtype",""), file):
668 files[file]["new"] = 1;
670 # Validate the component
671 component = files[file]["component"];
672 component_id = db_access.get_component_id(component);
673 if component_id == -1:
674 reject("file '%s' has unknown component '%s'." % (file, component));
677 # Validate the priority
678 if files[file]["priority"].find('/') != -1:
679 reject("file '%s' has invalid priority '%s' [contains '/']." % (file, files[file]["priority"]));
681 # Determine the location
682 location = Cnf["Dir::Pool"];
683 location_id = db_access.get_location_id (location, component, archive);
684 if location_id == -1:
685 reject("[INTERNAL ERROR] couldn't determine location (Component: %s, Archive: %s)" % (component, archive));
686 files[file]["location id"] = location_id;
688 # Check the md5sum & size against existing files (if any)
689 files[file]["pool name"] = utils.poolify (changes["source"], files[file]["component"]);
690 files_id = db_access.get_files_id(files[file]["pool name"] + file, files[file]["size"], files[file]["md5sum"], files[file]["location id"]);
692 reject("INTERNAL ERROR, get_files_id() returned multiple matches for %s." % (file));
694 reject("md5sum and/or size mismatch on existing copy of %s." % (file));
695 files[file]["files id"] = files_id
697 # Check for packages that have moved from one component to another
698 q = Katie.projectB.query("""
699 SELECT c.name FROM binaries b, bin_associations ba, suite s, location l,
700 component c, architecture a, files f
701 WHERE b.package = '%s' AND s.suite_name = '%s'
702 AND (a.arch_string = '%s' OR a.arch_string = 'all')
703 AND ba.bin = b.id AND ba.suite = s.id AND b.architecture = a.id
704 AND f.location = l.id AND l.component = c.id AND b.file = f.id"""
705 % (files[file]["package"], suite,
706 files[file]["architecture"]));
709 files[file]["othercomponents"] = ql[0][0];
711 # If the .changes file says it has source, it must have source.
712 if changes["architecture"].has_key("source"):
714 for file in file_keys:
715 if files[file]["type"] == "dsc":
718 reject("no source found and Architecture line in changes mention source.");
720 ###############################################################################
725 for file in files.keys():
726 # The .orig.tar.gz can disappear out from under us is it's a
727 # duplicate of one in the archive.
728 if not files.has_key(file):
730 if files[file]["type"] == "dsc":
731 # Parse the .dsc file
733 dsc.update(utils.parse_changes(file, dsc_whitespace_rules=1));
734 except utils.cant_open_exc:
735 # if not -n copy_to_holding() will have done this for us...
736 if Options["No-Action"]:
737 reject("can't read .dsc file '%s'." % (file));
738 except utils.changes_parse_error_exc, line:
739 reject("error parsing .dsc file '%s', can't grok: %s." % (file, line));
740 except utils.invalid_dsc_format_exc, line:
741 reject("syntax error in .dsc file '%s', line %s." % (file, line));
742 # Build up the file list of files mentioned by the .dsc
744 dsc_files.update(utils.build_file_list(dsc, is_a_dsc=1));
745 except utils.no_files_exc:
746 reject("no Files: field in .dsc file.");
748 except utils.changes_parse_error_exc, line:
749 reject("error parsing .dsc file '%s', can't grok: %s." % (file, line));
752 # Enforce mandatory fields
753 for i in ("format", "source", "version", "binary", "maintainer", "architecture", "files"):
754 if not dsc.has_key(i):
755 reject("Missing field `%s' in dsc file." % (i));
757 # Validate the source and version fields
758 if dsc.has_key("source") and not re_valid_pkg_name.match(dsc["source"]):
759 reject("%s: invalid source name '%s'." % (file, dsc["source"]));
760 if dsc.has_key("version") and not re_valid_version.match(dsc["version"]):
761 reject("%s: invalid version number '%s'." % (file, dsc["version"]));
763 # The dpkg maintainer from hell strikes again! Bumping the
764 # version number of the .dsc breaks extraction by stable's
766 if dsc["format"] != "1.0":
767 reject("""[dpkg-sucks] source package was produced by a broken version
768 of dpkg-dev 1.9.1{3,4}; please rebuild with >= 1.9.15 version
771 # Ensure the version number in the .dsc matches the version number in the .changes
772 epochless_dsc_version = utils.re_no_epoch.sub('', dsc.get("version"));
773 changes_version = files[file]["version"];
774 if epochless_dsc_version != files[file]["version"]:
775 reject("version ('%s') in .dsc does not match version ('%s') in .changes." % (epochless_dsc_version, changes_version));
777 # Ensure there is a .tar.gz in the .dsc file
779 for f in dsc_files.keys():
780 m = utils.re_issource.match(f);
782 reject("%s mentioned in the Files field of %s not recognised as source." % (f, file));
784 if type == "orig.tar.gz" or type == "tar.gz":
787 reject("no .tar.gz or .orig.tar.gz listed in the Files field of %s." % (file));
789 # Ensure source is newer than existing source in target suites
790 reject(Katie.check_source_against_db(file),"");
792 (reject_msg, is_in_incoming) = Katie.check_dsc_against_db(file);
793 reject(reject_msg, "");
795 if not Options["No-Action"]:
796 copy_to_holding(is_in_incoming);
797 orig_tar_gz = os.path.basename(is_in_incoming);
798 files[orig_tar_gz] = {};
799 files[orig_tar_gz]["size"] = os.stat(orig_tar_gz)[stat.ST_SIZE];
800 files[orig_tar_gz]["md5sum"] = dsc_files[orig_tar_gz]["md5sum"];
801 files[orig_tar_gz]["section"] = files[file]["section"];
802 files[orig_tar_gz]["priority"] = files[file]["priority"];
803 files[orig_tar_gz]["component"] = files[file]["component"];
804 files[orig_tar_gz]["type"] = "orig.tar.gz";
807 ################################################################################
809 # Some cunning stunt broke dpkg-source in dpkg 1.8{,.1}; detect the
810 # resulting bad source packages and reject them.
812 # Even more amusingly the fix in 1.8.1.1 didn't actually fix the
813 # problem just changed the symptoms.
816 for filename in files.keys():
817 if files[filename]["type"] == "diff.gz":
818 file = gzip.GzipFile(filename, 'r');
819 for line in file.readlines():
820 if re_bad_diff.search(line):
821 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.");
824 ################################################################################
826 # FIXME: should be a debian specific check called from a hook
828 def check_urgency ():
829 if changes["architecture"].has_key("source"):
830 if not changes.has_key("urgency"):
831 changes["urgency"] = Cnf["Urgency::Default"];
832 if changes["urgency"] not in Cnf.ValueList("Urgency::Valid"):
833 reject("%s is not a valid urgency; it will be treated as %s by testing." % (changes["urgency"], Cnf["Urgency::Default"]), "Warning: ");
834 changes["urgency"] = Cnf["Urgency::Default"];
835 changes["urgency"] = changes["urgency"].lower();
837 ################################################################################
839 def check_md5sums ():
840 for file in files.keys():
842 file_handle = utils.open_file(file);
843 except utils.cant_open_exc:
847 if apt_pkg.md5sum(file_handle) != files[file]["md5sum"]:
848 reject("%s: md5sum check failed." % (file));
851 actual_size = os.stat(file)[stat.ST_SIZE];
852 size = int(files[file]["size"]);
853 if size != actual_size:
854 reject("%s: actual file size (%s) does not match size (%s) in .changes"
855 % (file, actual_size, size));
857 for file in dsc_files.keys():
859 file_handle = utils.open_file(file);
860 except utils.cant_open_exc:
864 if apt_pkg.md5sum(file_handle) != dsc_files[file]["md5sum"]:
865 reject("%s: md5sum check failed." % (file));
868 actual_size = os.stat(file)[stat.ST_SIZE];
869 size = int(dsc_files[file]["size"]);
870 if size != actual_size:
871 reject("%s: actual file size (%s) does not match size (%s) in .dsc"
872 % (file, actual_size, size));
874 ################################################################################
876 # Sanity check the time stamps of files inside debs.
877 # [Files in the near future cause ugly warnings and extreme time
878 # travel can cause errors on extraction]
880 def check_timestamps():
882 def __init__(self, future_cutoff, past_cutoff):
884 self.future_cutoff = future_cutoff;
885 self.past_cutoff = past_cutoff;
888 self.future_files = {};
889 self.ancient_files = {};
891 def callback(self, Kind,Name,Link,Mode,UID,GID,Size,MTime,Major,Minor):
892 if MTime > self.future_cutoff:
893 self.future_files[Name] = MTime;
894 if MTime < self.past_cutoff:
895 self.ancient_files[Name] = MTime;
898 future_cutoff = time.time() + int(Cnf["Dinstall::FutureTimeTravelGrace"]);
899 past_cutoff = time.mktime(time.strptime(Cnf["Dinstall::PastCutoffYear"],"%Y"));
900 tar = Tar(future_cutoff, past_cutoff);
901 for filename in files.keys():
902 if files[filename]["type"] == "deb":
905 deb_file = utils.open_file(filename);
906 apt_inst.debExtract(deb_file,tar.callback,"control.tar.gz");
908 apt_inst.debExtract(deb_file,tar.callback,"data.tar.gz");
911 future_files = tar.future_files.keys();
913 num_future_files = len(future_files);
914 future_file = future_files[0];
915 future_date = tar.future_files[future_file];
916 reject("%s: has %s file(s) with a time stamp too far into the future (e.g. %s [%s])."
917 % (filename, num_future_files, future_file,
918 time.ctime(future_date)));
920 ancient_files = tar.ancient_files.keys();
922 num_ancient_files = len(ancient_files);
923 ancient_file = ancient_files[0];
924 ancient_date = tar.ancient_files[ancient_file];
925 reject("%s: has %s file(s) with a time stamp too ancient (e.g. %s [%s])."
926 % (filename, num_ancient_files, ancient_file,
927 time.ctime(ancient_date)));
929 reject("%s: timestamp check failed; caught %s" % (filename, sys.exc_type));
931 ################################################################################
932 ################################################################################
934 # If any file of an upload has a recent mtime then chances are good
935 # the file is still being uploaded.
937 def upload_too_new():
939 # Move back to the original directory to get accurate time stamps
941 os.chdir(pkg.directory);
942 file_list = pkg.files.keys();
943 file_list.extend(pkg.dsc_files.keys());
944 file_list.append(pkg.changes_file);
945 for file in file_list:
947 last_modified = time.time()-os.path.getmtime(file);
948 if last_modified < int(Cnf["Dinstall::SkipTime"]):
956 ################################################################################
959 # changes["distribution"] may not exist in corner cases
960 # (e.g. unreadable changes files)
961 if not changes.has_key("distribution") or not isinstance(changes["distribution"], DictType):
962 changes["distribution"] = {};
964 (summary, short_summary) = Katie.build_summaries();
967 for file in files.keys():
968 if files[file].has_key("byhand"):
970 elif files[file].has_key("new"):
973 (prompt, answer) = ("", "XXX")
974 if Options["No-Action"] or Options["Automatic"]:
977 if reject_message.find("Rejected") != -1:
979 print "SKIP (too new)\n" + reject_message,;
980 prompt = "[S]kip, Quit ?";
982 print "REJECT\n" + reject_message,;
983 prompt = "[R]eject, Skip, Quit ?";
984 if Options["Automatic"]:
987 print "NEW to %s\n%s%s" % (", ".join(changes["distribution"].keys()), reject_message, summary),;
988 prompt = "[N]ew, Skip, Quit ?";
989 if Options["Automatic"]:
992 print "BYHAND\n" + reject_message + summary,;
993 prompt = "[B]yhand, Skip, Quit ?";
994 if Options["Automatic"]:
997 print "ACCEPT\n" + reject_message + summary,;
998 prompt = "[A]ccept, Skip, Quit ?";
999 if Options["Automatic"]:
1002 while prompt.find(answer) == -1:
1003 answer = utils.our_raw_input(prompt);
1004 m = katie.re_default_answer.match(prompt);
1006 answer = m.group(1);
1007 answer = answer[:1].upper();
1010 os.chdir (pkg.directory);
1011 Katie.do_reject(0, reject_message);
1013 accept(summary, short_summary);
1017 acknowledge_new (summary);
1021 ################################################################################
1023 def accept (summary, short_summary):
1024 Katie.accept(summary, short_summary);
1025 Katie.check_override();
1027 # Finally, remove the originals from the unchecked directory
1028 os.chdir (pkg.directory);
1029 for file in files.keys():
1031 os.unlink(pkg.changes_file);
1033 ################################################################################
1035 def do_byhand (summary):
1036 print "Moving to BYHAND holding area."
1037 Logger.log(["Moving to byhand", pkg.changes_file]);
1039 Katie.dump_vars(Cnf["Dir::Queue::Byhand"]);
1041 file_keys = files.keys();
1043 # Move all the files into the byhand directory
1044 utils.move (pkg.changes_file, Cnf["Dir::Queue::Byhand"]);
1045 for file in file_keys:
1046 utils.move (file, Cnf["Dir::Queue::Byhand"], perms=0660);
1048 # Check for override disparities
1049 Katie.Subst["__SUMMARY__"] = summary;
1050 Katie.check_override();
1052 # Finally remove the originals.
1053 os.chdir (pkg.directory);
1054 for file in file_keys:
1056 os.unlink(pkg.changes_file);
1058 ################################################################################
1060 def acknowledge_new (summary):
1061 Subst = Katie.Subst;
1063 print "Moving to NEW holding area."
1064 Logger.log(["Moving to new", pkg.changes_file]);
1066 Katie.dump_vars(Cnf["Dir::Queue::New"]);
1068 file_keys = files.keys();
1070 # Move all the files into the 'new' directory
1071 utils.move (pkg.changes_file, Cnf["Dir::Queue::New"]);
1072 for file in file_keys:
1073 utils.move (file, Cnf["Dir::Queue::New"], perms=0660);
1075 if not Options["No-Mail"]:
1076 print "Sending new ack.";
1077 Subst["__SUMMARY__"] = summary;
1078 new_ack_message = utils.TemplateSubst(Subst,Cnf["Dir::Templates"]+"/jennifer.new");
1079 utils.send_mail(new_ack_message,"");
1081 # Finally remove the originals.
1082 os.chdir (pkg.directory);
1083 for file in file_keys:
1085 os.unlink(pkg.changes_file);
1087 ################################################################################
1089 # reprocess is necessary for the case of foo_1.2-1 and foo_1.2-2 in
1090 # Incoming. -1 will reference the .orig.tar.gz, but -2 will not.
1091 # Katie.check_dsc_against_db() can find the .orig.tar.gz but it will
1092 # not have processed it during it's checks of -2. If -1 has been
1093 # deleted or otherwise not checked by jennifer, the .orig.tar.gz will
1094 # not have been checked at all. To get round this, we force the
1095 # .orig.tar.gz into the .changes structure and reprocess the .changes
1098 def process_it (changes_file):
1099 global reprocess, reject_message;
1101 # Reset some globals
1104 reject_message = "";
1106 # Absolutize the filename to avoid the requirement of being in the
1107 # same directory as the .changes file.
1108 pkg.changes_file = os.path.abspath(changes_file);
1110 # Remember where we are so we can come back after cd-ing into the
1111 # holding directory.
1112 pkg.directory = os.getcwd();
1115 # If this is the Real Thing(tm), copy things into a private
1116 # holding directory first to avoid replacable file races.
1117 if not Options["No-Action"]:
1118 os.chdir(Cnf["Dir::Queue::Holding"]);
1119 copy_to_holding(pkg.changes_file);
1120 # Relativize the filename so we use the copy in holding
1121 # rather than the original...
1122 pkg.changes_file = os.path.basename(pkg.changes_file);
1123 changes["fingerprint"] = check_signature(pkg.changes_file);
1124 changes_valid = check_changes();
1127 check_distributions();
1134 Katie.update_subst(reject_message);
1140 traceback.print_exc(file=sys.stderr);
1143 # Restore previous WD
1144 os.chdir(pkg.directory);
1146 ###############################################################################
1149 global Cnf, Options, Logger, nmu;
1151 changes_files = init();
1156 if Options["Version"]:
1157 print "jennifer %s" % (jennifer_version);
1160 # -n/--dry-run invalidates some other options which would involve things happening
1161 if Options["No-Action"]:
1162 Options["Automatic"] = "";
1164 # Ensure all the arguments we were given are .changes files
1165 for file in changes_files:
1166 if not file.endswith(".changes"):
1167 utils.warn("Ignoring '%s' because it's not a .changes file." % (file));
1168 changes_files.remove(file);
1170 if changes_files == []:
1171 utils.fubar("Need at least one .changes file as an argument.");
1173 # Check that we aren't going to clash with the daily cron job
1175 if not Options["No-Action"] and os.path.exists("%s/Archive_Maintenance_In_Progress" % (Cnf["Dir::Root"])) and not Options["No-Lock"]:
1176 utils.fubar("Archive maintenance in progress. Try again later.");
1178 # Obtain lock if not in no-action mode and initialize the log
1180 if not Options["No-Action"]:
1181 lock_fd = os.open(Cnf["Dinstall::LockFile"], os.O_RDWR | os.O_CREAT);
1182 fcntl.lockf(lock_fd, FCNTL.F_TLOCK);
1183 Logger = Katie.Logger = logging.Logger(Cnf, "jennifer");
1185 # debian-{devel-,}-changes@lists.debian.org toggles writes access based on this header
1186 bcc = "X-Katie: %s" % (jennifer_version);
1187 if Cnf.has_key("Dinstall::Bcc"):
1188 Katie.Subst["__BCC__"] = bcc + "\nBcc: %s" % (Cnf["Dinstall::Bcc"]);
1190 Katie.Subst["__BCC__"] = bcc;
1193 # Sort the .changes files so that we process sourceful ones first
1194 changes_files.sort(utils.changes_compare);
1196 # Process the changes files
1197 for changes_file in changes_files:
1198 print "\n" + changes_file;
1200 process_it (changes_file);
1202 if not Options["No-Action"]:
1205 accept_count = Katie.accept_count;
1206 accept_bytes = Katie.accept_bytes;
1209 if accept_count > 1:
1211 print "Accepted %d package %s, %s." % (accept_count, sets, utils.size_type(int(accept_bytes)));
1212 Logger.log(["total",accept_count,accept_bytes]);
1214 if not Options["No-Action"]:
1217 ################################################################################
1219 if __name__ == '__main__':