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