]> git.decadent.org.uk Git - dak.git/blob - daklib/queue.py
Factor out symlink stuff from get_changelog_versions => ensure_all_source_exists
[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 ensure_all_source_exists(self, dest_dir=None):
1029         """
1030         Ensure that dest_dir contains all the orig tarballs for the specified
1031         changes. If it does not, symlink them into place.
1032
1033         If dest_dir is None, populate the current directory.
1034         """
1035
1036         if dest_dir is None:
1037             dest_dir = os.getcwd()
1038
1039         # Create a symlink mirror of the source files in our temporary directory
1040         for f in self.pkg.files.keys():
1041             m = re_issource.match(f)
1042             if m:
1043                 src = os.path.join(source_dir, f)
1044                 # If a file is missing for whatever reason, give up.
1045                 if not os.path.exists(src):
1046                     return
1047                 ftype = m.group(3)
1048                 if re_is_orig_source.match(f) and pkg.orig_files.has_key(f) and \
1049                    pkg.orig_files[f].has_key("path"):
1050                     continue
1051                 dest = os.path.join(os.getcwd(), f)
1052                 os.symlink(src, dest)
1053
1054         # If the orig files are not a part of the upload, create symlinks to the
1055         # existing copies.
1056         for orig_file in self.pkg.orig_files.keys():
1057             if not self.pkg.orig_files[orig_file].has_key("path"):
1058                 continue
1059             dest = os.path.join(os.getcwd(), os.path.basename(orig_file))
1060             os.symlink(self.pkg.orig_files[orig_file]["path"], dest)
1061
1062     ###########################################################################
1063
1064     def get_changelog_versions(self, source_dir):
1065         """Extracts a the source package and (optionally) grabs the
1066         version history out of debian/changelog for the BTS."""
1067
1068         cnf = Config()
1069
1070         # Find the .dsc (again)
1071         dsc_filename = None
1072         for f in self.pkg.files.keys():
1073             if self.pkg.files[f]["type"] == "dsc":
1074                 dsc_filename = f
1075
1076         # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
1077         if not dsc_filename:
1078             return
1079
1080         self.ensure_all_source_exists()
1081
1082         # Extract the source
1083         cmd = "dpkg-source -sn -x %s" % (dsc_filename)
1084         (result, output) = commands.getstatusoutput(cmd)
1085         if (result != 0):
1086             self.rejects.append("'dpkg-source -x' failed for %s [return code: %s]." % (dsc_filename, result))
1087             self.rejects.append(utils.prefix_multi_line_string(output, " [dpkg-source output:] "))
1088             return
1089
1090         if not cnf.Find("Dir::Queue::BTSVersionTrack"):
1091             return
1092
1093         # Get the upstream version
1094         upstr_version = re_no_epoch.sub('', self.pkg.dsc["version"])
1095         if re_strip_revision.search(upstr_version):
1096             upstr_version = re_strip_revision.sub('', upstr_version)
1097
1098         # Ensure the changelog file exists
1099         changelog_filename = "%s-%s/debian/changelog" % (self.pkg.dsc["source"], upstr_version)
1100         if not os.path.exists(changelog_filename):
1101             self.rejects.append("%s: debian/changelog not found in extracted source." % (dsc_filename))
1102             return
1103
1104         # Parse the changelog
1105         self.pkg.dsc["bts changelog"] = ""
1106         changelog_file = utils.open_file(changelog_filename)
1107         for line in changelog_file.readlines():
1108             m = re_changelog_versions.match(line)
1109             if m:
1110                 self.pkg.dsc["bts changelog"] += line
1111         changelog_file.close()
1112
1113         # Check we found at least one revision in the changelog
1114         if not self.pkg.dsc["bts changelog"]:
1115             self.rejects.append("%s: changelog format not recognised (empty version tree)." % (dsc_filename))
1116
1117     def check_source(self):
1118         # XXX: I'm fairly sure reprocess == 2 can never happen
1119         #      AJT disabled the is_incoming check years ago - mhy
1120         #      We should probably scrap or rethink the whole reprocess thing
1121         # Bail out if:
1122         #    a) there's no source
1123         # or b) reprocess is 2 - we will do this check next time when orig
1124         #       tarball is in 'files'
1125         # or c) the orig files are MIA
1126         if not self.pkg.changes["architecture"].has_key("source") or self.reprocess == 2 \
1127            or len(self.pkg.orig_files) == 0:
1128             return
1129
1130         tmpdir = utils.temp_dirname()
1131
1132         # Move into the temporary directory
1133         cwd = os.getcwd()
1134         os.chdir(tmpdir)
1135
1136         # Get the changelog version history
1137         self.get_changelog_versions(cwd)
1138
1139         # Move back and cleanup the temporary tree
1140         os.chdir(cwd)
1141
1142         try:
1143             shutil.rmtree(tmpdir)
1144         except OSError, e:
1145             if e.errno != errno.EACCES:
1146                 print "foobar"
1147                 utils.fubar("%s: couldn't remove tmp dir for source tree." % (self.pkg.dsc["source"]))
1148
1149             self.rejects.append("%s: source tree could not be cleanly removed." % (self.pkg.dsc["source"]))
1150             # We probably have u-r or u-w directories so chmod everything
1151             # and try again.
1152             cmd = "chmod -R u+rwx %s" % (tmpdir)
1153             result = os.system(cmd)
1154             if result != 0:
1155                 utils.fubar("'%s' failed with result %s." % (cmd, result))
1156             shutil.rmtree(tmpdir)
1157         except Exception, e:
1158             print "foobar2 (%s)" % e
1159             utils.fubar("%s: couldn't remove tmp dir for source tree." % (self.pkg.dsc["source"]))
1160
1161     ###########################################################################
1162     def ensure_hashes(self):
1163         # Make sure we recognise the format of the Files: field in the .changes
1164         format = self.pkg.changes.get("format", "0.0").split(".", 1)
1165         if len(format) == 2:
1166             format = int(format[0]), int(format[1])
1167         else:
1168             format = int(float(format[0])), 0
1169
1170         # We need to deal with the original changes blob, as the fields we need
1171         # might not be in the changes dict serialised into the .dak anymore.
1172         orig_changes = utils.parse_deb822(self.pkg.changes['filecontents'])
1173
1174         # Copy the checksums over to the current changes dict.  This will keep
1175         # the existing modifications to it intact.
1176         for field in orig_changes:
1177             if field.startswith('checksums-'):
1178                 self.pkg.changes[field] = orig_changes[field]
1179
1180         # Check for unsupported hashes
1181         for j in utils.check_hash_fields(".changes", self.pkg.changes):
1182             self.rejects.append(j)
1183
1184         for j in utils.check_hash_fields(".dsc", self.pkg.dsc):
1185             self.rejects.append(j)
1186
1187         # We have to calculate the hash if we have an earlier changes version than
1188         # the hash appears in rather than require it exist in the changes file
1189         for hashname, hashfunc, version in utils.known_hashes:
1190             # TODO: Move _ensure_changes_hash into this class
1191             for j in utils._ensure_changes_hash(self.pkg.changes, format, version, self.pkg.files, hashname, hashfunc):
1192                 self.rejects.append(j)
1193             if "source" in self.pkg.changes["architecture"]:
1194                 # TODO: Move _ensure_dsc_hash into this class
1195                 for j in utils._ensure_dsc_hash(self.pkg.dsc, self.pkg.dsc_files, hashname, hashfunc):
1196                     self.rejects.append(j)
1197
1198     def check_hashes(self):
1199         for m in utils.check_hash(".changes", self.pkg.files, "md5", apt_pkg.md5sum):
1200             self.rejects.append(m)
1201
1202         for m in utils.check_size(".changes", self.pkg.files):
1203             self.rejects.append(m)
1204
1205         for m in utils.check_hash(".dsc", self.pkg.dsc_files, "md5", apt_pkg.md5sum):
1206             self.rejects.append(m)
1207
1208         for m in utils.check_size(".dsc", self.pkg.dsc_files):
1209             self.rejects.append(m)
1210
1211         self.ensure_hashes()
1212
1213     ###########################################################################
1214     def check_lintian(self):
1215         # Only check some distributions
1216         valid_dist = False
1217         for dist in ('unstable', 'experimental'):
1218             if dist in self.pkg.changes['distribution']:
1219                 valid_dist = True
1220                 break
1221
1222         if not valid_dist:
1223             return
1224
1225         cnf = Config()
1226         tagfile = cnf["Dinstall::LintianTags"]
1227         # Parse the yaml file
1228         sourcefile = file(tagfile, 'r')
1229         sourcecontent = sourcefile.read()
1230         sourcefile.close()
1231         try:
1232             lintiantags = yaml.load(sourcecontent)['lintian']
1233         except yaml.YAMLError, msg:
1234             utils.fubar("Can not read the lintian tags file %s, YAML error: %s." % (tagfile, msg))
1235             return
1236
1237         # Now setup the input file for lintian. lintian wants "one tag per line" only,
1238         # so put it together like it. We put all types of tags in one file and then sort
1239         # through lintians output later to see if its a fatal tag we detected, or not.
1240         # So we only run lintian once on all tags, even if we might reject on some, but not
1241         # reject on others.
1242         # Additionally build up a set of tags
1243         tags = set()
1244         (fd, temp_filename) = utils.temp_filename()
1245         temptagfile = os.fdopen(fd, 'w')
1246         for tagtype in lintiantags:
1247             for tag in lintiantags[tagtype]:
1248                 temptagfile.write("%s\n" % tag)
1249                 tags.add(tag)
1250         temptagfile.close()
1251
1252         # So now we should look at running lintian at the .changes file, capturing output
1253         # to then parse it.
1254         command = "lintian --show-overrides --tags-from-file %s %s" % (temp_filename, self.pkg.changes_file)
1255         (result, output) = commands.getstatusoutput(command)
1256         # We are done with lintian, remove our tempfile
1257         os.unlink(temp_filename)
1258         if (result == 2):
1259             utils.warn("lintian failed for %s [return code: %s]." % (self.pkg.changes_file, result))
1260             utils.warn(utils.prefix_multi_line_string(output, " [possible output:] "))
1261
1262         if len(output) == 0:
1263             return
1264
1265         # We have output of lintian, this package isn't clean. Lets parse it and see if we
1266         # are having a victim for a reject.
1267         # W: tzdata: binary-without-manpage usr/sbin/tzconfig
1268         for line in output.split('\n'):
1269             m = re_parse_lintian.match(line)
1270             if m is None:
1271                 continue
1272
1273             etype = m.group(1)
1274             epackage = m.group(2)
1275             etag = m.group(3)
1276             etext = m.group(4)
1277
1278             # So lets check if we know the tag at all.
1279             if etag not in tags:
1280                 continue
1281
1282             if etype == 'O':
1283                 # We know it and it is overriden. Check that override is allowed.
1284                 if etag in lintiantags['warning']:
1285                     # The tag is overriden, and it is allowed to be overriden.
1286                     # Don't add a reject message.
1287                     pass
1288                 elif etag in lintiantags['error']:
1289                     # The tag is overriden - but is not allowed to be
1290                     self.rejects.append("%s: Overriden tag %s found, but this tag may not be overwritten." % (epackage, etag))
1291             else:
1292                 # Tag is known, it is not overriden, direct reject.
1293                 self.rejects.append("%s: Found lintian output: '%s %s', automatically rejected package." % (epackage, etag, etext))
1294                 # Now tell if they *might* override it.
1295                 if etag in lintiantags['warning']:
1296                     self.rejects.append("%s: If you have a good reason, you may override this lintian tag." % (epackage))
1297
1298     ###########################################################################
1299     def check_urgency(self):
1300         cnf = Config()
1301         if self.pkg.changes["architecture"].has_key("source"):
1302             if not self.pkg.changes.has_key("urgency"):
1303                 self.pkg.changes["urgency"] = cnf["Urgency::Default"]
1304             self.pkg.changes["urgency"] = self.pkg.changes["urgency"].lower()
1305             if self.pkg.changes["urgency"] not in cnf.ValueList("Urgency::Valid"):
1306                 self.warnings.append("%s is not a valid urgency; it will be treated as %s by testing." % \
1307                                      (self.pkg.changes["urgency"], cnf["Urgency::Default"]))
1308                 self.pkg.changes["urgency"] = cnf["Urgency::Default"]
1309
1310     ###########################################################################
1311
1312     # Sanity check the time stamps of files inside debs.
1313     # [Files in the near future cause ugly warnings and extreme time
1314     #  travel can cause errors on extraction]
1315
1316     def check_timestamps(self):
1317         Cnf = Config()
1318
1319         future_cutoff = time.time() + int(Cnf["Dinstall::FutureTimeTravelGrace"])
1320         past_cutoff = time.mktime(time.strptime(Cnf["Dinstall::PastCutoffYear"],"%Y"))
1321         tar = TarTime(future_cutoff, past_cutoff)
1322
1323         for filename, entry in self.pkg.files.items():
1324             if entry["type"] == "deb":
1325                 tar.reset()
1326                 try:
1327                     deb_file = utils.open_file(filename)
1328                     apt_inst.debExtract(deb_file, tar.callback, "control.tar.gz")
1329                     deb_file.seek(0)
1330                     try:
1331                         apt_inst.debExtract(deb_file, tar.callback, "data.tar.gz")
1332                     except SystemError, e:
1333                         # If we can't find a data.tar.gz, look for data.tar.bz2 instead.
1334                         if not re.search(r"Cannot f[ui]nd chunk data.tar.gz$", str(e)):
1335                             raise
1336                         deb_file.seek(0)
1337                         apt_inst.debExtract(deb_file,tar.callback,"data.tar.bz2")
1338
1339                     deb_file.close()
1340
1341                     future_files = tar.future_files.keys()
1342                     if future_files:
1343                         num_future_files = len(future_files)
1344                         future_file = future_files[0]
1345                         future_date = tar.future_files[future_file]
1346                         self.rejects.append("%s: has %s file(s) with a time stamp too far into the future (e.g. %s [%s])."
1347                                % (filename, num_future_files, future_file, time.ctime(future_date)))
1348
1349                     ancient_files = tar.ancient_files.keys()
1350                     if ancient_files:
1351                         num_ancient_files = len(ancient_files)
1352                         ancient_file = ancient_files[0]
1353                         ancient_date = tar.ancient_files[ancient_file]
1354                         self.rejects.append("%s: has %s file(s) with a time stamp too ancient (e.g. %s [%s])."
1355                                % (filename, num_ancient_files, ancient_file, time.ctime(ancient_date)))
1356                 except:
1357                     self.rejects.append("%s: deb contents timestamp check failed [%s: %s]" % (filename, sys.exc_type, sys.exc_value))
1358
1359     ###########################################################################
1360     def check_transition(self, session):
1361         cnf = Config()
1362
1363         sourcepkg = self.pkg.changes["source"]
1364
1365         # No sourceful upload -> no need to do anything else, direct return
1366         # We also work with unstable uploads, not experimental or those going to some
1367         # proposed-updates queue
1368         if "source" not in self.pkg.changes["architecture"] or \
1369            "unstable" not in self.pkg.changes["distribution"]:
1370             return
1371
1372         # Also only check if there is a file defined (and existant) with
1373         # checks.
1374         transpath = cnf.get("Dinstall::Reject::ReleaseTransitions", "")
1375         if transpath == "" or not os.path.exists(transpath):
1376             return
1377
1378         # Parse the yaml file
1379         sourcefile = file(transpath, 'r')
1380         sourcecontent = sourcefile.read()
1381         try:
1382             transitions = yaml.load(sourcecontent)
1383         except yaml.YAMLError, msg:
1384             # This shouldn't happen, there is a wrapper to edit the file which
1385             # checks it, but we prefer to be safe than ending up rejecting
1386             # everything.
1387             utils.warn("Not checking transitions, the transitions file is broken: %s." % (msg))
1388             return
1389
1390         # Now look through all defined transitions
1391         for trans in transitions:
1392             t = transitions[trans]
1393             source = t["source"]
1394             expected = t["new"]
1395
1396             # Will be None if nothing is in testing.
1397             current = get_source_in_suite(source, "testing", session)
1398             if current is not None:
1399                 compare = apt_pkg.VersionCompare(current.version, expected)
1400
1401             if current is None or compare < 0:
1402                 # This is still valid, the current version in testing is older than
1403                 # the new version we wait for, or there is none in testing yet
1404
1405                 # Check if the source we look at is affected by this.
1406                 if sourcepkg in t['packages']:
1407                     # The source is affected, lets reject it.
1408
1409                     rejectmsg = "%s: part of the %s transition.\n\n" % (
1410                         sourcepkg, trans)
1411
1412                     if current is not None:
1413                         currentlymsg = "at version %s" % (current.version)
1414                     else:
1415                         currentlymsg = "not present in testing"
1416
1417                     rejectmsg += "Transition description: %s\n\n" % (t["reason"])
1418
1419                     rejectmsg += "\n".join(textwrap.wrap("""Your package
1420 is part of a testing transition designed to get %s migrated (it is
1421 currently %s, we need version %s).  This transition is managed by the
1422 Release Team, and %s is the Release-Team member responsible for it.
1423 Please mail debian-release@lists.debian.org or contact %s directly if you
1424 need further assistance.  You might want to upload to experimental until this
1425 transition is done."""
1426                             % (source, currentlymsg, expected,t["rm"], t["rm"])))
1427
1428                     self.rejects.append(rejectmsg)
1429                     return
1430
1431     ###########################################################################
1432     def check_signed_by_key(self):
1433         """Ensure the .changes is signed by an authorized uploader."""
1434         session = DBConn().session()
1435
1436         self.check_transition(session)
1437
1438         (uid, uid_name, is_dm) = lookup_uid_from_fingerprint(self.pkg.changes["fingerprint"], session=session)
1439
1440         # match claimed name with actual name:
1441         if uid is None:
1442             # This is fundamentally broken but need us to refactor how we get
1443             # the UIDs/Fingerprints in order for us to fix it properly
1444             uid, uid_email = self.pkg.changes["fingerprint"], uid
1445             may_nmu, may_sponsor = 1, 1
1446             # XXX by default new dds don't have a fingerprint/uid in the db atm,
1447             #     and can't get one in there if we don't allow nmu/sponsorship
1448         elif is_dm is False:
1449             # If is_dm is False, we allow full upload rights
1450             uid_email = "%s@debian.org" % (uid)
1451             may_nmu, may_sponsor = 1, 1
1452         else:
1453             # Assume limited upload rights unless we've discovered otherwise
1454             uid_email = uid
1455             may_nmu, may_sponsor = 0, 0
1456
1457         if uid_email in [self.pkg.changes["maintaineremail"], self.pkg.changes["changedbyemail"]]:
1458             sponsored = 0
1459         elif uid_name in [self.pkg.changes["maintainername"], self.pkg.changes["changedbyname"]]:
1460             sponsored = 0
1461             if uid_name == "": sponsored = 1
1462         else:
1463             sponsored = 1
1464             if ("source" in self.pkg.changes["architecture"] and
1465                 uid_email and utils.is_email_alias(uid_email)):
1466                 sponsor_addresses = utils.gpg_get_key_addresses(self.pkg.changes["fingerprint"])
1467                 if (self.pkg.changes["maintaineremail"] not in sponsor_addresses and
1468                     self.pkg.changes["changedbyemail"] not in sponsor_addresses):
1469                     self.pkg.changes["sponsoremail"] = uid_email
1470
1471         if sponsored and not may_sponsor:
1472             self.rejects.append("%s is not authorised to sponsor uploads" % (uid))
1473
1474         if not sponsored and not may_nmu:
1475             should_reject = True
1476             highest_sid, highest_version = None, None
1477
1478             # XXX: This reimplements in SQLA what existed before but it's fundamentally fucked
1479             #      It ignores higher versions with the dm_upload_allowed flag set to false
1480             #      I'm keeping the existing behaviour for now until I've gone back and
1481             #      checked exactly what the GR says - mhy
1482             for si in get_sources_from_name(source=self.pkg.changes['source'], dm_upload_allowed=True, session=session):
1483                 if highest_version is None or apt_pkg.VersionCompare(si.version, highest_version) == 1:
1484                      highest_sid = si.source_id
1485                      highest_version = si.version
1486
1487             if highest_sid is None:
1488                 self.rejects.append("Source package %s does not have 'DM-Upload-Allowed: yes' in its most recent version" % self.pkg.changes["source"])
1489             else:
1490                 for sup in session.query(SrcUploader).join(DBSource).filter_by(source_id=highest_sid):
1491                     (rfc822, rfc2047, name, email) = sup.maintainer.get_split_maintainer()
1492                     if email == uid_email or name == uid_name:
1493                         should_reject = False
1494                         break
1495
1496             if should_reject is True:
1497                 self.rejects.append("%s is not in Maintainer or Uploaders of source package %s" % (uid, self.pkg.changes["source"]))
1498
1499             for b in self.pkg.changes["binary"].keys():
1500                 for suite in self.pkg.changes["distribution"].keys():
1501                     q = session.query(DBSource)
1502                     q = q.join(DBBinary).filter_by(package=b)
1503                     q = q.join(BinAssociation).join(Suite).filter_by(suite_name=suite)
1504
1505                     for s in q.all():
1506                         if s.source != self.pkg.changes["source"]:
1507                             self.rejects.append("%s may not hijack %s from source package %s in suite %s" % (uid, b, s, suite))
1508
1509             for f in self.pkg.files.keys():
1510                 if self.pkg.files[f].has_key("byhand"):
1511                     self.rejects.append("%s may not upload BYHAND file %s" % (uid, f))
1512                 if self.pkg.files[f].has_key("new"):
1513                     self.rejects.append("%s may not upload NEW file %s" % (uid, f))
1514
1515         session.close()
1516
1517     ###########################################################################
1518     def build_summaries(self):
1519         """ Build a summary of changes the upload introduces. """
1520
1521         (byhand, new, summary, override_summary) = self.pkg.file_summary()
1522
1523         short_summary = summary
1524
1525         # This is for direport's benefit...
1526         f = re_fdnic.sub("\n .\n", self.pkg.changes.get("changes", ""))
1527
1528         if byhand or new:
1529             summary += "Changes: " + f
1530
1531         summary += "\n\nOverride entries for your package:\n" + override_summary + "\n"
1532
1533         summary += self.announce(short_summary, 0)
1534
1535         return (summary, short_summary)
1536
1537     ###########################################################################
1538
1539     def close_bugs(self, summary, action):
1540         """
1541         Send mail to close bugs as instructed by the closes field in the changes file.
1542         Also add a line to summary if any work was done.
1543
1544         @type summary: string
1545         @param summary: summary text, as given by L{build_summaries}
1546
1547         @type action: bool
1548         @param action: Set to false no real action will be done.
1549
1550         @rtype: string
1551         @return: summary. If action was taken, extended by the list of closed bugs.
1552
1553         """
1554
1555         template = os.path.join(Config()["Dir::Templates"], 'process-unchecked.bug-close')
1556
1557         bugs = self.pkg.changes["closes"].keys()
1558
1559         if not bugs:
1560             return summary
1561
1562         bugs.sort()
1563         summary += "Closing bugs: "
1564         for bug in bugs:
1565             summary += "%s " % (bug)
1566             if action:
1567                 self.update_subst()
1568                 self.Subst["__BUG_NUMBER__"] = bug
1569                 if self.pkg.changes["distribution"].has_key("stable"):
1570                     self.Subst["__STABLE_WARNING__"] = """
1571 Note that this package is not part of the released stable Debian
1572 distribution.  It may have dependencies on other unreleased software,
1573 or other instabilities.  Please take care if you wish to install it.
1574 The update will eventually make its way into the next released Debian
1575 distribution."""
1576                 else:
1577                     self.Subst["__STABLE_WARNING__"] = ""
1578                 mail_message = utils.TemplateSubst(self.Subst, template)
1579                 utils.send_mail(mail_message)
1580
1581                 # Clear up after ourselves
1582                 del self.Subst["__BUG_NUMBER__"]
1583                 del self.Subst["__STABLE_WARNING__"]
1584
1585         if action and self.logger:
1586             self.logger.log(["closing bugs"] + bugs)
1587
1588         summary += "\n"
1589
1590         return summary
1591
1592     ###########################################################################
1593
1594     def announce(self, short_summary, action):
1595         """
1596         Send an announce mail about a new upload.
1597
1598         @type short_summary: string
1599         @param short_summary: Short summary text to include in the mail
1600
1601         @type action: bool
1602         @param action: Set to false no real action will be done.
1603
1604         @rtype: string
1605         @return: Textstring about action taken.
1606
1607         """
1608
1609         cnf = Config()
1610         announcetemplate = os.path.join(cnf["Dir::Templates"], 'process-unchecked.announce')
1611
1612         # Only do announcements for source uploads with a recent dpkg-dev installed
1613         if float(self.pkg.changes.get("format", 0)) < 1.6 or not \
1614            self.pkg.changes["architecture"].has_key("source"):
1615             return ""
1616
1617         lists_done = {}
1618         summary = ""
1619
1620         self.Subst["__SHORT_SUMMARY__"] = short_summary
1621
1622         for dist in self.pkg.changes["distribution"].keys():
1623             announce_list = cnf.Find("Suite::%s::Announce" % (dist))
1624             if announce_list == "" or lists_done.has_key(announce_list):
1625                 continue
1626
1627             lists_done[announce_list] = 1
1628             summary += "Announcing to %s\n" % (announce_list)
1629
1630             if action:
1631                 self.update_subst()
1632                 self.Subst["__ANNOUNCE_LIST_ADDRESS__"] = announce_list
1633                 if cnf.get("Dinstall::TrackingServer") and \
1634                    self.pkg.changes["architecture"].has_key("source"):
1635                     trackingsendto = "Bcc: %s@%s" % (self.pkg.changes["source"], cnf["Dinstall::TrackingServer"])
1636                     self.Subst["__ANNOUNCE_LIST_ADDRESS__"] += "\n" + trackingsendto
1637
1638                 mail_message = utils.TemplateSubst(self.Subst, announcetemplate)
1639                 utils.send_mail(mail_message)
1640
1641                 del self.Subst["__ANNOUNCE_LIST_ADDRESS__"]
1642
1643         if cnf.FindB("Dinstall::CloseBugs"):
1644             summary = self.close_bugs(summary, action)
1645
1646         del self.Subst["__SHORT_SUMMARY__"]
1647
1648         return summary
1649
1650     ###########################################################################
1651
1652     def accept (self, summary, short_summary, targetdir=None):
1653         """
1654         Accept an upload.
1655
1656         This moves all files referenced from the .changes into the I{accepted}
1657         queue, sends the accepted mail, announces to lists, closes bugs and
1658         also checks for override disparities. If enabled it will write out
1659         the version history for the BTS Version Tracking and will finally call
1660         L{queue_build}.
1661
1662         @type summary: string
1663         @param summary: Summary text
1664
1665         @type short_summary: string
1666         @param short_summary: Short summary
1667
1668         """
1669
1670         cnf = Config()
1671         stats = SummaryStats()
1672
1673         accepttemplate = os.path.join(cnf["Dir::Templates"], 'process-unchecked.accepted')
1674
1675         if targetdir is None:
1676             targetdir = cnf["Dir::Queue::Accepted"]
1677
1678         print "Accepting."
1679         if self.logger:
1680             self.logger.log(["Accepting changes", self.pkg.changes_file])
1681
1682         self.pkg.write_dot_dak(targetdir)
1683
1684         # Move all the files into the accepted directory
1685         utils.move(self.pkg.changes_file, targetdir)
1686
1687         for name, entry in sorted(self.pkg.files.items()):
1688             utils.move(name, targetdir)
1689             stats.accept_bytes += float(entry["size"])
1690
1691         stats.accept_count += 1
1692
1693         # Send accept mail, announce to lists, close bugs and check for
1694         # override disparities
1695         if not cnf["Dinstall::Options::No-Mail"]:
1696             self.update_subst()
1697             self.Subst["__SUITE__"] = ""
1698             self.Subst["__SUMMARY__"] = summary
1699             mail_message = utils.TemplateSubst(self.Subst, accepttemplate)
1700             utils.send_mail(mail_message)
1701             self.announce(short_summary, 1)
1702
1703         ## Helper stuff for DebBugs Version Tracking
1704         if cnf.Find("Dir::Queue::BTSVersionTrack"):
1705             # ??? once queue/* is cleared on *.d.o and/or reprocessed
1706             # the conditionalization on dsc["bts changelog"] should be
1707             # dropped.
1708
1709             # Write out the version history from the changelog
1710             if self.pkg.changes["architecture"].has_key("source") and \
1711                self.pkg.dsc.has_key("bts changelog"):
1712
1713                 (fd, temp_filename) = utils.temp_filename(cnf["Dir::Queue::BTSVersionTrack"], prefix=".")
1714                 version_history = os.fdopen(fd, 'w')
1715                 version_history.write(self.pkg.dsc["bts changelog"])
1716                 version_history.close()
1717                 filename = "%s/%s" % (cnf["Dir::Queue::BTSVersionTrack"],
1718                                       self.pkg.changes_file[:-8]+".versions")
1719                 os.rename(temp_filename, filename)
1720                 os.chmod(filename, 0644)
1721
1722             # Write out the binary -> source mapping.
1723             (fd, temp_filename) = utils.temp_filename(cnf["Dir::Queue::BTSVersionTrack"], prefix=".")
1724             debinfo = os.fdopen(fd, 'w')
1725             for name, entry in sorted(self.pkg.files.items()):
1726                 if entry["type"] == "deb":
1727                     line = " ".join([entry["package"], entry["version"],
1728                                      entry["architecture"], entry["source package"],
1729                                      entry["source version"]])
1730                     debinfo.write(line+"\n")
1731             debinfo.close()
1732             filename = "%s/%s" % (cnf["Dir::Queue::BTSVersionTrack"],
1733                                   self.pkg.changes_file[:-8]+".debinfo")
1734             os.rename(temp_filename, filename)
1735             os.chmod(filename, 0644)
1736
1737         # Its is Cnf["Dir::Queue::Accepted"] here, not targetdir!
1738         # <Ganneff> we do call queue_build too
1739         # <mhy> well yes, we'd have had to if we were inserting into accepted
1740         # <Ganneff> now. thats database only.
1741         # <mhy> urgh, that's going to get messy
1742         # <Ganneff> so i make the p-n call to it *also* using accepted/
1743         # <mhy> but then the packages will be in the queue_build table without the files being there
1744         # <Ganneff> as the buildd queue is only regenerated whenever unchecked runs
1745         # <mhy> ah, good point
1746         # <Ganneff> so it will work out, as unchecked move it over
1747         # <mhy> that's all completely sick
1748         # <Ganneff> yes
1749
1750         # This routine returns None on success or an error on failure
1751         res = get_or_set_queue('accepted').autobuild_upload(self.pkg, cnf["Dir::Queue::Accepted"])
1752         if res:
1753             utils.fubar(res)
1754
1755
1756     def check_override(self):
1757         """
1758         Checks override entries for validity. Mails "Override disparity" warnings,
1759         if that feature is enabled.
1760
1761         Abandons the check if
1762           - override disparity checks are disabled
1763           - mail sending is disabled
1764         """
1765
1766         cnf = Config()
1767
1768         # Abandon the check if:
1769         #  a) override disparity checks have been disabled
1770         #  b) we're not sending mail
1771         if not cnf.FindB("Dinstall::OverrideDisparityCheck") or \
1772            cnf["Dinstall::Options::No-Mail"]:
1773             return
1774
1775         summary = self.pkg.check_override()
1776
1777         if summary == "":
1778             return
1779
1780         overridetemplate = os.path.join(cnf["Dir::Templates"], 'process-unchecked.override-disparity')
1781
1782         self.update_subst()
1783         self.Subst["__SUMMARY__"] = summary
1784         mail_message = utils.TemplateSubst(self.Subst, overridetemplate)
1785         utils.send_mail(mail_message)
1786         del self.Subst["__SUMMARY__"]
1787
1788     ###########################################################################
1789
1790     def remove(self, dir=None):
1791         """
1792         Used (for instance) in p-u to remove the package from unchecked
1793         """
1794         if dir is None:
1795             os.chdir(self.pkg.directory)
1796         else:
1797             os.chdir(dir)
1798
1799         for f in self.pkg.files.keys():
1800             os.unlink(f)
1801         os.unlink(self.pkg.changes_file)
1802
1803     ###########################################################################
1804
1805     def move_to_dir (self, dest, perms=0660, changesperms=0664):
1806         """
1807         Move files to dest with certain perms/changesperms
1808         """
1809         utils.move(self.pkg.changes_file, dest, perms=changesperms)
1810         for f in self.pkg.files.keys():
1811             utils.move(f, dest, perms=perms)
1812
1813     ###########################################################################
1814
1815     def force_reject(self, reject_files):
1816         """
1817         Forcefully move files from the current directory to the
1818         reject directory.  If any file already exists in the reject
1819         directory it will be moved to the morgue to make way for
1820         the new file.
1821
1822         @type files: dict
1823         @param files: file dictionary
1824
1825         """
1826
1827         cnf = Config()
1828
1829         for file_entry in reject_files:
1830             # Skip any files which don't exist or which we don't have permission to copy.
1831             if os.access(file_entry, os.R_OK) == 0:
1832                 continue
1833
1834             dest_file = os.path.join(cnf["Dir::Queue::Reject"], file_entry)
1835
1836             try:
1837                 dest_fd = os.open(dest_file, os.O_RDWR | os.O_CREAT | os.O_EXCL, 0644)
1838             except OSError, e:
1839                 # File exists?  Let's try and move it to the morgue
1840                 if e.errno == errno.EEXIST:
1841                     morgue_file = os.path.join(cnf["Dir::Morgue"], cnf["Dir::MorgueReject"], file_entry)
1842                     try:
1843                         morgue_file = utils.find_next_free(morgue_file)
1844                     except NoFreeFilenameError:
1845                         # Something's either gone badly Pete Tong, or
1846                         # someone is trying to exploit us.
1847                         utils.warn("**WARNING** failed to move %s from the reject directory to the morgue." % (file_entry))
1848                         return
1849                     utils.move(dest_file, morgue_file, perms=0660)
1850                     try:
1851                         dest_fd = os.open(dest_file, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0644)
1852                     except OSError, e:
1853                         # Likewise
1854                         utils.warn("**WARNING** failed to claim %s in the reject directory." % (file_entry))
1855                         return
1856                 else:
1857                     raise
1858             # If we got here, we own the destination file, so we can
1859             # safely overwrite it.
1860             utils.move(file_entry, dest_file, 1, perms=0660)
1861             os.close(dest_fd)
1862
1863     ###########################################################################
1864     def do_reject (self, manual=0, reject_message="", note=""):
1865         """
1866         Reject an upload. If called without a reject message or C{manual} is
1867         true, spawn an editor so the user can write one.
1868
1869         @type manual: bool
1870         @param manual: manual or automated rejection
1871
1872         @type reject_message: string
1873         @param reject_message: A reject message
1874
1875         @return: 0
1876
1877         """
1878         # If we weren't given a manual rejection message, spawn an
1879         # editor so the user can add one in...
1880         if manual and not reject_message:
1881             (fd, temp_filename) = utils.temp_filename()
1882             temp_file = os.fdopen(fd, 'w')
1883             if len(note) > 0:
1884                 for line in note:
1885                     temp_file.write(line)
1886             temp_file.close()
1887             editor = os.environ.get("EDITOR","vi")
1888             answer = 'E'
1889             while answer == 'E':
1890                 os.system("%s %s" % (editor, temp_filename))
1891                 temp_fh = utils.open_file(temp_filename)
1892                 reject_message = "".join(temp_fh.readlines())
1893                 temp_fh.close()
1894                 print "Reject message:"
1895                 print utils.prefix_multi_line_string(reject_message,"  ",include_blank_lines=1)
1896                 prompt = "[R]eject, Edit, Abandon, Quit ?"
1897                 answer = "XXX"
1898                 while prompt.find(answer) == -1:
1899                     answer = utils.our_raw_input(prompt)
1900                     m = re_default_answer.search(prompt)
1901                     if answer == "":
1902                         answer = m.group(1)
1903                     answer = answer[:1].upper()
1904             os.unlink(temp_filename)
1905             if answer == 'A':
1906                 return 1
1907             elif answer == 'Q':
1908                 sys.exit(0)
1909
1910         print "Rejecting.\n"
1911
1912         cnf = Config()
1913
1914         reason_filename = self.pkg.changes_file[:-8] + ".reason"
1915         reason_filename = os.path.join(cnf["Dir::Queue::Reject"], reason_filename)
1916
1917         # Move all the files into the reject directory
1918         reject_files = self.pkg.files.keys() + [self.pkg.changes_file]
1919         self.force_reject(reject_files)
1920
1921         # If we fail here someone is probably trying to exploit the race
1922         # so let's just raise an exception ...
1923         if os.path.exists(reason_filename):
1924             os.unlink(reason_filename)
1925         reason_fd = os.open(reason_filename, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0644)
1926
1927         rej_template = os.path.join(cnf["Dir::Templates"], "queue.rejected")
1928
1929         self.update_subst()
1930         if not manual:
1931             self.Subst["__REJECTOR_ADDRESS__"] = cnf["Dinstall::MyEmailAddress"]
1932             self.Subst["__MANUAL_REJECT_MESSAGE__"] = ""
1933             self.Subst["__CC__"] = "X-DAK-Rejection: automatic (moo)\nX-Katie-Rejection: automatic (moo)"
1934             os.write(reason_fd, reject_message)
1935             reject_mail_message = utils.TemplateSubst(self.Subst, rej_template)
1936         else:
1937             # Build up the rejection email
1938             user_email_address = utils.whoami() + " <%s>" % (cnf["Dinstall::MyAdminAddress"])
1939             self.Subst["__REJECTOR_ADDRESS__"] = user_email_address
1940             self.Subst["__MANUAL_REJECT_MESSAGE__"] = reject_message
1941             self.Subst["__CC__"] = "Cc: " + cnf["Dinstall::MyEmailAddress"]
1942             reject_mail_message = utils.TemplateSubst(self.Subst, rej_template)
1943             # Write the rejection email out as the <foo>.reason file
1944             os.write(reason_fd, reject_mail_message)
1945
1946         del self.Subst["__REJECTOR_ADDRESS__"]
1947         del self.Subst["__MANUAL_REJECT_MESSAGE__"]
1948         del self.Subst["__CC__"]
1949
1950         os.close(reason_fd)
1951
1952         # Send the rejection mail if appropriate
1953         if not cnf["Dinstall::Options::No-Mail"]:
1954             utils.send_mail(reject_mail_message)
1955
1956         if self.logger:
1957             self.logger.log(["rejected", self.pkg.changes_file])
1958
1959         return 0
1960
1961     ################################################################################
1962     def in_override_p(self, package, component, suite, binary_type, file, session):
1963         """
1964         Check if a package already has override entries in the DB
1965
1966         @type package: string
1967         @param package: package name
1968
1969         @type component: string
1970         @param component: database id of the component
1971
1972         @type suite: int
1973         @param suite: database id of the suite
1974
1975         @type binary_type: string
1976         @param binary_type: type of the package
1977
1978         @type file: string
1979         @param file: filename we check
1980
1981         @return: the database result. But noone cares anyway.
1982
1983         """
1984
1985         cnf = Config()
1986
1987         if binary_type == "": # must be source
1988             file_type = "dsc"
1989         else:
1990             file_type = binary_type
1991
1992         # Override suite name; used for example with proposed-updates
1993         if cnf.Find("Suite::%s::OverrideSuite" % (suite)) != "":
1994             suite = cnf["Suite::%s::OverrideSuite" % (suite)]
1995
1996         result = get_override(package, suite, component, file_type, session)
1997
1998         # If checking for a source package fall back on the binary override type
1999         if file_type == "dsc" and len(result) < 1:
2000             result = get_override(package, suite, component, ['deb', 'udeb'], session)
2001
2002         # Remember the section and priority so we can check them later if appropriate
2003         if len(result) > 0:
2004             result = result[0]
2005             self.pkg.files[file]["override section"] = result.section.section
2006             self.pkg.files[file]["override priority"] = result.priority.priority
2007             return result
2008
2009         return None
2010
2011     ################################################################################
2012     def get_anyversion(self, sv_list, suite):
2013         """
2014         @type sv_list: list
2015         @param sv_list: list of (suite, version) tuples to check
2016
2017         @type suite: string
2018         @param suite: suite name
2019
2020         Description: TODO
2021         """
2022         Cnf = Config()
2023         anyversion = None
2024         anysuite = [suite] + Cnf.ValueList("Suite::%s::VersionChecks::Enhances" % (suite))
2025         for (s, v) in sv_list:
2026             if s in [ x.lower() for x in anysuite ]:
2027                 if not anyversion or apt_pkg.VersionCompare(anyversion, v) <= 0:
2028                     anyversion = v
2029
2030         return anyversion
2031
2032     ################################################################################
2033
2034     def cross_suite_version_check(self, sv_list, file, new_version, sourceful=False):
2035         """
2036         @type sv_list: list
2037         @param sv_list: list of (suite, version) tuples to check
2038
2039         @type file: string
2040         @param file: XXX
2041
2042         @type new_version: string
2043         @param new_version: XXX
2044
2045         Ensure versions are newer than existing packages in target
2046         suites and that cross-suite version checking rules as
2047         set out in the conf file are satisfied.
2048         """
2049
2050         cnf = Config()
2051
2052         # Check versions for each target suite
2053         for target_suite in self.pkg.changes["distribution"].keys():
2054             must_be_newer_than = [ i.lower() for i in cnf.ValueList("Suite::%s::VersionChecks::MustBeNewerThan" % (target_suite)) ]
2055             must_be_older_than = [ i.lower() for i in cnf.ValueList("Suite::%s::VersionChecks::MustBeOlderThan" % (target_suite)) ]
2056
2057             # Enforce "must be newer than target suite" even if conffile omits it
2058             if target_suite not in must_be_newer_than:
2059                 must_be_newer_than.append(target_suite)
2060
2061             for (suite, existent_version) in sv_list:
2062                 vercmp = apt_pkg.VersionCompare(new_version, existent_version)
2063
2064                 if suite in must_be_newer_than and sourceful and vercmp < 1:
2065                     self.rejects.append("%s: old version (%s) in %s >= new version (%s) targeted at %s." % (file, existent_version, suite, new_version, target_suite))
2066
2067                 if suite in must_be_older_than and vercmp > -1:
2068                     cansave = 0
2069
2070                     if self.pkg.changes.get('distribution-version', {}).has_key(suite):
2071                         # we really use the other suite, ignoring the conflicting one ...
2072                         addsuite = self.pkg.changes["distribution-version"][suite]
2073
2074                         add_version = self.get_anyversion(sv_list, addsuite)
2075                         target_version = self.get_anyversion(sv_list, target_suite)
2076
2077                         if not add_version:
2078                             # not add_version can only happen if we map to a suite
2079                             # that doesn't enhance the suite we're propup'ing from.
2080                             # so "propup-ver x a b c; map a d" is a problem only if
2081                             # d doesn't enhance a.
2082                             #
2083                             # i think we could always propagate in this case, rather
2084                             # than complaining. either way, this isn't a REJECT issue
2085                             #
2086                             # And - we really should complain to the dorks who configured dak
2087                             self.warnings.append("%s is mapped to, but not enhanced by %s - adding anyways" % (suite, addsuite))
2088                             self.pkg.changes.setdefault("propdistribution", {})
2089                             self.pkg.changes["propdistribution"][addsuite] = 1
2090                             cansave = 1
2091                         elif not target_version:
2092                             # not targets_version is true when the package is NEW
2093                             # we could just stick with the "...old version..." REJECT
2094                             # for this, I think.
2095                             self.rejects.append("Won't propogate NEW packages.")
2096                         elif apt_pkg.VersionCompare(new_version, add_version) < 0:
2097                             # propogation would be redundant. no need to reject though.
2098                             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))
2099                             cansave = 1
2100                         elif apt_pkg.VersionCompare(new_version, add_version) > 0 and \
2101                              apt_pkg.VersionCompare(add_version, target_version) >= 0:
2102                             # propogate!!
2103                             self.warnings.append("Propogating upload to %s" % (addsuite))
2104                             self.pkg.changes.setdefault("propdistribution", {})
2105                             self.pkg.changes["propdistribution"][addsuite] = 1
2106                             cansave = 1
2107
2108                     if not cansave:
2109                         self.reject.append("%s: old version (%s) in %s <= new version (%s) targeted at %s." % (file, existent_version, suite, new_version, target_suite))
2110
2111     ################################################################################
2112     def check_binary_against_db(self, file, session):
2113         # Ensure version is sane
2114         q = session.query(BinAssociation)
2115         q = q.join(DBBinary).filter(DBBinary.package==self.pkg.files[file]["package"])
2116         q = q.join(Architecture).filter(Architecture.arch_string.in_([self.pkg.files[file]["architecture"], 'all']))
2117
2118         self.cross_suite_version_check([ (x.suite.suite_name, x.binary.version) for x in q.all() ],
2119                                        file, self.pkg.files[file]["version"], sourceful=False)
2120
2121         # Check for any existing copies of the file
2122         q = session.query(DBBinary).filter_by(package=self.pkg.files[file]["package"])
2123         q = q.filter_by(version=self.pkg.files[file]["version"])
2124         q = q.join(Architecture).filter_by(arch_string=self.pkg.files[file]["architecture"])
2125
2126         if q.count() > 0:
2127             self.rejects.append("%s: can not overwrite existing copy already in the archive." % (file))
2128
2129     ################################################################################
2130
2131     def check_source_against_db(self, file, session):
2132         """
2133         """
2134         source = self.pkg.dsc.get("source")
2135         version = self.pkg.dsc.get("version")
2136
2137         # Ensure version is sane
2138         q = session.query(SrcAssociation)
2139         q = q.join(DBSource).filter(DBSource.source==source)
2140
2141         self.cross_suite_version_check([ (x.suite.suite_name, x.source.version) for x in q.all() ],
2142                                        file, version, sourceful=True)
2143
2144     ################################################################################
2145     def check_dsc_against_db(self, file, session):
2146         """
2147
2148         @warning: NB: this function can remove entries from the 'files' index [if
2149          the orig tarball is a duplicate of the one in the archive]; if
2150          you're iterating over 'files' and call this function as part of
2151          the loop, be sure to add a check to the top of the loop to
2152          ensure you haven't just tried to dereference the deleted entry.
2153
2154         """
2155
2156         Cnf = Config()
2157         self.pkg.orig_files = {} # XXX: do we need to clear it?
2158         orig_files = self.pkg.orig_files
2159
2160         # Try and find all files mentioned in the .dsc.  This has
2161         # to work harder to cope with the multiple possible
2162         # locations of an .orig.tar.gz.
2163         # The ordering on the select is needed to pick the newest orig
2164         # when it exists in multiple places.
2165         for dsc_name, dsc_entry in self.pkg.dsc_files.items():
2166             found = None
2167             if self.pkg.files.has_key(dsc_name):
2168                 actual_md5 = self.pkg.files[dsc_name]["md5sum"]
2169                 actual_size = int(self.pkg.files[dsc_name]["size"])
2170                 found = "%s in incoming" % (dsc_name)
2171
2172                 # Check the file does not already exist in the archive
2173                 ql = get_poolfile_like_name(dsc_name, session)
2174
2175                 # Strip out anything that isn't '%s' or '/%s$'
2176                 for i in ql:
2177                     if not i.filename.endswith(dsc_name):
2178                         ql.remove(i)
2179
2180                 # "[dak] has not broken them.  [dak] has fixed a
2181                 # brokenness.  Your crappy hack exploited a bug in
2182                 # the old dinstall.
2183                 #
2184                 # "(Come on!  I thought it was always obvious that
2185                 # one just doesn't release different files with
2186                 # the same name and version.)"
2187                 #                        -- ajk@ on d-devel@l.d.o
2188
2189                 if len(ql) > 0:
2190                     # Ignore exact matches for .orig.tar.gz
2191                     match = 0
2192                     if re_is_orig_source.match(dsc_name):
2193                         for i in ql:
2194                             if self.pkg.files.has_key(dsc_name) and \
2195                                int(self.pkg.files[dsc_name]["size"]) == int(i.filesize) and \
2196                                self.pkg.files[dsc_name]["md5sum"] == i.md5sum:
2197                                 self.warnings.append("ignoring %s, since it's already in the archive." % (dsc_name))
2198                                 # TODO: Don't delete the entry, just mark it as not needed
2199                                 # This would fix the stupidity of changing something we often iterate over
2200                                 # whilst we're doing it
2201                                 del self.pkg.files[dsc_name]
2202                                 if not orig_files.has_key(dsc_name):
2203                                     orig_files[dsc_name] = {}
2204                                 orig_files[dsc_name]["path"] = os.path.join(i.location.path, i.filename)
2205                                 match = 1
2206
2207                     if not match:
2208                         self.rejects.append("can not overwrite existing copy of '%s' already in the archive." % (dsc_name))
2209
2210             elif re_is_orig_source.match(dsc_name):
2211                 # Check in the pool
2212                 ql = get_poolfile_like_name(dsc_name, session)
2213
2214                 # Strip out anything that isn't '%s' or '/%s$'
2215                 # TODO: Shouldn't we just search for things which end with our string explicitly in the SQL?
2216                 for i in ql:
2217                     if not i.filename.endswith(dsc_name):
2218                         ql.remove(i)
2219
2220                 if len(ql) > 0:
2221                     # Unfortunately, we may get more than one match here if,
2222                     # for example, the package was in potato but had an -sa
2223                     # upload in woody.  So we need to choose the right one.
2224
2225                     # default to something sane in case we don't match any or have only one
2226                     x = ql[0]
2227
2228                     if len(ql) > 1:
2229                         for i in ql:
2230                             old_file = os.path.join(i.location.path, i.filename)
2231                             old_file_fh = utils.open_file(old_file)
2232                             actual_md5 = apt_pkg.md5sum(old_file_fh)
2233                             old_file_fh.close()
2234                             actual_size = os.stat(old_file)[stat.ST_SIZE]
2235                             if actual_md5 == dsc_entry["md5sum"] and actual_size == int(dsc_entry["size"]):
2236                                 x = i
2237
2238                     old_file = os.path.join(i.location.path, i.filename)
2239                     old_file_fh = utils.open_file(old_file)
2240                     actual_md5 = apt_pkg.md5sum(old_file_fh)
2241                     old_file_fh.close()
2242                     actual_size = os.stat(old_file)[stat.ST_SIZE]
2243                     found = old_file
2244                     suite_type = x.location.archive_type
2245                     # need this for updating dsc_files in install()
2246                     dsc_entry["files id"] = x.file_id
2247                     # See install() in process-accepted...
2248                     if not orig_files.has_key(dsc_name):
2249                         orig_files[dsc_name] = {}
2250                     orig_files[dsc_name]["id"] = x.file_id
2251                     orig_files[dsc_name]["path"] = old_file
2252                     orig_files[dsc_name]["location"] = x.location.location_id
2253                 else:
2254                     # TODO: Record the queues and info in the DB so we don't hardcode all this crap
2255                     # Not there? Check the queue directories...
2256                     for directory in [ "Accepted", "New", "Byhand", "ProposedUpdates", "OldProposedUpdates", "Embargoed", "Unembargoed" ]:
2257                         if not Cnf.has_key("Dir::Queue::%s" % (directory)):
2258                             continue
2259                         in_otherdir = os.path.join(Cnf["Dir::Queue::%s" % (directory)], dsc_name)
2260                         if os.path.exists(in_otherdir):
2261                             in_otherdir_fh = utils.open_file(in_otherdir)
2262                             actual_md5 = apt_pkg.md5sum(in_otherdir_fh)
2263                             in_otherdir_fh.close()
2264                             actual_size = os.stat(in_otherdir)[stat.ST_SIZE]
2265                             found = in_otherdir
2266                             if not orig_files.has_key(dsc_name):
2267                                 orig_files[dsc_name] = {}
2268                             orig_files[dsc_name]["path"] = in_otherdir
2269
2270                     if not found:
2271                         self.rejects.append("%s refers to %s, but I can't find it in the queue or in the pool." % (file, dsc_name))
2272                         continue
2273             else:
2274                 self.rejects.append("%s refers to %s, but I can't find it in the queue." % (file, dsc_name))
2275                 continue
2276             if actual_md5 != dsc_entry["md5sum"]:
2277                 self.rejects.append("md5sum for %s doesn't match %s." % (found, file))
2278             if actual_size != int(dsc_entry["size"]):
2279                 self.rejects.append("size for %s doesn't match %s." % (found, file))
2280
2281     ################################################################################
2282     def accepted_checks(self, overwrite_checks, session):
2283         # Recheck anything that relies on the database; since that's not
2284         # frozen between accept and our run time when called from p-a.
2285
2286         # overwrite_checks is set to False when installing to stable/oldstable
2287
2288         propogate={}
2289         nopropogate={}
2290
2291         # Find the .dsc (again)
2292         dsc_filename = None
2293         for f in self.pkg.files.keys():
2294             if self.pkg.files[f]["type"] == "dsc":
2295                 dsc_filename = f
2296
2297         for checkfile in self.pkg.files.keys():
2298             # The .orig.tar.gz can disappear out from under us is it's a
2299             # duplicate of one in the archive.
2300             if not self.pkg.files.has_key(checkfile):
2301                 continue
2302
2303             entry = self.pkg.files[checkfile]
2304
2305             # Check that the source still exists
2306             if entry["type"] == "deb":
2307                 source_version = entry["source version"]
2308                 source_package = entry["source package"]
2309                 if not self.pkg.changes["architecture"].has_key("source") \
2310                    and not source_exists(source_package, source_version,  self.pkg.changes["distribution"].keys()):
2311                     self.rejects.append("no source found for %s %s (%s)." % (source_package, source_version, checkfile))
2312
2313             # Version and file overwrite checks
2314             if overwrite_checks:
2315                 if entry["type"] == "deb":
2316                     self.check_binary_against_db(checkfile, session)
2317                 elif entry["type"] == "dsc":
2318                     self.check_source_against_db(checkfile, session)
2319                     self.check_dsc_against_db(dsc_filename, session)
2320
2321             # propogate in the case it is in the override tables:
2322             for suite in self.pkg.changes.get("propdistribution", {}).keys():
2323                 if self.in_override_p(entry["package"], entry["component"], suite, entry.get("dbtype",""), checkfile, session):
2324                     propogate[suite] = 1
2325                 else:
2326                     nopropogate[suite] = 1
2327
2328         for suite in propogate.keys():
2329             if suite in nopropogate:
2330                 continue
2331             self.pkg.changes["distribution"][suite] = 1
2332
2333         for checkfile in self.pkg.files.keys():
2334             # Check the package is still in the override tables
2335             for suite in self.pkg.changes["distribution"].keys():
2336                 if not self.in_override_p(entry["package"], entry["component"], suite, entry.get("dbtype",""), checkfile, session):
2337                     self.rejects.append("%s is NEW for %s." % (checkfile, suite))
2338
2339     ################################################################################
2340     # This is not really a reject, but an unaccept, but since a) the code for
2341     # that is non-trivial (reopen bugs, unannounce etc.), b) this should be
2342     # extremely rare, for now we'll go with whining at our admin folks...
2343
2344     def do_unaccept(self):
2345         cnf = Config()
2346
2347         self.update_subst()
2348         self.Subst["__REJECTOR_ADDRESS__"] = cnf["Dinstall::MyEmailAddress"]
2349         self.Subst["__REJECT_MESSAGE__"] = self.package_info()
2350         self.Subst["__CC__"] = "Cc: " + cnf["Dinstall::MyEmailAddress"]
2351         self.Subst["__BCC__"] = "X-DAK: dak process-accepted\nX-Katie: $Revision: 1.18 $"
2352         if cnf.has_key("Dinstall::Bcc"):
2353             self.Subst["__BCC__"] += "\nBcc: %s" % (cnf["Dinstall::Bcc"])
2354
2355         template = os.path.join(cnf["Dir::Templates"], "process-accepted.unaccept")
2356
2357         reject_mail_message = utils.TemplateSubst(self.Subst, template)
2358
2359         # Write the rejection email out as the <foo>.reason file
2360         reason_filename = os.path.basename(self.pkg.changes_file[:-8]) + ".reason"
2361         reject_filename = os.path.join(cnf["Dir::Queue::Reject"], reason_filename)
2362
2363         # If we fail here someone is probably trying to exploit the race
2364         # so let's just raise an exception ...
2365         if os.path.exists(reject_filename):
2366             os.unlink(reject_filename)
2367
2368         fd = os.open(reject_filename, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0644)
2369         os.write(fd, reject_mail_message)
2370         os.close(fd)
2371
2372         utils.send_mail(reject_mail_message)
2373
2374         del self.Subst["__REJECTOR_ADDRESS__"]
2375         del self.Subst["__REJECT_MESSAGE__"]
2376         del self.Subst["__CC__"]
2377
2378     ################################################################################
2379     # If any file of an upload has a recent mtime then chances are good
2380     # the file is still being uploaded.
2381
2382     def upload_too_new(self):
2383         cnf = Config()
2384         too_new = False
2385         # Move back to the original directory to get accurate time stamps
2386         cwd = os.getcwd()
2387         os.chdir(self.pkg.directory)
2388         file_list = self.pkg.files.keys()
2389         file_list.extend(self.pkg.dsc_files.keys())
2390         file_list.append(self.pkg.changes_file)
2391         for f in file_list:
2392             try:
2393                 last_modified = time.time()-os.path.getmtime(f)
2394                 if last_modified < int(cnf["Dinstall::SkipTime"]):
2395                     too_new = True
2396                     break
2397             except:
2398                 pass
2399
2400         os.chdir(cwd)
2401         return too_new