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