]> git.decadent.org.uk Git - dak.git/blob - jennifer
* vars: external-overrides variable added* cron.daily: Update testing/unstable Task...
[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.37 2003-09-22 01:28:08 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.37 $";
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
308     for file in file_keys:
309         # Ensure the file does not already exist in one of the accepted directories
310         for dir in [ "Accepted", "Byhand", "New" ]:
311             if os.path.exists(Cnf["Dir::Queue::%s" % (dir) ]+'/'+file):
312                 reject("%s file already exists in the %s directory." % (file, dir));
313         if not utils.re_taint_free.match(file):
314             reject("!!WARNING!! tainted filename: '%s'." % (file));
315         # Check the file is readable
316         if os.access(file,os.R_OK) == 0:
317             # When running in -n, copy_to_holding() won't have
318             # generated the reject_message, so we need to.
319             if Options["No-Action"]:
320                 if os.path.exists(file):
321                     reject("Can't read `%s'. [permission denied]" % (file));
322                 else:
323                     reject("Can't read `%s'. [file not found]" % (file));
324             files[file]["type"] = "unreadable";
325             continue;
326         # If it's byhand skip remaining checks
327         if files[file]["section"] == "byhand":
328             files[file]["byhand"] = 1;
329             files[file]["type"] = "byhand";
330         # Checks for a binary package...
331         elif utils.re_isadeb.match(file) != None:
332             files[file]["type"] = "deb";
333
334             # Extract package control information
335             deb_file = utils.open_file(file);
336             try:
337                 control = apt_pkg.ParseSection(apt_inst.debExtractControl(deb_file));
338             except:
339                 reject("%s: debExtractControl() raised %s." % (file, sys.exc_type));
340                 deb_file.close();
341                 # Can't continue, none of the checks on control would work.
342                 continue;
343             deb_file.close();
344
345             # Check for mandatory fields
346             for field in [ "Package", "Architecture", "Version" ]:
347                 if control.Find(field) == None:
348                     reject("%s: No %s field in control." % (file, field));
349                     # Can't continue
350                     continue;
351
352             # Ensure the package name matches the one give in the .changes
353             if not changes["binary"].has_key(control.Find("Package", "")):
354                 reject("%s: control file lists name as `%s', which isn't in changes file." % (file, control.Find("Package", "")));
355
356             # Validate the package field
357             package = control.Find("Package");
358             if not re_valid_pkg_name.match(package):
359                 reject("%s: invalid package name '%s'." % (file, package));
360
361             # Validate the version field
362             version = control.Find("Version");
363             if not re_valid_version.match(version):
364                 reject("%s: invalid version number '%s'." % (file, version));
365
366             # Ensure the architecture of the .deb is one we know about.
367             default_suite = Cnf.get("Dinstall::DefaultSuite", "Unstable")
368             architecture = control.Find("Architecture");
369             if architecture not in Cnf.ValueList("Suite::%s::Architectures" % (default_suite)):
370                 reject("Unknown architecture '%s'." % (architecture));
371
372             # Ensure the architecture of the .deb is one of the ones
373             # listed in the .changes.
374             if not changes["architecture"].has_key(architecture):
375                 reject("%s: control file lists arch as `%s', which isn't in changes file." % (file, architecture));
376
377             # Sanity-check the Depends field
378             depends = control.Find("Depends");
379             if depends == '':
380                 reject("%s: Depends field is empty." % (file));
381
382             # Check the section & priority match those given in the .changes (non-fatal)
383             if control.Find("Section") != None and files[file]["section"] != "" and files[file]["section"] != control.Find("Section"):
384                 reject("%s control file lists section as `%s', but changes file has `%s'." % (file, control.Find("Section", ""), files[file]["section"]), "Warning: ");
385             if control.Find("Priority") != None and files[file]["priority"] != "" and files[file]["priority"] != control.Find("Priority"):
386                 reject("%s control file lists priority as `%s', but changes file has `%s'." % (file, control.Find("Priority", ""), files[file]["priority"]),"Warning: ");
387
388             files[file]["package"] = package;
389             files[file]["architecture"] = architecture;
390             files[file]["version"] = version;
391             files[file]["maintainer"] = control.Find("Maintainer", "");
392             if file.endswith(".udeb"):
393                 files[file]["dbtype"] = "udeb";
394             elif file.endswith(".deb"):
395                 files[file]["dbtype"] = "deb";
396             else:
397                 reject("%s is neither a .deb or a .udeb." % (file));
398             files[file]["source"] = control.Find("Source", files[file]["package"]);
399             # Get the source version
400             source = files[file]["source"];
401             source_version = ""
402             if source.find("(") != -1:
403                 m = utils.re_extract_src_version.match(source)
404                 source = m.group(1)
405                 source_version = m.group(2)
406             if not source_version:
407                 source_version = files[file]["version"];
408             files[file]["source package"] = source;
409             files[file]["source version"] = source_version;
410
411             # Ensure the filename matches the contents of the .deb
412             m = utils.re_isadeb.match(file);
413             #  package name
414             file_package = m.group(1);
415             if files[file]["package"] != file_package:
416                 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"]));
417             epochless_version = utils.re_no_epoch.sub('', control.Find("Version"));
418             #  version
419             file_version = m.group(2);
420             if epochless_version != file_version:
421                 reject("%s: version part of filename (%s) does not match package version in the %s (%s)." % (file, file_version, files[file]["dbtype"], epochless_version));
422             #  architecture
423             file_architecture = m.group(3);
424             if files[file]["architecture"] != file_architecture:
425                 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"]));
426
427             # Check for existent source
428             source_version = files[file]["source version"];
429             source_package = files[file]["source package"];
430             if changes["architecture"].has_key("source"):
431                 if source_version != changes["version"]:
432                     reject("source version (%s) for %s doesn't match changes version %s." % (source_version, file, changes["version"]));
433             else:
434                 # Check in the SQL database
435                 if not Katie.source_exists(source_package, source_version, changes["distribution"].keys()):
436                     # Check in one of the other directories
437                     source_epochless_version = utils.re_no_epoch.sub('', source_version);
438                     dsc_filename = "%s_%s.dsc" % (source_package, source_epochless_version);
439                     if os.path.exists(Cnf["Dir::Queue::Byhand"] + '/' + dsc_filename):
440                         files[file]["byhand"] = 1;
441                     elif os.path.exists(Cnf["Dir::Queue::New"] + '/' + dsc_filename):
442                         files[file]["new"] = 1;
443                     elif not os.path.exists(Cnf["Dir::Queue::Accepted"] + '/' + dsc_filename):
444                         reject("no source found for %s %s (%s)." % (source_package, source_version, file));
445             # Check the version and for file overwrites
446             reject(Katie.check_binary_against_db(file),"");
447
448         # Checks for a source package...
449         else:
450             m = utils.re_issource.match(file);
451             if m != None:
452                 files[file]["package"] = m.group(1);
453                 files[file]["version"] = m.group(2);
454                 files[file]["type"] = m.group(3);
455
456                 # Ensure the source package name matches the Source filed in the .changes
457                 if changes["source"] != files[file]["package"]:
458                     reject("%s: changes file doesn't say %s for Source" % (file, files[file]["package"]));
459
460                 # Ensure the source version matches the version in the .changes file
461                 if files[file]["type"] == "orig.tar.gz":
462                     changes_version = changes["chopversion2"];
463                 else:
464                     changes_version = changes["chopversion"];
465                 if changes_version != files[file]["version"]:
466                     reject("%s: should be %s according to changes file." % (file, changes_version));
467
468                 # Ensure the .changes lists source in the Architecture field
469                 if not changes["architecture"].has_key("source"):
470                     reject("%s: changes file doesn't list `source' in Architecture field." % (file));
471
472                 # Check the signature of a .dsc file
473                 if files[file]["type"] == "dsc":
474                     dsc["fingerprint"] = utils.check_signature(file, reject);
475
476                 files[file]["architecture"] = "source";
477
478             # Not a binary or source package?  Assume byhand...
479             else:
480                 files[file]["byhand"] = 1;
481                 files[file]["type"] = "byhand";
482
483         # Per-suite file checks
484         files[file]["oldfiles"] = {};
485         for suite in changes["distribution"].keys():
486             # Skip byhand
487             if files[file].has_key("byhand"):
488                 continue;
489
490             # Handle component mappings
491             for map in Cnf.ValueList("ComponentMappings"):
492                 (source, dest) = map.split();
493                 if files[file]["component"] == source:
494                     files[file]["original component"] = source;
495                     files[file]["component"] = dest;
496             # Ensure the component is valid for the target suite
497             if Cnf.has_key("Suite:%s::Components" % (suite)) and \
498                files[file]["component"] not in Cnf.ValueList("Suite::%s::Components" % (suite)):
499                 reject("unknown component `%s' for suite `%s'." % (files[file]["component"], suite));
500                 continue
501
502             # See if the package is NEW
503             if not Katie.in_override_p(files[file]["package"], files[file]["component"], suite, files[file].get("dbtype",""), file):
504                 files[file]["new"] = 1;
505
506             # Validate the component
507             component = files[file]["component"];
508             component_id = db_access.get_component_id(component);
509             if component_id == -1:
510                 reject("file '%s' has unknown component '%s'." % (file, component));
511                 continue;
512
513             # Validate the priority
514             if files[file]["priority"].find('/') != -1:
515                 reject("file '%s' has invalid priority '%s' [contains '/']." % (file, files[file]["priority"]));
516
517             # Determine the location
518             location = Cnf["Dir::Pool"];
519             location_id = db_access.get_location_id (location, component, archive);
520             if location_id == -1:
521                 reject("[INTERNAL ERROR] couldn't determine location (Component: %s, Archive: %s)" % (component, archive));
522             files[file]["location id"] = location_id;
523
524             # Check the md5sum & size against existing files (if any)
525             files[file]["pool name"] = utils.poolify (changes["source"], files[file]["component"]);
526             files_id = db_access.get_files_id(files[file]["pool name"] + file, files[file]["size"], files[file]["md5sum"], files[file]["location id"]);
527             if files_id == -1:
528                 reject("INTERNAL ERROR, get_files_id() returned multiple matches for %s." % (file));
529             elif files_id == -2:
530                 reject("md5sum and/or size mismatch on existing copy of %s." % (file));
531             files[file]["files id"] = files_id
532
533             # Check for packages that have moved from one component to another
534             q = Katie.projectB.query("""
535 SELECT c.name FROM binaries b, bin_associations ba, suite s, location l,
536                    component c, architecture a, files f
537  WHERE b.package = '%s' AND s.suite_name = '%s'
538    AND (a.arch_string = '%s' OR a.arch_string = 'all')
539    AND ba.bin = b.id AND ba.suite = s.id AND b.architecture = a.id
540    AND f.location = l.id AND l.component = c.id AND b.file = f.id"""
541                                % (files[file]["package"], suite,
542                                   files[file]["architecture"]));
543             ql = q.getresult();
544             if ql:
545                 files[file]["othercomponents"] = ql[0][0];
546
547     # If the .changes file says it has source, it must have source.
548     if changes["architecture"].has_key("source"):
549         has_source = 0;
550         for file in file_keys:
551             if files[file]["type"] == "dsc":
552                 has_source = 1;
553         if not has_source:
554             reject("no source found and Architecture line in changes mention source.");
555
556 ###############################################################################
557
558 def check_dsc ():
559     global reprocess;
560
561     for file in files.keys():
562         # The .orig.tar.gz can disappear out from under us is it's a
563         # duplicate of one in the archive.
564         if not files.has_key(file):
565             continue;
566         if files[file]["type"] == "dsc":
567             # Parse the .dsc file
568             try:
569                 dsc.update(utils.parse_changes(file, dsc_whitespace_rules=1));
570             except utils.cant_open_exc:
571                 # if not -n copy_to_holding() will have done this for us...
572                 if Options["No-Action"]:
573                     reject("can't read .dsc file '%s'." % (file));
574             except utils.changes_parse_error_exc, line:
575                 reject("error parsing .dsc file '%s', can't grok: %s." % (file, line));
576             except utils.invalid_dsc_format_exc, line:
577                 reject("syntax error in .dsc file '%s', line %s." % (file, line));
578             # Build up the file list of files mentioned by the .dsc
579             try:
580                 dsc_files.update(utils.build_file_list(dsc, is_a_dsc=1));
581             except utils.no_files_exc:
582                 reject("no Files: field in .dsc file.");
583                 continue;
584             except utils.changes_parse_error_exc, line:
585                 reject("error parsing .dsc file '%s', can't grok: %s." % (file, line));
586                 continue;
587
588             # Enforce mandatory fields
589             for i in ("format", "source", "version", "binary", "maintainer", "architecture", "files"):
590                 if not dsc.has_key(i):
591                     reject("Missing field `%s' in dsc file." % (i));
592
593             # Validate the source and version fields
594             if dsc.has_key("source") and not re_valid_pkg_name.match(dsc["source"]):
595                 reject("%s: invalid source name '%s'." % (file, dsc["source"]));
596             if dsc.has_key("version") and not re_valid_version.match(dsc["version"]):
597                 reject("%s: invalid version number '%s'." % (file, dsc["version"]));
598
599             # Bumping the version number of the .dsc breaks extraction by stable's
600             # dpkg-source.  So let's not do that...
601             if dsc["format"] != "1.0":
602                 reject("%s: incompatible 'Format' version produced by a broken version of dpkg-dev 1.9.1{3,4}." % (file));
603
604             # Build-Depends: ARRAY(<hex>) is not good ...
605             if (dsc.get("build-depends","").find("ARRAY") == 0 or
606                 dsc.get("build-depends-indep","").find("ARRAY") == 0):
607                 reject("%s: invalid Build-Depends field produced by a broken version of dpkg-dev (1.10.11)" % (file));
608
609             # Ensure the version number in the .dsc matches the version number in the .changes
610             epochless_dsc_version = utils.re_no_epoch.sub('', dsc.get("version"));
611             changes_version = files[file]["version"];
612             if epochless_dsc_version != files[file]["version"]:
613                 reject("version ('%s') in .dsc does not match version ('%s') in .changes." % (epochless_dsc_version, changes_version));
614
615             # Ensure there is a .tar.gz in the .dsc file
616             has_tar = 0;
617             for f in dsc_files.keys():
618                 m = utils.re_issource.match(f);
619                 if not m:
620                     reject("%s mentioned in the Files field of %s not recognised as source." % (f, file));
621                 type = m.group(3);
622                 if type == "orig.tar.gz" or type == "tar.gz":
623                     has_tar = 1;
624             if not has_tar:
625                 reject("no .tar.gz or .orig.tar.gz listed in the Files field of %s." % (file));
626
627             # Ensure source is newer than existing source in target suites
628             reject(Katie.check_source_against_db(file),"");
629
630             (reject_msg, is_in_incoming) = Katie.check_dsc_against_db(file);
631             reject(reject_msg, "");
632             if is_in_incoming:
633                 if not Options["No-Action"]:
634                     copy_to_holding(is_in_incoming);
635                 orig_tar_gz = os.path.basename(is_in_incoming);
636                 files[orig_tar_gz] = {};
637                 files[orig_tar_gz]["size"] = os.stat(orig_tar_gz)[stat.ST_SIZE];
638                 files[orig_tar_gz]["md5sum"] = dsc_files[orig_tar_gz]["md5sum"];
639                 files[orig_tar_gz]["section"] = files[file]["section"];
640                 files[orig_tar_gz]["priority"] = files[file]["priority"];
641                 files[orig_tar_gz]["component"] = files[file]["component"];
642                 files[orig_tar_gz]["type"] = "orig.tar.gz";
643                 reprocess = 2;
644
645 ################################################################################
646
647 # dpkg-source broke .diff.gz generation in dpkg 1.8.x; detect the
648 # resulting bad source packages and reject them.
649
650 def check_diff ():
651     for filename in files.keys():
652         if files[filename]["type"] == "diff.gz":
653             file = gzip.GzipFile(filename, 'r');
654             for line in file.readlines():
655                 if re_bad_diff.search(line):
656                     reject("%s: invalid .diff.gz produced by a broken version of dpkg-dev 1.8.x." % (filename));
657                     break;
658
659 ################################################################################
660
661 # FIXME: should be a debian specific check called from a hook
662
663 def check_urgency ():
664     if changes["architecture"].has_key("source"):
665         if not changes.has_key("urgency"):
666             changes["urgency"] = Cnf["Urgency::Default"];
667         if changes["urgency"] not in Cnf.ValueList("Urgency::Valid"):
668             reject("%s is not a valid urgency; it will be treated as %s by testing." % (changes["urgency"], Cnf["Urgency::Default"]), "Warning: ");
669             changes["urgency"] = Cnf["Urgency::Default"];
670         changes["urgency"] = changes["urgency"].lower();
671
672 ################################################################################
673
674 def check_md5sums ():
675     for file in files.keys():
676         try:
677             file_handle = utils.open_file(file);
678         except utils.cant_open_exc:
679             continue;
680
681         # Check md5sum
682         if apt_pkg.md5sum(file_handle) != files[file]["md5sum"]:
683             reject("%s: md5sum check failed." % (file));
684         file_handle.close();
685         # Check size
686         actual_size = os.stat(file)[stat.ST_SIZE];
687         size = int(files[file]["size"]);
688         if size != actual_size:
689             reject("%s: actual file size (%s) does not match size (%s) in .changes"
690                    % (file, actual_size, size));
691
692     for file in dsc_files.keys():
693         try:
694             file_handle = utils.open_file(file);
695         except utils.cant_open_exc:
696             continue;
697
698         # Check md5sum
699         if apt_pkg.md5sum(file_handle) != dsc_files[file]["md5sum"]:
700             reject("%s: md5sum check failed." % (file));
701         file_handle.close();
702         # Check size
703         actual_size = os.stat(file)[stat.ST_SIZE];
704         size = int(dsc_files[file]["size"]);
705         if size != actual_size:
706             reject("%s: actual file size (%s) does not match size (%s) in .dsc"
707                    % (file, actual_size, size));
708
709 ################################################################################
710
711 # Sanity check the time stamps of files inside debs.
712 # [Files in the near future cause ugly warnings and extreme time
713 #  travel can cause errors on extraction]
714
715 def check_timestamps():
716     class Tar:
717         def __init__(self, future_cutoff, past_cutoff):
718             self.reset();
719             self.future_cutoff = future_cutoff;
720             self.past_cutoff = past_cutoff;
721
722         def reset(self):
723             self.future_files = {};
724             self.ancient_files = {};
725
726         def callback(self, Kind,Name,Link,Mode,UID,GID,Size,MTime,Major,Minor):
727             if MTime > self.future_cutoff:
728                 self.future_files[Name] = MTime;
729             if MTime < self.past_cutoff:
730                 self.ancient_files[Name] = MTime;
731     ####
732
733     future_cutoff = time.time() + int(Cnf["Dinstall::FutureTimeTravelGrace"]);
734     past_cutoff = time.mktime(time.strptime(Cnf["Dinstall::PastCutoffYear"],"%Y"));
735     tar = Tar(future_cutoff, past_cutoff);
736     for filename in files.keys():
737         if files[filename]["type"] == "deb":
738             tar.reset();
739             try:
740                 deb_file = utils.open_file(filename);
741                 apt_inst.debExtract(deb_file,tar.callback,"control.tar.gz");
742                 deb_file.seek(0);
743                 apt_inst.debExtract(deb_file,tar.callback,"data.tar.gz");
744                 deb_file.close();
745                 #
746                 future_files = tar.future_files.keys();
747                 if future_files:
748                     num_future_files = len(future_files);
749                     future_file = future_files[0];
750                     future_date = tar.future_files[future_file];
751                     reject("%s: has %s file(s) with a time stamp too far into the future (e.g. %s [%s])."
752                            % (filename, num_future_files, future_file,
753                               time.ctime(future_date)));
754                 #
755                 ancient_files = tar.ancient_files.keys();
756                 if ancient_files:
757                     num_ancient_files = len(ancient_files);
758                     ancient_file = ancient_files[0];
759                     ancient_date = tar.ancient_files[ancient_file];
760                     reject("%s: has %s file(s) with a time stamp too ancient (e.g. %s [%s])."
761                            % (filename, num_ancient_files, ancient_file,
762                               time.ctime(ancient_date)));
763             except:
764                 reject("%s: deb contents timestamp check failed [%s: %s]" % (filename, sys.exc_type, sys.exc_value));
765
766 ################################################################################
767 ################################################################################
768
769 # If any file of an upload has a recent mtime then chances are good
770 # the file is still being uploaded.
771
772 def upload_too_new():
773     too_new = 0;
774     # Move back to the original directory to get accurate time stamps
775     cwd = os.getcwd();
776     os.chdir(pkg.directory);
777     file_list = pkg.files.keys();
778     file_list.extend(pkg.dsc_files.keys());
779     file_list.append(pkg.changes_file);
780     for file in file_list:
781         try:
782             last_modified = time.time()-os.path.getmtime(file);
783             if last_modified < int(Cnf["Dinstall::SkipTime"]):
784                 too_new = 1;
785                 break;
786         except:
787             pass;
788     os.chdir(cwd);
789     return too_new;
790
791 ################################################################################
792
793 def action ():
794     # changes["distribution"] may not exist in corner cases
795     # (e.g. unreadable changes files)
796     if not changes.has_key("distribution") or not isinstance(changes["distribution"], DictType):
797         changes["distribution"] = {};
798
799     (summary, short_summary) = Katie.build_summaries();
800
801     byhand = new = "";
802     for file in files.keys():
803         if files[file].has_key("byhand"):
804             byhand = 1
805         elif files[file].has_key("new"):
806             new = 1
807
808     (prompt, answer) = ("", "XXX")
809     if Options["No-Action"] or Options["Automatic"]:
810         answer = 'S'
811
812     if reject_message.find("Rejected") != -1:
813         if upload_too_new():
814             print "SKIP (too new)\n" + reject_message,;
815             prompt = "[S]kip, Quit ?";
816         else:
817             print "REJECT\n" + reject_message,;
818             prompt = "[R]eject, Skip, Quit ?";
819             if Options["Automatic"]:
820                 answer = 'R';
821     elif new:
822         print "NEW to %s\n%s%s" % (", ".join(changes["distribution"].keys()), reject_message, summary),;
823         prompt = "[N]ew, Skip, Quit ?";
824         if Options["Automatic"]:
825             answer = 'N';
826     elif byhand:
827         print "BYHAND\n" + reject_message + summary,;
828         prompt = "[B]yhand, Skip, Quit ?";
829         if Options["Automatic"]:
830             answer = 'B';
831     else:
832         print "ACCEPT\n" + reject_message + summary,;
833         prompt = "[A]ccept, Skip, Quit ?";
834         if Options["Automatic"]:
835             answer = 'A';
836
837     while prompt.find(answer) == -1:
838         answer = utils.our_raw_input(prompt);
839         m = katie.re_default_answer.match(prompt);
840         if answer == "":
841             answer = m.group(1);
842         answer = answer[:1].upper();
843
844     if answer == 'R':
845         os.chdir (pkg.directory);
846         Katie.do_reject(0, reject_message);
847     elif answer == 'A':
848         accept(summary, short_summary);
849     elif answer == 'B':
850         do_byhand(summary);
851     elif answer == 'N':
852         acknowledge_new (summary);
853     elif answer == 'Q':
854         sys.exit(0)
855
856 ################################################################################
857
858 def accept (summary, short_summary):
859     Katie.accept(summary, short_summary);
860     Katie.check_override();
861
862     # Finally, remove the originals from the unchecked directory
863     os.chdir (pkg.directory);
864     for file in files.keys():
865         os.unlink(file);
866     os.unlink(pkg.changes_file);
867
868 ################################################################################
869
870 def do_byhand (summary):
871     print "Moving to BYHAND holding area."
872     Logger.log(["Moving to byhand", pkg.changes_file]);
873
874     Katie.dump_vars(Cnf["Dir::Queue::Byhand"]);
875
876     file_keys = files.keys();
877
878     # Move all the files into the byhand directory
879     utils.move (pkg.changes_file, Cnf["Dir::Queue::Byhand"]);
880     for file in file_keys:
881         utils.move (file, Cnf["Dir::Queue::Byhand"], perms=0660);
882
883     # Check for override disparities
884     Katie.Subst["__SUMMARY__"] = summary;
885     Katie.check_override();
886
887     # Finally remove the originals.
888     os.chdir (pkg.directory);
889     for file in file_keys:
890         os.unlink(file);
891     os.unlink(pkg.changes_file);
892
893 ################################################################################
894
895 def acknowledge_new (summary):
896     Subst = Katie.Subst;
897
898     print "Moving to NEW holding area."
899     Logger.log(["Moving to new", pkg.changes_file]);
900
901     Katie.dump_vars(Cnf["Dir::Queue::New"]);
902
903     file_keys = files.keys();
904
905     # Move all the files into the 'new' directory
906     utils.move (pkg.changes_file, Cnf["Dir::Queue::New"]);
907     for file in file_keys:
908         utils.move (file, Cnf["Dir::Queue::New"], perms=0660);
909
910     if not Options["No-Mail"]:
911         print "Sending new ack.";
912         Subst["__SUMMARY__"] = summary;
913         new_ack_message = utils.TemplateSubst(Subst,Cnf["Dir::Templates"]+"/jennifer.new");
914         utils.send_mail(new_ack_message);
915
916     # Finally remove the originals.
917     os.chdir (pkg.directory);
918     for file in file_keys:
919         os.unlink(file);
920     os.unlink(pkg.changes_file);
921
922 ################################################################################
923
924 # reprocess is necessary for the case of foo_1.2-1 and foo_1.2-2 in
925 # Incoming. -1 will reference the .orig.tar.gz, but -2 will not.
926 # Katie.check_dsc_against_db() can find the .orig.tar.gz but it will
927 # not have processed it during it's checks of -2.  If -1 has been
928 # deleted or otherwise not checked by jennifer, the .orig.tar.gz will
929 # not have been checked at all.  To get round this, we force the
930 # .orig.tar.gz into the .changes structure and reprocess the .changes
931 # file.
932
933 def process_it (changes_file):
934     global reprocess, reject_message;
935
936     # Reset some globals
937     reprocess = 1;
938     Katie.init_vars();
939     reject_message = "";
940
941     # Absolutize the filename to avoid the requirement of being in the
942     # same directory as the .changes file.
943     pkg.changes_file = os.path.abspath(changes_file);
944
945     # Remember where we are so we can come back after cd-ing into the
946     # holding directory.
947     pkg.directory = os.getcwd();
948
949     try:
950         # If this is the Real Thing(tm), copy things into a private
951         # holding directory first to avoid replacable file races.
952         if not Options["No-Action"]:
953             os.chdir(Cnf["Dir::Queue::Holding"]);
954             copy_to_holding(pkg.changes_file);
955             # Relativize the filename so we use the copy in holding
956             # rather than the original...
957             pkg.changes_file = os.path.basename(pkg.changes_file);
958         changes["fingerprint"] = utils.check_signature(pkg.changes_file, reject);
959         changes_valid = check_changes();
960         if changes_valid:
961             while reprocess:
962                 check_distributions();
963                 check_files();
964                 check_dsc();
965                 check_diff();
966                 check_md5sums();
967                 check_urgency();
968                 check_timestamps();
969         Katie.update_subst(reject_message);
970         action();
971     except SystemExit:
972         raise;
973     except:
974         print "ERROR";
975         traceback.print_exc(file=sys.stderr);
976         pass;
977
978     # Restore previous WD
979     os.chdir(pkg.directory);
980
981 ###############################################################################
982
983 def main():
984     global Cnf, Options, Logger, nmu;
985
986     changes_files = init();
987
988     # -n/--dry-run invalidates some other options which would involve things happening
989     if Options["No-Action"]:
990         Options["Automatic"] = "";
991
992     # Ensure all the arguments we were given are .changes files
993     for file in changes_files:
994         if not file.endswith(".changes"):
995             utils.warn("Ignoring '%s' because it's not a .changes file." % (file));
996             changes_files.remove(file);
997
998     if changes_files == []:
999         utils.fubar("Need at least one .changes file as an argument.");
1000
1001     # Check that we aren't going to clash with the daily cron job
1002
1003     if not Options["No-Action"] and os.path.exists("%s/Archive_Maintenance_In_Progress" % (Cnf["Dir::Root"])) and not Options["No-Lock"]:
1004         utils.fubar("Archive maintenance in progress.  Try again later.");
1005
1006     # Obtain lock if not in no-action mode and initialize the log
1007
1008     if not Options["No-Action"]:
1009         lock_fd = os.open(Cnf["Dinstall::LockFile"], os.O_RDWR | os.O_CREAT);
1010         try:
1011             fcntl.lockf(lock_fd, fcntl.LOCK_EX | fcntl.LOCK_NB);
1012         except IOError, e:
1013             if errno.errorcode[e.errno] == 'EACCES' or errno.errorcode[e.errno] == 'EAGAIN':
1014                 utils.fubar("Couldn't obtain lock; assuming another jennifer is already running.");
1015             else:
1016                 raise;
1017         Logger = Katie.Logger = logging.Logger(Cnf, "jennifer");
1018
1019     # debian-{devel-,}-changes@lists.debian.org toggles writes access based on this header
1020     bcc = "X-Katie: %s" % (jennifer_version);
1021     if Cnf.has_key("Dinstall::Bcc"):
1022         Katie.Subst["__BCC__"] = bcc + "\nBcc: %s" % (Cnf["Dinstall::Bcc"]);
1023     else:
1024         Katie.Subst["__BCC__"] = bcc;
1025
1026
1027     # Sort the .changes files so that we process sourceful ones first
1028     changes_files.sort(utils.changes_compare);
1029
1030     # Process the changes files
1031     for changes_file in changes_files:
1032         print "\n" + changes_file;
1033         try:
1034             process_it (changes_file);
1035         finally:
1036             if not Options["No-Action"]:
1037                 clean_holding();
1038
1039     accept_count = Katie.accept_count;
1040     accept_bytes = Katie.accept_bytes;
1041     if accept_count:
1042         sets = "set"
1043         if accept_count > 1:
1044             sets = "sets"
1045         print "Accepted %d package %s, %s." % (accept_count, sets, utils.size_type(int(accept_bytes)));
1046         Logger.log(["total",accept_count,accept_bytes]);
1047
1048     if not Options["No-Action"]:
1049         Logger.close();
1050
1051 ################################################################################
1052
1053 if __name__ == '__main__':
1054     main()
1055