]> git.decadent.org.uk Git - dak.git/blob - jennifer
4b3bf44a386adf433cd1d43f29f6eb5bcbbc5dda
[dak.git] / jennifer
1 #!/usr/bin/env python
2
3 # Checks Debian packages from Incoming
4 # Copyright (C) 2000, 2001, 2002, 2003, 2004  James Troup <james@nocrew.org>
5 # $Id: jennifer,v 1.54 2004-11-27 19:24:22 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 commands, errno, fcntl, os, re, shutil, stat, sys, time, tempfile, traceback;
33 import apt_inst, apt_pkg;
34 import db_access, katie, logging, utils;
35
36 from types import *;
37
38 ################################################################################
39
40 re_valid_version = re.compile(r"^([0-9]+:)?[0-9A-Za-z\.\-\+:]+$");
41 re_valid_pkg_name = re.compile(r"^[\dA-Za-z][\dA-Za-z\+\-\.]+$");
42 re_changelog_versions = re.compile(r"^\w[-+0-9a-z.]+ \([^\(\) \t]+\)");
43 re_strip_revision = re.compile(r"-([^-]+)$");
44
45 ################################################################################
46
47 # Globals
48 jennifer_version = "$Revision: 1.54 $";
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("%s: can not copy to holding area: file not found." % (base_filename));
152             os.unlink(dest);
153             return;
154         elif errno.errorcode[e.errno] == 'EACCES':
155             reject("%s: can not copy 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     # Parse the .changes field into a dictionary
184     try:
185         changes.update(utils.parse_changes(filename));
186     except utils.cant_open_exc:
187         reject("%s: can't read file." % (filename));
188         return 0;
189     except utils.changes_parse_error_exc, line:
190         reject("%s: parse error, can't grok: %s." % (filename, line));
191         return 0;
192
193     # Parse the Files field from the .changes into another dictionary
194     try:
195         files.update(utils.build_file_list(changes));
196     except utils.changes_parse_error_exc, line:
197         reject("%s: parse error, can't grok: %s." % (filename, line));
198     except utils.nk_format_exc, format:
199         reject("%s: unknown format '%s'." % (filename, format));
200         return 0;
201
202     # Check for mandatory fields
203     for i in ("source", "binary", "architecture", "version", "distribution",
204               "maintainer", "files", "changes"):
205         if not changes.has_key(i):
206             reject("%s: Missing mandatory field `%s'." % (filename, i));
207             return 0    # Avoid <undef> errors during later tests
208
209     # Split multi-value fields into a lower-level dictionary
210     for i in ("architecture", "distribution", "binary", "closes"):
211         o = changes.get(i, "")
212         if o != "":
213             del changes[i]
214         changes[i] = {}
215         for j in o.split():
216             changes[i][j] = 1
217
218     # Fix the Maintainer: field to be RFC822/2047 compatible
219     try:
220         (changes["maintainer822"], changes["maintainer2047"],
221          changes["maintainername"], changes["maintaineremail"]) = \
222          utils.fix_maintainer (changes["maintainer"]);
223     except utils.ParseMaintError, msg:
224         reject("%s: Maintainer field ('%s') failed to parse: %s" \
225                % (filename, changes["maintainer"], msg));
226
227     # ...likewise for the Changed-By: field if it exists.
228     try:
229         (changes["changedby822"], changes["changedby2047"],
230          changes["changedbyname"], changes["changedbyemail"]) = \
231          utils.fix_maintainer (changes.get("changed-by", ""));
232     except utils.ParseMaintError, msg:
233         reject("%s: Changed-By field ('%s') failed to parse: %s" \
234                % (filename, changes["changed-by"], msg));
235
236     # Ensure all the values in Closes: are numbers
237     if changes.has_key("closes"):
238         for i in changes["closes"].keys():
239             if katie.re_isanum.match (i) == None:
240                 reject("%s: `%s' from Closes field isn't a number." % (filename, i));
241
242
243     # chopversion = no epoch; chopversion2 = no epoch and no revision (e.g. for .orig.tar.gz comparison)
244     changes["chopversion"] = utils.re_no_epoch.sub('', changes["version"])
245     changes["chopversion2"] = utils.re_no_revision.sub('', changes["chopversion"])
246
247     # Check there isn't already a changes file of the same name in one
248     # of the queue directories.
249     base_filename = os.path.basename(filename);
250     for dir in [ "Accepted", "Byhand", "Done", "New" ]:
251         if os.path.exists(Cnf["Dir::Queue::%s" % (dir) ]+'/'+base_filename):
252             reject("%s: a file with this name already exists in the %s directory." % (base_filename, dir));
253
254     # Check the .changes is non-empty
255     if not files:
256         reject("%s: nothing to do (Files field is empty)." % (base_filename))
257         return 0;
258
259     return 1;
260
261 ################################################################################
262
263 def check_distributions():
264     "Check and map the Distribution field of a .changes file."
265
266     # Handle suite mappings
267     for map in Cnf.ValueList("SuiteMappings"):
268         args = map.split();
269         type = args[0];
270         if type == "map" or type == "silent-map":
271             (source, dest) = args[1:3];
272             if changes["distribution"].has_key(source):
273                 del changes["distribution"][source]
274                 changes["distribution"][dest] = 1;
275                 if type != "silent-map":
276                     reject("Mapping %s to %s." % (source, dest),"");
277         elif type == "map-unreleased":
278             (source, dest) = args[1:3];
279             if changes["distribution"].has_key(source):
280                 for arch in changes["architecture"].keys():
281                     if arch not in Cnf.ValueList("Suite::%s::Architectures" % (source)):
282                         reject("Mapping %s to %s for unreleased architecture %s." % (source, dest, arch),"");
283                         del changes["distribution"][source];
284                         changes["distribution"][dest] = 1;
285                         break;
286         elif type == "ignore":
287             suite = args[1];
288             if changes["distribution"].has_key(suite):
289                 del changes["distribution"][suite];
290                 reject("Ignoring %s as a target suite." % (suite), "Warning: ");
291         elif type == "reject":
292             suite = args[1];
293             if changes["distribution"].has_key(suite):
294                 reject("Uploads to %s are not accepted." % (suite));
295
296     # Ensure there is (still) a target distribution
297     if changes["distribution"].keys() == []:
298         reject("no valid distribution.");
299
300     # Ensure target distributions exist
301     for suite in changes["distribution"].keys():
302         if not Cnf.has_key("Suite::%s" % (suite)):
303             reject("Unknown distribution `%s'." % (suite));
304
305 ################################################################################
306
307 def check_files():
308     global reprocess
309
310     archive = utils.where_am_i();
311     file_keys = files.keys();
312
313     # if reprocess is 2 we've already done this and we're checking
314     # things again for the new .orig.tar.gz.
315     # [Yes, I'm fully aware of how disgusting this is]
316     if not Options["No-Action"] and reprocess < 2:
317         cwd = os.getcwd();
318         os.chdir(pkg.directory);
319         for file in file_keys:
320             copy_to_holding(file);
321         os.chdir(cwd);
322
323     # Check there isn't already a .changes or .katie file of the same name in
324     # the proposed-updates "CopyChanges" or "CopyKatie" storage directories.
325     # [NB: this check must be done post-suite mapping]
326     base_filename = os.path.basename(pkg.changes_file);
327     katie_filename = base_filename[:-8]+".katie"
328     for suite in changes["distribution"].keys():
329         copychanges = "Suite::%s::CopyChanges" % (suite);
330         if Cnf.has_key(copychanges) and \
331                os.path.exists(Cnf[copychanges]+"/"+base_filename):
332             reject("%s: a file with this name already exists in %s" \
333                    % (base_filename, Cnf[copychanges]));
334
335         copykatie = "Suite::%s::CopyKatie" % (suite);
336         if Cnf.has_key(copykatie) and \
337                os.path.exists(Cnf[copykatie]+"/"+katie_filename):
338             reject("%s: a file with this name already exists in %s" \
339                    % (katie_filename, Cnf[copykatie]));
340
341     reprocess = 0;
342     has_binaries = 0;
343     has_source = 0;
344
345     for file in file_keys:
346         # Ensure the file does not already exist in one of the accepted directories
347         for dir in [ "Accepted", "Byhand", "New" ]:
348             if os.path.exists(Cnf["Dir::Queue::%s" % (dir) ]+'/'+file):
349                 reject("%s file already exists in the %s directory." % (file, dir));
350         if not utils.re_taint_free.match(file):
351             reject("!!WARNING!! tainted filename: '%s'." % (file));
352         # Check the file is readable
353         if os.access(file,os.R_OK) == 0:
354             # When running in -n, copy_to_holding() won't have
355             # generated the reject_message, so we need to.
356             if Options["No-Action"]:
357                 if os.path.exists(file):
358                     reject("Can't read `%s'. [permission denied]" % (file));
359                 else:
360                     reject("Can't read `%s'. [file not found]" % (file));
361             files[file]["type"] = "unreadable";
362             continue;
363         # If it's byhand skip remaining checks
364         if files[file]["section"] == "byhand":
365             files[file]["byhand"] = 1;
366             files[file]["type"] = "byhand";
367         # Checks for a binary package...
368         elif utils.re_isadeb.match(file):
369             has_binaries = 1;
370             files[file]["type"] = "deb";
371
372             # Extract package control information
373             deb_file = utils.open_file(file);
374             try:
375                 control = apt_pkg.ParseSection(apt_inst.debExtractControl(deb_file));
376             except:
377                 reject("%s: debExtractControl() raised %s." % (file, sys.exc_type));
378                 deb_file.close();
379                 # Can't continue, none of the checks on control would work.
380                 continue;
381             deb_file.close();
382
383             # Check for mandatory fields
384             for field in [ "Package", "Architecture", "Version" ]:
385                 if control.Find(field) == None:
386                     reject("%s: No %s field in control." % (file, field));
387                     # Can't continue
388                     continue;
389
390             # Ensure the package name matches the one give in the .changes
391             if not changes["binary"].has_key(control.Find("Package", "")):
392                 reject("%s: control file lists name as `%s', which isn't in changes file." % (file, control.Find("Package", "")));
393
394             # Validate the package field
395             package = control.Find("Package");
396             if not re_valid_pkg_name.match(package):
397                 reject("%s: invalid package name '%s'." % (file, package));
398
399             # Validate the version field
400             version = control.Find("Version");
401             if not re_valid_version.match(version):
402                 reject("%s: invalid version number '%s'." % (file, version));
403
404             # Ensure the architecture of the .deb is one we know about.
405             default_suite = Cnf.get("Dinstall::DefaultSuite", "Unstable")
406             architecture = control.Find("Architecture");
407             if architecture not in Cnf.ValueList("Suite::%s::Architectures" % (default_suite)):
408                 reject("Unknown architecture '%s'." % (architecture));
409
410             # Ensure the architecture of the .deb is one of the ones
411             # listed in the .changes.
412             if not changes["architecture"].has_key(architecture):
413                 reject("%s: control file lists arch as `%s', which isn't in changes file." % (file, architecture));
414
415             # Sanity-check the Depends field
416             depends = control.Find("Depends");
417             if depends == '':
418                 reject("%s: Depends field is empty." % (file));
419
420             # Check the section & priority match those given in the .changes (non-fatal)
421             if control.Find("Section") and files[file]["section"] != "" and files[file]["section"] != control.Find("Section"):
422                 reject("%s control file lists section as `%s', but changes file has `%s'." % (file, control.Find("Section", ""), files[file]["section"]), "Warning: ");
423             if control.Find("Priority") and files[file]["priority"] != "" and files[file]["priority"] != control.Find("Priority"):
424                 reject("%s control file lists priority as `%s', but changes file has `%s'." % (file, control.Find("Priority", ""), files[file]["priority"]),"Warning: ");
425
426             files[file]["package"] = package;
427             files[file]["architecture"] = architecture;
428             files[file]["version"] = version;
429             files[file]["maintainer"] = control.Find("Maintainer", "");
430             if file.endswith(".udeb"):
431                 files[file]["dbtype"] = "udeb";
432             elif file.endswith(".deb"):
433                 files[file]["dbtype"] = "deb";
434             else:
435                 reject("%s is neither a .deb or a .udeb." % (file));
436             files[file]["source"] = control.Find("Source", files[file]["package"]);
437             # Get the source version
438             source = files[file]["source"];
439             source_version = "";
440             if source.find("(") != -1:
441                 m = utils.re_extract_src_version.match(source);
442                 source = m.group(1);
443                 source_version = m.group(2);
444             if not source_version:
445                 source_version = files[file]["version"];
446             files[file]["source package"] = source;
447             files[file]["source version"] = source_version;
448
449             # Ensure the filename matches the contents of the .deb
450             m = utils.re_isadeb.match(file);
451             #  package name
452             file_package = m.group(1);
453             if files[file]["package"] != file_package:
454                 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"]));
455             epochless_version = utils.re_no_epoch.sub('', control.Find("Version"));
456             #  version
457             file_version = m.group(2);
458             if epochless_version != file_version:
459                 reject("%s: version part of filename (%s) does not match package version in the %s (%s)." % (file, file_version, files[file]["dbtype"], epochless_version));
460             #  architecture
461             file_architecture = m.group(3);
462             if files[file]["architecture"] != file_architecture:
463                 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"]));
464
465             # Check for existent source
466             source_version = files[file]["source version"];
467             source_package = files[file]["source package"];
468             if changes["architecture"].has_key("source"):
469                 if source_version != changes["version"]:
470                     reject("source version (%s) for %s doesn't match changes version %s." % (source_version, file, changes["version"]));
471             else:
472                 # Check in the SQL database
473                 if not Katie.source_exists(source_package, source_version, changes["distribution"].keys()):
474                     # Check in one of the other directories
475                     source_epochless_version = utils.re_no_epoch.sub('', source_version);
476                     dsc_filename = "%s_%s.dsc" % (source_package, source_epochless_version);
477                     if os.path.exists(Cnf["Dir::Queue::Byhand"] + '/' + dsc_filename):
478                         files[file]["byhand"] = 1;
479                     elif os.path.exists(Cnf["Dir::Queue::New"] + '/' + dsc_filename):
480                         files[file]["new"] = 1;
481                     elif not os.path.exists(Cnf["Dir::Queue::Accepted"] + '/' + dsc_filename):
482                         reject("no source found for %s %s (%s)." % (source_package, source_version, file));
483             # Check the version and for file overwrites
484             reject(Katie.check_binary_against_db(file),"");
485
486         # Checks for a source package...
487         else:
488             m = utils.re_issource.match(file);
489             if m:
490                 has_source = 1;
491                 files[file]["package"] = m.group(1);
492                 files[file]["version"] = m.group(2);
493                 files[file]["type"] = m.group(3);
494
495                 # Ensure the source package name matches the Source filed in the .changes
496                 if changes["source"] != files[file]["package"]:
497                     reject("%s: changes file doesn't say %s for Source" % (file, files[file]["package"]));
498
499                 # Ensure the source version matches the version in the .changes file
500                 if files[file]["type"] == "orig.tar.gz":
501                     changes_version = changes["chopversion2"];
502                 else:
503                     changes_version = changes["chopversion"];
504                 if changes_version != files[file]["version"]:
505                     reject("%s: should be %s according to changes file." % (file, changes_version));
506
507                 # Ensure the .changes lists source in the Architecture field
508                 if not changes["architecture"].has_key("source"):
509                     reject("%s: changes file doesn't list `source' in Architecture field." % (file));
510
511                 # Check the signature of a .dsc file
512                 if files[file]["type"] == "dsc":
513                     dsc["fingerprint"] = utils.check_signature(file, reject);
514
515                 files[file]["architecture"] = "source";
516
517             # Not a binary or source package?  Assume byhand...
518             else:
519                 files[file]["byhand"] = 1;
520                 files[file]["type"] = "byhand";
521
522         # Per-suite file checks
523         files[file]["oldfiles"] = {};
524         for suite in changes["distribution"].keys():
525             # Skip byhand
526             if files[file].has_key("byhand"):
527                 continue;
528
529             # Handle component mappings
530             for map in Cnf.ValueList("ComponentMappings"):
531                 (source, dest) = map.split();
532                 if files[file]["component"] == source:
533                     files[file]["original component"] = source;
534                     files[file]["component"] = dest;
535
536             # Ensure the component is valid for the target suite
537             if Cnf.has_key("Suite:%s::Components" % (suite)) and \
538                files[file]["component"] not in Cnf.ValueList("Suite::%s::Components" % (suite)):
539                 reject("unknown component `%s' for suite `%s'." % (files[file]["component"], suite));
540                 continue;
541
542             # Validate the component
543             component = files[file]["component"];
544             component_id = db_access.get_component_id(component);
545             if component_id == -1:
546                 reject("file '%s' has unknown component '%s'." % (file, component));
547                 continue;
548
549             # See if the package is NEW
550             if not Katie.in_override_p(files[file]["package"], files[file]["component"], suite, files[file].get("dbtype",""), file):
551                 files[file]["new"] = 1;
552
553             # Validate the priority
554             if files[file]["priority"].find('/') != -1:
555                 reject("file '%s' has invalid priority '%s' [contains '/']." % (file, files[file]["priority"]));
556
557             # Determine the location
558             location = Cnf["Dir::Pool"];
559             location_id = db_access.get_location_id (location, component, archive);
560             if location_id == -1:
561                 reject("[INTERNAL ERROR] couldn't determine location (Component: %s, Archive: %s)" % (component, archive));
562             files[file]["location id"] = location_id;
563
564             # Check the md5sum & size against existing files (if any)
565             files[file]["pool name"] = utils.poolify (changes["source"], files[file]["component"]);
566             files_id = db_access.get_files_id(files[file]["pool name"] + file, files[file]["size"], files[file]["md5sum"], files[file]["location id"]);
567             if files_id == -1:
568                 reject("INTERNAL ERROR, get_files_id() returned multiple matches for %s." % (file));
569             elif files_id == -2:
570                 reject("md5sum and/or size mismatch on existing copy of %s." % (file));
571             files[file]["files id"] = files_id
572
573             # Check for packages that have moved from one component to another
574             q = Katie.projectB.query("""
575 SELECT c.name FROM binaries b, bin_associations ba, suite s, location l,
576                    component c, architecture a, files f
577  WHERE b.package = '%s' AND s.suite_name = '%s'
578    AND (a.arch_string = '%s' OR a.arch_string = 'all')
579    AND ba.bin = b.id AND ba.suite = s.id AND b.architecture = a.id
580    AND f.location = l.id AND l.component = c.id AND b.file = f.id"""
581                                % (files[file]["package"], suite,
582                                   files[file]["architecture"]));
583             ql = q.getresult();
584             if ql:
585                 files[file]["othercomponents"] = ql[0][0];
586
587     # If the .changes file says it has source, it must have source.
588     if changes["architecture"].has_key("source"):
589         if not has_source:
590             reject("no source found and Architecture line in changes mention source.");
591
592         if not has_binaries and Cnf.FindB("Dinstall::Reject::NoSourceOnly"):
593             reject("source only uploads are not supported.");
594
595 ###############################################################################
596
597 def check_dsc():
598     global reprocess;
599
600     # Ensure there is source to check
601     if not changes["architecture"].has_key("source"):
602         return 1;
603
604     # Find the .dsc
605     dsc_filename = None;
606     for file in files.keys():
607         if files[file]["type"] == "dsc":
608             if dsc_filename:
609                 reject("can not process a .changes file with multiple .dsc's.");
610                 return 0;
611             else:
612                 dsc_filename = file;
613
614     # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
615     if not dsc_filename:
616         return 0;
617
618     # Parse the .dsc file
619     try:
620         dsc.update(utils.parse_changes(dsc_filename, signing_rules=1));
621     except utils.cant_open_exc:
622         # if not -n copy_to_holding() will have done this for us...
623         if Options["No-Action"]:
624             reject("%s: can't read file." % (dsc_filename));
625     except utils.changes_parse_error_exc, line:
626         reject("%s: parse error, can't grok: %s." % (dsc_filename, line));
627     except utils.invalid_dsc_format_exc, line:
628         reject("%s: syntax error on line %s." % (dsc_filename, line));
629     # Build up the file list of files mentioned by the .dsc
630     try:
631         dsc_files.update(utils.build_file_list(dsc, is_a_dsc=1));
632     except utils.no_files_exc:
633         reject("%s: no Files: field." % (dsc_filename));
634         return 0;
635     except utils.changes_parse_error_exc, line:
636         reject("%s: parse error, can't grok: %s." % (dsc_filename, line));
637         return 0;
638
639     # Enforce mandatory fields
640     for i in ("format", "source", "version", "binary", "maintainer", "architecture", "files"):
641         if not dsc.has_key(i):
642             reject("%s: missing mandatory field `%s'." % (dsc_filename, i));
643             return 0;
644
645     # Validate the source and version fields
646     if not re_valid_pkg_name.match(dsc["source"]):
647         reject("%s: invalid source name '%s'." % (dsc_filename, dsc["source"]));
648     if not re_valid_version.match(dsc["version"]):
649         reject("%s: invalid version number '%s'." % (dsc_filename, dsc["version"]));
650
651     # Bumping the version number of the .dsc breaks extraction by stable's
652     # dpkg-source.  So let's not do that...
653     if dsc["format"] != "1.0":
654         reject("%s: incompatible 'Format' version produced by a broken version of dpkg-dev 1.9.1{3,4}." % (dsc_filename));
655
656     # Validate the Maintainer field
657     try:
658         utils.fix_maintainer (dsc["maintainer"]);
659     except utils.ParseMaintError, msg:
660         reject("%s: Maintainer field ('%s') failed to parse: %s" \
661                % (dsc_filename, dsc["maintainer"], msg));
662
663     # Validate the build-depends field(s)
664     for field_name in [ "build-depends", "build-depends-indep" ]:
665         field = dsc.get(field_name);
666         if field:
667             # Check for broken dpkg-dev lossage...
668             if field.startswith("ARRAY"):
669                 reject("%s: invalid %s field produced by a broken version of dpkg-dev (1.10.11)" % (dsc_filename, field_name.title()));
670
671             # Have apt try to parse them...
672             try:
673                 apt_pkg.ParseSrcDepends(field);
674             except:
675                 reject("%s: invalid %s field (can not be parsed by apt)." % (dsc_filename, field_name.title()));
676                 pass;
677
678     # Ensure the version number in the .dsc matches the version number in the .changes
679     epochless_dsc_version = utils.re_no_epoch.sub('', dsc["version"]);
680     changes_version = files[dsc_filename]["version"];
681     if epochless_dsc_version != files[dsc_filename]["version"]:
682         reject("version ('%s') in .dsc does not match version ('%s') in .changes." % (epochless_dsc_version, changes_version));
683
684     # Ensure there is a .tar.gz in the .dsc file
685     has_tar = 0;
686     for f in dsc_files.keys():
687         m = utils.re_issource.match(f);
688         if not m:
689             reject("%s: %s in Files field not recognised as source." % (dsc_filename, f));
690         type = m.group(3);
691         if type == "orig.tar.gz" or type == "tar.gz":
692             has_tar = 1;
693     if not has_tar:
694         reject("%s: no .tar.gz or .orig.tar.gz in 'Files' field." % (dsc_filename));
695
696     # Ensure source is newer than existing source in target suites
697     reject(Katie.check_source_against_db(dsc_filename),"");
698
699     (reject_msg, is_in_incoming) = Katie.check_dsc_against_db(dsc_filename);
700     reject(reject_msg, "");
701     if is_in_incoming:
702         if not Options["No-Action"]:
703             copy_to_holding(is_in_incoming);
704         orig_tar_gz = os.path.basename(is_in_incoming);
705         files[orig_tar_gz] = {};
706         files[orig_tar_gz]["size"] = os.stat(orig_tar_gz)[stat.ST_SIZE];
707         files[orig_tar_gz]["md5sum"] = dsc_files[orig_tar_gz]["md5sum"];
708         files[orig_tar_gz]["section"] = files[dsc_filename]["section"];
709         files[orig_tar_gz]["priority"] = files[dsc_filename]["priority"];
710         files[orig_tar_gz]["component"] = files[dsc_filename]["component"];
711         files[orig_tar_gz]["type"] = "orig.tar.gz";
712         reprocess = 2;
713
714     return 1;
715
716 ################################################################################
717
718 def get_changelog_versions(source_dir):
719     """Extracts a the source package and (optionally) grabs the
720     version history out of debian/changelog for the BTS."""
721
722     # Find the .dsc (again)
723     dsc_filename = None;
724     for file in files.keys():
725         if files[file]["type"] == "dsc":
726             dsc_filename = file;
727
728     # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
729     if not dsc_filename:
730         return;
731
732     # Create a symlink mirror of the source files in our temporary directory
733     for f in files.keys():
734         m = utils.re_issource.match(f);
735         if m:
736             src = os.path.join(source_dir, f);
737             # If a file is missing for whatever reason, give up.
738             if not os.path.exists(src):
739                 return;
740             type = m.group(3);
741             if type == "orig.tar.gz" and pkg.orig_tar_gz:
742                 continue;
743             dest = os.path.join(os.getcwd(), f);
744             os.symlink(src, dest);
745
746     # If the orig.tar.gz is not a part of the upload, create a symlink to the
747     # existing copy.
748     if pkg.orig_tar_gz:
749         dest = os.path.join(os.getcwd(), os.path.basename(pkg.orig_tar_gz));
750         os.symlink(pkg.orig_tar_gz, dest);
751
752     # Extract the source
753     cmd = "dpkg-source -sn -x %s" % (dsc_filename);
754     (result, output) = commands.getstatusoutput(cmd);
755     if (result != 0):
756         reject("'dpkg-source -x' failed for %s [return code: %s]." % (dsc_filename, result));
757         reject(utils.prefix_multi_line_string(output, " [dpkg-source output:] "), "");
758         return;
759
760     if not Cnf.Find("Dir::Queue::BTSVersionTrack"):
761         return;
762
763     # Get the upstream version
764     upstr_version = utils.re_no_epoch.sub('', dsc["version"]);
765     if re_strip_revision.search(upstr_version):
766         upstr_version = re_strip_revision.sub('', upstr_version);
767
768     # Ensure the changelog file exists
769     changelog_filename = "%s-%s/debian/changelog" % (dsc["source"], upstr_version);
770     if not os.path.exists(changelog_filename):
771         reject("%s: debian/changelog not found in extracted source." % (dsc_filename));
772         return;
773
774     # Parse the changelog
775     dsc["bts changelog"] = "";
776     changelog_file = utils.open_file(changelog_filename);
777     for line in changelog_file.readlines():
778         m = re_changelog_versions.match(line);
779         if m:
780             dsc["bts changelog"] += line;
781     changelog_file.close();
782
783     # Check we found at least one revision in the changelog
784     if not dsc["bts changelog"]:
785         reject("%s: changelog format not recognised (empty version tree)." % (dsc_filename));
786
787 ########################################
788
789 def check_source():
790     # Bail out if:
791     #    a) there's no source 
792     # or b) reprocess is 2 - we will do this check next time when orig.tar.gz is in 'files'
793     # or c) the orig.tar.gz is MIA
794     if not changes["architecture"].has_key("source") or reprocess == 2 \
795        or pkg.orig_tar_gz == -1:
796         return;
797
798     # Create a temporary directory to extract the source into
799     if Options["No-Action"]:
800         tmpdir = tempfile.mktemp();
801     else:
802         # We're in queue/holding and can create a random directory.
803         tmpdir = "%s" % (os.getpid());
804     os.mkdir(tmpdir);
805
806     # Move into the temporary directory
807     cwd = os.getcwd();
808     os.chdir(tmpdir);
809
810     # Get the changelog version history
811     get_changelog_versions(cwd);
812
813     # Move back and cleanup the temporary tree
814     os.chdir(cwd);
815     try:
816         shutil.rmtree(tmpdir);
817     except OSError, e:
818         if errno.errorcode[e.errno] != 'EACCES':
819             utils.fubar("%s: couldn't remove tmp dir for source tree." % (dsc["source"]));
820
821         reject("%s: source tree could not be cleanly removed." % (dsc["source"]));
822         # We probably have u-r or u-w directories so chmod everything
823         # and try again.
824         cmd = "chmod -R u+rwx %s" % (tmpdir)
825         result = os.system(cmd)
826         if result != 0:
827             utils.fubar("'%s' failed with result %s." % (cmd, result));
828         shutil.rmtree(tmpdir);
829     except:
830         utils.fubar("%s: couldn't remove tmp dir for source tree." % (dsc["source"]));
831
832 ################################################################################
833
834 # FIXME: should be a debian specific check called from a hook
835
836 def check_urgency ():
837     if changes["architecture"].has_key("source"):
838         if not changes.has_key("urgency"):
839             changes["urgency"] = Cnf["Urgency::Default"];
840         if changes["urgency"] not in Cnf.ValueList("Urgency::Valid"):
841             reject("%s is not a valid urgency; it will be treated as %s by testing." % (changes["urgency"], Cnf["Urgency::Default"]), "Warning: ");
842             changes["urgency"] = Cnf["Urgency::Default"];
843         changes["urgency"] = changes["urgency"].lower();
844
845 ################################################################################
846
847 def check_md5sums ():
848     for file in files.keys():
849         try:
850             file_handle = utils.open_file(file);
851         except utils.cant_open_exc:
852             continue;
853
854         # Check md5sum
855         if apt_pkg.md5sum(file_handle) != files[file]["md5sum"]:
856             reject("%s: md5sum check failed." % (file));
857         file_handle.close();
858         # Check size
859         actual_size = os.stat(file)[stat.ST_SIZE];
860         size = int(files[file]["size"]);
861         if size != actual_size:
862             reject("%s: actual file size (%s) does not match size (%s) in .changes"
863                    % (file, actual_size, size));
864
865     for file in dsc_files.keys():
866         try:
867             file_handle = utils.open_file(file);
868         except utils.cant_open_exc:
869             continue;
870
871         # Check md5sum
872         if apt_pkg.md5sum(file_handle) != dsc_files[file]["md5sum"]:
873             reject("%s: md5sum check failed." % (file));
874         file_handle.close();
875         # Check size
876         actual_size = os.stat(file)[stat.ST_SIZE];
877         size = int(dsc_files[file]["size"]);
878         if size != actual_size:
879             reject("%s: actual file size (%s) does not match size (%s) in .dsc"
880                    % (file, actual_size, size));
881
882 ################################################################################
883
884 # Sanity check the time stamps of files inside debs.
885 # [Files in the near future cause ugly warnings and extreme time
886 #  travel can cause errors on extraction]
887
888 def check_timestamps():
889     class Tar:
890         def __init__(self, future_cutoff, past_cutoff):
891             self.reset();
892             self.future_cutoff = future_cutoff;
893             self.past_cutoff = past_cutoff;
894
895         def reset(self):
896             self.future_files = {};
897             self.ancient_files = {};
898
899         def callback(self, Kind,Name,Link,Mode,UID,GID,Size,MTime,Major,Minor):
900             if MTime > self.future_cutoff:
901                 self.future_files[Name] = MTime;
902             if MTime < self.past_cutoff:
903                 self.ancient_files[Name] = MTime;
904     ####
905
906     future_cutoff = time.time() + int(Cnf["Dinstall::FutureTimeTravelGrace"]);
907     past_cutoff = time.mktime(time.strptime(Cnf["Dinstall::PastCutoffYear"],"%Y"));
908     tar = Tar(future_cutoff, past_cutoff);
909     for filename in files.keys():
910         if files[filename]["type"] == "deb":
911             tar.reset();
912             try:
913                 deb_file = utils.open_file(filename);
914                 apt_inst.debExtract(deb_file,tar.callback,"control.tar.gz");
915                 deb_file.seek(0);
916                 apt_inst.debExtract(deb_file,tar.callback,"data.tar.gz");
917                 deb_file.close();
918                 #
919                 future_files = tar.future_files.keys();
920                 if future_files:
921                     num_future_files = len(future_files);
922                     future_file = future_files[0];
923                     future_date = tar.future_files[future_file];
924                     reject("%s: has %s file(s) with a time stamp too far into the future (e.g. %s [%s])."
925                            % (filename, num_future_files, future_file,
926                               time.ctime(future_date)));
927                 #
928                 ancient_files = tar.ancient_files.keys();
929                 if ancient_files:
930                     num_ancient_files = len(ancient_files);
931                     ancient_file = ancient_files[0];
932                     ancient_date = tar.ancient_files[ancient_file];
933                     reject("%s: has %s file(s) with a time stamp too ancient (e.g. %s [%s])."
934                            % (filename, num_ancient_files, ancient_file,
935                               time.ctime(ancient_date)));
936             except:
937                 reject("%s: deb contents timestamp check failed [%s: %s]" % (filename, sys.exc_type, sys.exc_value));
938
939 ################################################################################
940 ################################################################################
941
942 # If any file of an upload has a recent mtime then chances are good
943 # the file is still being uploaded.
944
945 def upload_too_new():
946     too_new = 0;
947     # Move back to the original directory to get accurate time stamps
948     cwd = os.getcwd();
949     os.chdir(pkg.directory);
950     file_list = pkg.files.keys();
951     file_list.extend(pkg.dsc_files.keys());
952     file_list.append(pkg.changes_file);
953     for file in file_list:
954         try:
955             last_modified = time.time()-os.path.getmtime(file);
956             if last_modified < int(Cnf["Dinstall::SkipTime"]):
957                 too_new = 1;
958                 break;
959         except:
960             pass;
961     os.chdir(cwd);
962     return too_new;
963
964 ################################################################################
965
966 def action ():
967     # changes["distribution"] may not exist in corner cases
968     # (e.g. unreadable changes files)
969     if not changes.has_key("distribution") or not isinstance(changes["distribution"], DictType):
970         changes["distribution"] = {};
971
972     (summary, short_summary) = Katie.build_summaries();
973
974     byhand = new = "";
975     for file in files.keys():
976         if files[file].has_key("byhand"):
977             byhand = 1
978         elif files[file].has_key("new"):
979             new = 1
980
981     (prompt, answer) = ("", "XXX")
982     if Options["No-Action"] or Options["Automatic"]:
983         answer = 'S'
984
985     if reject_message.find("Rejected") != -1:
986         if upload_too_new():
987             print "SKIP (too new)\n" + reject_message,;
988             prompt = "[S]kip, Quit ?";
989         else:
990             print "REJECT\n" + reject_message,;
991             prompt = "[R]eject, Skip, Quit ?";
992             if Options["Automatic"]:
993                 answer = 'R';
994     elif new:
995         print "NEW to %s\n%s%s" % (", ".join(changes["distribution"].keys()), reject_message, summary),;
996         prompt = "[N]ew, Skip, Quit ?";
997         if Options["Automatic"]:
998             answer = 'N';
999     elif byhand:
1000         print "BYHAND\n" + reject_message + summary,;
1001         prompt = "[B]yhand, Skip, Quit ?";
1002         if Options["Automatic"]:
1003             answer = 'B';
1004     else:
1005         print "ACCEPT\n" + reject_message + summary,;
1006         prompt = "[A]ccept, Skip, Quit ?";
1007         if Options["Automatic"]:
1008             answer = 'A';
1009
1010     while prompt.find(answer) == -1:
1011         answer = utils.our_raw_input(prompt);
1012         m = katie.re_default_answer.match(prompt);
1013         if answer == "":
1014             answer = m.group(1);
1015         answer = answer[:1].upper();
1016
1017     if answer == 'R':
1018         os.chdir (pkg.directory);
1019         Katie.do_reject(0, reject_message);
1020     elif answer == 'A':
1021         accept(summary, short_summary);
1022     elif answer == 'B':
1023         do_byhand(summary);
1024     elif answer == 'N':
1025         acknowledge_new (summary);
1026     elif answer == 'Q':
1027         sys.exit(0)
1028
1029 ################################################################################
1030
1031 def accept (summary, short_summary):
1032     Katie.accept(summary, short_summary);
1033     Katie.check_override();
1034
1035     # Finally, remove the originals from the unchecked directory
1036     os.chdir (pkg.directory);
1037     for file in files.keys():
1038         os.unlink(file);
1039     os.unlink(pkg.changes_file);
1040
1041 ################################################################################
1042
1043 def do_byhand (summary):
1044     print "Moving to BYHAND holding area."
1045     Logger.log(["Moving to byhand", pkg.changes_file]);
1046
1047     Katie.dump_vars(Cnf["Dir::Queue::Byhand"]);
1048
1049     file_keys = files.keys();
1050
1051     # Move all the files into the byhand directory
1052     utils.move (pkg.changes_file, Cnf["Dir::Queue::Byhand"]);
1053     for file in file_keys:
1054         utils.move (file, Cnf["Dir::Queue::Byhand"], perms=0660);
1055
1056     # Check for override disparities
1057     Katie.Subst["__SUMMARY__"] = summary;
1058     Katie.check_override();
1059
1060     # Finally remove the originals.
1061     os.chdir (pkg.directory);
1062     for file in file_keys:
1063         os.unlink(file);
1064     os.unlink(pkg.changes_file);
1065
1066 ################################################################################
1067
1068 def acknowledge_new (summary):
1069     Subst = Katie.Subst;
1070
1071     print "Moving to NEW holding area."
1072     Logger.log(["Moving to new", pkg.changes_file]);
1073
1074     Katie.dump_vars(Cnf["Dir::Queue::New"]);
1075
1076     file_keys = files.keys();
1077
1078     # Move all the files into the 'new' directory
1079     utils.move (pkg.changes_file, Cnf["Dir::Queue::New"]);
1080     for file in file_keys:
1081         utils.move (file, Cnf["Dir::Queue::New"], perms=0660);
1082
1083     if not Options["No-Mail"]:
1084         print "Sending new ack.";
1085         Subst["__SUMMARY__"] = summary;
1086         new_ack_message = utils.TemplateSubst(Subst,Cnf["Dir::Templates"]+"/jennifer.new");
1087         utils.send_mail(new_ack_message);
1088
1089     # Finally remove the originals.
1090     os.chdir (pkg.directory);
1091     for file in file_keys:
1092         os.unlink(file);
1093     os.unlink(pkg.changes_file);
1094
1095 ################################################################################
1096
1097 # reprocess is necessary for the case of foo_1.2-1 and foo_1.2-2 in
1098 # Incoming. -1 will reference the .orig.tar.gz, but -2 will not.
1099 # Katie.check_dsc_against_db() can find the .orig.tar.gz but it will
1100 # not have processed it during it's checks of -2.  If -1 has been
1101 # deleted or otherwise not checked by jennifer, the .orig.tar.gz will
1102 # not have been checked at all.  To get round this, we force the
1103 # .orig.tar.gz into the .changes structure and reprocess the .changes
1104 # file.
1105
1106 def process_it (changes_file):
1107     global reprocess, reject_message;
1108
1109     # Reset some globals
1110     reprocess = 1;
1111     Katie.init_vars();
1112     # Some defaults in case we can't fully process the .changes file
1113     changes["maintainer2047"] = Cnf["Dinstall::MyEmailAddress"];
1114     changes["changedby2047"] = Cnf["Dinstall::MyEmailAddress"];
1115     reject_message = "";
1116
1117     # Absolutize the filename to avoid the requirement of being in the
1118     # same directory as the .changes file.
1119     pkg.changes_file = os.path.abspath(changes_file);
1120
1121     # Remember where we are so we can come back after cd-ing into the
1122     # holding directory.
1123     pkg.directory = os.getcwd();
1124
1125     try:
1126         # If this is the Real Thing(tm), copy things into a private
1127         # holding directory first to avoid replacable file races.
1128         if not Options["No-Action"]:
1129             os.chdir(Cnf["Dir::Queue::Holding"]);
1130             copy_to_holding(pkg.changes_file);
1131             # Relativize the filename so we use the copy in holding
1132             # rather than the original...
1133             pkg.changes_file = os.path.basename(pkg.changes_file);
1134         changes["fingerprint"] = utils.check_signature(pkg.changes_file, reject);
1135         if changes["fingerprint"]:
1136             valid_changes_p = check_changes();
1137         else:
1138             valid_changes_p = 0;
1139         if valid_changes_p:
1140             while reprocess:
1141                 check_distributions();
1142                 check_files();
1143                 valid_dsc_p = check_dsc();
1144                 if valid_dsc_p:
1145                     check_source();
1146                 check_md5sums();
1147                 check_urgency();
1148                 check_timestamps();
1149         Katie.update_subst(reject_message);
1150         action();
1151     except SystemExit:
1152         raise;
1153     except:
1154         print "ERROR";
1155         traceback.print_exc(file=sys.stderr);
1156         pass;
1157
1158     # Restore previous WD
1159     os.chdir(pkg.directory);
1160
1161 ###############################################################################
1162
1163 def main():
1164     global Cnf, Options, Logger;
1165
1166     changes_files = init();
1167
1168     # -n/--dry-run invalidates some other options which would involve things happening
1169     if Options["No-Action"]:
1170         Options["Automatic"] = "";
1171
1172     # Ensure all the arguments we were given are .changes files
1173     for file in changes_files:
1174         if not file.endswith(".changes"):
1175             utils.warn("Ignoring '%s' because it's not a .changes file." % (file));
1176             changes_files.remove(file);
1177
1178     if changes_files == []:
1179         utils.fubar("Need at least one .changes file as an argument.");
1180
1181     # Check that we aren't going to clash with the daily cron job
1182
1183     if not Options["No-Action"] and os.path.exists("%s/Archive_Maintenance_In_Progress" % (Cnf["Dir::Root"])) and not Options["No-Lock"]:
1184         utils.fubar("Archive maintenance in progress.  Try again later.");
1185
1186     # Obtain lock if not in no-action mode and initialize the log
1187
1188     if not Options["No-Action"]:
1189         lock_fd = os.open(Cnf["Dinstall::LockFile"], os.O_RDWR | os.O_CREAT);
1190         try:
1191             fcntl.lockf(lock_fd, fcntl.LOCK_EX | fcntl.LOCK_NB);
1192         except IOError, e:
1193             if errno.errorcode[e.errno] == 'EACCES' or errno.errorcode[e.errno] == 'EAGAIN':
1194                 utils.fubar("Couldn't obtain lock; assuming another jennifer is already running.");
1195             else:
1196                 raise;
1197         Logger = Katie.Logger = logging.Logger(Cnf, "jennifer");
1198
1199     # debian-{devel-,}-changes@lists.debian.org toggles writes access based on this header
1200     bcc = "X-Katie: %s" % (jennifer_version);
1201     if Cnf.has_key("Dinstall::Bcc"):
1202         Katie.Subst["__BCC__"] = bcc + "\nBcc: %s" % (Cnf["Dinstall::Bcc"]);
1203     else:
1204         Katie.Subst["__BCC__"] = bcc;
1205
1206
1207     # Sort the .changes files so that we process sourceful ones first
1208     changes_files.sort(utils.changes_compare);
1209
1210     # Process the changes files
1211     for changes_file in changes_files:
1212         print "\n" + changes_file;
1213         try:
1214             process_it (changes_file);
1215         finally:
1216             if not Options["No-Action"]:
1217                 clean_holding();
1218
1219     accept_count = Katie.accept_count;
1220     accept_bytes = Katie.accept_bytes;
1221     if accept_count:
1222         sets = "set"
1223         if accept_count > 1:
1224             sets = "sets";
1225         print "Accepted %d package %s, %s." % (accept_count, sets, utils.size_type(int(accept_bytes)));
1226         Logger.log(["total",accept_count,accept_bytes]);
1227
1228     if not Options["No-Action"]:
1229         Logger.close();
1230
1231 ################################################################################
1232
1233 if __name__ == '__main__':
1234     main()
1235