]> git.decadent.org.uk Git - dak.git/blob - jennifer
Reject source only uploads.
[dak.git] / jennifer
1 #!/usr/bin/env python
2
3 # Checks Debian packages from Incoming
4 # Copyright (C) 2000, 2001, 2002, 2003  James Troup <james@nocrew.org>
5 # $Id: jennifer,v 1.38 2003-10-13 00:39:20 troup Exp $
6
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.
11
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.
16
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
20
21 # Originally based on dinstall by Guy Maor <maor@debian.org>
22
23 ################################################################################
24
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
27 # repetitive music.
28 #         -- Unknown
29
30 ################################################################################
31
32 import errno, fcntl, gzip, os, re, shutil, stat, sys, time, traceback;
33 import apt_inst, apt_pkg;
34 import db_access, katie, logging, utils;
35
36 from types import *;
37
38 ################################################################################
39
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\+\-\.]+$");
44
45 ################################################################################
46
47 # Globals
48 jennifer_version = "$Revision: 1.38 $";
49
50 Cnf = None;
51 Options = None;
52 Logger = None;
53 Katie = None;
54
55 reprocess = 0;
56 in_holding = {};
57
58 # Aliases to the real vars in the Katie class; hysterical raisins.
59 reject_message = "";
60 changes = {};
61 dsc = {};
62 dsc_files = {};
63 files = {};
64 pkg = {};
65
66 ###############################################################################
67
68 def init():
69     global Cnf, Options, Katie, changes, dsc, dsc_files, files, pkg;
70
71     apt_pkg.init();
72
73     Cnf = apt_pkg.newConfiguration();
74     apt_pkg.ReadConfigFileISC(Cnf,utils.which_conf_file());
75
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")];
82
83     for i in ["automatic", "help", "no-action", "no-lock", "no-mail",
84               "override-distribution", "version"]:
85         Cnf["Dinstall::Options::%s" % (i)] = "";
86
87     changes_files = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);
88     Options = Cnf.SubTree("Dinstall::Options")
89
90     if Options["Help"]:
91         usage();
92     elif Options["Version"]:
93         print "jennifer %s" % (jennifer_version);
94         sys.exit(0);
95
96     Katie = katie.Katie(Cnf);
97
98     changes = Katie.pkg.changes;
99     dsc = Katie.pkg.dsc;
100     dsc_files = Katie.pkg.dsc_files;
101     files = Katie.pkg.files;
102     pkg = Katie.pkg;
103
104     return changes_files;
105
106 ################################################################################
107
108 def usage (exit_code=0):
109     print """Usage: dinstall [OPTION]... [CHANGES]...
110   -a, --automatic           automatic run
111   -h, --help                show this help and exit.
112   -n, --no-action           don't do anything
113   -p, --no-lock             don't check lockfile !! for cron.daily only !!
114   -s, --no-mail             don't send any mail
115   -V, --version             display the version number and exit"""
116     sys.exit(exit_code)
117
118 ################################################################################
119
120 def reject (str, prefix="Rejected: "):
121     global reject_message;
122     if str:
123         reject_message += prefix + str + "\n";
124
125 ################################################################################
126
127 def copy_to_holding(filename):
128     global in_holding;
129
130     base_filename = os.path.basename(filename);
131
132     dest = Cnf["Dir::Queue::Holding"] + '/' + base_filename;
133     try:
134         fd = os.open(dest, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0640);
135         os.close(fd);
136     except OSError, e:
137         # Shouldn't happen, but will if, for example, someone lists a
138         # file twice in the .changes.
139         if errno.errorcode[e.errno] == 'EEXIST':
140             reject("%s already exists in holding area; can not overwrite." % (base_filename));
141             return;
142         raise;
143
144     try:
145         shutil.copy(filename, dest);
146     except IOError, e:
147         # In either case (ENOENT or EACCES) we want to remove the
148         # O_CREAT | O_EXCLed ghost file, so add the file to the list
149         # of 'in holding' even if it's not the real file.
150         if errno.errorcode[e.errno] == 'ENOENT':
151             reject("can not copy %s to holding area: file not found." % (base_filename));
152             os.unlink(dest);
153             return;
154         elif errno.errorcode[e.errno] == 'EACCES':
155             reject("can not copy %s to holding area: read permission denied." % (base_filename));
156             os.unlink(dest);
157             return;
158         raise;
159
160     in_holding[base_filename] = "";
161
162 ################################################################################
163
164 def clean_holding():
165     global in_holding;
166
167     cwd = os.getcwd();
168     os.chdir(Cnf["Dir::Queue::Holding"]);
169     for file in in_holding.keys():
170         if os.path.exists(file):
171             if file.find('/') != -1:
172                 utils.fubar("WTF? clean_holding() got a file ('%s') with / in it!" % (file));
173             else:
174                 os.unlink(file);
175     in_holding = {};
176     os.chdir(cwd);
177
178 ################################################################################
179
180 def check_changes():
181     filename = pkg.changes_file;
182
183     # Default in case we bail out
184     changes["maintainer822"] = Cnf["Dinstall::MyEmailAddress"];
185     changes["changedby822"] = Cnf["Dinstall::MyEmailAddress"];
186     changes["architecture"] = {};
187
188     # Parse the .changes field into a dictionary
189     try:
190         changes.update(utils.parse_changes(filename));
191     except utils.cant_open_exc:
192         reject("can't read changes file '%s'." % (filename));
193         return 0;
194     except utils.changes_parse_error_exc, line:
195         reject("error parsing changes file '%s', can't grok: %s." % (filename, line));
196         return 0;
197
198     # Parse the Files field from the .changes into another dictionary
199     try:
200         files.update(utils.build_file_list(changes));
201     except utils.changes_parse_error_exc, line:
202         reject("error parsing changes file '%s', can't grok: %s." % (filename, line));
203     except utils.nk_format_exc, format:
204         reject("unknown format '%s' of changes file '%s'." % (format, filename));
205         return 0;
206
207     # Check for mandatory fields
208     for i in ("source", "binary", "architecture", "version", "distribution", "maintainer", "files"):
209         if not changes.has_key(i):
210             reject("Missing field `%s' in changes file." % (i));
211             return 0    # Avoid <undef> errors during later tests
212
213     # Split multi-value fields into a lower-level dictionary
214     for i in ("architecture", "distribution", "binary", "closes"):
215         o = changes.get(i, "")
216         if o != "":
217             del changes[i]
218         changes[i] = {}
219         for j in o.split():
220             changes[i][j] = 1
221
222     # Fix the Maintainer: field to be RFC822 compatible
223     (changes["maintainer822"], changes["maintainername"], changes["maintaineremail"]) = utils.fix_maintainer (changes["maintainer"])
224
225     # Fix the Changed-By: field to be RFC822 compatible; if it exists.
226     (changes["changedby822"], changes["changedbyname"], changes["changedbyemail"]) = utils.fix_maintainer(changes.get("changed-by",""));
227
228     # Ensure all the values in Closes: are numbers
229     if changes.has_key("closes"):
230         for i in changes["closes"].keys():
231             if katie.re_isanum.match (i) == None:
232                 reject("`%s' from Closes field isn't a number." % (i));
233
234
235     # chopversion = no epoch; chopversion2 = no epoch and no revision (e.g. for .orig.tar.gz comparison)
236     changes["chopversion"] = utils.re_no_epoch.sub('', changes["version"])
237     changes["chopversion2"] = utils.re_no_revision.sub('', changes["chopversion"])
238
239     # Check there isn't already a changes file of the same name in one
240     # of the queue directories.
241     base_filename = os.path.basename(filename);
242     for dir in [ "Accepted", "Byhand", "Done", "New" ]:
243         if os.path.exists(Cnf["Dir::Queue::%s" % (dir) ]+'/'+base_filename):
244             reject("%s: a file with this name already exists in the %s directory." % (base_filename, dir));
245
246     return 1;
247
248 ################################################################################
249
250 def check_distributions():
251     "Check and map the Distribution field of a .changes file."
252
253     # Handle suite mappings
254     for map in Cnf.ValueList("SuiteMappings"):
255         args = map.split();
256         type = args[0];
257         if type == "map" or type == "silent-map":
258             (source, dest) = args[1:3];
259             if changes["distribution"].has_key(source):
260                 del changes["distribution"][source]
261                 changes["distribution"][dest] = 1;
262                 if type != "silent-map":
263                     reject("Mapping %s to %s." % (source, dest),"");
264         elif type == "map-unreleased":
265             (source, dest) = args[1:3];
266             if changes["distribution"].has_key(source):
267                 for arch in changes["architecture"].keys():
268                     if arch not in Cnf.ValueList("Suite::%s::Architectures" % (source)):
269                         reject("Mapping %s to %s for unreleased architecture %s." % (source, dest, arch),"");
270                         del changes["distribution"][source];
271                         changes["distribution"][dest] = 1;
272                         break;
273         elif type == "ignore":
274             suite = args[1];
275             if changes["distribution"].has_key(suite):
276                 del changes["distribution"][suite];
277                 reject("Ignoring %s as a target suite." % (suite), "Warning: ");
278
279     # Ensure there is (still) a target distribution
280     if changes["distribution"].keys() == []:
281         reject("no valid distribution.");
282
283     # Ensure target distributions exist
284     for suite in changes["distribution"].keys():
285         if not Cnf.has_key("Suite::%s" % (suite)):
286             reject("Unknown distribution `%s'." % (suite));
287
288 ################################################################################
289
290 def check_files():
291     global reprocess
292
293     archive = utils.where_am_i();
294     file_keys = files.keys();
295
296     # if reprocess is 2 we've already done this and we're checking
297     # things again for the new .orig.tar.gz.
298     # [Yes, I'm fully aware of how disgusting this is]
299     if not Options["No-Action"] and reprocess < 2:
300         cwd = os.getcwd();
301         os.chdir(pkg.directory);
302         for file in file_keys:
303             copy_to_holding(file);
304         os.chdir(cwd);
305
306     reprocess = 0;
307     has_binaries = 0;
308     has_source = 0;
309
310     for file in file_keys:
311         # Ensure the file does not already exist in one of the accepted directories
312         for dir in [ "Accepted", "Byhand", "New" ]:
313             if os.path.exists(Cnf["Dir::Queue::%s" % (dir) ]+'/'+file):
314                 reject("%s file already exists in the %s directory." % (file, dir));
315         if not utils.re_taint_free.match(file):
316             reject("!!WARNING!! tainted filename: '%s'." % (file));
317         # Check the file is readable
318         if os.access(file,os.R_OK) == 0:
319             # When running in -n, copy_to_holding() won't have
320             # generated the reject_message, so we need to.
321             if Options["No-Action"]:
322                 if os.path.exists(file):
323                     reject("Can't read `%s'. [permission denied]" % (file));
324                 else:
325                     reject("Can't read `%s'. [file not found]" % (file));
326             files[file]["type"] = "unreadable";
327             continue;
328         # If it's byhand skip remaining checks
329         if files[file]["section"] == "byhand":
330             files[file]["byhand"] = 1;
331             files[file]["type"] = "byhand";
332         # Checks for a binary package...
333         elif utils.re_isadeb.match(file) != None:
334             has_binaries = 1;
335             files[file]["type"] = "deb";
336
337             # Extract package control information
338             deb_file = utils.open_file(file);
339             try:
340                 control = apt_pkg.ParseSection(apt_inst.debExtractControl(deb_file));
341             except:
342                 reject("%s: debExtractControl() raised %s." % (file, sys.exc_type));
343                 deb_file.close();
344                 # Can't continue, none of the checks on control would work.
345                 continue;
346             deb_file.close();
347
348             # Check for mandatory fields
349             for field in [ "Package", "Architecture", "Version" ]:
350                 if control.Find(field) == None:
351                     reject("%s: No %s field in control." % (file, field));
352                     # Can't continue
353                     continue;
354
355             # Ensure the package name matches the one give in the .changes
356             if not changes["binary"].has_key(control.Find("Package", "")):
357                 reject("%s: control file lists name as `%s', which isn't in changes file." % (file, control.Find("Package", "")));
358
359             # Validate the package field
360             package = control.Find("Package");
361             if not re_valid_pkg_name.match(package):
362                 reject("%s: invalid package name '%s'." % (file, package));
363
364             # Validate the version field
365             version = control.Find("Version");
366             if not re_valid_version.match(version):
367                 reject("%s: invalid version number '%s'." % (file, version));
368
369             # Ensure the architecture of the .deb is one we know about.
370             default_suite = Cnf.get("Dinstall::DefaultSuite", "Unstable")
371             architecture = control.Find("Architecture");
372             if architecture not in Cnf.ValueList("Suite::%s::Architectures" % (default_suite)):
373                 reject("Unknown architecture '%s'." % (architecture));
374
375             # Ensure the architecture of the .deb is one of the ones
376             # listed in the .changes.
377             if not changes["architecture"].has_key(architecture):
378                 reject("%s: control file lists arch as `%s', which isn't in changes file." % (file, architecture));
379
380             # Sanity-check the Depends field
381             depends = control.Find("Depends");
382             if depends == '':
383                 reject("%s: Depends field is empty." % (file));
384
385             # Check the section & priority match those given in the .changes (non-fatal)
386             if control.Find("Section") != None and files[file]["section"] != "" and files[file]["section"] != control.Find("Section"):
387                 reject("%s control file lists section as `%s', but changes file has `%s'." % (file, control.Find("Section", ""), files[file]["section"]), "Warning: ");
388             if control.Find("Priority") != None and files[file]["priority"] != "" and files[file]["priority"] != control.Find("Priority"):
389                 reject("%s control file lists priority as `%s', but changes file has `%s'." % (file, control.Find("Priority", ""), files[file]["priority"]),"Warning: ");
390
391             files[file]["package"] = package;
392             files[file]["architecture"] = architecture;
393             files[file]["version"] = version;
394             files[file]["maintainer"] = control.Find("Maintainer", "");
395             if file.endswith(".udeb"):
396                 files[file]["dbtype"] = "udeb";
397             elif file.endswith(".deb"):
398                 files[file]["dbtype"] = "deb";
399             else:
400                 reject("%s is neither a .deb or a .udeb." % (file));
401             files[file]["source"] = control.Find("Source", files[file]["package"]);
402             # Get the source version
403             source = files[file]["source"];
404             source_version = ""
405             if source.find("(") != -1:
406                 m = utils.re_extract_src_version.match(source)
407                 source = m.group(1)
408                 source_version = m.group(2)
409             if not source_version:
410                 source_version = files[file]["version"];
411             files[file]["source package"] = source;
412             files[file]["source version"] = source_version;
413
414             # Ensure the filename matches the contents of the .deb
415             m = utils.re_isadeb.match(file);
416             #  package name
417             file_package = m.group(1);
418             if files[file]["package"] != file_package:
419                 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"]));
420             epochless_version = utils.re_no_epoch.sub('', control.Find("Version"));
421             #  version
422             file_version = m.group(2);
423             if epochless_version != file_version:
424                 reject("%s: version part of filename (%s) does not match package version in the %s (%s)." % (file, file_version, files[file]["dbtype"], epochless_version));
425             #  architecture
426             file_architecture = m.group(3);
427             if files[file]["architecture"] != file_architecture:
428                 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"]));
429
430             # Check for existent source
431             source_version = files[file]["source version"];
432             source_package = files[file]["source package"];
433             if changes["architecture"].has_key("source"):
434                 if source_version != changes["version"]:
435                     reject("source version (%s) for %s doesn't match changes version %s." % (source_version, file, changes["version"]));
436             else:
437                 # Check in the SQL database
438                 if not Katie.source_exists(source_package, source_version, changes["distribution"].keys()):
439                     # Check in one of the other directories
440                     source_epochless_version = utils.re_no_epoch.sub('', source_version);
441                     dsc_filename = "%s_%s.dsc" % (source_package, source_epochless_version);
442                     if os.path.exists(Cnf["Dir::Queue::Byhand"] + '/' + dsc_filename):
443                         files[file]["byhand"] = 1;
444                     elif os.path.exists(Cnf["Dir::Queue::New"] + '/' + dsc_filename):
445                         files[file]["new"] = 1;
446                     elif not os.path.exists(Cnf["Dir::Queue::Accepted"] + '/' + dsc_filename):
447                         reject("no source found for %s %s (%s)." % (source_package, source_version, file));
448             # Check the version and for file overwrites
449             reject(Katie.check_binary_against_db(file),"");
450
451         # Checks for a source package...
452         else:
453             m = utils.re_issource.match(file);
454             if m != None:
455                 has_source = 1;
456                 files[file]["package"] = m.group(1);
457                 files[file]["version"] = m.group(2);
458                 files[file]["type"] = m.group(3);
459
460                 # Ensure the source package name matches the Source filed in the .changes
461                 if changes["source"] != files[file]["package"]:
462                     reject("%s: changes file doesn't say %s for Source" % (file, files[file]["package"]));
463
464                 # Ensure the source version matches the version in the .changes file
465                 if files[file]["type"] == "orig.tar.gz":
466                     changes_version = changes["chopversion2"];
467                 else:
468                     changes_version = changes["chopversion"];
469                 if changes_version != files[file]["version"]:
470                     reject("%s: should be %s according to changes file." % (file, changes_version));
471
472                 # Ensure the .changes lists source in the Architecture field
473                 if not changes["architecture"].has_key("source"):
474                     reject("%s: changes file doesn't list `source' in Architecture field." % (file));
475
476                 # Check the signature of a .dsc file
477                 if files[file]["type"] == "dsc":
478                     dsc["fingerprint"] = utils.check_signature(file, reject);
479
480                 files[file]["architecture"] = "source";
481
482             # Not a binary or source package?  Assume byhand...
483             else:
484                 files[file]["byhand"] = 1;
485                 files[file]["type"] = "byhand";
486
487         # Per-suite file checks
488         files[file]["oldfiles"] = {};
489         for suite in changes["distribution"].keys():
490             # Skip byhand
491             if files[file].has_key("byhand"):
492                 continue;
493
494             # Handle component mappings
495             for map in Cnf.ValueList("ComponentMappings"):
496                 (source, dest) = map.split();
497                 if files[file]["component"] == source:
498                     files[file]["original component"] = source;
499                     files[file]["component"] = dest;
500             # Ensure the component is valid for the target suite
501             if Cnf.has_key("Suite:%s::Components" % (suite)) and \
502                files[file]["component"] not in Cnf.ValueList("Suite::%s::Components" % (suite)):
503                 reject("unknown component `%s' for suite `%s'." % (files[file]["component"], suite));
504                 continue;
505
506             # See if the package is NEW
507             if not Katie.in_override_p(files[file]["package"], files[file]["component"], suite, files[file].get("dbtype",""), file):
508                 files[file]["new"] = 1;
509
510             # Validate the component
511             component = files[file]["component"];
512             component_id = db_access.get_component_id(component);
513             if component_id == -1:
514                 reject("file '%s' has unknown component '%s'." % (file, component));
515                 continue;
516
517             # Validate the priority
518             if files[file]["priority"].find('/') != -1:
519                 reject("file '%s' has invalid priority '%s' [contains '/']." % (file, files[file]["priority"]));
520
521             # Determine the location
522             location = Cnf["Dir::Pool"];
523             location_id = db_access.get_location_id (location, component, archive);
524             if location_id == -1:
525                 reject("[INTERNAL ERROR] couldn't determine location (Component: %s, Archive: %s)" % (component, archive));
526             files[file]["location id"] = location_id;
527
528             # Check the md5sum & size against existing files (if any)
529             files[file]["pool name"] = utils.poolify (changes["source"], files[file]["component"]);
530             files_id = db_access.get_files_id(files[file]["pool name"] + file, files[file]["size"], files[file]["md5sum"], files[file]["location id"]);
531             if files_id == -1:
532                 reject("INTERNAL ERROR, get_files_id() returned multiple matches for %s." % (file));
533             elif files_id == -2:
534                 reject("md5sum and/or size mismatch on existing copy of %s." % (file));
535             files[file]["files id"] = files_id
536
537             # Check for packages that have moved from one component to another
538             q = Katie.projectB.query("""
539 SELECT c.name FROM binaries b, bin_associations ba, suite s, location l,
540                    component c, architecture a, files f
541  WHERE b.package = '%s' AND s.suite_name = '%s'
542    AND (a.arch_string = '%s' OR a.arch_string = 'all')
543    AND ba.bin = b.id AND ba.suite = s.id AND b.architecture = a.id
544    AND f.location = l.id AND l.component = c.id AND b.file = f.id"""
545                                % (files[file]["package"], suite,
546                                   files[file]["architecture"]));
547             ql = q.getresult();
548             if ql:
549                 files[file]["othercomponents"] = ql[0][0];
550
551     # If the .changes file says it has source, it must have source.
552     if changes["architecture"].has_key("source"):
553         if not has_source:
554             reject("no source found and Architecture line in changes mention source.");
555
556         if not has_binaries and Cnf.FindB("Dinstall::Reject::NoSourceOnly"):
557             reject("source only uploads are not supported.");
558
559 ###############################################################################
560
561 def check_dsc ():
562     global reprocess;
563
564     for file in files.keys():
565         # The .orig.tar.gz can disappear out from under us is it's a
566         # duplicate of one in the archive.
567         if not files.has_key(file):
568             continue;
569         if files[file]["type"] == "dsc":
570             # Parse the .dsc file
571             try:
572                 dsc.update(utils.parse_changes(file, dsc_whitespace_rules=1));
573             except utils.cant_open_exc:
574                 # if not -n copy_to_holding() will have done this for us...
575                 if Options["No-Action"]:
576                     reject("can't read .dsc file '%s'." % (file));
577             except utils.changes_parse_error_exc, line:
578                 reject("error parsing .dsc file '%s', can't grok: %s." % (file, line));
579             except utils.invalid_dsc_format_exc, line:
580                 reject("syntax error in .dsc file '%s', line %s." % (file, line));
581             # Build up the file list of files mentioned by the .dsc
582             try:
583                 dsc_files.update(utils.build_file_list(dsc, is_a_dsc=1));
584             except utils.no_files_exc:
585                 reject("no Files: field in .dsc file.");
586                 continue;
587             except utils.changes_parse_error_exc, line:
588                 reject("error parsing .dsc file '%s', can't grok: %s." % (file, line));
589                 continue;
590
591             # Enforce mandatory fields
592             for i in ("format", "source", "version", "binary", "maintainer", "architecture", "files"):
593                 if not dsc.has_key(i):
594                     reject("Missing field `%s' in dsc file." % (i));
595
596             # Validate the source and version fields
597             if dsc.has_key("source") and not re_valid_pkg_name.match(dsc["source"]):
598                 reject("%s: invalid source name '%s'." % (file, dsc["source"]));
599             if dsc.has_key("version") and not re_valid_version.match(dsc["version"]):
600                 reject("%s: invalid version number '%s'." % (file, dsc["version"]));
601
602             # Bumping the version number of the .dsc breaks extraction by stable's
603             # dpkg-source.  So let's not do that...
604             if dsc["format"] != "1.0":
605                 reject("%s: incompatible 'Format' version produced by a broken version of dpkg-dev 1.9.1{3,4}." % (file));
606
607             # Build-Depends: ARRAY(<hex>) is not good ...
608             if (dsc.get("build-depends","").find("ARRAY") == 0 or
609                 dsc.get("build-depends-indep","").find("ARRAY") == 0):
610                 reject("%s: invalid Build-Depends field produced by a broken version of dpkg-dev (1.10.11)" % (file));
611
612             # Ensure the version number in the .dsc matches the version number in the .changes
613             epochless_dsc_version = utils.re_no_epoch.sub('', dsc.get("version"));
614             changes_version = files[file]["version"];
615             if epochless_dsc_version != files[file]["version"]:
616                 reject("version ('%s') in .dsc does not match version ('%s') in .changes." % (epochless_dsc_version, changes_version));
617
618             # Ensure there is a .tar.gz in the .dsc file
619             has_tar = 0;
620             for f in dsc_files.keys():
621                 m = utils.re_issource.match(f);
622                 if not m:
623                     reject("%s mentioned in the Files field of %s not recognised as source." % (f, file));
624                 type = m.group(3);
625                 if type == "orig.tar.gz" or type == "tar.gz":
626                     has_tar = 1;
627             if not has_tar:
628                 reject("no .tar.gz or .orig.tar.gz listed in the Files field of %s." % (file));
629
630             # Ensure source is newer than existing source in target suites
631             reject(Katie.check_source_against_db(file),"");
632
633             (reject_msg, is_in_incoming) = Katie.check_dsc_against_db(file);
634             reject(reject_msg, "");
635             if is_in_incoming:
636                 if not Options["No-Action"]:
637                     copy_to_holding(is_in_incoming);
638                 orig_tar_gz = os.path.basename(is_in_incoming);
639                 files[orig_tar_gz] = {};
640                 files[orig_tar_gz]["size"] = os.stat(orig_tar_gz)[stat.ST_SIZE];
641                 files[orig_tar_gz]["md5sum"] = dsc_files[orig_tar_gz]["md5sum"];
642                 files[orig_tar_gz]["section"] = files[file]["section"];
643                 files[orig_tar_gz]["priority"] = files[file]["priority"];
644                 files[orig_tar_gz]["component"] = files[file]["component"];
645                 files[orig_tar_gz]["type"] = "orig.tar.gz";
646                 reprocess = 2;
647
648 ################################################################################
649
650 # dpkg-source broke .diff.gz generation in dpkg 1.8.x; detect the
651 # resulting bad source packages and reject them.
652
653 def check_diff ():
654     for filename in files.keys():
655         if files[filename]["type"] == "diff.gz":
656             file = gzip.GzipFile(filename, 'r');
657             for line in file.readlines():
658                 if re_bad_diff.search(line):
659                     reject("%s: invalid .diff.gz produced by a broken version of dpkg-dev 1.8.x." % (filename));
660                     break;
661
662 ################################################################################
663
664 # FIXME: should be a debian specific check called from a hook
665
666 def check_urgency ():
667     if changes["architecture"].has_key("source"):
668         if not changes.has_key("urgency"):
669             changes["urgency"] = Cnf["Urgency::Default"];
670         if changes["urgency"] not in Cnf.ValueList("Urgency::Valid"):
671             reject("%s is not a valid urgency; it will be treated as %s by testing." % (changes["urgency"], Cnf["Urgency::Default"]), "Warning: ");
672             changes["urgency"] = Cnf["Urgency::Default"];
673         changes["urgency"] = changes["urgency"].lower();
674
675 ################################################################################
676
677 def check_md5sums ():
678     for file in files.keys():
679         try:
680             file_handle = utils.open_file(file);
681         except utils.cant_open_exc:
682             continue;
683
684         # Check md5sum
685         if apt_pkg.md5sum(file_handle) != files[file]["md5sum"]:
686             reject("%s: md5sum check failed." % (file));
687         file_handle.close();
688         # Check size
689         actual_size = os.stat(file)[stat.ST_SIZE];
690         size = int(files[file]["size"]);
691         if size != actual_size:
692             reject("%s: actual file size (%s) does not match size (%s) in .changes"
693                    % (file, actual_size, size));
694
695     for file in dsc_files.keys():
696         try:
697             file_handle = utils.open_file(file);
698         except utils.cant_open_exc:
699             continue;
700
701         # Check md5sum
702         if apt_pkg.md5sum(file_handle) != dsc_files[file]["md5sum"]:
703             reject("%s: md5sum check failed." % (file));
704         file_handle.close();
705         # Check size
706         actual_size = os.stat(file)[stat.ST_SIZE];
707         size = int(dsc_files[file]["size"]);
708         if size != actual_size:
709             reject("%s: actual file size (%s) does not match size (%s) in .dsc"
710                    % (file, actual_size, size));
711
712 ################################################################################
713
714 # Sanity check the time stamps of files inside debs.
715 # [Files in the near future cause ugly warnings and extreme time
716 #  travel can cause errors on extraction]
717
718 def check_timestamps():
719     class Tar:
720         def __init__(self, future_cutoff, past_cutoff):
721             self.reset();
722             self.future_cutoff = future_cutoff;
723             self.past_cutoff = past_cutoff;
724
725         def reset(self):
726             self.future_files = {};
727             self.ancient_files = {};
728
729         def callback(self, Kind,Name,Link,Mode,UID,GID,Size,MTime,Major,Minor):
730             if MTime > self.future_cutoff:
731                 self.future_files[Name] = MTime;
732             if MTime < self.past_cutoff:
733                 self.ancient_files[Name] = MTime;
734     ####
735
736     future_cutoff = time.time() + int(Cnf["Dinstall::FutureTimeTravelGrace"]);
737     past_cutoff = time.mktime(time.strptime(Cnf["Dinstall::PastCutoffYear"],"%Y"));
738     tar = Tar(future_cutoff, past_cutoff);
739     for filename in files.keys():
740         if files[filename]["type"] == "deb":
741             tar.reset();
742             try:
743                 deb_file = utils.open_file(filename);
744                 apt_inst.debExtract(deb_file,tar.callback,"control.tar.gz");
745                 deb_file.seek(0);
746                 apt_inst.debExtract(deb_file,tar.callback,"data.tar.gz");
747                 deb_file.close();
748                 #
749                 future_files = tar.future_files.keys();
750                 if future_files:
751                     num_future_files = len(future_files);
752                     future_file = future_files[0];
753                     future_date = tar.future_files[future_file];
754                     reject("%s: has %s file(s) with a time stamp too far into the future (e.g. %s [%s])."
755                            % (filename, num_future_files, future_file,
756                               time.ctime(future_date)));
757                 #
758                 ancient_files = tar.ancient_files.keys();
759                 if ancient_files:
760                     num_ancient_files = len(ancient_files);
761                     ancient_file = ancient_files[0];
762                     ancient_date = tar.ancient_files[ancient_file];
763                     reject("%s: has %s file(s) with a time stamp too ancient (e.g. %s [%s])."
764                            % (filename, num_ancient_files, ancient_file,
765                               time.ctime(ancient_date)));
766             except:
767                 reject("%s: deb contents timestamp check failed [%s: %s]" % (filename, sys.exc_type, sys.exc_value));
768
769 ################################################################################
770 ################################################################################
771
772 # If any file of an upload has a recent mtime then chances are good
773 # the file is still being uploaded.
774
775 def upload_too_new():
776     too_new = 0;
777     # Move back to the original directory to get accurate time stamps
778     cwd = os.getcwd();
779     os.chdir(pkg.directory);
780     file_list = pkg.files.keys();
781     file_list.extend(pkg.dsc_files.keys());
782     file_list.append(pkg.changes_file);
783     for file in file_list:
784         try:
785             last_modified = time.time()-os.path.getmtime(file);
786             if last_modified < int(Cnf["Dinstall::SkipTime"]):
787                 too_new = 1;
788                 break;
789         except:
790             pass;
791     os.chdir(cwd);
792     return too_new;
793
794 ################################################################################
795
796 def action ():
797     # changes["distribution"] may not exist in corner cases
798     # (e.g. unreadable changes files)
799     if not changes.has_key("distribution") or not isinstance(changes["distribution"], DictType):
800         changes["distribution"] = {};
801
802     (summary, short_summary) = Katie.build_summaries();
803
804     byhand = new = "";
805     for file in files.keys():
806         if files[file].has_key("byhand"):
807             byhand = 1
808         elif files[file].has_key("new"):
809             new = 1
810
811     (prompt, answer) = ("", "XXX")
812     if Options["No-Action"] or Options["Automatic"]:
813         answer = 'S'
814
815     if reject_message.find("Rejected") != -1:
816         if upload_too_new():
817             print "SKIP (too new)\n" + reject_message,;
818             prompt = "[S]kip, Quit ?";
819         else:
820             print "REJECT\n" + reject_message,;
821             prompt = "[R]eject, Skip, Quit ?";
822             if Options["Automatic"]:
823                 answer = 'R';
824     elif new:
825         print "NEW to %s\n%s%s" % (", ".join(changes["distribution"].keys()), reject_message, summary),;
826         prompt = "[N]ew, Skip, Quit ?";
827         if Options["Automatic"]:
828             answer = 'N';
829     elif byhand:
830         print "BYHAND\n" + reject_message + summary,;
831         prompt = "[B]yhand, Skip, Quit ?";
832         if Options["Automatic"]:
833             answer = 'B';
834     else:
835         print "ACCEPT\n" + reject_message + summary,;
836         prompt = "[A]ccept, Skip, Quit ?";
837         if Options["Automatic"]:
838             answer = 'A';
839
840     while prompt.find(answer) == -1:
841         answer = utils.our_raw_input(prompt);
842         m = katie.re_default_answer.match(prompt);
843         if answer == "":
844             answer = m.group(1);
845         answer = answer[:1].upper();
846
847     if answer == 'R':
848         os.chdir (pkg.directory);
849         Katie.do_reject(0, reject_message);
850     elif answer == 'A':
851         accept(summary, short_summary);
852     elif answer == 'B':
853         do_byhand(summary);
854     elif answer == 'N':
855         acknowledge_new (summary);
856     elif answer == 'Q':
857         sys.exit(0)
858
859 ################################################################################
860
861 def accept (summary, short_summary):
862     Katie.accept(summary, short_summary);
863     Katie.check_override();
864
865     # Finally, remove the originals from the unchecked directory
866     os.chdir (pkg.directory);
867     for file in files.keys():
868         os.unlink(file);
869     os.unlink(pkg.changes_file);
870
871 ################################################################################
872
873 def do_byhand (summary):
874     print "Moving to BYHAND holding area."
875     Logger.log(["Moving to byhand", pkg.changes_file]);
876
877     Katie.dump_vars(Cnf["Dir::Queue::Byhand"]);
878
879     file_keys = files.keys();
880
881     # Move all the files into the byhand directory
882     utils.move (pkg.changes_file, Cnf["Dir::Queue::Byhand"]);
883     for file in file_keys:
884         utils.move (file, Cnf["Dir::Queue::Byhand"], perms=0660);
885
886     # Check for override disparities
887     Katie.Subst["__SUMMARY__"] = summary;
888     Katie.check_override();
889
890     # Finally remove the originals.
891     os.chdir (pkg.directory);
892     for file in file_keys:
893         os.unlink(file);
894     os.unlink(pkg.changes_file);
895
896 ################################################################################
897
898 def acknowledge_new (summary):
899     Subst = Katie.Subst;
900
901     print "Moving to NEW holding area."
902     Logger.log(["Moving to new", pkg.changes_file]);
903
904     Katie.dump_vars(Cnf["Dir::Queue::New"]);
905
906     file_keys = files.keys();
907
908     # Move all the files into the 'new' directory
909     utils.move (pkg.changes_file, Cnf["Dir::Queue::New"]);
910     for file in file_keys:
911         utils.move (file, Cnf["Dir::Queue::New"], perms=0660);
912
913     if not Options["No-Mail"]:
914         print "Sending new ack.";
915         Subst["__SUMMARY__"] = summary;
916         new_ack_message = utils.TemplateSubst(Subst,Cnf["Dir::Templates"]+"/jennifer.new");
917         utils.send_mail(new_ack_message);
918
919     # Finally remove the originals.
920     os.chdir (pkg.directory);
921     for file in file_keys:
922         os.unlink(file);
923     os.unlink(pkg.changes_file);
924
925 ################################################################################
926
927 # reprocess is necessary for the case of foo_1.2-1 and foo_1.2-2 in
928 # Incoming. -1 will reference the .orig.tar.gz, but -2 will not.
929 # Katie.check_dsc_against_db() can find the .orig.tar.gz but it will
930 # not have processed it during it's checks of -2.  If -1 has been
931 # deleted or otherwise not checked by jennifer, the .orig.tar.gz will
932 # not have been checked at all.  To get round this, we force the
933 # .orig.tar.gz into the .changes structure and reprocess the .changes
934 # file.
935
936 def process_it (changes_file):
937     global reprocess, reject_message;
938
939     # Reset some globals
940     reprocess = 1;
941     Katie.init_vars();
942     reject_message = "";
943
944     # Absolutize the filename to avoid the requirement of being in the
945     # same directory as the .changes file.
946     pkg.changes_file = os.path.abspath(changes_file);
947
948     # Remember where we are so we can come back after cd-ing into the
949     # holding directory.
950     pkg.directory = os.getcwd();
951
952     try:
953         # If this is the Real Thing(tm), copy things into a private
954         # holding directory first to avoid replacable file races.
955         if not Options["No-Action"]:
956             os.chdir(Cnf["Dir::Queue::Holding"]);
957             copy_to_holding(pkg.changes_file);
958             # Relativize the filename so we use the copy in holding
959             # rather than the original...
960             pkg.changes_file = os.path.basename(pkg.changes_file);
961         changes["fingerprint"] = utils.check_signature(pkg.changes_file, reject);
962         changes_valid = check_changes();
963         if changes_valid:
964             while reprocess:
965                 check_distributions();
966                 check_files();
967                 check_dsc();
968                 check_diff();
969                 check_md5sums();
970                 check_urgency();
971                 check_timestamps();
972         Katie.update_subst(reject_message);
973         action();
974     except SystemExit:
975         raise;
976     except:
977         print "ERROR";
978         traceback.print_exc(file=sys.stderr);
979         pass;
980
981     # Restore previous WD
982     os.chdir(pkg.directory);
983
984 ###############################################################################
985
986 def main():
987     global Cnf, Options, Logger, nmu;
988
989     changes_files = init();
990
991     # -n/--dry-run invalidates some other options which would involve things happening
992     if Options["No-Action"]:
993         Options["Automatic"] = "";
994
995     # Ensure all the arguments we were given are .changes files
996     for file in changes_files:
997         if not file.endswith(".changes"):
998             utils.warn("Ignoring '%s' because it's not a .changes file." % (file));
999             changes_files.remove(file);
1000
1001     if changes_files == []:
1002         utils.fubar("Need at least one .changes file as an argument.");
1003
1004     # Check that we aren't going to clash with the daily cron job
1005
1006     if not Options["No-Action"] and os.path.exists("%s/Archive_Maintenance_In_Progress" % (Cnf["Dir::Root"])) and not Options["No-Lock"]:
1007         utils.fubar("Archive maintenance in progress.  Try again later.");
1008
1009     # Obtain lock if not in no-action mode and initialize the log
1010
1011     if not Options["No-Action"]:
1012         lock_fd = os.open(Cnf["Dinstall::LockFile"], os.O_RDWR | os.O_CREAT);
1013         try:
1014             fcntl.lockf(lock_fd, fcntl.LOCK_EX | fcntl.LOCK_NB);
1015         except IOError, e:
1016             if errno.errorcode[e.errno] == 'EACCES' or errno.errorcode[e.errno] == 'EAGAIN':
1017                 utils.fubar("Couldn't obtain lock; assuming another jennifer is already running.");
1018             else:
1019                 raise;
1020         Logger = Katie.Logger = logging.Logger(Cnf, "jennifer");
1021
1022     # debian-{devel-,}-changes@lists.debian.org toggles writes access based on this header
1023     bcc = "X-Katie: %s" % (jennifer_version);
1024     if Cnf.has_key("Dinstall::Bcc"):
1025         Katie.Subst["__BCC__"] = bcc + "\nBcc: %s" % (Cnf["Dinstall::Bcc"]);
1026     else:
1027         Katie.Subst["__BCC__"] = bcc;
1028
1029
1030     # Sort the .changes files so that we process sourceful ones first
1031     changes_files.sort(utils.changes_compare);
1032
1033     # Process the changes files
1034     for changes_file in changes_files:
1035         print "\n" + changes_file;
1036         try:
1037             process_it (changes_file);
1038         finally:
1039             if not Options["No-Action"]:
1040                 clean_holding();
1041
1042     accept_count = Katie.accept_count;
1043     accept_bytes = Katie.accept_bytes;
1044     if accept_count:
1045         sets = "set"
1046         if accept_count > 1:
1047             sets = "sets"
1048         print "Accepted %d package %s, %s." % (accept_count, sets, utils.size_type(int(accept_bytes)));
1049         Logger.log(["total",accept_count,accept_bytes]);
1050
1051     if not Options["No-Action"]:
1052         Logger.close();
1053
1054 ################################################################################
1055
1056 if __name__ == '__main__':
1057     main()
1058