]> git.decadent.org.uk Git - dak.git/blob - daklib/queue.py
8ab693a86e89bbe72c30916ace7916687c01ca75
[dak.git] / daklib / queue.py
1 #!/usr/bin/env python
2 # vim:set et sw=4:
3
4 """
5 Queue utility functions for dak
6
7 @contact: Debian FTP Master <ftpmaster@debian.org>
8 @copyright: 2001 - 2006 James Troup <james@nocrew.org>
9 @copyright: 2009  Joerg Jaspert <joerg@debian.org>
10 @license: GNU General Public License version 2 or later
11 """
12
13 # This program is free software; you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 2 of the License, or
16 # (at your option) any later version.
17
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21 # GNU General Public License for more details.
22
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software
25 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
26
27 ###############################################################################
28
29 import errno
30 import os
31 import pg
32 import stat
33 import sys
34 import time
35 import apt_inst
36 import apt_pkg
37 import utils
38 import commands
39 import shutil
40 import textwrap
41 import tempfile
42 from types import *
43
44 import yaml
45
46 from dak_exceptions import *
47 from changes import *
48 from regexes import *
49 from config import Config
50 from holding import Holding
51 from dbconn import *
52 from summarystats import SummaryStats
53 from utils import parse_changes, check_dsc_files
54 from textutils import fix_maintainer
55 from binary import Binary
56
57 ###############################################################################
58
59 def get_type(f, session):
60     """
61     Get the file type of C{f}
62
63     @type f: dict
64     @param f: file entry from Changes object
65
66     @type session: SQLA Session
67     @param session: SQL Alchemy session object
68
69     @rtype: string
70     @return: filetype
71
72     """
73     # Determine the type
74     if f.has_key("dbtype"):
75         file_type = f["dbtype"]
76     elif re_source_ext.match(f["type"]):
77         file_type = "dsc"
78     else:
79         utils.fubar("invalid type (%s) for new.  Dazed, confused and sure as heck not continuing." % (file_type))
80
81     # Validate the override type
82     type_id = get_override_type(file_type, session)
83     if type_id is None:
84         utils.fubar("invalid type (%s) for new.  Say wha?" % (file_type))
85
86     return file_type
87
88 ################################################################################
89
90 # Determine what parts in a .changes are NEW
91
92 def determine_new(changes, files, warn=1):
93     """
94     Determine what parts in a C{changes} file are NEW.
95
96     @type changes: Upload.Pkg.changes dict
97     @param changes: Changes dictionary
98
99     @type files: Upload.Pkg.files dict
100     @param files: Files dictionary
101
102     @type warn: bool
103     @param warn: Warn if overrides are added for (old)stable
104
105     @rtype: dict
106     @return: dictionary of NEW components.
107
108     """
109     new = {}
110
111     session = DBConn().session()
112
113     # Build up a list of potentially new things
114     for name, f in files.items():
115         # Skip byhand elements
116         if f["type"] == "byhand":
117             continue
118         pkg = f["package"]
119         priority = f["priority"]
120         section = f["section"]
121         file_type = get_type(f, session)
122         component = f["component"]
123
124         if file_type == "dsc":
125             priority = "source"
126
127         if not new.has_key(pkg):
128             new[pkg] = {}
129             new[pkg]["priority"] = priority
130             new[pkg]["section"] = section
131             new[pkg]["type"] = file_type
132             new[pkg]["component"] = component
133             new[pkg]["files"] = []
134         else:
135             old_type = new[pkg]["type"]
136             if old_type != file_type:
137                 # source gets trumped by deb or udeb
138                 if old_type == "dsc":
139                     new[pkg]["priority"] = priority
140                     new[pkg]["section"] = section
141                     new[pkg]["type"] = file_type
142                     new[pkg]["component"] = component
143
144         new[pkg]["files"].append(name)
145
146         if f.has_key("othercomponents"):
147             new[pkg]["othercomponents"] = f["othercomponents"]
148
149     for suite in changes["suite"].keys():
150         for pkg in new.keys():
151             ql = get_override(pkg, suite, new[pkg]["component"], new[pkg]["type"], session)
152             if len(ql) > 0:
153                 for file_entry in new[pkg]["files"]:
154                     if files[file_entry].has_key("new"):
155                         del files[file_entry]["new"]
156                 del new[pkg]
157
158     if warn:
159         for s in ['stable', 'oldstable']:
160             if changes["suite"].has_key(s):
161                 print "WARNING: overrides will be added for %s!" % s
162         for pkg in new.keys():
163             if new[pkg].has_key("othercomponents"):
164                 print "WARNING: %s already present in %s distribution." % (pkg, new[pkg]["othercomponents"])
165
166     session.close()
167
168     return new
169
170 ################################################################################
171
172 def check_valid(new):
173     """
174     Check if section and priority for NEW packages exist in database.
175     Additionally does sanity checks:
176       - debian-installer packages have to be udeb (or source)
177       - non debian-installer packages can not be udeb
178       - source priority can only be assigned to dsc file types
179
180     @type new: dict
181     @param new: Dict of new packages with their section, priority and type.
182
183     """
184     for pkg in new.keys():
185         section_name = new[pkg]["section"]
186         priority_name = new[pkg]["priority"]
187         file_type = new[pkg]["type"]
188
189         section = get_section(section_name)
190         if section is None:
191             new[pkg]["section id"] = -1
192         else:
193             new[pkg]["section id"] = section.section_id
194
195         priority = get_priority(priority_name)
196         if priority is None:
197             new[pkg]["priority id"] = -1
198         else:
199             new[pkg]["priority id"] = priority.priority_id
200
201         # Sanity checks
202         di = section_name.find("debian-installer") != -1
203
204         # If d-i, we must be udeb and vice-versa
205         if     (di and file_type not in ("udeb", "dsc")) or \
206            (not di and file_type == "udeb"):
207             new[pkg]["section id"] = -1
208
209         # If dsc we need to be source and vice-versa
210         if (priority == "source" and file_type != "dsc") or \
211            (priority != "source" and file_type == "dsc"):
212             new[pkg]["priority id"] = -1
213
214 ###############################################################################
215
216 def lookup_uid_from_fingerprint(fpr, session):
217     uid = None
218     uid_name = ""
219     # This is a stupid default, but see the comments below
220     is_dm = False
221
222     user = get_uid_from_fingerprint(fpr, session)
223
224     if user is not None:
225         uid = user.uid
226         if user.name is None:
227             uid_name = ''
228         else:
229             uid_name = user.name
230
231         # Check the relevant fingerprint (which we have to have)
232         for f in user.fingerprint:
233             if f.fingerprint == fpr:
234                 is_dm = f.keyring.debian_maintainer
235                 break
236
237     return (uid, uid_name, is_dm)
238
239 ###############################################################################
240
241 # Used by Upload.check_timestamps
242 class TarTime(object):
243     def __init__(self, future_cutoff, past_cutoff):
244         self.reset()
245         self.future_cutoff = future_cutoff
246         self.past_cutoff = past_cutoff
247
248     def reset(self):
249         self.future_files = {}
250         self.ancient_files = {}
251
252     def callback(self, Kind, Name, Link, Mode, UID, GID, Size, MTime, Major, Minor):
253         if MTime > self.future_cutoff:
254             self.future_files[Name] = MTime
255         if MTime < self.past_cutoff:
256             self.ancient_files[Name] = MTime
257
258 ###############################################################################
259
260 class Upload(object):
261     """
262     Everything that has to do with an upload processed.
263
264     """
265     def __init__(self):
266         self.logger = None
267         self.pkg = Changes()
268         self.reset()
269
270     ###########################################################################
271
272     def reset (self):
273         """ Reset a number of internal variables."""
274
275         # Initialize the substitution template map
276         cnf = Config()
277         self.Subst = {}
278         self.Subst["__ADMIN_ADDRESS__"] = cnf["Dinstall::MyAdminAddress"]
279         self.Subst["__BUG_SERVER__"] = cnf["Dinstall::BugServer"]
280         self.Subst["__DISTRO__"] = cnf["Dinstall::MyDistribution"]
281         self.Subst["__DAK_ADDRESS__"] = cnf["Dinstall::MyEmailAddress"]
282
283         self.rejects = []
284         self.warnings = []
285         self.notes = []
286
287         self.pkg.reset()
288
289     def package_info(self):
290         msg = ''
291
292         if len(self.rejects) > 0:
293             msg += "Reject Reasons:\n"
294             msg += "\n".join(self.rejects)
295
296         if len(self.warnings) > 0:
297             msg += "Warnings:\n"
298             msg += "\n".join(self.warnings)
299
300         if len(self.notes) > 0:
301             msg += "Notes:\n"
302             msg += "\n".join(self.notes)
303
304         return msg
305
306     ###########################################################################
307     def update_subst(self):
308         """ Set up the per-package template substitution mappings """
309
310         cnf = Config()
311
312         # If 'dak process-unchecked' crashed out in the right place, architecture may still be a string.
313         if not self.pkg.changes.has_key("architecture") or not \
314            isinstance(self.pkg.changes["architecture"], DictType):
315             self.pkg.changes["architecture"] = { "Unknown" : "" }
316
317         # and maintainer2047 may not exist.
318         if not self.pkg.changes.has_key("maintainer2047"):
319             self.pkg.changes["maintainer2047"] = cnf["Dinstall::MyEmailAddress"]
320
321         self.Subst["__ARCHITECTURE__"] = " ".join(self.pkg.changes["architecture"].keys())
322         self.Subst["__CHANGES_FILENAME__"] = os.path.basename(self.pkg.changes_file)
323         self.Subst["__FILE_CONTENTS__"] = self.pkg.changes.get("filecontents", "")
324
325         # For source uploads the Changed-By field wins; otherwise Maintainer wins.
326         if self.pkg.changes["architecture"].has_key("source") and \
327            self.pkg.changes["changedby822"] != "" and \
328            (self.pkg.changes["changedby822"] != self.pkg.changes["maintainer822"]):
329
330             self.Subst["__MAINTAINER_FROM__"] = self.pkg.changes["changedby2047"]
331             self.Subst["__MAINTAINER_TO__"] = "%s, %s" % (self.pkg.changes["changedby2047"], self.pkg.changes["maintainer2047"])
332             self.Subst["__MAINTAINER__"] = self.pkg.changes.get("changed-by", "Unknown")
333         else:
334             self.Subst["__MAINTAINER_FROM__"] = self.pkg.changes["maintainer2047"]
335             self.Subst["__MAINTAINER_TO__"] = self.pkg.changes["maintainer2047"]
336             self.Subst["__MAINTAINER__"] = self.pkg.changes.get("maintainer", "Unknown")
337
338         if "sponsoremail" in self.pkg.changes:
339             self.Subst["__MAINTAINER_TO__"] += ", %s" % self.pkg.changes["sponsoremail"]
340
341         if cnf.has_key("Dinstall::TrackingServer") and self.pkg.changes.has_key("source"):
342             self.Subst["__MAINTAINER_TO__"] += "\nBcc: %s@%s" % (self.pkg.changes["source"], cnf["Dinstall::TrackingServer"])
343
344         # Apply any global override of the Maintainer field
345         if cnf.get("Dinstall::OverrideMaintainer"):
346             self.Subst["__MAINTAINER_TO__"] = cnf["Dinstall::OverrideMaintainer"]
347             self.Subst["__MAINTAINER_FROM__"] = cnf["Dinstall::OverrideMaintainer"]
348
349         self.Subst["__REJECT_MESSAGE__"] = self.package_info()
350         self.Subst["__SOURCE__"] = self.pkg.changes.get("source", "Unknown")
351         self.Subst["__VERSION__"] = self.pkg.changes.get("version", "Unknown")
352
353     ###########################################################################
354     def load_changes(self, filename):
355         """
356         @rtype: boolean
357         @rvalue: whether the changes file was valid or not.  We may want to
358                  reject even if this is True (see what gets put in self.rejects).
359                  This is simply to prevent us even trying things later which will
360                  fail because we couldn't properly parse the file.
361         """
362         Cnf = Config()
363         self.pkg.changes_file = filename
364
365         # Parse the .changes field into a dictionary
366         try:
367             self.pkg.changes.update(parse_changes(filename))
368         except CantOpenError:
369             self.rejects.append("%s: can't read file." % (filename))
370             return False
371         except ParseChangesError, line:
372             self.rejects.append("%s: parse error, can't grok: %s." % (filename, line))
373             return False
374         except ChangesUnicodeError:
375             self.rejects.append("%s: changes file not proper utf-8" % (filename))
376             return False
377
378         # Parse the Files field from the .changes into another dictionary
379         try:
380             self.pkg.files.update(utils.build_file_list(self.pkg.changes))
381         except ParseChangesError, line:
382             self.rejects.append("%s: parse error, can't grok: %s." % (filename, line))
383             return False
384         except UnknownFormatError, format:
385             self.rejects.append("%s: unknown format '%s'." % (filename, format))
386             return False
387
388         # Check for mandatory fields
389         for i in ("distribution", "source", "binary", "architecture",
390                   "version", "maintainer", "files", "changes", "description"):
391             if not self.pkg.changes.has_key(i):
392                 # Avoid undefined errors later
393                 self.rejects.append("%s: Missing mandatory field `%s'." % (filename, i))
394                 return False
395
396         # Strip a source version in brackets from the source field
397         if re_strip_srcver.search(self.pkg.changes["source"]):
398             self.pkg.changes["source"] = re_strip_srcver.sub('', self.pkg.changes["source"])
399
400         # Ensure the source field is a valid package name.
401         if not re_valid_pkg_name.match(self.pkg.changes["source"]):
402             self.rejects.append("%s: invalid source name '%s'." % (filename, self.pkg.changes["source"]))
403
404         # Split multi-value fields into a lower-level dictionary
405         for i in ("architecture", "distribution", "binary", "closes"):
406             o = self.pkg.changes.get(i, "")
407             if o != "":
408                 del self.pkg.changes[i]
409
410             self.pkg.changes[i] = {}
411
412             for j in o.split():
413                 self.pkg.changes[i][j] = 1
414
415         # Fix the Maintainer: field to be RFC822/2047 compatible
416         try:
417             (self.pkg.changes["maintainer822"],
418              self.pkg.changes["maintainer2047"],
419              self.pkg.changes["maintainername"],
420              self.pkg.changes["maintaineremail"]) = \
421                    fix_maintainer (self.pkg.changes["maintainer"])
422         except ParseMaintError, msg:
423             self.rejects.append("%s: Maintainer field ('%s') failed to parse: %s" \
424                    % (filename, changes["maintainer"], msg))
425
426         # ...likewise for the Changed-By: field if it exists.
427         try:
428             (self.pkg.changes["changedby822"],
429              self.pkg.changes["changedby2047"],
430              self.pkg.changes["changedbyname"],
431              self.pkg.changes["changedbyemail"]) = \
432                    fix_maintainer (self.pkg.changes.get("changed-by", ""))
433         except ParseMaintError, msg:
434             self.pkg.changes["changedby822"] = ""
435             self.pkg.changes["changedby2047"] = ""
436             self.pkg.changes["changedbyname"] = ""
437             self.pkg.changes["changedbyemail"] = ""
438
439             self.rejects.append("%s: Changed-By field ('%s') failed to parse: %s" \
440                    % (filename, changes["changed-by"], msg))
441
442         # Ensure all the values in Closes: are numbers
443         if self.pkg.changes.has_key("closes"):
444             for i in self.pkg.changes["closes"].keys():
445                 if re_isanum.match (i) == None:
446                     self.rejects.append(("%s: `%s' from Closes field isn't a number." % (filename, i)))
447
448         # chopversion = no epoch; chopversion2 = no epoch and no revision (e.g. for .orig.tar.gz comparison)
449         self.pkg.changes["chopversion"] = re_no_epoch.sub('', self.pkg.changes["version"])
450         self.pkg.changes["chopversion2"] = re_no_revision.sub('', self.pkg.changes["chopversion"])
451
452         # Check there isn't already a changes file of the same name in one
453         # of the queue directories.
454         base_filename = os.path.basename(filename)
455         for d in [ "Accepted", "Byhand", "Done", "New", "ProposedUpdates", "OldProposedUpdates" ]:
456             if os.path.exists(os.path.join(Cnf["Dir::Queue::%s" % (d) ], base_filename)):
457                 self.rejects.append("%s: a file with this name already exists in the %s directory." % (base_filename, d))
458
459         # Check the .changes is non-empty
460         if not self.pkg.files:
461             self.rejects.append("%s: nothing to do (Files field is empty)." % (base_filename))
462             return False
463
464         # Changes was syntactically valid even if we'll reject
465         return True
466
467     ###########################################################################
468
469     def check_distributions(self):
470         "Check and map the Distribution field"
471
472         Cnf = Config()
473
474         # Handle suite mappings
475         for m in Cnf.ValueList("SuiteMappings"):
476             args = m.split()
477             mtype = args[0]
478             if mtype == "map" or mtype == "silent-map":
479                 (source, dest) = args[1:3]
480                 if self.pkg.changes["distribution"].has_key(source):
481                     del self.pkg.changes["distribution"][source]
482                     self.pkg.changes["distribution"][dest] = 1
483                     if mtype != "silent-map":
484                         self.notes.append("Mapping %s to %s." % (source, dest))
485                 if self.pkg.changes.has_key("distribution-version"):
486                     if self.pkg.changes["distribution-version"].has_key(source):
487                         self.pkg.changes["distribution-version"][source]=dest
488             elif mtype == "map-unreleased":
489                 (source, dest) = args[1:3]
490                 if self.pkg.changes["distribution"].has_key(source):
491                     for arch in self.pkg.changes["architecture"].keys():
492                         if arch not in [ a.arch_string for a in get_suite_architectures(source) ]:
493                             self.notes.append("Mapping %s to %s for unreleased architecture %s." % (source, dest, arch))
494                             del self.pkg.changes["distribution"][source]
495                             self.pkg.changes["distribution"][dest] = 1
496                             break
497             elif mtype == "ignore":
498                 suite = args[1]
499                 if self.pkg.changes["distribution"].has_key(suite):
500                     del self.pkg.changes["distribution"][suite]
501                     self.warnings.append("Ignoring %s as a target suite." % (suite))
502             elif mtype == "reject":
503                 suite = args[1]
504                 if self.pkg.changes["distribution"].has_key(suite):
505                     self.rejects.append("Uploads to %s are not accepted." % (suite))
506             elif mtype == "propup-version":
507                 # give these as "uploaded-to(non-mapped) suites-to-add-when-upload-obsoletes"
508                 #
509                 # changes["distribution-version"] looks like: {'testing': 'testing-proposed-updates'}
510                 if self.pkg.changes["distribution"].has_key(args[1]):
511                     self.pkg.changes.setdefault("distribution-version", {})
512                     for suite in args[2:]:
513                         self.pkg.changes["distribution-version"][suite] = suite
514
515         # Ensure there is (still) a target distribution
516         if len(self.pkg.changes["distribution"].keys()) < 1:
517             self.rejects.append("No valid distribution remaining.")
518
519         # Ensure target distributions exist
520         for suite in self.pkg.changes["distribution"].keys():
521             if not Cnf.has_key("Suite::%s" % (suite)):
522                 self.rejects.append("Unknown distribution `%s'." % (suite))
523
524     ###########################################################################
525
526     def binary_file_checks(self, f, session):
527         cnf = Config()
528         entry = self.pkg.files[f]
529
530         # Extract package control information
531         deb_file = utils.open_file(f)
532         try:
533             control = apt_pkg.ParseSection(apt_inst.debExtractControl(deb_file))
534         except:
535             self.rejects.append("%s: debExtractControl() raised %s." % (f, sys.exc_type))
536             deb_file.close()
537             # Can't continue, none of the checks on control would work.
538             return
539
540         # Check for mandantory "Description:"
541         deb_file.seek(0)
542         try:
543             apt_pkg.ParseSection(apt_inst.debExtractControl(deb_file))["Description"] + '\n'
544         except:
545             self.rejects.append("%s: Missing Description in binary package" % (f))
546             return
547
548         deb_file.close()
549
550         # Check for mandatory fields
551         for field in [ "Package", "Architecture", "Version" ]:
552             if control.Find(field) == None:
553                 # Can't continue
554                 self.rejects.append("%s: No %s field in control." % (f, field))
555                 return
556
557         # Ensure the package name matches the one give in the .changes
558         if not self.pkg.changes["binary"].has_key(control.Find("Package", "")):
559             self.rejects.append("%s: control file lists name as `%s', which isn't in changes file." % (f, control.Find("Package", "")))
560
561         # Validate the package field
562         package = control.Find("Package")
563         if not re_valid_pkg_name.match(package):
564             self.rejects.append("%s: invalid package name '%s'." % (f, package))
565
566         # Validate the version field
567         version = control.Find("Version")
568         if not re_valid_version.match(version):
569             self.rejects.append("%s: invalid version number '%s'." % (f, version))
570
571         # Ensure the architecture of the .deb is one we know about.
572         default_suite = cnf.get("Dinstall::DefaultSuite", "Unstable")
573         architecture = control.Find("Architecture")
574         upload_suite = self.pkg.changes["distribution"].keys()[0]
575
576         if      architecture not in [a.arch_string for a in get_suite_architectures(default_suite, session)] \
577             and architecture not in [a.arch_string for a in get_suite_architectures(upload_suite, session)]:
578             self.rejects.append("Unknown architecture '%s'." % (architecture))
579
580         # Ensure the architecture of the .deb is one of the ones
581         # listed in the .changes.
582         if not self.pkg.changes["architecture"].has_key(architecture):
583             self.rejects.append("%s: control file lists arch as `%s', which isn't in changes file." % (f, architecture))
584
585         # Sanity-check the Depends field
586         depends = control.Find("Depends")
587         if depends == '':
588             self.rejects.append("%s: Depends field is empty." % (f))
589
590         # Sanity-check the Provides field
591         provides = control.Find("Provides")
592         if provides:
593             provide = re_spacestrip.sub('', provides)
594             if provide == '':
595                 self.rejects.append("%s: Provides field is empty." % (f))
596             prov_list = provide.split(",")
597             for prov in prov_list:
598                 if not re_valid_pkg_name.match(prov):
599                     self.rejects.append("%s: Invalid Provides field content %s." % (f, prov))
600
601         # Check the section & priority match those given in the .changes (non-fatal)
602         if     control.Find("Section") and entry["section"] != "" \
603            and entry["section"] != control.Find("Section"):
604             self.warnings.append("%s control file lists section as `%s', but changes file has `%s'." % \
605                                 (f, control.Find("Section", ""), entry["section"]))
606         if control.Find("Priority") and entry["priority"] != "" \
607            and entry["priority"] != control.Find("Priority"):
608             self.warnings.append("%s control file lists priority as `%s', but changes file has `%s'." % \
609                                 (f, control.Find("Priority", ""), entry["priority"]))
610
611         entry["package"] = package
612         entry["architecture"] = architecture
613         entry["version"] = version
614         entry["maintainer"] = control.Find("Maintainer", "")
615
616         if f.endswith(".udeb"):
617             self.pkg.files[f]["dbtype"] = "udeb"
618         elif f.endswith(".deb"):
619             self.pkg.files[f]["dbtype"] = "deb"
620         else:
621             self.rejects.append("%s is neither a .deb or a .udeb." % (f))
622
623         entry["source"] = control.Find("Source", entry["package"])
624
625         # Get the source version
626         source = entry["source"]
627         source_version = ""
628
629         if source.find("(") != -1:
630             m = re_extract_src_version.match(source)
631             source = m.group(1)
632             source_version = m.group(2)
633
634         if not source_version:
635             source_version = self.pkg.files[f]["version"]
636
637         entry["source package"] = source
638         entry["source version"] = source_version
639
640         # Ensure the filename matches the contents of the .deb
641         m = re_isadeb.match(f)
642
643         #  package name
644         file_package = m.group(1)
645         if entry["package"] != file_package:
646             self.rejects.append("%s: package part of filename (%s) does not match package name in the %s (%s)." % \
647                                 (f, file_package, entry["dbtype"], entry["package"]))
648         epochless_version = re_no_epoch.sub('', control.Find("Version"))
649
650         #  version
651         file_version = m.group(2)
652         if epochless_version != file_version:
653             self.rejects.append("%s: version part of filename (%s) does not match package version in the %s (%s)." % \
654                                 (f, file_version, entry["dbtype"], epochless_version))
655
656         #  architecture
657         file_architecture = m.group(3)
658         if entry["architecture"] != file_architecture:
659             self.rejects.append("%s: architecture part of filename (%s) does not match package architecture in the %s (%s)." % \
660                                 (f, file_architecture, entry["dbtype"], entry["architecture"]))
661
662         # Check for existent source
663         source_version = entry["source version"]
664         source_package = entry["source package"]
665         if self.pkg.changes["architecture"].has_key("source"):
666             if source_version != self.pkg.changes["version"]:
667                 self.rejects.append("source version (%s) for %s doesn't match changes version %s." % \
668                                     (source_version, f, self.pkg.changes["version"]))
669         else:
670             # Check in the SQL database
671             if not source_exists(source_package, source_version, self.pkg.changes["distribution"].keys(), session):
672                 # Check in one of the other directories
673                 source_epochless_version = re_no_epoch.sub('', source_version)
674                 dsc_filename = "%s_%s.dsc" % (source_package, source_epochless_version)
675                 if os.path.exists(os.path.join(cnf["Dir::Queue::Byhand"], dsc_filename)):
676                     entry["byhand"] = 1
677                 elif os.path.exists(os.path.join(cnf["Dir::Queue::New"], dsc_filename)):
678                     entry["new"] = 1
679                 else:
680                     dsc_file_exists = False
681                     for myq in ["Accepted", "Embargoed", "Unembargoed", "ProposedUpdates", "OldProposedUpdates"]:
682                         if cnf.has_key("Dir::Queue::%s" % (myq)):
683                             if os.path.exists(os.path.join(cnf["Dir::Queue::" + myq], dsc_filename)):
684                                 dsc_file_exists = True
685                                 break
686
687                     if not dsc_file_exists:
688                         self.rejects.append("no source found for %s %s (%s)." % (source_package, source_version, f))
689
690         # Check the version and for file overwrites
691         self.check_binary_against_db(f, session)
692
693         # Temporarily disable contents generation until we change the table storage layout
694         #b = Binary(f)
695         #b.scan_package()
696         #if len(b.rejects) > 0:
697         #    for j in b.rejects:
698         #        self.rejects.append(j)
699
700     def source_file_checks(self, f, session):
701         entry = self.pkg.files[f]
702
703         m = re_issource.match(f)
704         if not m:
705             return
706
707         entry["package"] = m.group(1)
708         entry["version"] = m.group(2)
709         entry["type"] = m.group(3)
710
711         # Ensure the source package name matches the Source filed in the .changes
712         if self.pkg.changes["source"] != entry["package"]:
713             self.rejects.append("%s: changes file doesn't say %s for Source" % (f, entry["package"]))
714
715         # Ensure the source version matches the version in the .changes file
716         if re_is_orig_source.match(f):
717             changes_version = self.pkg.changes["chopversion2"]
718         else:
719             changes_version = self.pkg.changes["chopversion"]
720
721         if changes_version != entry["version"]:
722             self.rejects.append("%s: should be %s according to changes file." % (f, changes_version))
723
724         # Ensure the .changes lists source in the Architecture field
725         if not self.pkg.changes["architecture"].has_key("source"):
726             self.rejects.append("%s: changes file doesn't list `source' in Architecture field." % (f))
727
728         # Check the signature of a .dsc file
729         if entry["type"] == "dsc":
730             # check_signature returns either:
731             #  (None, [list, of, rejects]) or (signature, [])
732             (self.pkg.dsc["fingerprint"], rejects) = utils.check_signature(f)
733             for j in rejects:
734                 self.rejects.append(j)
735
736         entry["architecture"] = "source"
737
738     def per_suite_file_checks(self, f, suite, session):
739         cnf = Config()
740         entry = self.pkg.files[f]
741         archive = utils.where_am_i()
742
743         # Skip byhand
744         if entry.has_key("byhand"):
745             return
746
747         # Check we have fields we need to do these checks
748         oktogo = True
749         for m in ['component', 'package', 'priority', 'size', 'md5sum']:
750             if not entry.has_key(m):
751                 self.rejects.append("file '%s' does not have field %s set" % (f, m))
752                 oktogo = False
753
754         if not oktogo:
755             return
756
757         # Handle component mappings
758         for m in cnf.ValueList("ComponentMappings"):
759             (source, dest) = m.split()
760             if entry["component"] == source:
761                 entry["original component"] = source
762                 entry["component"] = dest
763
764         # Ensure the component is valid for the target suite
765         if cnf.has_key("Suite:%s::Components" % (suite)) and \
766            entry["component"] not in cnf.ValueList("Suite::%s::Components" % (suite)):
767             self.rejects.append("unknown component `%s' for suite `%s'." % (entry["component"], suite))
768             return
769
770         # Validate the component
771         if not get_component(entry["component"], session):
772             self.rejects.append("file '%s' has unknown component '%s'." % (f, component))
773             return
774
775         # See if the package is NEW
776         if not self.in_override_p(entry["package"], entry["component"], suite, entry.get("dbtype",""), f, session):
777             entry["new"] = 1
778
779         # Validate the priority
780         if entry["priority"].find('/') != -1:
781             self.rejects.append("file '%s' has invalid priority '%s' [contains '/']." % (f, entry["priority"]))
782
783         # Determine the location
784         location = cnf["Dir::Pool"]
785         l = get_location(location, entry["component"], archive, session)
786         if l is None:
787             self.rejects.append("[INTERNAL ERROR] couldn't determine location (Component: %s, Archive: %s)" % (component, archive))
788             entry["location id"] = -1
789         else:
790             entry["location id"] = l.location_id
791
792         # Check the md5sum & size against existing files (if any)
793         entry["pool name"] = utils.poolify(self.pkg.changes["source"], entry["component"])
794
795         found, poolfile = check_poolfile(os.path.join(entry["pool name"], f),
796                                          entry["size"], entry["md5sum"], entry["location id"])
797
798         if found is None:
799             self.rejects.append("INTERNAL ERROR, get_files_id() returned multiple matches for %s." % (f))
800         elif found is False and poolfile is not None:
801             self.rejects.append("md5sum and/or size mismatch on existing copy of %s." % (f))
802         else:
803             if poolfile is None:
804                 entry["files id"] = None
805             else:
806                 entry["files id"] = poolfile.file_id
807
808         # Check for packages that have moved from one component to another
809         entry['suite'] = suite
810         res = get_binary_components(self.pkg.files[f]['package'], suite, entry["architecture"], session)
811         if res.rowcount > 0:
812             entry["othercomponents"] = res.fetchone()[0]
813
814     def check_files(self, action=True):
815         archive = utils.where_am_i()
816         file_keys = self.pkg.files.keys()
817         holding = Holding()
818         cnf = Config()
819
820         # XXX: As far as I can tell, this can no longer happen - see
821         #      comments by AJ in old revisions - mhy
822         # if reprocess is 2 we've already done this and we're checking
823         # things again for the new .orig.tar.gz.
824         # [Yes, I'm fully aware of how disgusting this is]
825         if action and self.reprocess < 2:
826             cwd = os.getcwd()
827             os.chdir(self.pkg.directory)
828             for f in file_keys:
829                 ret = holding.copy_to_holding(f)
830                 if ret is not None:
831                     # XXX: Should we bail out here or try and continue?
832                     self.rejects.append(ret)
833
834             os.chdir(cwd)
835
836         # Check there isn't already a .changes or .dak file of the same name in
837         # the proposed-updates "CopyChanges" or "CopyDotDak" storage directories.
838         # [NB: this check must be done post-suite mapping]
839         base_filename = os.path.basename(self.pkg.changes_file)
840         dot_dak_filename = base_filename[:-8] + ".dak"
841
842         for suite in self.pkg.changes["distribution"].keys():
843             copychanges = "Suite::%s::CopyChanges" % (suite)
844             if cnf.has_key(copychanges) and \
845                    os.path.exists(os.path.join(cnf[copychanges], base_filename)):
846                 self.rejects.append("%s: a file with this name already exists in %s" \
847                            % (base_filename, cnf[copychanges]))
848
849             copy_dot_dak = "Suite::%s::CopyDotDak" % (suite)
850             if cnf.has_key(copy_dot_dak) and \
851                    os.path.exists(os.path.join(cnf[copy_dot_dak], dot_dak_filename)):
852                 self.rejects.append("%s: a file with this name already exists in %s" \
853                            % (dot_dak_filename, Cnf[copy_dot_dak]))
854
855         self.reprocess = 0
856         has_binaries = False
857         has_source = False
858
859         session = DBConn().session()
860
861         for f, entry in self.pkg.files.items():
862             # Ensure the file does not already exist in one of the accepted directories
863             for d in [ "Accepted", "Byhand", "New", "ProposedUpdates", "OldProposedUpdates", "Embargoed", "Unembargoed" ]:
864                 if not cnf.has_key("Dir::Queue::%s" % (d)): continue
865                 if os.path.exists(cnf["Dir::Queue::%s" % (d) ] + '/' + f):
866                     self.rejects.append("%s file already exists in the %s directory." % (f, d))
867
868             if not re_taint_free.match(f):
869                 self.rejects.append("!!WARNING!! tainted filename: '%s'." % (f))
870
871             # Check the file is readable
872             if os.access(f, os.R_OK) == 0:
873                 # When running in -n, copy_to_holding() won't have
874                 # generated the reject_message, so we need to.
875                 if action:
876                     if os.path.exists(f):
877                         self.rejects.append("Can't read `%s'. [permission denied]" % (f))
878                     else:
879                         self.rejects.append("Can't read `%s'. [file not found]" % (f))
880                 entry["type"] = "unreadable"
881                 continue
882
883             # If it's byhand skip remaining checks
884             if entry["section"] == "byhand" or entry["section"][:4] == "raw-":
885                 entry["byhand"] = 1
886                 entry["type"] = "byhand"
887
888             # Checks for a binary package...
889             elif re_isadeb.match(f):
890                 has_binaries = True
891                 entry["type"] = "deb"
892
893                 # This routine appends to self.rejects/warnings as appropriate
894                 self.binary_file_checks(f, session)
895
896             # Checks for a source package...
897             elif re_issource.match(f):
898                 has_source = True
899
900                 # This routine appends to self.rejects/warnings as appropriate
901                 self.source_file_checks(f, session)
902
903             # Not a binary or source package?  Assume byhand...
904             else:
905                 entry["byhand"] = 1
906                 entry["type"] = "byhand"
907
908             # Per-suite file checks
909             entry["oldfiles"] = {}
910             for suite in self.pkg.changes["distribution"].keys():
911                 self.per_suite_file_checks(f, suite, session)
912
913         session.close()
914
915         # If the .changes file says it has source, it must have source.
916         if self.pkg.changes["architecture"].has_key("source"):
917             if not has_source:
918                 self.rejects.append("no source found and Architecture line in changes mention source.")
919
920             if not has_binaries and cnf.FindB("Dinstall::Reject::NoSourceOnly"):
921                 self.rejects.append("source only uploads are not supported.")
922
923     ###########################################################################
924     def check_dsc(self, action=True, session=None):
925         """Returns bool indicating whether or not the source changes are valid"""
926         # Ensure there is source to check
927         if not self.pkg.changes["architecture"].has_key("source"):
928             return True
929
930         # Find the .dsc
931         dsc_filename = None
932         for f, entry in self.pkg.files.items():
933             if entry["type"] == "dsc":
934                 if dsc_filename:
935                     self.rejects.append("can not process a .changes file with multiple .dsc's.")
936                     return False
937                 else:
938                     dsc_filename = f
939
940         # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
941         if not dsc_filename:
942             self.rejects.append("source uploads must contain a dsc file")
943             return False
944
945         # Parse the .dsc file
946         try:
947             self.pkg.dsc.update(utils.parse_changes(dsc_filename, signing_rules=1))
948         except CantOpenError:
949             # if not -n copy_to_holding() will have done this for us...
950             if not action:
951                 self.rejects.append("%s: can't read file." % (dsc_filename))
952         except ParseChangesError, line:
953             self.rejects.append("%s: parse error, can't grok: %s." % (dsc_filename, line))
954         except InvalidDscError, line:
955             self.rejects.append("%s: syntax error on line %s." % (dsc_filename, line))
956         except ChangesUnicodeError:
957             self.rejects.append("%s: dsc file not proper utf-8." % (dsc_filename))
958
959         # Build up the file list of files mentioned by the .dsc
960         try:
961             self.pkg.dsc_files.update(utils.build_file_list(self.pkg.dsc, is_a_dsc=1))
962         except NoFilesFieldError:
963             self.rejects.append("%s: no Files: field." % (dsc_filename))
964             return False
965         except UnknownFormatError, format:
966             self.rejects.append("%s: unknown format '%s'." % (dsc_filename, format))
967             return False
968         except ParseChangesError, line:
969             self.rejects.append("%s: parse error, can't grok: %s." % (dsc_filename, line))
970             return False
971
972         # Enforce mandatory fields
973         for i in ("format", "source", "version", "binary", "maintainer", "architecture", "files"):
974             if not self.pkg.dsc.has_key(i):
975                 self.rejects.append("%s: missing mandatory field `%s'." % (dsc_filename, i))
976                 return False
977
978         # Validate the source and version fields
979         if not re_valid_pkg_name.match(self.pkg.dsc["source"]):
980             self.rejects.append("%s: invalid source name '%s'." % (dsc_filename, self.pkg.dsc["source"]))
981         if not re_valid_version.match(self.pkg.dsc["version"]):
982             self.rejects.append("%s: invalid version number '%s'." % (dsc_filename, self.pkg.dsc["version"]))
983
984         # Only a limited list of source formats are allowed in each suite
985         for dist in self.pkg.changes["distribution"].keys():
986             allowed = [ x.format_name for x in get_suite_src_formats(dist, session) ]
987             if self.pkg.dsc["format"] not in allowed:
988                 self.rejects.append("%s: source format '%s' not allowed in %s (accepted: %s) " % (dsc_filename, self.pkg.dsc["format"], dist, ", ".join(allowed)))
989
990         # Validate the Maintainer field
991         try:
992             # We ignore the return value
993             fix_maintainer(self.pkg.dsc["maintainer"])
994         except ParseMaintError, msg:
995             self.rejects.append("%s: Maintainer field ('%s') failed to parse: %s" \
996                                  % (dsc_filename, self.pkg.dsc["maintainer"], msg))
997
998         # Validate the build-depends field(s)
999         for field_name in [ "build-depends", "build-depends-indep" ]:
1000             field = self.pkg.dsc.get(field_name)
1001             if field:
1002                 # Have apt try to parse them...
1003                 try:
1004                     apt_pkg.ParseSrcDepends(field)
1005                 except:
1006                     self.rejects.append("%s: invalid %s field (can not be parsed by apt)." % (dsc_filename, field_name.title()))
1007
1008         # Ensure the version number in the .dsc matches the version number in the .changes
1009         epochless_dsc_version = re_no_epoch.sub('', self.pkg.dsc["version"])
1010         changes_version = self.pkg.files[dsc_filename]["version"]
1011
1012         if epochless_dsc_version != self.pkg.files[dsc_filename]["version"]:
1013             self.rejects.append("version ('%s') in .dsc does not match version ('%s') in .changes." % (epochless_dsc_version, changes_version))
1014
1015         # Ensure the Files field contain only what's expected
1016         self.rejects.extend(check_dsc_files(dsc_filename, self.pkg.dsc, self.pkg.dsc_files))
1017
1018         # Ensure source is newer than existing source in target suites
1019         session = DBConn().session()
1020         self.check_source_against_db(dsc_filename, session)
1021         self.check_dsc_against_db(dsc_filename, session)
1022         session.close()
1023
1024         return True
1025
1026     ###########################################################################
1027
1028     def get_changelog_versions(self, source_dir):
1029         """Extracts a the source package and (optionally) grabs the
1030         version history out of debian/changelog for the BTS."""
1031
1032         cnf = Config()
1033
1034         # Find the .dsc (again)
1035         dsc_filename = None
1036         for f in self.pkg.files.keys():
1037             if self.pkg.files[f]["type"] == "dsc":
1038                 dsc_filename = f
1039
1040         # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
1041         if not dsc_filename:
1042             return
1043
1044         # Create a symlink mirror of the source files in our temporary directory
1045         for f in self.pkg.files.keys():
1046             m = re_issource.match(f)
1047             if m:
1048                 src = os.path.join(source_dir, f)
1049                 # If a file is missing for whatever reason, give up.
1050                 if not os.path.exists(src):
1051                     return
1052                 ftype = m.group(3)
1053                 if re_is_orig_source.match(f) and self.pkg.orig_files.has_key(f) and \
1054                    self.pkg.orig_files[f].has_key("path"):
1055                     continue
1056                 dest = os.path.join(os.getcwd(), f)
1057                 os.symlink(src, dest)
1058
1059         # If the orig files are not a part of the upload, create symlinks to the
1060         # existing copies.
1061         for orig_file in self.pkg.orig_files.keys():
1062             if not self.pkg.orig_files[orig_file].has_key("path"):
1063                 continue
1064             dest = os.path.join(os.getcwd(), os.path.basename(orig_file))
1065             os.symlink(self.pkg.orig_files[orig_file]["path"], dest)
1066
1067         # Extract the source
1068         cmd = "dpkg-source -sn -x %s" % (dsc_filename)
1069         (result, output) = commands.getstatusoutput(cmd)
1070         if (result != 0):
1071             self.rejects.append("'dpkg-source -x' failed for %s [return code: %s]." % (dsc_filename, result))
1072             self.rejects.append(utils.prefix_multi_line_string(output, " [dpkg-source output:] "))
1073             return
1074
1075         if not cnf.Find("Dir::Queue::BTSVersionTrack"):
1076             return
1077
1078         # Get the upstream version
1079         upstr_version = re_no_epoch.sub('', self.pkg.dsc["version"])
1080         if re_strip_revision.search(upstr_version):
1081             upstr_version = re_strip_revision.sub('', upstr_version)
1082
1083         # Ensure the changelog file exists
1084         changelog_filename = "%s-%s/debian/changelog" % (self.pkg.dsc["source"], upstr_version)
1085         if not os.path.exists(changelog_filename):
1086             self.rejects.append("%s: debian/changelog not found in extracted source." % (dsc_filename))
1087             return
1088
1089         # Parse the changelog
1090         self.pkg.dsc["bts changelog"] = ""
1091         changelog_file = utils.open_file(changelog_filename)
1092         for line in changelog_file.readlines():
1093             m = re_changelog_versions.match(line)
1094             if m:
1095                 self.pkg.dsc["bts changelog"] += line
1096         changelog_file.close()
1097
1098         # Check we found at least one revision in the changelog
1099         if not self.pkg.dsc["bts changelog"]:
1100             self.rejects.append("%s: changelog format not recognised (empty version tree)." % (dsc_filename))
1101
1102     def check_source(self):
1103         # XXX: I'm fairly sure reprocess == 2 can never happen
1104         #      AJT disabled the is_incoming check years ago - mhy
1105         #      We should probably scrap or rethink the whole reprocess thing
1106         # Bail out if:
1107         #    a) there's no source
1108         # or b) reprocess is 2 - we will do this check next time when orig
1109         #       tarball is in 'files'
1110         # or c) the orig files are MIA
1111         if not self.pkg.changes["architecture"].has_key("source") or self.reprocess == 2 \
1112            or len(self.pkg.orig_files) == 0:
1113             return
1114
1115         tmpdir = utils.temp_dirname()
1116
1117         # Move into the temporary directory
1118         cwd = os.getcwd()
1119         os.chdir(tmpdir)
1120
1121         # Get the changelog version history
1122         self.get_changelog_versions(cwd)
1123
1124         # Move back and cleanup the temporary tree
1125         os.chdir(cwd)
1126
1127         try:
1128             shutil.rmtree(tmpdir)
1129         except OSError, e:
1130             if e.errno != errno.EACCES:
1131                 print "foobar"
1132                 utils.fubar("%s: couldn't remove tmp dir for source tree." % (self.pkg.dsc["source"]))
1133
1134             self.rejects.append("%s: source tree could not be cleanly removed." % (self.pkg.dsc["source"]))
1135             # We probably have u-r or u-w directories so chmod everything
1136             # and try again.
1137             cmd = "chmod -R u+rwx %s" % (tmpdir)
1138             result = os.system(cmd)
1139             if result != 0:
1140                 utils.fubar("'%s' failed with result %s." % (cmd, result))
1141             shutil.rmtree(tmpdir)
1142         except Exception, e:
1143             print "foobar2 (%s)" % e
1144             utils.fubar("%s: couldn't remove tmp dir for source tree." % (self.pkg.dsc["source"]))
1145
1146     ###########################################################################
1147     def ensure_hashes(self):
1148         # Make sure we recognise the format of the Files: field in the .changes
1149         format = self.pkg.changes.get("format", "0.0").split(".", 1)
1150         if len(format) == 2:
1151             format = int(format[0]), int(format[1])
1152         else:
1153             format = int(float(format[0])), 0
1154
1155         # We need to deal with the original changes blob, as the fields we need
1156         # might not be in the changes dict serialised into the .dak anymore.
1157         orig_changes = utils.parse_deb822(self.pkg.changes['filecontents'])
1158
1159         # Copy the checksums over to the current changes dict.  This will keep
1160         # the existing modifications to it intact.
1161         for field in orig_changes:
1162             if field.startswith('checksums-'):
1163                 self.pkg.changes[field] = orig_changes[field]
1164
1165         # Check for unsupported hashes
1166         for j in utils.check_hash_fields(".changes", self.pkg.changes):
1167             self.rejects.append(j)
1168
1169         for j in utils.check_hash_fields(".dsc", self.pkg.dsc):
1170             self.rejects.append(j)
1171
1172         # We have to calculate the hash if we have an earlier changes version than
1173         # the hash appears in rather than require it exist in the changes file
1174         for hashname, hashfunc, version in utils.known_hashes:
1175             # TODO: Move _ensure_changes_hash into this class
1176             for j in utils._ensure_changes_hash(self.pkg.changes, format, version, self.pkg.files, hashname, hashfunc):
1177                 self.rejects.append(j)
1178             if "source" in self.pkg.changes["architecture"]:
1179                 # TODO: Move _ensure_dsc_hash into this class
1180                 for j in utils._ensure_dsc_hash(self.pkg.dsc, self.pkg.dsc_files, hashname, hashfunc):
1181                     self.rejects.append(j)
1182
1183     def check_hashes(self):
1184         for m in utils.check_hash(".changes", self.pkg.files, "md5", apt_pkg.md5sum):
1185             self.rejects.append(m)
1186
1187         for m in utils.check_size(".changes", self.pkg.files):
1188             self.rejects.append(m)
1189
1190         for m in utils.check_hash(".dsc", self.pkg.dsc_files, "md5", apt_pkg.md5sum):
1191             self.rejects.append(m)
1192
1193         for m in utils.check_size(".dsc", self.pkg.dsc_files):
1194             self.rejects.append(m)
1195
1196         self.ensure_hashes()
1197
1198     ###########################################################################
1199     def check_lintian(self):
1200         cnf = Config()
1201
1202         # Only check some distributions
1203         valid_dist = False
1204         for dist in ('unstable', 'experimental'):
1205             if dist in self.pkg.changes['distribution']:
1206                 valid_dist = True
1207                 break
1208
1209         if not valid_dist:
1210             return
1211
1212         tagfile = cnf.get("Dinstall::LintianTags")
1213         if tagfile is None:
1214             # We don't have a tagfile, so just don't do anything.
1215             return
1216
1217         # Try and find all orig mentioned in the .dsc
1218         target_dir = '.'
1219         symlinked = []
1220         for filename, entry in self.pkg.dsc_files.iteritems():
1221             if not re_is_orig_source.match(filename):
1222                 # File is not an orig; ignore
1223                 continue
1224
1225             if os.path.exists(filename):
1226                 # File exists, no need to continue
1227                 continue
1228
1229             def symlink_if_valid(path):
1230                 f = utils.open_file(path)
1231                 md5sum = apt_pkg.md5sum(f)
1232                 f.close()
1233
1234                 fingerprint = (os.stat(path)[stat.ST_SIZE], md5sum)
1235                 expected = (int(entry['size']), entry['md5sum'])
1236
1237                 if fingerprint != expected:
1238                     return False
1239
1240                 dest = os.path.join(target_dir, filename)
1241
1242                 os.symlink(path, dest)
1243                 symlinked.append(dest)
1244
1245                 return True
1246
1247             session = DBConn().session()
1248             found = False
1249
1250             # Look in the pool
1251             for poolfile in get_poolfile_like_name('/%s' % filename, session):
1252                 poolfile_path = os.path.join(
1253                     poolfile.location.path, poolfile.filename
1254                 )
1255
1256                 if symlink_if_valid(poolfile_path):
1257                     found = True
1258                     break
1259
1260             session.close()
1261
1262             if found:
1263                 continue
1264
1265             # Look in some other queues for the file
1266             queues = ('Accepted', 'New', 'Byhand', 'ProposedUpdates',
1267                 'OldProposedUpdates', 'Embargoed', 'Unembargoed')
1268
1269             for queue in queues:
1270                 if 'Dir::Queue::%s' % directory not in cnf:
1271                     continue
1272
1273                 queuefile_path = os.path.join(
1274                     cnf['Dir::Queue::%s' % directory], filename
1275                 )
1276
1277                 if not os.path.exists(queuefile_path):
1278                     # Does not exist in this queue
1279                     continue
1280
1281                 if symlink_if_valid(queuefile_path):
1282                     break
1283
1284         # Parse the yaml file
1285         sourcefile = file(tagfile, 'r')
1286         sourcecontent = sourcefile.read()
1287         sourcefile.close()
1288         try:
1289             lintiantags = yaml.load(sourcecontent)['lintian']
1290         except yaml.YAMLError, msg:
1291             utils.fubar("Can not read the lintian tags file %s, YAML error: %s." % (tagfile, msg))
1292             return
1293
1294         # Now setup the input file for lintian. lintian wants "one tag per line" only,
1295         # so put it together like it. We put all types of tags in one file and then sort
1296         # through lintians output later to see if its a fatal tag we detected, or not.
1297         # So we only run lintian once on all tags, even if we might reject on some, but not
1298         # reject on others.
1299         # Additionally build up a set of tags
1300         tags = set()
1301         (fd, temp_filename) = utils.temp_filename()
1302         temptagfile = os.fdopen(fd, 'w')
1303         for tagtype in lintiantags:
1304             for tag in lintiantags[tagtype]:
1305                 temptagfile.write("%s\n" % tag)
1306                 tags.add(tag)
1307         temptagfile.close()
1308
1309         # So now we should look at running lintian at the .changes file, capturing output
1310         # to then parse it.
1311         command = "lintian --show-overrides --tags-from-file %s %s" % (temp_filename, self.pkg.changes_file)
1312         (result, output) = commands.getstatusoutput(command)
1313
1314         # We are done with lintian, remove our tempfile and any symlinks we created
1315         os.unlink(temp_filename)
1316         for symlink in symlinked:
1317             os.unlink(symlink)
1318
1319         if (result == 2):
1320             utils.warn("lintian failed for %s [return code: %s]." % (self.pkg.changes_file, result))
1321             utils.warn(utils.prefix_multi_line_string(output, " [possible output:] "))
1322
1323         if len(output) == 0:
1324             return
1325
1326         def log(*txt):
1327             if self.logger:
1328                 self.logger.log([self.pkg.changes_file, "check_lintian"] + list(txt))
1329
1330         # We have output of lintian, this package isn't clean. Lets parse it and see if we
1331         # are having a victim for a reject.
1332         # W: tzdata: binary-without-manpage usr/sbin/tzconfig
1333         for line in output.split('\n'):
1334             m = re_parse_lintian.match(line)
1335             if m is None:
1336                 continue
1337
1338             etype = m.group(1)
1339             epackage = m.group(2)
1340             etag = m.group(3)
1341             etext = m.group(4)
1342
1343             # So lets check if we know the tag at all.
1344             if etag not in tags:
1345                 continue
1346
1347             if etype == 'O':
1348                 # We know it and it is overriden. Check that override is allowed.
1349                 if etag in lintiantags['warning']:
1350                     # The tag is overriden, and it is allowed to be overriden.
1351                     # Don't add a reject message.
1352                     pass
1353                 elif etag in lintiantags['error']:
1354                     # The tag is overriden - but is not allowed to be
1355                     self.rejects.append("%s: Overriden tag %s found, but this tag may not be overwritten." % (epackage, etag))
1356                     log("overidden tag is overridden", etag)
1357             else:
1358                 # Tag is known, it is not overriden, direct reject.
1359                 self.rejects.append("%s: Found lintian output: '%s %s', automatically rejected package." % (epackage, etag, etext))
1360                 log("auto rejecting", etag)
1361                 # Now tell if they *might* override it.
1362                 if etag in lintiantags['warning']:
1363                     self.rejects.append("%s: If you have a good reason, you may override this lintian tag." % (epackage))
1364
1365     ###########################################################################
1366     def check_urgency(self):
1367         cnf = Config()
1368         if self.pkg.changes["architecture"].has_key("source"):
1369             if not self.pkg.changes.has_key("urgency"):
1370                 self.pkg.changes["urgency"] = cnf["Urgency::Default"]
1371             self.pkg.changes["urgency"] = self.pkg.changes["urgency"].lower()
1372             if self.pkg.changes["urgency"] not in cnf.ValueList("Urgency::Valid"):
1373                 self.warnings.append("%s is not a valid urgency; it will be treated as %s by testing." % \
1374                                      (self.pkg.changes["urgency"], cnf["Urgency::Default"]))
1375                 self.pkg.changes["urgency"] = cnf["Urgency::Default"]
1376
1377     ###########################################################################
1378
1379     # Sanity check the time stamps of files inside debs.
1380     # [Files in the near future cause ugly warnings and extreme time
1381     #  travel can cause errors on extraction]
1382
1383     def check_timestamps(self):
1384         Cnf = Config()
1385
1386         future_cutoff = time.time() + int(Cnf["Dinstall::FutureTimeTravelGrace"])
1387         past_cutoff = time.mktime(time.strptime(Cnf["Dinstall::PastCutoffYear"],"%Y"))
1388         tar = TarTime(future_cutoff, past_cutoff)
1389
1390         for filename, entry in self.pkg.files.items():
1391             if entry["type"] == "deb":
1392                 tar.reset()
1393                 try:
1394                     deb_file = utils.open_file(filename)
1395                     apt_inst.debExtract(deb_file, tar.callback, "control.tar.gz")
1396                     deb_file.seek(0)
1397                     try:
1398                         apt_inst.debExtract(deb_file, tar.callback, "data.tar.gz")
1399                     except SystemError, e:
1400                         # If we can't find a data.tar.gz, look for data.tar.bz2 instead.
1401                         if not re.search(r"Cannot f[ui]nd chunk data.tar.gz$", str(e)):
1402                             raise
1403                         deb_file.seek(0)
1404                         apt_inst.debExtract(deb_file,tar.callback,"data.tar.bz2")
1405
1406                     deb_file.close()
1407
1408                     future_files = tar.future_files.keys()
1409                     if future_files:
1410                         num_future_files = len(future_files)
1411                         future_file = future_files[0]
1412                         future_date = tar.future_files[future_file]
1413                         self.rejects.append("%s: has %s file(s) with a time stamp too far into the future (e.g. %s [%s])."
1414                                % (filename, num_future_files, future_file, time.ctime(future_date)))
1415
1416                     ancient_files = tar.ancient_files.keys()
1417                     if ancient_files:
1418                         num_ancient_files = len(ancient_files)
1419                         ancient_file = ancient_files[0]
1420                         ancient_date = tar.ancient_files[ancient_file]
1421                         self.rejects.append("%s: has %s file(s) with a time stamp too ancient (e.g. %s [%s])."
1422                                % (filename, num_ancient_files, ancient_file, time.ctime(ancient_date)))
1423                 except:
1424                     self.rejects.append("%s: deb contents timestamp check failed [%s: %s]" % (filename, sys.exc_type, sys.exc_value))
1425
1426     ###########################################################################
1427     def check_transition(self, session):
1428         cnf = Config()
1429
1430         sourcepkg = self.pkg.changes["source"]
1431
1432         # No sourceful upload -> no need to do anything else, direct return
1433         # We also work with unstable uploads, not experimental or those going to some
1434         # proposed-updates queue
1435         if "source" not in self.pkg.changes["architecture"] or \
1436            "unstable" not in self.pkg.changes["distribution"]:
1437             return
1438
1439         # Also only check if there is a file defined (and existant) with
1440         # checks.
1441         transpath = cnf.get("Dinstall::Reject::ReleaseTransitions", "")
1442         if transpath == "" or not os.path.exists(transpath):
1443             return
1444
1445         # Parse the yaml file
1446         sourcefile = file(transpath, 'r')
1447         sourcecontent = sourcefile.read()
1448         try:
1449             transitions = yaml.load(sourcecontent)
1450         except yaml.YAMLError, msg:
1451             # This shouldn't happen, there is a wrapper to edit the file which
1452             # checks it, but we prefer to be safe than ending up rejecting
1453             # everything.
1454             utils.warn("Not checking transitions, the transitions file is broken: %s." % (msg))
1455             return
1456
1457         # Now look through all defined transitions
1458         for trans in transitions:
1459             t = transitions[trans]
1460             source = t["source"]
1461             expected = t["new"]
1462
1463             # Will be None if nothing is in testing.
1464             current = get_source_in_suite(source, "testing", session)
1465             if current is not None:
1466                 compare = apt_pkg.VersionCompare(current.version, expected)
1467
1468             if current is None or compare < 0:
1469                 # This is still valid, the current version in testing is older than
1470                 # the new version we wait for, or there is none in testing yet
1471
1472                 # Check if the source we look at is affected by this.
1473                 if sourcepkg in t['packages']:
1474                     # The source is affected, lets reject it.
1475
1476                     rejectmsg = "%s: part of the %s transition.\n\n" % (
1477                         sourcepkg, trans)
1478
1479                     if current is not None:
1480                         currentlymsg = "at version %s" % (current.version)
1481                     else:
1482                         currentlymsg = "not present in testing"
1483
1484                     rejectmsg += "Transition description: %s\n\n" % (t["reason"])
1485
1486                     rejectmsg += "\n".join(textwrap.wrap("""Your package
1487 is part of a testing transition designed to get %s migrated (it is
1488 currently %s, we need version %s).  This transition is managed by the
1489 Release Team, and %s is the Release-Team member responsible for it.
1490 Please mail debian-release@lists.debian.org or contact %s directly if you
1491 need further assistance.  You might want to upload to experimental until this
1492 transition is done."""
1493                             % (source, currentlymsg, expected,t["rm"], t["rm"])))
1494
1495                     self.rejects.append(rejectmsg)
1496                     return
1497
1498     ###########################################################################
1499     def check_signed_by_key(self):
1500         """Ensure the .changes is signed by an authorized uploader."""
1501         session = DBConn().session()
1502
1503         self.check_transition(session)
1504
1505         (uid, uid_name, is_dm) = lookup_uid_from_fingerprint(self.pkg.changes["fingerprint"], session=session)
1506
1507         # match claimed name with actual name:
1508         if uid is None:
1509             # This is fundamentally broken but need us to refactor how we get
1510             # the UIDs/Fingerprints in order for us to fix it properly
1511             uid, uid_email = self.pkg.changes["fingerprint"], uid
1512             may_nmu, may_sponsor = 1, 1
1513             # XXX by default new dds don't have a fingerprint/uid in the db atm,
1514             #     and can't get one in there if we don't allow nmu/sponsorship
1515         elif is_dm is False:
1516             # If is_dm is False, we allow full upload rights
1517             uid_email = "%s@debian.org" % (uid)
1518             may_nmu, may_sponsor = 1, 1
1519         else:
1520             # Assume limited upload rights unless we've discovered otherwise
1521             uid_email = uid
1522             may_nmu, may_sponsor = 0, 0
1523
1524         if uid_email in [self.pkg.changes["maintaineremail"], self.pkg.changes["changedbyemail"]]:
1525             sponsored = 0
1526         elif uid_name in [self.pkg.changes["maintainername"], self.pkg.changes["changedbyname"]]:
1527             sponsored = 0
1528             if uid_name == "": sponsored = 1
1529         else:
1530             sponsored = 1
1531             if ("source" in self.pkg.changes["architecture"] and
1532                 uid_email and utils.is_email_alias(uid_email)):
1533                 sponsor_addresses = utils.gpg_get_key_addresses(self.pkg.changes["fingerprint"])
1534                 if (self.pkg.changes["maintaineremail"] not in sponsor_addresses and
1535                     self.pkg.changes["changedbyemail"] not in sponsor_addresses):
1536                     self.pkg.changes["sponsoremail"] = uid_email
1537
1538         if sponsored and not may_sponsor:
1539             self.rejects.append("%s is not authorised to sponsor uploads" % (uid))
1540
1541         if not sponsored and not may_nmu:
1542             should_reject = True
1543             highest_sid, highest_version = None, None
1544
1545             # XXX: This reimplements in SQLA what existed before but it's fundamentally fucked
1546             #      It ignores higher versions with the dm_upload_allowed flag set to false
1547             #      I'm keeping the existing behaviour for now until I've gone back and
1548             #      checked exactly what the GR says - mhy
1549             for si in get_sources_from_name(source=self.pkg.changes['source'], dm_upload_allowed=True, session=session):
1550                 if highest_version is None or apt_pkg.VersionCompare(si.version, highest_version) == 1:
1551                      highest_sid = si.source_id
1552                      highest_version = si.version
1553
1554             if highest_sid is None:
1555                 self.rejects.append("Source package %s does not have 'DM-Upload-Allowed: yes' in its most recent version" % self.pkg.changes["source"])
1556             else:
1557                 for sup in session.query(SrcUploader).join(DBSource).filter_by(source_id=highest_sid):
1558                     (rfc822, rfc2047, name, email) = sup.maintainer.get_split_maintainer()
1559                     if email == uid_email or name == uid_name:
1560                         should_reject = False
1561                         break
1562
1563             if should_reject is True:
1564                 self.rejects.append("%s is not in Maintainer or Uploaders of source package %s" % (uid, self.pkg.changes["source"]))
1565
1566             for b in self.pkg.changes["binary"].keys():
1567                 for suite in self.pkg.changes["distribution"].keys():
1568                     q = session.query(DBSource)
1569                     q = q.join(DBBinary).filter_by(package=b)
1570                     q = q.join(BinAssociation).join(Suite).filter_by(suite_name=suite)
1571
1572                     for s in q.all():
1573                         if s.source != self.pkg.changes["source"]:
1574                             self.rejects.append("%s may not hijack %s from source package %s in suite %s" % (uid, b, s, suite))
1575
1576             for f in self.pkg.files.keys():
1577                 if self.pkg.files[f].has_key("byhand"):
1578                     self.rejects.append("%s may not upload BYHAND file %s" % (uid, f))
1579                 if self.pkg.files[f].has_key("new"):
1580                     self.rejects.append("%s may not upload NEW file %s" % (uid, f))
1581
1582         session.close()
1583
1584     ###########################################################################
1585     def build_summaries(self):
1586         """ Build a summary of changes the upload introduces. """
1587
1588         (byhand, new, summary, override_summary) = self.pkg.file_summary()
1589
1590         short_summary = summary
1591
1592         # This is for direport's benefit...
1593         f = re_fdnic.sub("\n .\n", self.pkg.changes.get("changes", ""))
1594
1595         if byhand or new:
1596             summary += "Changes: " + f
1597
1598         summary += "\n\nOverride entries for your package:\n" + override_summary + "\n"
1599
1600         summary += self.announce(short_summary, 0)
1601
1602         return (summary, short_summary)
1603
1604     ###########################################################################
1605
1606     def close_bugs(self, summary, action):
1607         """
1608         Send mail to close bugs as instructed by the closes field in the changes file.
1609         Also add a line to summary if any work was done.
1610
1611         @type summary: string
1612         @param summary: summary text, as given by L{build_summaries}
1613
1614         @type action: bool
1615         @param action: Set to false no real action will be done.
1616
1617         @rtype: string
1618         @return: summary. If action was taken, extended by the list of closed bugs.
1619
1620         """
1621
1622         template = os.path.join(Config()["Dir::Templates"], 'process-unchecked.bug-close')
1623
1624         bugs = self.pkg.changes["closes"].keys()
1625
1626         if not bugs:
1627             return summary
1628
1629         bugs.sort()
1630         summary += "Closing bugs: "
1631         for bug in bugs:
1632             summary += "%s " % (bug)
1633             if action:
1634                 self.update_subst()
1635                 self.Subst["__BUG_NUMBER__"] = bug
1636                 if self.pkg.changes["distribution"].has_key("stable"):
1637                     self.Subst["__STABLE_WARNING__"] = """
1638 Note that this package is not part of the released stable Debian
1639 distribution.  It may have dependencies on other unreleased software,
1640 or other instabilities.  Please take care if you wish to install it.
1641 The update will eventually make its way into the next released Debian
1642 distribution."""
1643                 else:
1644                     self.Subst["__STABLE_WARNING__"] = ""
1645                 mail_message = utils.TemplateSubst(self.Subst, template)
1646                 utils.send_mail(mail_message)
1647
1648                 # Clear up after ourselves
1649                 del self.Subst["__BUG_NUMBER__"]
1650                 del self.Subst["__STABLE_WARNING__"]
1651
1652         if action and self.logger:
1653             self.logger.log(["closing bugs"] + bugs)
1654
1655         summary += "\n"
1656
1657         return summary
1658
1659     ###########################################################################
1660
1661     def announce(self, short_summary, action):
1662         """
1663         Send an announce mail about a new upload.
1664
1665         @type short_summary: string
1666         @param short_summary: Short summary text to include in the mail
1667
1668         @type action: bool
1669         @param action: Set to false no real action will be done.
1670
1671         @rtype: string
1672         @return: Textstring about action taken.
1673
1674         """
1675
1676         cnf = Config()
1677         announcetemplate = os.path.join(cnf["Dir::Templates"], 'process-unchecked.announce')
1678
1679         # Only do announcements for source uploads with a recent dpkg-dev installed
1680         if float(self.pkg.changes.get("format", 0)) < 1.6 or not \
1681            self.pkg.changes["architecture"].has_key("source"):
1682             return ""
1683
1684         lists_done = {}
1685         summary = ""
1686
1687         self.Subst["__SHORT_SUMMARY__"] = short_summary
1688
1689         for dist in self.pkg.changes["distribution"].keys():
1690             announce_list = cnf.Find("Suite::%s::Announce" % (dist))
1691             if announce_list == "" or lists_done.has_key(announce_list):
1692                 continue
1693
1694             lists_done[announce_list] = 1
1695             summary += "Announcing to %s\n" % (announce_list)
1696
1697             if action:
1698                 self.update_subst()
1699                 self.Subst["__ANNOUNCE_LIST_ADDRESS__"] = announce_list
1700                 if cnf.get("Dinstall::TrackingServer") and \
1701                    self.pkg.changes["architecture"].has_key("source"):
1702                     trackingsendto = "Bcc: %s@%s" % (self.pkg.changes["source"], cnf["Dinstall::TrackingServer"])
1703                     self.Subst["__ANNOUNCE_LIST_ADDRESS__"] += "\n" + trackingsendto
1704
1705                 mail_message = utils.TemplateSubst(self.Subst, announcetemplate)
1706                 utils.send_mail(mail_message)
1707
1708                 del self.Subst["__ANNOUNCE_LIST_ADDRESS__"]
1709
1710         if cnf.FindB("Dinstall::CloseBugs"):
1711             summary = self.close_bugs(summary, action)
1712
1713         del self.Subst["__SHORT_SUMMARY__"]
1714
1715         return summary
1716
1717     ###########################################################################
1718
1719     def accept (self, summary, short_summary, targetdir=None):
1720         """
1721         Accept an upload.
1722
1723         This moves all files referenced from the .changes into the I{accepted}
1724         queue, sends the accepted mail, announces to lists, closes bugs and
1725         also checks for override disparities. If enabled it will write out
1726         the version history for the BTS Version Tracking and will finally call
1727         L{queue_build}.
1728
1729         @type summary: string
1730         @param summary: Summary text
1731
1732         @type short_summary: string
1733         @param short_summary: Short summary
1734
1735         """
1736
1737         cnf = Config()
1738         stats = SummaryStats()
1739
1740         accepttemplate = os.path.join(cnf["Dir::Templates"], 'process-unchecked.accepted')
1741
1742         if targetdir is None:
1743             targetdir = cnf["Dir::Queue::Accepted"]
1744
1745         print "Accepting."
1746         if self.logger:
1747             self.logger.log(["Accepting changes", self.pkg.changes_file])
1748
1749         self.pkg.write_dot_dak(targetdir)
1750
1751         # Move all the files into the accepted directory
1752         utils.move(self.pkg.changes_file, targetdir)
1753
1754         for name, entry in sorted(self.pkg.files.items()):
1755             utils.move(name, targetdir)
1756             stats.accept_bytes += float(entry["size"])
1757
1758         stats.accept_count += 1
1759
1760         # Send accept mail, announce to lists, close bugs and check for
1761         # override disparities
1762         if not cnf["Dinstall::Options::No-Mail"]:
1763             self.update_subst()
1764             self.Subst["__SUITE__"] = ""
1765             self.Subst["__SUMMARY__"] = summary
1766             mail_message = utils.TemplateSubst(self.Subst, accepttemplate)
1767             utils.send_mail(mail_message)
1768             self.announce(short_summary, 1)
1769
1770         ## Helper stuff for DebBugs Version Tracking
1771         if cnf.Find("Dir::Queue::BTSVersionTrack"):
1772             # ??? once queue/* is cleared on *.d.o and/or reprocessed
1773             # the conditionalization on dsc["bts changelog"] should be
1774             # dropped.
1775
1776             # Write out the version history from the changelog
1777             if self.pkg.changes["architecture"].has_key("source") and \
1778                self.pkg.dsc.has_key("bts changelog"):
1779
1780                 (fd, temp_filename) = utils.temp_filename(cnf["Dir::Queue::BTSVersionTrack"], prefix=".")
1781                 version_history = os.fdopen(fd, 'w')
1782                 version_history.write(self.pkg.dsc["bts changelog"])
1783                 version_history.close()
1784                 filename = "%s/%s" % (cnf["Dir::Queue::BTSVersionTrack"],
1785                                       self.pkg.changes_file[:-8]+".versions")
1786                 os.rename(temp_filename, filename)
1787                 os.chmod(filename, 0644)
1788
1789             # Write out the binary -> source mapping.
1790             (fd, temp_filename) = utils.temp_filename(cnf["Dir::Queue::BTSVersionTrack"], prefix=".")
1791             debinfo = os.fdopen(fd, 'w')
1792             for name, entry in sorted(self.pkg.files.items()):
1793                 if entry["type"] == "deb":
1794                     line = " ".join([entry["package"], entry["version"],
1795                                      entry["architecture"], entry["source package"],
1796                                      entry["source version"]])
1797                     debinfo.write(line+"\n")
1798             debinfo.close()
1799             filename = "%s/%s" % (cnf["Dir::Queue::BTSVersionTrack"],
1800                                   self.pkg.changes_file[:-8]+".debinfo")
1801             os.rename(temp_filename, filename)
1802             os.chmod(filename, 0644)
1803
1804         # Its is Cnf["Dir::Queue::Accepted"] here, not targetdir!
1805         # <Ganneff> we do call queue_build too
1806         # <mhy> well yes, we'd have had to if we were inserting into accepted
1807         # <Ganneff> now. thats database only.
1808         # <mhy> urgh, that's going to get messy
1809         # <Ganneff> so i make the p-n call to it *also* using accepted/
1810         # <mhy> but then the packages will be in the queue_build table without the files being there
1811         # <Ganneff> as the buildd queue is only regenerated whenever unchecked runs
1812         # <mhy> ah, good point
1813         # <Ganneff> so it will work out, as unchecked move it over
1814         # <mhy> that's all completely sick
1815         # <Ganneff> yes
1816
1817         # This routine returns None on success or an error on failure
1818         res = get_or_set_queue('accepted').autobuild_upload(self.pkg, cnf["Dir::Queue::Accepted"])
1819         if res:
1820             utils.fubar(res)
1821
1822
1823     def check_override(self):
1824         """
1825         Checks override entries for validity. Mails "Override disparity" warnings,
1826         if that feature is enabled.
1827
1828         Abandons the check if
1829           - override disparity checks are disabled
1830           - mail sending is disabled
1831         """
1832
1833         cnf = Config()
1834
1835         # Abandon the check if:
1836         #  a) override disparity checks have been disabled
1837         #  b) we're not sending mail
1838         if not cnf.FindB("Dinstall::OverrideDisparityCheck") or \
1839            cnf["Dinstall::Options::No-Mail"]:
1840             return
1841
1842         summary = self.pkg.check_override()
1843
1844         if summary == "":
1845             return
1846
1847         overridetemplate = os.path.join(cnf["Dir::Templates"], 'process-unchecked.override-disparity')
1848
1849         self.update_subst()
1850         self.Subst["__SUMMARY__"] = summary
1851         mail_message = utils.TemplateSubst(self.Subst, overridetemplate)
1852         utils.send_mail(mail_message)
1853         del self.Subst["__SUMMARY__"]
1854
1855     ###########################################################################
1856
1857     def remove(self, dir=None):
1858         """
1859         Used (for instance) in p-u to remove the package from unchecked
1860         """
1861         if dir is None:
1862             os.chdir(self.pkg.directory)
1863         else:
1864             os.chdir(dir)
1865
1866         for f in self.pkg.files.keys():
1867             os.unlink(f)
1868         os.unlink(self.pkg.changes_file)
1869
1870     ###########################################################################
1871
1872     def move_to_dir (self, dest, perms=0660, changesperms=0664):
1873         """
1874         Move files to dest with certain perms/changesperms
1875         """
1876         utils.move(self.pkg.changes_file, dest, perms=changesperms)
1877         for f in self.pkg.files.keys():
1878             utils.move(f, dest, perms=perms)
1879
1880     ###########################################################################
1881
1882     def force_reject(self, reject_files):
1883         """
1884         Forcefully move files from the current directory to the
1885         reject directory.  If any file already exists in the reject
1886         directory it will be moved to the morgue to make way for
1887         the new file.
1888
1889         @type files: dict
1890         @param files: file dictionary
1891
1892         """
1893
1894         cnf = Config()
1895
1896         for file_entry in reject_files:
1897             # Skip any files which don't exist or which we don't have permission to copy.
1898             if os.access(file_entry, os.R_OK) == 0:
1899                 continue
1900
1901             dest_file = os.path.join(cnf["Dir::Queue::Reject"], file_entry)
1902
1903             try:
1904                 dest_fd = os.open(dest_file, os.O_RDWR | os.O_CREAT | os.O_EXCL, 0644)
1905             except OSError, e:
1906                 # File exists?  Let's try and move it to the morgue
1907                 if e.errno == errno.EEXIST:
1908                     morgue_file = os.path.join(cnf["Dir::Morgue"], cnf["Dir::MorgueReject"], file_entry)
1909                     try:
1910                         morgue_file = utils.find_next_free(morgue_file)
1911                     except NoFreeFilenameError:
1912                         # Something's either gone badly Pete Tong, or
1913                         # someone is trying to exploit us.
1914                         utils.warn("**WARNING** failed to move %s from the reject directory to the morgue." % (file_entry))
1915                         return
1916                     utils.move(dest_file, morgue_file, perms=0660)
1917                     try:
1918                         dest_fd = os.open(dest_file, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0644)
1919                     except OSError, e:
1920                         # Likewise
1921                         utils.warn("**WARNING** failed to claim %s in the reject directory." % (file_entry))
1922                         return
1923                 else:
1924                     raise
1925             # If we got here, we own the destination file, so we can
1926             # safely overwrite it.
1927             utils.move(file_entry, dest_file, 1, perms=0660)
1928             os.close(dest_fd)
1929
1930     ###########################################################################
1931     def do_reject (self, manual=0, reject_message="", note=""):
1932         """
1933         Reject an upload. If called without a reject message or C{manual} is
1934         true, spawn an editor so the user can write one.
1935
1936         @type manual: bool
1937         @param manual: manual or automated rejection
1938
1939         @type reject_message: string
1940         @param reject_message: A reject message
1941
1942         @return: 0
1943
1944         """
1945         # If we weren't given a manual rejection message, spawn an
1946         # editor so the user can add one in...
1947         if manual and not reject_message:
1948             (fd, temp_filename) = utils.temp_filename()
1949             temp_file = os.fdopen(fd, 'w')
1950             if len(note) > 0:
1951                 for line in note:
1952                     temp_file.write(line)
1953             temp_file.close()
1954             editor = os.environ.get("EDITOR","vi")
1955             answer = 'E'
1956             while answer == 'E':
1957                 os.system("%s %s" % (editor, temp_filename))
1958                 temp_fh = utils.open_file(temp_filename)
1959                 reject_message = "".join(temp_fh.readlines())
1960                 temp_fh.close()
1961                 print "Reject message:"
1962                 print utils.prefix_multi_line_string(reject_message,"  ",include_blank_lines=1)
1963                 prompt = "[R]eject, Edit, Abandon, Quit ?"
1964                 answer = "XXX"
1965                 while prompt.find(answer) == -1:
1966                     answer = utils.our_raw_input(prompt)
1967                     m = re_default_answer.search(prompt)
1968                     if answer == "":
1969                         answer = m.group(1)
1970                     answer = answer[:1].upper()
1971             os.unlink(temp_filename)
1972             if answer == 'A':
1973                 return 1
1974             elif answer == 'Q':
1975                 sys.exit(0)
1976
1977         print "Rejecting.\n"
1978
1979         cnf = Config()
1980
1981         reason_filename = self.pkg.changes_file[:-8] + ".reason"
1982         reason_filename = os.path.join(cnf["Dir::Queue::Reject"], reason_filename)
1983
1984         # Move all the files into the reject directory
1985         reject_files = self.pkg.files.keys() + [self.pkg.changes_file]
1986         self.force_reject(reject_files)
1987
1988         # If we fail here someone is probably trying to exploit the race
1989         # so let's just raise an exception ...
1990         if os.path.exists(reason_filename):
1991             os.unlink(reason_filename)
1992         reason_fd = os.open(reason_filename, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0644)
1993
1994         rej_template = os.path.join(cnf["Dir::Templates"], "queue.rejected")
1995
1996         self.update_subst()
1997         if not manual:
1998             self.Subst["__REJECTOR_ADDRESS__"] = cnf["Dinstall::MyEmailAddress"]
1999             self.Subst["__MANUAL_REJECT_MESSAGE__"] = ""
2000             self.Subst["__CC__"] = "X-DAK-Rejection: automatic (moo)"
2001             os.write(reason_fd, reject_message)
2002             reject_mail_message = utils.TemplateSubst(self.Subst, rej_template)
2003         else:
2004             # Build up the rejection email
2005             user_email_address = utils.whoami() + " <%s>" % (cnf["Dinstall::MyAdminAddress"])
2006             self.Subst["__REJECTOR_ADDRESS__"] = user_email_address
2007             self.Subst["__MANUAL_REJECT_MESSAGE__"] = reject_message
2008             self.Subst["__CC__"] = "Cc: " + cnf["Dinstall::MyEmailAddress"]
2009             reject_mail_message = utils.TemplateSubst(self.Subst, rej_template)
2010             # Write the rejection email out as the <foo>.reason file
2011             os.write(reason_fd, reject_mail_message)
2012
2013         del self.Subst["__REJECTOR_ADDRESS__"]
2014         del self.Subst["__MANUAL_REJECT_MESSAGE__"]
2015         del self.Subst["__CC__"]
2016
2017         os.close(reason_fd)
2018
2019         # Send the rejection mail if appropriate
2020         if not cnf["Dinstall::Options::No-Mail"]:
2021             utils.send_mail(reject_mail_message)
2022
2023         if self.logger:
2024             self.logger.log(["rejected", self.pkg.changes_file])
2025
2026         return 0
2027
2028     ################################################################################
2029     def in_override_p(self, package, component, suite, binary_type, file, session):
2030         """
2031         Check if a package already has override entries in the DB
2032
2033         @type package: string
2034         @param package: package name
2035
2036         @type component: string
2037         @param component: database id of the component
2038
2039         @type suite: int
2040         @param suite: database id of the suite
2041
2042         @type binary_type: string
2043         @param binary_type: type of the package
2044
2045         @type file: string
2046         @param file: filename we check
2047
2048         @return: the database result. But noone cares anyway.
2049
2050         """
2051
2052         cnf = Config()
2053
2054         if binary_type == "": # must be source
2055             file_type = "dsc"
2056         else:
2057             file_type = binary_type
2058
2059         # Override suite name; used for example with proposed-updates
2060         if cnf.Find("Suite::%s::OverrideSuite" % (suite)) != "":
2061             suite = cnf["Suite::%s::OverrideSuite" % (suite)]
2062
2063         result = get_override(package, suite, component, file_type, session)
2064
2065         # If checking for a source package fall back on the binary override type
2066         if file_type == "dsc" and len(result) < 1:
2067             result = get_override(package, suite, component, ['deb', 'udeb'], session)
2068
2069         # Remember the section and priority so we can check them later if appropriate
2070         if len(result) > 0:
2071             result = result[0]
2072             self.pkg.files[file]["override section"] = result.section.section
2073             self.pkg.files[file]["override priority"] = result.priority.priority
2074             return result
2075
2076         return None
2077
2078     ################################################################################
2079     def get_anyversion(self, sv_list, suite):
2080         """
2081         @type sv_list: list
2082         @param sv_list: list of (suite, version) tuples to check
2083
2084         @type suite: string
2085         @param suite: suite name
2086
2087         Description: TODO
2088         """
2089         Cnf = Config()
2090         anyversion = None
2091         anysuite = [suite] + Cnf.ValueList("Suite::%s::VersionChecks::Enhances" % (suite))
2092         for (s, v) in sv_list:
2093             if s in [ x.lower() for x in anysuite ]:
2094                 if not anyversion or apt_pkg.VersionCompare(anyversion, v) <= 0:
2095                     anyversion = v
2096
2097         return anyversion
2098
2099     ################################################################################
2100
2101     def cross_suite_version_check(self, sv_list, file, new_version, sourceful=False):
2102         """
2103         @type sv_list: list
2104         @param sv_list: list of (suite, version) tuples to check
2105
2106         @type file: string
2107         @param file: XXX
2108
2109         @type new_version: string
2110         @param new_version: XXX
2111
2112         Ensure versions are newer than existing packages in target
2113         suites and that cross-suite version checking rules as
2114         set out in the conf file are satisfied.
2115         """
2116
2117         cnf = Config()
2118
2119         # Check versions for each target suite
2120         for target_suite in self.pkg.changes["distribution"].keys():
2121             must_be_newer_than = [ i.lower() for i in cnf.ValueList("Suite::%s::VersionChecks::MustBeNewerThan" % (target_suite)) ]
2122             must_be_older_than = [ i.lower() for i in cnf.ValueList("Suite::%s::VersionChecks::MustBeOlderThan" % (target_suite)) ]
2123
2124             # Enforce "must be newer than target suite" even if conffile omits it
2125             if target_suite not in must_be_newer_than:
2126                 must_be_newer_than.append(target_suite)
2127
2128             for (suite, existent_version) in sv_list:
2129                 vercmp = apt_pkg.VersionCompare(new_version, existent_version)
2130
2131                 if suite in must_be_newer_than and sourceful and vercmp < 1:
2132                     self.rejects.append("%s: old version (%s) in %s >= new version (%s) targeted at %s." % (file, existent_version, suite, new_version, target_suite))
2133
2134                 if suite in must_be_older_than and vercmp > -1:
2135                     cansave = 0
2136
2137                     if self.pkg.changes.get('distribution-version', {}).has_key(suite):
2138                         # we really use the other suite, ignoring the conflicting one ...
2139                         addsuite = self.pkg.changes["distribution-version"][suite]
2140
2141                         add_version = self.get_anyversion(sv_list, addsuite)
2142                         target_version = self.get_anyversion(sv_list, target_suite)
2143
2144                         if not add_version:
2145                             # not add_version can only happen if we map to a suite
2146                             # that doesn't enhance the suite we're propup'ing from.
2147                             # so "propup-ver x a b c; map a d" is a problem only if
2148                             # d doesn't enhance a.
2149                             #
2150                             # i think we could always propagate in this case, rather
2151                             # than complaining. either way, this isn't a REJECT issue
2152                             #
2153                             # And - we really should complain to the dorks who configured dak
2154                             self.warnings.append("%s is mapped to, but not enhanced by %s - adding anyways" % (suite, addsuite))
2155                             self.pkg.changes.setdefault("propdistribution", {})
2156                             self.pkg.changes["propdistribution"][addsuite] = 1
2157                             cansave = 1
2158                         elif not target_version:
2159                             # not targets_version is true when the package is NEW
2160                             # we could just stick with the "...old version..." REJECT
2161                             # for this, I think.
2162                             self.rejects.append("Won't propogate NEW packages.")
2163                         elif apt_pkg.VersionCompare(new_version, add_version) < 0:
2164                             # propogation would be redundant. no need to reject though.
2165                             self.warnings.append("ignoring versionconflict: %s: old version (%s) in %s <= new version (%s) targeted at %s." % (file, existent_version, suite, new_version, target_suite))
2166                             cansave = 1
2167                         elif apt_pkg.VersionCompare(new_version, add_version) > 0 and \
2168                              apt_pkg.VersionCompare(add_version, target_version) >= 0:
2169                             # propogate!!
2170                             self.warnings.append("Propogating upload to %s" % (addsuite))
2171                             self.pkg.changes.setdefault("propdistribution", {})
2172                             self.pkg.changes["propdistribution"][addsuite] = 1
2173                             cansave = 1
2174
2175                     if not cansave:
2176                         self.reject.append("%s: old version (%s) in %s <= new version (%s) targeted at %s." % (file, existent_version, suite, new_version, target_suite))
2177
2178     ################################################################################
2179     def check_binary_against_db(self, file, session):
2180         # Ensure version is sane
2181         q = session.query(BinAssociation)
2182         q = q.join(DBBinary).filter(DBBinary.package==self.pkg.files[file]["package"])
2183         q = q.join(Architecture).filter(Architecture.arch_string.in_([self.pkg.files[file]["architecture"], 'all']))
2184
2185         self.cross_suite_version_check([ (x.suite.suite_name, x.binary.version) for x in q.all() ],
2186                                        file, self.pkg.files[file]["version"], sourceful=False)
2187
2188         # Check for any existing copies of the file
2189         q = session.query(DBBinary).filter_by(package=self.pkg.files[file]["package"])
2190         q = q.filter_by(version=self.pkg.files[file]["version"])
2191         q = q.join(Architecture).filter_by(arch_string=self.pkg.files[file]["architecture"])
2192
2193         if q.count() > 0:
2194             self.rejects.append("%s: can not overwrite existing copy already in the archive." % (file))
2195
2196     ################################################################################
2197
2198     def check_source_against_db(self, file, session):
2199         """
2200         """
2201         source = self.pkg.dsc.get("source")
2202         version = self.pkg.dsc.get("version")
2203
2204         # Ensure version is sane
2205         q = session.query(SrcAssociation)
2206         q = q.join(DBSource).filter(DBSource.source==source)
2207
2208         self.cross_suite_version_check([ (x.suite.suite_name, x.source.version) for x in q.all() ],
2209                                        file, version, sourceful=True)
2210
2211     ################################################################################
2212     def check_dsc_against_db(self, file, session):
2213         """
2214
2215         @warning: NB: this function can remove entries from the 'files' index [if
2216          the orig tarball is a duplicate of the one in the archive]; if
2217          you're iterating over 'files' and call this function as part of
2218          the loop, be sure to add a check to the top of the loop to
2219          ensure you haven't just tried to dereference the deleted entry.
2220
2221         """
2222
2223         Cnf = Config()
2224         self.pkg.orig_files = {} # XXX: do we need to clear it?
2225         orig_files = self.pkg.orig_files
2226
2227         # Try and find all files mentioned in the .dsc.  This has
2228         # to work harder to cope with the multiple possible
2229         # locations of an .orig.tar.gz.
2230         # The ordering on the select is needed to pick the newest orig
2231         # when it exists in multiple places.
2232         for dsc_name, dsc_entry in self.pkg.dsc_files.items():
2233             found = None
2234             if self.pkg.files.has_key(dsc_name):
2235                 actual_md5 = self.pkg.files[dsc_name]["md5sum"]
2236                 actual_size = int(self.pkg.files[dsc_name]["size"])
2237                 found = "%s in incoming" % (dsc_name)
2238
2239                 # Check the file does not already exist in the archive
2240                 ql = get_poolfile_like_name(dsc_name, session)
2241
2242                 # Strip out anything that isn't '%s' or '/%s$'
2243                 for i in ql:
2244                     if not i.filename.endswith(dsc_name):
2245                         ql.remove(i)
2246
2247                 # "[dak] has not broken them.  [dak] has fixed a
2248                 # brokenness.  Your crappy hack exploited a bug in
2249                 # the old dinstall.
2250                 #
2251                 # "(Come on!  I thought it was always obvious that
2252                 # one just doesn't release different files with
2253                 # the same name and version.)"
2254                 #                        -- ajk@ on d-devel@l.d.o
2255
2256                 if len(ql) > 0:
2257                     # Ignore exact matches for .orig.tar.gz
2258                     match = 0
2259                     if re_is_orig_source.match(dsc_name):
2260                         for i in ql:
2261                             if self.pkg.files.has_key(dsc_name) and \
2262                                int(self.pkg.files[dsc_name]["size"]) == int(i.filesize) and \
2263                                self.pkg.files[dsc_name]["md5sum"] == i.md5sum:
2264                                 self.warnings.append("ignoring %s, since it's already in the archive." % (dsc_name))
2265                                 # TODO: Don't delete the entry, just mark it as not needed
2266                                 # This would fix the stupidity of changing something we often iterate over
2267                                 # whilst we're doing it
2268                                 del self.pkg.files[dsc_name]
2269                                 if not orig_files.has_key(dsc_name):
2270                                     orig_files[dsc_name] = {}
2271                                 orig_files[dsc_name]["path"] = os.path.join(i.location.path, i.filename)
2272                                 match = 1
2273
2274                     if not match:
2275                         self.rejects.append("can not overwrite existing copy of '%s' already in the archive." % (dsc_name))
2276
2277             elif re_is_orig_source.match(dsc_name):
2278                 # Check in the pool
2279                 ql = get_poolfile_like_name(dsc_name, session)
2280
2281                 # Strip out anything that isn't '%s' or '/%s$'
2282                 # TODO: Shouldn't we just search for things which end with our string explicitly in the SQL?
2283                 for i in ql:
2284                     if not i.filename.endswith(dsc_name):
2285                         ql.remove(i)
2286
2287                 if len(ql) > 0:
2288                     # Unfortunately, we may get more than one match here if,
2289                     # for example, the package was in potato but had an -sa
2290                     # upload in woody.  So we need to choose the right one.
2291
2292                     # default to something sane in case we don't match any or have only one
2293                     x = ql[0]
2294
2295                     if len(ql) > 1:
2296                         for i in ql:
2297                             old_file = os.path.join(i.location.path, i.filename)
2298                             old_file_fh = utils.open_file(old_file)
2299                             actual_md5 = apt_pkg.md5sum(old_file_fh)
2300                             old_file_fh.close()
2301                             actual_size = os.stat(old_file)[stat.ST_SIZE]
2302                             if actual_md5 == dsc_entry["md5sum"] and actual_size == int(dsc_entry["size"]):
2303                                 x = i
2304
2305                     old_file = os.path.join(i.location.path, i.filename)
2306                     old_file_fh = utils.open_file(old_file)
2307                     actual_md5 = apt_pkg.md5sum(old_file_fh)
2308                     old_file_fh.close()
2309                     actual_size = os.stat(old_file)[stat.ST_SIZE]
2310                     found = old_file
2311                     suite_type = x.location.archive_type
2312                     # need this for updating dsc_files in install()
2313                     dsc_entry["files id"] = x.file_id
2314                     # See install() in process-accepted...
2315                     if not orig_files.has_key(dsc_name):
2316                         orig_files[dsc_name] = {}
2317                     orig_files[dsc_name]["id"] = x.file_id
2318                     orig_files[dsc_name]["path"] = old_file
2319                     orig_files[dsc_name]["location"] = x.location.location_id
2320                 else:
2321                     # TODO: Record the queues and info in the DB so we don't hardcode all this crap
2322                     # Not there? Check the queue directories...
2323                     for directory in [ "Accepted", "New", "Byhand", "ProposedUpdates", "OldProposedUpdates", "Embargoed", "Unembargoed" ]:
2324                         if not Cnf.has_key("Dir::Queue::%s" % (directory)):
2325                             continue
2326                         in_otherdir = os.path.join(Cnf["Dir::Queue::%s" % (directory)], dsc_name)
2327                         if os.path.exists(in_otherdir):
2328                             in_otherdir_fh = utils.open_file(in_otherdir)
2329                             actual_md5 = apt_pkg.md5sum(in_otherdir_fh)
2330                             in_otherdir_fh.close()
2331                             actual_size = os.stat(in_otherdir)[stat.ST_SIZE]
2332                             found = in_otherdir
2333                             if not orig_files.has_key(dsc_name):
2334                                 orig_files[dsc_name] = {}
2335                             orig_files[dsc_name]["path"] = in_otherdir
2336
2337                     if not found:
2338                         self.rejects.append("%s refers to %s, but I can't find it in the queue or in the pool." % (file, dsc_name))
2339                         continue
2340             else:
2341                 self.rejects.append("%s refers to %s, but I can't find it in the queue." % (file, dsc_name))
2342                 continue
2343             if actual_md5 != dsc_entry["md5sum"]:
2344                 self.rejects.append("md5sum for %s doesn't match %s." % (found, file))
2345             if actual_size != int(dsc_entry["size"]):
2346                 self.rejects.append("size for %s doesn't match %s." % (found, file))
2347
2348     ################################################################################
2349     def accepted_checks(self, overwrite_checks, session):
2350         # Recheck anything that relies on the database; since that's not
2351         # frozen between accept and our run time when called from p-a.
2352
2353         # overwrite_checks is set to False when installing to stable/oldstable
2354
2355         propogate={}
2356         nopropogate={}
2357
2358         # Find the .dsc (again)
2359         dsc_filename = None
2360         for f in self.pkg.files.keys():
2361             if self.pkg.files[f]["type"] == "dsc":
2362                 dsc_filename = f
2363
2364         for checkfile in self.pkg.files.keys():
2365             # The .orig.tar.gz can disappear out from under us is it's a
2366             # duplicate of one in the archive.
2367             if not self.pkg.files.has_key(checkfile):
2368                 continue
2369
2370             entry = self.pkg.files[checkfile]
2371
2372             # Check that the source still exists
2373             if entry["type"] == "deb":
2374                 source_version = entry["source version"]
2375                 source_package = entry["source package"]
2376                 if not self.pkg.changes["architecture"].has_key("source") \
2377                    and not source_exists(source_package, source_version,  self.pkg.changes["distribution"].keys()):
2378                     self.rejects.append("no source found for %s %s (%s)." % (source_package, source_version, checkfile))
2379
2380             # Version and file overwrite checks
2381             if overwrite_checks:
2382                 if entry["type"] == "deb":
2383                     self.check_binary_against_db(checkfile, session)
2384                 elif entry["type"] == "dsc":
2385                     self.check_source_against_db(checkfile, session)
2386                     self.check_dsc_against_db(dsc_filename, session)
2387
2388             # propogate in the case it is in the override tables:
2389             for suite in self.pkg.changes.get("propdistribution", {}).keys():
2390                 if self.in_override_p(entry["package"], entry["component"], suite, entry.get("dbtype",""), checkfile, session):
2391                     propogate[suite] = 1
2392                 else:
2393                     nopropogate[suite] = 1
2394
2395         for suite in propogate.keys():
2396             if suite in nopropogate:
2397                 continue
2398             self.pkg.changes["distribution"][suite] = 1
2399
2400         for checkfile in self.pkg.files.keys():
2401             # Check the package is still in the override tables
2402             for suite in self.pkg.changes["distribution"].keys():
2403                 if not self.in_override_p(entry["package"], entry["component"], suite, entry.get("dbtype",""), checkfile, session):
2404                     self.rejects.append("%s is NEW for %s." % (checkfile, suite))
2405
2406     ################################################################################
2407     # This is not really a reject, but an unaccept, but since a) the code for
2408     # that is non-trivial (reopen bugs, unannounce etc.), b) this should be
2409     # extremely rare, for now we'll go with whining at our admin folks...
2410
2411     def do_unaccept(self):
2412         cnf = Config()
2413
2414         self.update_subst()
2415         self.Subst["__REJECTOR_ADDRESS__"] = cnf["Dinstall::MyEmailAddress"]
2416         self.Subst["__REJECT_MESSAGE__"] = self.package_info()
2417         self.Subst["__CC__"] = "Cc: " + cnf["Dinstall::MyEmailAddress"]
2418         self.Subst["__BCC__"] = "X-DAK: dak process-accepted"
2419         if cnf.has_key("Dinstall::Bcc"):
2420             self.Subst["__BCC__"] += "\nBcc: %s" % (cnf["Dinstall::Bcc"])
2421
2422         template = os.path.join(cnf["Dir::Templates"], "process-accepted.unaccept")
2423
2424         reject_mail_message = utils.TemplateSubst(self.Subst, template)
2425
2426         # Write the rejection email out as the <foo>.reason file
2427         reason_filename = os.path.basename(self.pkg.changes_file[:-8]) + ".reason"
2428         reject_filename = os.path.join(cnf["Dir::Queue::Reject"], reason_filename)
2429
2430         # If we fail here someone is probably trying to exploit the race
2431         # so let's just raise an exception ...
2432         if os.path.exists(reject_filename):
2433             os.unlink(reject_filename)
2434
2435         fd = os.open(reject_filename, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0644)
2436         os.write(fd, reject_mail_message)
2437         os.close(fd)
2438
2439         utils.send_mail(reject_mail_message)
2440
2441         del self.Subst["__REJECTOR_ADDRESS__"]
2442         del self.Subst["__REJECT_MESSAGE__"]
2443         del self.Subst["__CC__"]
2444
2445     ################################################################################
2446     # If any file of an upload has a recent mtime then chances are good
2447     # the file is still being uploaded.
2448
2449     def upload_too_new(self):
2450         cnf = Config()
2451         too_new = False
2452         # Move back to the original directory to get accurate time stamps
2453         cwd = os.getcwd()
2454         os.chdir(self.pkg.directory)
2455         file_list = self.pkg.files.keys()
2456         file_list.extend(self.pkg.dsc_files.keys())
2457         file_list.append(self.pkg.changes_file)
2458         for f in file_list:
2459             try:
2460                 last_modified = time.time()-os.path.getmtime(f)
2461                 if last_modified < int(cnf["Dinstall::SkipTime"]):
2462                     too_new = True
2463                     break
2464             except:
2465                 pass
2466
2467         os.chdir(cwd)
2468         return too_new