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