queue.py 101.2 KB
Newer Older
J
New.  
James Troup 已提交
1
#!/usr/bin/env python
2
# vim:set et sw=4:
J
New.  
James Troup 已提交
3

J
Joerg Jaspert 已提交
4 5 6 7 8 9 10 11
"""
Queue utility functions for dak

@contact: Debian FTP Master <ftpmaster@debian.org>
@copyright: 2001 - 2006 James Troup <james@nocrew.org>
@copyright: 2009  Joerg Jaspert <joerg@debian.org>
@license: GNU General Public License version 2 or later
"""
J
New.  
James Troup 已提交
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28

# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA

###############################################################################

J
Joerg Jaspert 已提交
29 30 31 32 33 34 35 36 37 38
import cPickle
import errno
import os
import pg
import stat
import sys
import time
import apt_inst
import apt_pkg
import utils
M
Mark Hymers 已提交
39 40
import commands
import shutil
41
import textwrap
J
Joerg Jaspert 已提交
42
import tempfile
43
from types import *
44

45 46
import yaml

J
Joerg Jaspert 已提交
47
from dak_exceptions import *
48
from changes import *
49
from regexes import *
50
from config import Config
51
from holding import Holding
52
from dbconn import *
53
from summarystats import SummaryStats
54 55
from utils import parse_changes
from textutils import fix_maintainer
M
Mark Hymers 已提交
56
from binary import Binary
J
New.  
James Troup 已提交
57 58

###############################################################################
59

M
Mark Hymers 已提交
60
def get_type(f, session):
61 62 63 64 65 66
    """
    Get the file type of C{f}

    @type f: dict
    @param f: file entry from Changes object

M
Mark Hymers 已提交
67 68 69
    @type session: SQLA Session
    @param session: SQL Alchemy session object

70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
    @rtype: string
    @return: filetype

    """
    # Determine the type
    if f.has_key("dbtype"):
        file_type = file["dbtype"]
    elif f["type"] in [ "orig.tar.gz", "orig.tar.bz2", "tar.gz", "tar.bz2", "diff.gz", "diff.bz2", "dsc" ]:
        file_type = "dsc"
    else:
        utils.fubar("invalid type (%s) for new.  Dazed, confused and sure as heck not continuing." % (file_type))

    # Validate the override type
    type_id = get_override_type(file_type, session)
    if type_id is None:
        utils.fubar("invalid type (%s) for new.  Say wha?" % (file_type))

    return file_type

################################################################################

91 92
# Determine what parts in a .changes are NEW

93
def determine_new(changes, files, warn=1):
J
Joerg Jaspert 已提交
94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
    """
    Determine what parts in a C{changes} file are NEW.

    @type changes: Upload.Pkg.changes dict
    @param changes: Changes dictionary

    @type files: Upload.Pkg.files dict
    @param files: Files dictionary

    @type warn: bool
    @param warn: Warn if overrides are added for (old)stable

    @rtype: dict
    @return: dictionary of NEW components.

    """
110 111
    new = {}

112 113
    session = DBConn().session()

114
    # Build up a list of potentially new things
115
    for name, f in files.items():
116 117 118 119 120 121
        # Skip byhand elements
        if f["type"] == "byhand":
            continue
        pkg = f["package"]
        priority = f["priority"]
        section = f["section"]
M
Mark Hymers 已提交
122
        file_type = get_type(f, session)
123 124
        component = f["component"]

J
Joerg Jaspert 已提交
125
        if file_type == "dsc":
126
            priority = "source"
127

128 129 130 131
        if not new.has_key(pkg):
            new[pkg] = {}
            new[pkg]["priority"] = priority
            new[pkg]["section"] = section
J
Joerg Jaspert 已提交
132
            new[pkg]["type"] = file_type
133 134 135 136
            new[pkg]["component"] = component
            new[pkg]["files"] = []
        else:
            old_type = new[pkg]["type"]
J
Joerg Jaspert 已提交
137
            if old_type != file_type:
138 139 140 141
                # source gets trumped by deb or udeb
                if old_type == "dsc":
                    new[pkg]["priority"] = priority
                    new[pkg]["section"] = section
J
Joerg Jaspert 已提交
142
                    new[pkg]["type"] = file_type
143
                    new[pkg]["component"] = component
144 145 146

        new[pkg]["files"].append(name)

147 148 149 150 151
        if f.has_key("othercomponents"):
            new[pkg]["othercomponents"] = f["othercomponents"]

    for suite in changes["suite"].keys():
        for pkg in new.keys():
152 153
            ql = get_override(pkg, suite, new[pkg]["component"], new[pkg]["type"], session)
            if len(ql) > 0:
J
Joerg Jaspert 已提交
154 155 156
                for file_entry in new[pkg]["files"]:
                    if files[file_entry].has_key("new"):
                        del files[file_entry]["new"]
157 158 159
                del new[pkg]

    if warn:
160 161 162
        for s in ['stable', 'oldstable']:
            if changes["suite"].has_key(s):
                print "WARNING: overrides will be added for %s!" % s
163 164 165 166
        for pkg in new.keys():
            if new[pkg].has_key("othercomponents"):
                print "WARNING: %s already present in %s distribution." % (pkg, new[pkg]["othercomponents"])

M
Mark Hymers 已提交
167 168
    session.close()

169 170 171 172 173
    return new

################################################################################

def check_valid(new):
J
Joerg Jaspert 已提交
174 175 176 177 178 179 180 181 182 183 184
    """
    Check if section and priority for NEW packages exist in database.
    Additionally does sanity checks:
      - debian-installer packages have to be udeb (or source)
      - non debian-installer packages can not be udeb
      - source priority can only be assigned to dsc file types

    @type new: dict
    @param new: Dict of new packages with their section, priority and type.

    """
185
    for pkg in new.keys():
186 187
        section_name = new[pkg]["section"]
        priority_name = new[pkg]["priority"]
J
Joerg Jaspert 已提交
188
        file_type = new[pkg]["type"]
189 190 191 192 193 194 195 196 197 198 199 200 201

        section = get_section(section_name)
        if section is None:
            new[pkg]["section id"] = -1
        else:
            new[pkg]["section id"] = section.section_id

        priority = get_priority(priority_name)
        if priority is None:
            new[pkg]["priority id"] = -1
        else:
            new[pkg]["priority id"] = priority.priority_id

202
        # Sanity checks
203 204 205 206 207
        di = section_name.find("debian-installer") != -1

        # If d-i, we must be udeb and vice-versa
        if     (di and file_type not in ("udeb", "dsc")) or \
           (not di and file_type == "udeb"):
208
            new[pkg]["section id"] = -1
209 210

        # If dsc we need to be source and vice-versa
J
Joerg Jaspert 已提交
211 212
        if (priority == "source" and file_type != "dsc") or \
           (priority != "source" and file_type == "dsc"):
213 214
            new[pkg]["priority id"] = -1

J
New.  
James Troup 已提交
215 216
###############################################################################

217 218 219 220 221 222
def lookup_uid_from_fingerprint(fpr, session):
    uid = None
    uid_name = ""
    # This is a stupid default, but see the comments below
    is_dm = False

M
Mark Hymers 已提交
223
    user = get_uid_from_fingerprint(fpr, session)
224 225 226 227 228 229 230 231 232

    if user is not None:
        uid = user.uid
        if user.name is None:
            uid_name = ''
        else:
            uid_name = user.name

        # Check the relevant fingerprint (which we have to have)
M
Mark Hymers 已提交
233 234
        for f in user.fingerprint:
            if f.fingerprint == fpr:
235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
                is_dm = f.keyring.debian_maintainer
                break

    return (uid, uid_name, is_dm)

###############################################################################

# Used by Upload.check_timestamps
class TarTime(object):
    def __init__(self, future_cutoff, past_cutoff):
        self.reset()
        self.future_cutoff = future_cutoff
        self.past_cutoff = past_cutoff

    def reset(self):
        self.future_files = {}
        self.ancient_files = {}

    def callback(self, Kind, Name, Link, Mode, UID, GID, Size, MTime, Major, Minor):
        if MTime > self.future_cutoff:
            self.future_files[Name] = MTime
        if MTime < self.past_cutoff:
            self.ancient_files[Name] = MTime

###############################################################################

261
class Upload(object):
J
Joerg Jaspert 已提交
262 263
    """
    Everything that has to do with an upload processed.
J
New.  
James Troup 已提交
264

J
Joerg Jaspert 已提交
265
    """
266
    def __init__(self):
M
Mark Hymers 已提交
267
        self.logger = None
268 269
        self.pkg = Changes()
        self.reset()
J
New.  
James Troup 已提交
270 271 272

    ###########################################################################

273 274
    def reset (self):
        """ Reset a number of internal variables."""
275

276
        # Initialize the substitution template map
277 278 279 280 281 282
        cnf = Config()
        self.Subst = {}
        self.Subst["__ADMIN_ADDRESS__"] = cnf["Dinstall::MyAdminAddress"]
        self.Subst["__BUG_SERVER__"] = cnf["Dinstall::BugServer"]
        self.Subst["__DISTRO__"] = cnf["Dinstall::MyDistribution"]
        self.Subst["__DAK_ADDRESS__"] = cnf["Dinstall::MyEmailAddress"]
283

284 285 286 287
        self.rejects = []
        self.warnings = []
        self.notes = []

288
        self.pkg.reset()
J
New.  
James Troup 已提交
289

290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306
    def package_info(self):
        msg = ''

        if len(self.rejects) > 0:
            msg += "Reject Reasons:\n"
            msg += "\n".join(self.rejects)

        if len(self.warnings) > 0:
            msg += "Warnings:\n"
            msg += "\n".join(self.warnings)

        if len(self.notes) > 0:
            msg += "Notes:\n"
            msg += "\n".join(self.notes)

        return msg

J
New.  
James Troup 已提交
307
    ###########################################################################
308
    def update_subst(self):
J
Joerg Jaspert 已提交
309 310
        """ Set up the per-package template substitution mappings """

311 312
        cnf = Config()

313
        # If 'dak process-unchecked' crashed out in the right place, architecture may still be a string.
314
        if not self.pkg.changes.has_key("architecture") or not \
M
Mark Hymers 已提交
315
           isinstance(self.pkg.changes["architecture"], DictType):
316 317
            self.pkg.changes["architecture"] = { "Unknown" : "" }

318
        # and maintainer2047 may not exist.
319 320
        if not self.pkg.changes.has_key("maintainer2047"):
            self.pkg.changes["maintainer2047"] = cnf["Dinstall::MyEmailAddress"]
J
New.  
James Troup 已提交
321

322 323 324
        self.Subst["__ARCHITECTURE__"] = " ".join(self.pkg.changes["architecture"].keys())
        self.Subst["__CHANGES_FILENAME__"] = os.path.basename(self.pkg.changes_file)
        self.Subst["__FILE_CONTENTS__"] = self.pkg.changes.get("filecontents", "")
J
New.  
James Troup 已提交
325 326

        # For source uploads the Changed-By field wins; otherwise Maintainer wins.
327 328 329 330 331
        if self.pkg.changes["architecture"].has_key("source") and \
           self.pkg.changes["changedby822"] != "" and \
           (self.pkg.changes["changedby822"] != self.pkg.changes["maintainer822"]):

            self.Subst["__MAINTAINER_FROM__"] = self.pkg.changes["changedby2047"]
M
Mark Hymers 已提交
332
            self.Subst["__MAINTAINER_TO__"] = "%s, %s" % (self.pkg.changes["changedby2047"], self.pkg.changes["maintainer2047"])
333
            self.Subst["__MAINTAINER__"] = self.pkg.changes.get("changed-by", "Unknown")
J
New.  
James Troup 已提交
334
        else:
335 336 337
            self.Subst["__MAINTAINER_FROM__"] = self.pkg.changes["maintainer2047"]
            self.Subst["__MAINTAINER_TO__"] = self.pkg.changes["maintainer2047"]
            self.Subst["__MAINTAINER__"] = self.pkg.changes.get("maintainer", "Unknown")
J
Joerg Jaspert 已提交
338

339 340
        if "sponsoremail" in self.pkg.changes:
            self.Subst["__MAINTAINER_TO__"] += ", %s" % self.pkg.changes["sponsoremail"]
J
Joerg Jaspert 已提交
341

342 343
        if cnf.has_key("Dinstall::TrackingServer") and self.pkg.changes.has_key("source"):
            self.Subst["__MAINTAINER_TO__"] += "\nBcc: %s@%s" % (self.pkg.changes["source"], cnf["Dinstall::TrackingServer"])
J
New.  
James Troup 已提交
344

345
        # Apply any global override of the Maintainer field
346 347 348
        if cnf.get("Dinstall::OverrideMaintainer"):
            self.Subst["__MAINTAINER_TO__"] = cnf["Dinstall::OverrideMaintainer"]
            self.Subst["__MAINTAINER_FROM__"] = cnf["Dinstall::OverrideMaintainer"]
349

350
        self.Subst["__REJECT_MESSAGE__"] = self.package_info()
351 352
        self.Subst["__SOURCE__"] = self.pkg.changes.get("source", "Unknown")
        self.Subst["__VERSION__"] = self.pkg.changes.get("version", "Unknown")
J
New.  
James Troup 已提交
353

354 355 356 357 358 359 360 361 362
    ###########################################################################
    def load_changes(self, filename):
        """
        @rtype boolean
        @rvalue: whether the changes file was valid or not.  We may want to
                 reject even if this is True (see what gets put in self.rejects).
                 This is simply to prevent us even trying things later which will
                 fail because we couldn't properly parse the file.
        """
M
Mark Hymers 已提交
363
        Cnf = Config()
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
        self.pkg.changes_file = filename

        # Parse the .changes field into a dictionary
        try:
            self.pkg.changes.update(parse_changes(filename))
        except CantOpenError:
            self.rejects.append("%s: can't read file." % (filename))
            return False
        except ParseChangesError, line:
            self.rejects.append("%s: parse error, can't grok: %s." % (filename, line))
            return False
        except ChangesUnicodeError:
            self.rejects.append("%s: changes file not proper utf-8" % (filename))
            return False

        # Parse the Files field from the .changes into another dictionary
        try:
M
Mark Hymers 已提交
381
            self.pkg.files.update(utils.build_file_list(self.pkg.changes))
382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456
        except ParseChangesError, line:
            self.rejects.append("%s: parse error, can't grok: %s." % (filename, line))
            return False
        except UnknownFormatError, format:
            self.rejects.append("%s: unknown format '%s'." % (filename, format))
            return False

        # Check for mandatory fields
        for i in ("distribution", "source", "binary", "architecture",
                  "version", "maintainer", "files", "changes", "description"):
            if not self.pkg.changes.has_key(i):
                # Avoid undefined errors later
                self.rejects.append("%s: Missing mandatory field `%s'." % (filename, i))
                return False

        # Strip a source version in brackets from the source field
        if re_strip_srcver.search(self.pkg.changes["source"]):
            self.pkg.changes["source"] = re_strip_srcver.sub('', self.pkg.changes["source"])

        # Ensure the source field is a valid package name.
        if not re_valid_pkg_name.match(self.pkg.changes["source"]):
            self.rejects.append("%s: invalid source name '%s'." % (filename, self.pkg.changes["source"]))

        # Split multi-value fields into a lower-level dictionary
        for i in ("architecture", "distribution", "binary", "closes"):
            o = self.pkg.changes.get(i, "")
            if o != "":
                del self.pkg.changes[i]

            self.pkg.changes[i] = {}

            for j in o.split():
                self.pkg.changes[i][j] = 1

        # Fix the Maintainer: field to be RFC822/2047 compatible
        try:
            (self.pkg.changes["maintainer822"],
             self.pkg.changes["maintainer2047"],
             self.pkg.changes["maintainername"],
             self.pkg.changes["maintaineremail"]) = \
                   fix_maintainer (self.pkg.changes["maintainer"])
        except ParseMaintError, msg:
            self.rejects.append("%s: Maintainer field ('%s') failed to parse: %s" \
                   % (filename, changes["maintainer"], msg))

        # ...likewise for the Changed-By: field if it exists.
        try:
            (self.pkg.changes["changedby822"],
             self.pkg.changes["changedby2047"],
             self.pkg.changes["changedbyname"],
             self.pkg.changes["changedbyemail"]) = \
                   fix_maintainer (self.pkg.changes.get("changed-by", ""))
        except ParseMaintError, msg:
            self.pkg.changes["changedby822"] = ""
            self.pkg.changes["changedby2047"] = ""
            self.pkg.changes["changedbyname"] = ""
            self.pkg.changes["changedbyemail"] = ""

            self.rejects.append("%s: Changed-By field ('%s') failed to parse: %s" \
                   % (filename, changes["changed-by"], msg))

        # Ensure all the values in Closes: are numbers
        if self.pkg.changes.has_key("closes"):
            for i in self.pkg.changes["closes"].keys():
                if re_isanum.match (i) == None:
                    self.rejects.append(("%s: `%s' from Closes field isn't a number." % (filename, i)))

        # chopversion = no epoch; chopversion2 = no epoch and no revision (e.g. for .orig.tar.gz comparison)
        self.pkg.changes["chopversion"] = re_no_epoch.sub('', self.pkg.changes["version"])
        self.pkg.changes["chopversion2"] = re_no_revision.sub('', self.pkg.changes["chopversion"])

        # Check there isn't already a changes file of the same name in one
        # of the queue directories.
        base_filename = os.path.basename(filename)
        for d in [ "Accepted", "Byhand", "Done", "New", "ProposedUpdates", "OldProposedUpdates" ]:
M
Mark Hymers 已提交
457
            if os.path.exists(os.path.join(Cnf["Dir::Queue::%s" % (d) ], base_filename)):
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492
                self.rejects.append("%s: a file with this name already exists in the %s directory." % (base_filename, d))

        # Check the .changes is non-empty
        if not self.pkg.files:
            self.rejects.append("%s: nothing to do (Files field is empty)." % (base_filename))
            return False

        # Changes was syntactically valid even if we'll reject
        return True

    ###########################################################################

    def check_distributions(self):
        "Check and map the Distribution field"

        Cnf = Config()

        # Handle suite mappings
        for m in Cnf.ValueList("SuiteMappings"):
            args = m.split()
            mtype = args[0]
            if mtype == "map" or mtype == "silent-map":
                (source, dest) = args[1:3]
                if self.pkg.changes["distribution"].has_key(source):
                    del self.pkg.changes["distribution"][source]
                    self.pkg.changes["distribution"][dest] = 1
                    if mtype != "silent-map":
                        self.notes.append("Mapping %s to %s." % (source, dest))
                if self.pkg.changes.has_key("distribution-version"):
                    if self.pkg.changes["distribution-version"].has_key(source):
                        self.pkg.changes["distribution-version"][source]=dest
            elif mtype == "map-unreleased":
                (source, dest) = args[1:3]
                if self.pkg.changes["distribution"].has_key(source):
                    for arch in self.pkg.changes["architecture"].keys():
M
Mark Hymers 已提交
493
                        if arch not in [ a.arch_string for a in get_suite_architectures(source) ]:
494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524
                            self.notes.append("Mapping %s to %s for unreleased architecture %s." % (source, dest, arch))
                            del self.pkg.changes["distribution"][source]
                            self.pkg.changes["distribution"][dest] = 1
                            break
            elif mtype == "ignore":
                suite = args[1]
                if self.pkg.changes["distribution"].has_key(suite):
                    del self.pkg.changes["distribution"][suite]
                    self.warnings.append("Ignoring %s as a target suite." % (suite))
            elif mtype == "reject":
                suite = args[1]
                if self.pkg.changes["distribution"].has_key(suite):
                    self.rejects.append("Uploads to %s are not accepted." % (suite))
            elif mtype == "propup-version":
                # give these as "uploaded-to(non-mapped) suites-to-add-when-upload-obsoletes"
                #
                # changes["distribution-version"] looks like: {'testing': 'testing-proposed-updates'}
                if self.pkg.changes["distribution"].has_key(args[1]):
                    self.pkg.changes.setdefault("distribution-version", {})
                    for suite in args[2:]:
                        self.pkg.changes["distribution-version"][suite] = suite

        # Ensure there is (still) a target distribution
        if len(self.pkg.changes["distribution"].keys()) < 1:
            self.rejects.append("No valid distribution remaining.")

        # Ensure target distributions exist
        for suite in self.pkg.changes["distribution"].keys():
            if not Cnf.has_key("Suite::%s" % (suite)):
                self.rejects.append("Unknown distribution `%s'." % (suite))

J
New.  
James Troup 已提交
525 526
    ###########################################################################

527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617
    def binary_file_checks(self, f, session):
        cnf = Config()
        entry = self.pkg.files[f]

        # Extract package control information
        deb_file = utils.open_file(f)
        try:
            control = apt_pkg.ParseSection(apt_inst.debExtractControl(deb_file))
        except:
            self.rejects.append("%s: debExtractControl() raised %s." % (f, sys.exc_type))
            deb_file.close()
            # Can't continue, none of the checks on control would work.
            return

        # Check for mandantory "Description:"
        deb_file.seek(0)
        try:
            apt_pkg.ParseSection(apt_inst.debExtractControl(deb_file))["Description"] + '\n'
        except:
            self.rejects.append("%s: Missing Description in binary package" % (f))
            return

        deb_file.close()

        # Check for mandatory fields
        for field in [ "Package", "Architecture", "Version" ]:
            if control.Find(field) == None:
                # Can't continue
                self.rejects.append("%s: No %s field in control." % (f, field))
                return

        # Ensure the package name matches the one give in the .changes
        if not self.pkg.changes["binary"].has_key(control.Find("Package", "")):
            self.rejects.append("%s: control file lists name as `%s', which isn't in changes file." % (f, control.Find("Package", "")))

        # Validate the package field
        package = control.Find("Package")
        if not re_valid_pkg_name.match(package):
            self.rejects.append("%s: invalid package name '%s'." % (f, package))

        # Validate the version field
        version = control.Find("Version")
        if not re_valid_version.match(version):
            self.rejects.append("%s: invalid version number '%s'." % (f, version))

        # Ensure the architecture of the .deb is one we know about.
        default_suite = cnf.get("Dinstall::DefaultSuite", "Unstable")
        architecture = control.Find("Architecture")
        upload_suite = self.pkg.changes["distribution"].keys()[0]

        if      architecture not in [a.arch_string for a in get_suite_architectures(default_suite, session)] \
            and architecture not in [a.arch_string for a in get_suite_architectures(upload_suite, session)]:
            self.rejects.append("Unknown architecture '%s'." % (architecture))

        # Ensure the architecture of the .deb is one of the ones
        # listed in the .changes.
        if not self.pkg.changes["architecture"].has_key(architecture):
            self.rejects.append("%s: control file lists arch as `%s', which isn't in changes file." % (f, architecture))

        # Sanity-check the Depends field
        depends = control.Find("Depends")
        if depends == '':
            self.rejects.append("%s: Depends field is empty." % (f))

        # Sanity-check the Provides field
        provides = control.Find("Provides")
        if provides:
            provide = re_spacestrip.sub('', provides)
            if provide == '':
                self.rejects.append("%s: Provides field is empty." % (f))
            prov_list = provide.split(",")
            for prov in prov_list:
                if not re_valid_pkg_name.match(prov):
                    self.rejects.append("%s: Invalid Provides field content %s." % (f, prov))

        # Check the section & priority match those given in the .changes (non-fatal)
        if     control.Find("Section") and entry["section"] != "" \
           and entry["section"] != control.Find("Section"):
            self.warnings.append("%s control file lists section as `%s', but changes file has `%s'." % \
                                (f, control.Find("Section", ""), entry["section"]))
        if control.Find("Priority") and entry["priority"] != "" \
           and entry["priority"] != control.Find("Priority"):
            self.warnings.append("%s control file lists priority as `%s', but changes file has `%s'." % \
                                (f, control.Find("Priority", ""), entry["priority"]))

        entry["package"] = package
        entry["architecture"] = architecture
        entry["version"] = version
        entry["maintainer"] = control.Find("Maintainer", "")

        if f.endswith(".udeb"):
M
Mark Hymers 已提交
618
            self.pkg.files[f]["dbtype"] = "udeb"
619
        elif f.endswith(".deb"):
M
Mark Hymers 已提交
620
            self.pkg.files[f]["dbtype"] = "deb"
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635
        else:
            self.rejects.append("%s is neither a .deb or a .udeb." % (f))

        entry["source"] = control.Find("Source", entry["package"])

        # Get the source version
        source = entry["source"]
        source_version = ""

        if source.find("(") != -1:
            m = re_extract_src_version.match(source)
            source = m.group(1)
            source_version = m.group(2)

        if not source_version:
M
Mark Hymers 已提交
636
            source_version = self.pkg.files[f]["version"]
637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693

        entry["source package"] = source
        entry["source version"] = source_version

        # Ensure the filename matches the contents of the .deb
        m = re_isadeb.match(f)

        #  package name
        file_package = m.group(1)
        if entry["package"] != file_package:
            self.rejects.append("%s: package part of filename (%s) does not match package name in the %s (%s)." % \
                                (f, file_package, entry["dbtype"], entry["package"]))
        epochless_version = re_no_epoch.sub('', control.Find("Version"))

        #  version
        file_version = m.group(2)
        if epochless_version != file_version:
            self.rejects.append("%s: version part of filename (%s) does not match package version in the %s (%s)." % \
                                (f, file_version, entry["dbtype"], epochless_version))

        #  architecture
        file_architecture = m.group(3)
        if entry["architecture"] != file_architecture:
            self.rejects.append("%s: architecture part of filename (%s) does not match package architecture in the %s (%s)." % \
                                (f, file_architecture, entry["dbtype"], entry["architecture"]))

        # Check for existent source
        source_version = entry["source version"]
        source_package = entry["source package"]
        if self.pkg.changes["architecture"].has_key("source"):
            if source_version != self.pkg.changes["version"]:
                self.rejects.append("source version (%s) for %s doesn't match changes version %s." % \
                                    (source_version, f, self.pkg.changes["version"]))
        else:
            # Check in the SQL database
            if not source_exists(source_package, source_version, self.pkg.changes["distribution"].keys(), session):
                # Check in one of the other directories
                source_epochless_version = re_no_epoch.sub('', source_version)
                dsc_filename = "%s_%s.dsc" % (source_package, source_epochless_version)
                if os.path.exists(os.path.join(cnf["Dir::Queue::Byhand"], dsc_filename)):
                    entry["byhand"] = 1
                elif os.path.exists(os.path.join(cnf["Dir::Queue::New"], dsc_filename)):
                    entry["new"] = 1
                else:
                    dsc_file_exists = False
                    for myq in ["Accepted", "Embargoed", "Unembargoed", "ProposedUpdates", "OldProposedUpdates"]:
                        if cnf.has_key("Dir::Queue::%s" % (myq)):
                            if os.path.exists(os.path.join(cnf["Dir::Queue::" + myq], dsc_filename)):
                                dsc_file_exists = True
                                break

                    if not dsc_file_exists:
                        self.rejects.append("no source found for %s %s (%s)." % (source_package, source_version, f))

        # Check the version and for file overwrites
        self.check_binary_against_db(f, session)

M
Mark Hymers 已提交
694 695 696 697 698 699
        # Temporarily disable contents generation until we change the table storage layout
        #b = Binary(f)
        #b.scan_package()
        #if len(b.rejects) > 0:
        #    for j in b.rejects:
        #        self.rejects.append(j)
700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741

    def source_file_checks(self, f, session):
        entry = self.pkg.files[f]

        m = re_issource.match(f)
        if not m:
            return

        entry["package"] = m.group(1)
        entry["version"] = m.group(2)
        entry["type"] = m.group(3)

        # Ensure the source package name matches the Source filed in the .changes
        if self.pkg.changes["source"] != entry["package"]:
            self.rejects.append("%s: changes file doesn't say %s for Source" % (f, entry["package"]))

        # Ensure the source version matches the version in the .changes file
        if entry["type"] == "orig.tar.gz":
            changes_version = self.pkg.changes["chopversion2"]
        else:
            changes_version = self.pkg.changes["chopversion"]

        if changes_version != entry["version"]:
            self.rejects.append("%s: should be %s according to changes file." % (f, changes_version))

        # Ensure the .changes lists source in the Architecture field
        if not self.pkg.changes["architecture"].has_key("source"):
            self.rejects.append("%s: changes file doesn't list `source' in Architecture field." % (f))

        # Check the signature of a .dsc file
        if entry["type"] == "dsc":
            # check_signature returns either:
            #  (None, [list, of, rejects]) or (signature, [])
            (self.pkg.dsc["fingerprint"], rejects) = utils.check_signature(f)
            for j in rejects:
                self.rejects.append(j)

        entry["architecture"] = "source"

    def per_suite_file_checks(self, f, suite, session):
        cnf = Config()
        entry = self.pkg.files[f]
M
Mark Hymers 已提交
742
        archive = utils.where_am_i()
743 744 745 746 747

        # Skip byhand
        if entry.has_key("byhand"):
            return

M
Mark Hymers 已提交
748 749 750 751 752 753 754 755 756 757
        # Check we have fields we need to do these checks
        oktogo = True
        for m in ['component', 'package', 'priority', 'size', 'md5sum']:
            if not entry.has_key(m):
                self.rejects.append("file '%s' does not have field %s set" % (f, m))
                oktogo = False

        if not oktogo:
            return

758 759 760 761 762 763 764 765 766 767 768 769 770 771
        # Handle component mappings
        for m in cnf.ValueList("ComponentMappings"):
            (source, dest) = m.split()
            if entry["component"] == source:
                entry["original component"] = source
                entry["component"] = dest

        # Ensure the component is valid for the target suite
        if cnf.has_key("Suite:%s::Components" % (suite)) and \
           entry["component"] not in cnf.ValueList("Suite::%s::Components" % (suite)):
            self.rejects.append("unknown component `%s' for suite `%s'." % (entry["component"], suite))
            return

        # Validate the component
M
Mark Hymers 已提交
772
        if not get_component(entry["component"], session):
773 774 775 776 777 778 779 780 781 782 783 784 785
            self.rejects.append("file '%s' has unknown component '%s'." % (f, component))
            return

        # See if the package is NEW
        if not self.in_override_p(entry["package"], entry["component"], suite, entry.get("dbtype",""), f, session):
            entry["new"] = 1

        # Validate the priority
        if entry["priority"].find('/') != -1:
            self.rejects.append("file '%s' has invalid priority '%s' [contains '/']." % (f, entry["priority"]))

        # Determine the location
        location = cnf["Dir::Pool"]
M
Mark Hymers 已提交
786
        l = get_location(location, entry["component"], archive, session)
787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810
        if l is None:
            self.rejects.append("[INTERNAL ERROR] couldn't determine location (Component: %s, Archive: %s)" % (component, archive))
            entry["location id"] = -1
        else:
            entry["location id"] = l.location_id

        # Check the md5sum & size against existing files (if any)
        entry["pool name"] = utils.poolify(self.pkg.changes["source"], entry["component"])

        found, poolfile = check_poolfile(os.path.join(entry["pool name"], f),
                                         entry["size"], entry["md5sum"], entry["location id"])

        if found is None:
            self.rejects.append("INTERNAL ERROR, get_files_id() returned multiple matches for %s." % (f))
        elif found is False and poolfile is not None:
            self.rejects.append("md5sum and/or size mismatch on existing copy of %s." % (f))
        else:
            if poolfile is None:
                entry["files id"] = None
            else:
                entry["files id"] = poolfile.file_id

        # Check for packages that have moved from one component to another
        entry['suite'] = suite
M
Mark Hymers 已提交
811
        res = get_binary_components(self.pkg.files[f]['package'], suite, entry["architecture"], session)
812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859
        if res.rowcount > 0:
            entry["othercomponents"] = res.fetchone()[0]

    def check_files(self, action=True):
        archive = utils.where_am_i()
        file_keys = self.pkg.files.keys()
        holding = Holding()
        cnf = Config()

        # XXX: As far as I can tell, this can no longer happen - see
        #      comments by AJ in old revisions - mhy
        # if reprocess is 2 we've already done this and we're checking
        # things again for the new .orig.tar.gz.
        # [Yes, I'm fully aware of how disgusting this is]
        if action and self.reprocess < 2:
            cwd = os.getcwd()
            os.chdir(self.pkg.directory)
            for f in file_keys:
                ret = holding.copy_to_holding(f)
                if ret is not None:
                    # XXX: Should we bail out here or try and continue?
                    self.rejects.append(ret)

            os.chdir(cwd)

        # Check there isn't already a .changes or .dak file of the same name in
        # the proposed-updates "CopyChanges" or "CopyDotDak" storage directories.
        # [NB: this check must be done post-suite mapping]
        base_filename = os.path.basename(self.pkg.changes_file)
        dot_dak_filename = base_filename[:-8] + ".dak"

        for suite in self.pkg.changes["distribution"].keys():
            copychanges = "Suite::%s::CopyChanges" % (suite)
            if cnf.has_key(copychanges) and \
                   os.path.exists(os.path.join(cnf[copychanges], base_filename)):
                self.rejects.append("%s: a file with this name already exists in %s" \
                           % (base_filename, cnf[copychanges]))

            copy_dot_dak = "Suite::%s::CopyDotDak" % (suite)
            if cnf.has_key(copy_dot_dak) and \
                   os.path.exists(os.path.join(cnf[copy_dot_dak], dot_dak_filename)):
                self.rejects.append("%s: a file with this name already exists in %s" \
                           % (dot_dak_filename, Cnf[copy_dot_dak]))

        self.reprocess = 0
        has_binaries = False
        has_source = False

M
Mark Hymers 已提交
860
        session = DBConn().session()
861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897

        for f, entry in self.pkg.files.items():
            # Ensure the file does not already exist in one of the accepted directories
            for d in [ "Accepted", "Byhand", "New", "ProposedUpdates", "OldProposedUpdates", "Embargoed", "Unembargoed" ]:
                if not cnf.has_key("Dir::Queue::%s" % (d)): continue
                if os.path.exists(cnf["Dir::Queue::%s" % (d) ] + '/' + f):
                    self.rejects.append("%s file already exists in the %s directory." % (f, d))

            if not re_taint_free.match(f):
                self.rejects.append("!!WARNING!! tainted filename: '%s'." % (f))

            # Check the file is readable
            if os.access(f, os.R_OK) == 0:
                # When running in -n, copy_to_holding() won't have
                # generated the reject_message, so we need to.
                if action:
                    if os.path.exists(f):
                        self.rejects.append("Can't read `%s'. [permission denied]" % (f))
                    else:
                        self.rejects.append("Can't read `%s'. [file not found]" % (f))
                entry["type"] = "unreadable"
                continue

            # If it's byhand skip remaining checks
            if entry["section"] == "byhand" or entry["section"][:4] == "raw-":
                entry["byhand"] = 1
                entry["type"] = "byhand"

            # Checks for a binary package...
            elif re_isadeb.match(f):
                has_binaries = True
                entry["type"] = "deb"

                # This routine appends to self.rejects/warnings as appropriate
                self.binary_file_checks(f, session)

            # Checks for a source package...
M
Mark Hymers 已提交
898
            elif re_issource.match(f):
899 900 901 902 903 904 905 906 907 908 909 910 911 912 913
                has_source = True

                # This routine appends to self.rejects/warnings as appropriate
                self.source_file_checks(f, session)

            # Not a binary or source package?  Assume byhand...
            else:
                entry["byhand"] = 1
                entry["type"] = "byhand"

            # Per-suite file checks
            entry["oldfiles"] = {}
            for suite in self.pkg.changes["distribution"].keys():
                self.per_suite_file_checks(f, suite, session)

M
Mark Hymers 已提交
914 915
        session.close()

916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961
        # If the .changes file says it has source, it must have source.
        if self.pkg.changes["architecture"].has_key("source"):
            if not has_source:
                self.rejects.append("no source found and Architecture line in changes mention source.")

            if not has_binaries and cnf.FindB("Dinstall::Reject::NoSourceOnly"):
                self.rejects.append("source only uploads are not supported.")

    ###########################################################################
    def check_dsc(self, action=True):
        """Returns bool indicating whether or not the source changes are valid"""
        # Ensure there is source to check
        if not self.pkg.changes["architecture"].has_key("source"):
            return True

        # Find the .dsc
        dsc_filename = None
        for f, entry in self.pkg.files.items():
            if entry["type"] == "dsc":
                if dsc_filename:
                    self.rejects.append("can not process a .changes file with multiple .dsc's.")
                    return False
                else:
                    dsc_filename = f

        # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
        if not dsc_filename:
            self.rejects.append("source uploads must contain a dsc file")
            return False

        # Parse the .dsc file
        try:
            self.pkg.dsc.update(utils.parse_changes(dsc_filename, signing_rules=1))
        except CantOpenError:
            # if not -n copy_to_holding() will have done this for us...
            if not action:
                self.rejects.append("%s: can't read file." % (dsc_filename))
        except ParseChangesError, line:
            self.rejects.append("%s: parse error, can't grok: %s." % (dsc_filename, line))
        except InvalidDscError, line:
            self.rejects.append("%s: syntax error on line %s." % (dsc_filename, line))
        except ChangesUnicodeError:
            self.rejects.append("%s: dsc file not proper utf-8." % (dsc_filename))

        # Build up the file list of files mentioned by the .dsc
        try:
M
Mark Hymers 已提交
962
            self.pkg.dsc_files.update(utils.build_file_list(self.pkg.dsc, is_a_dsc=1))
963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981
        except NoFilesFieldError:
            self.rejects.append("%s: no Files: field." % (dsc_filename))
            return False
        except UnknownFormatError, format:
            self.rejects.append("%s: unknown format '%s'." % (dsc_filename, format))
            return False
        except ParseChangesError, line:
            self.rejects.append("%s: parse error, can't grok: %s." % (dsc_filename, line))
            return False

        # Enforce mandatory fields
        for i in ("format", "source", "version", "binary", "maintainer", "architecture", "files"):
            if not self.pkg.dsc.has_key(i):
                self.rejects.append("%s: missing mandatory field `%s'." % (dsc_filename, i))
                return False

        # Validate the source and version fields
        if not re_valid_pkg_name.match(self.pkg.dsc["source"]):
            self.rejects.append("%s: invalid source name '%s'." % (dsc_filename, self.pkg.dsc["source"]))
M
Mark Hymers 已提交
982
        if not re_valid_version.match(self.pkg.dsc["version"]):
983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021
            self.rejects.append("%s: invalid version number '%s'." % (dsc_filename, self.pkg.dsc["version"]))

        # Bumping the version number of the .dsc breaks extraction by stable's
        # dpkg-source.  So let's not do that...
        if self.pkg.dsc["format"] != "1.0":
            self.rejects.append("%s: incompatible 'Format' version produced by a broken version of dpkg-dev 1.9.1{3,4}." % (dsc_filename))

        # Validate the Maintainer field
        try:
            # We ignore the return value
            fix_maintainer(self.pkg.dsc["maintainer"])
        except ParseMaintError, msg:
            self.rejects.append("%s: Maintainer field ('%s') failed to parse: %s" \
                                 % (dsc_filename, self.pkg.dsc["maintainer"], msg))

        # Validate the build-depends field(s)
        for field_name in [ "build-depends", "build-depends-indep" ]:
            field = self.pkg.dsc.get(field_name)
            if field:
                # Check for broken dpkg-dev lossage...
                if field.startswith("ARRAY"):
                    self.rejects.append("%s: invalid %s field produced by a broken version of dpkg-dev (1.10.11)" % \
                                        (dsc_filename, field_name.title()))

                # Have apt try to parse them...
                try:
                    apt_pkg.ParseSrcDepends(field)
                except:
                    self.rejects.append("%s: invalid %s field (can not be parsed by apt)." % (dsc_filename, field_name.title()))

        # Ensure the version number in the .dsc matches the version number in the .changes
        epochless_dsc_version = re_no_epoch.sub('', self.pkg.dsc["version"])
        changes_version = self.pkg.files[dsc_filename]["version"]

        if epochless_dsc_version != self.pkg.files[dsc_filename]["version"]:
            self.rejects.append("version ('%s') in .dsc does not match version ('%s') in .changes." % (epochless_dsc_version, changes_version))

        # Ensure there is a .tar.gz in the .dsc file
        has_tar = False
M
Mark Hymers 已提交
1022
        for f in self.pkg.dsc_files.keys():
1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034
            m = re_issource.match(f)
            if not m:
                self.rejects.append("%s: %s in Files field not recognised as source." % (dsc_filename, f))
                continue
            ftype = m.group(3)
            if ftype == "orig.tar.gz" or ftype == "tar.gz":
                has_tar = True

        if not has_tar:
            self.rejects.append("%s: no .tar.gz or .orig.tar.gz in 'Files' field." % (dsc_filename))

        # Ensure source is newer than existing source in target suites
M
Mark Hymers 已提交
1035 1036 1037 1038
        session = DBConn().session()
        self.check_source_against_db(dsc_filename, session)
        self.check_dsc_against_db(dsc_filename, session)
        session.close()
1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051

        return True

    ###########################################################################

    def get_changelog_versions(self, source_dir):
        """Extracts a the source package and (optionally) grabs the
        version history out of debian/changelog for the BTS."""

        cnf = Config()

        # Find the .dsc (again)
        dsc_filename = None
M
Mark Hymers 已提交
1052 1053
        for f in self.pkg.files.keys():
            if self.pkg.files[f]["type"] == "dsc":
1054 1055 1056 1057 1058 1059 1060
                dsc_filename = f

        # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
        if not dsc_filename:
            return

        # Create a symlink mirror of the source files in our temporary directory
M
Mark Hymers 已提交
1061
        for f in self.pkg.files.keys():
1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091
            m = re_issource.match(f)
            if m:
                src = os.path.join(source_dir, f)
                # If a file is missing for whatever reason, give up.
                if not os.path.exists(src):
                    return
                ftype = m.group(3)
                if ftype == "orig.tar.gz" and self.pkg.orig_tar_gz:
                    continue
                dest = os.path.join(os.getcwd(), f)
                os.symlink(src, dest)

        # If the orig.tar.gz is not a part of the upload, create a symlink to the
        # existing copy.
        if self.pkg.orig_tar_gz:
            dest = os.path.join(os.getcwd(), os.path.basename(self.pkg.orig_tar_gz))
            os.symlink(self.pkg.orig_tar_gz, dest)

        # Extract the source
        cmd = "dpkg-source -sn -x %s" % (dsc_filename)
        (result, output) = commands.getstatusoutput(cmd)
        if (result != 0):
            self.rejects.append("'dpkg-source -x' failed for %s [return code: %s]." % (dsc_filename, result))
            self.rejects.append(utils.prefix_multi_line_string(output, " [dpkg-source output:] "), "")
            return

        if not cnf.Find("Dir::Queue::BTSVersionTrack"):
            return

        # Get the upstream version
M
Mark Hymers 已提交
1092
        upstr_version = re_no_epoch.sub('', self.pkg.dsc["version"])
1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142
        if re_strip_revision.search(upstr_version):
            upstr_version = re_strip_revision.sub('', upstr_version)

        # Ensure the changelog file exists
        changelog_filename = "%s-%s/debian/changelog" % (self.pkg.dsc["source"], upstr_version)
        if not os.path.exists(changelog_filename):
            self.rejects.append("%s: debian/changelog not found in extracted source." % (dsc_filename))
            return

        # Parse the changelog
        self.pkg.dsc["bts changelog"] = ""
        changelog_file = utils.open_file(changelog_filename)
        for line in changelog_file.readlines():
            m = re_changelog_versions.match(line)
            if m:
                self.pkg.dsc["bts changelog"] += line
        changelog_file.close()

        # Check we found at least one revision in the changelog
        if not self.pkg.dsc["bts changelog"]:
            self.rejects.append("%s: changelog format not recognised (empty version tree)." % (dsc_filename))

    def check_source(self):
        # XXX: I'm fairly sure reprocess == 2 can never happen
        #      AJT disabled the is_incoming check years ago - mhy
        #      We should probably scrap or rethink the whole reprocess thing
        # Bail out if:
        #    a) there's no source
        # or b) reprocess is 2 - we will do this check next time when orig.tar.gz is in 'files'
        # or c) the orig.tar.gz is MIA
        if not self.pkg.changes["architecture"].has_key("source") or self.reprocess == 2 \
           or self.pkg.orig_tar_gz == -1:
            return

        tmpdir = utils.temp_dirname()

        # Move into the temporary directory
        cwd = os.getcwd()
        os.chdir(tmpdir)

        # Get the changelog version history
        self.get_changelog_versions(cwd)

        # Move back and cleanup the temporary tree
        os.chdir(cwd)

        try:
            shutil.rmtree(tmpdir)
        except OSError, e:
            if e.errno != errno.EACCES:
M
Mark Hymers 已提交
1143
                print "foobar"
1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
                utils.fubar("%s: couldn't remove tmp dir for source tree." % (self.pkg.dsc["source"]))

            self.rejects.append("%s: source tree could not be cleanly removed." % (self.pkg.dsc["source"]))
            # We probably have u-r or u-w directories so chmod everything
            # and try again.
            cmd = "chmod -R u+rwx %s" % (tmpdir)
            result = os.system(cmd)
            if result != 0:
                utils.fubar("'%s' failed with result %s." % (cmd, result))
            shutil.rmtree(tmpdir)
M
Mark Hymers 已提交
1154 1155
        except Exception, e:
            print "foobar2 (%s)" % e
1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168
            utils.fubar("%s: couldn't remove tmp dir for source tree." % (self.pkg.dsc["source"]))

    ###########################################################################
    def ensure_hashes(self):
        # Make sure we recognise the format of the Files: field in the .changes
        format = self.pkg.changes.get("format", "0.0").split(".", 1)
        if len(format) == 2:
            format = int(format[0]), int(format[1])
        else:
            format = int(float(format[0])), 0

        # We need to deal with the original changes blob, as the fields we need
        # might not be in the changes dict serialised into the .dak anymore.
M
Mark Hymers 已提交
1169
        orig_changes = utils.parse_deb822(self.pkg.changes['filecontents'])
1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191

        # Copy the checksums over to the current changes dict.  This will keep
        # the existing modifications to it intact.
        for field in orig_changes:
            if field.startswith('checksums-'):
                self.pkg.changes[field] = orig_changes[field]

        # Check for unsupported hashes
        for j in utils.check_hash_fields(".changes", self.pkg.changes):
            self.rejects.append(j)

        for j in utils.check_hash_fields(".dsc", self.pkg.dsc):
            self.rejects.append(j)

        # We have to calculate the hash if we have an earlier changes version than
        # the hash appears in rather than require it exist in the changes file
        for hashname, hashfunc, version in utils.known_hashes:
            # TODO: Move _ensure_changes_hash into this class
            for j in utils._ensure_changes_hash(self.pkg.changes, format, version, self.pkg.files, hashname, hashfunc):
                self.rejects.append(j)
            if "source" in self.pkg.changes["architecture"]:
                # TODO: Move _ensure_dsc_hash into this class
M
Mark Hymers 已提交
1192
                for j in utils._ensure_dsc_hash(self.pkg.dsc, self.pkg.dsc_files, hashname, hashfunc):
1193 1194
                    self.rejects.append(j)

M
Mark Hymers 已提交
1195
    def check_hashes(self):
1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207
        for m in utils.check_hash(".changes", self.pkg.files, "md5", apt_pkg.md5sum):
            self.rejects.append(m)

        for m in utils.check_size(".changes", self.pkg.files):
            self.rejects.append(m)

        for m in utils.check_hash(".dsc", self.pkg.dsc_files, "md5", apt_pkg.md5sum):
            self.rejects.append(m)

        for m in utils.check_size(".dsc", self.pkg.dsc_files):
            self.rejects.append(m)

M
Mark Hymers 已提交
1208
        self.ensure_hashes()
1209

J
Joerg Jaspert 已提交
1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227
    ###########################################################################
    def check_lintian(self):
        cnf = Config()
        tagfile = cnf("Dinstall::LintianTags")
        # Parse the yaml file
        sourcefile = file(tagfile, 'r')
        sourcecontent = sourcefile.read()
        try:
            lintiantags = yaml.load(sourcecontent)
        except yaml.YAMLError, msg:
            utils.fubar("Can not read the lintian tags file %s, YAML error: %s." % (tagfile, msg))
            return

        # Now setup the input file for lintian. lintian wants "one tag per line" only,
        # so put it together like it. We put all types of tags in one file and then sort
        # through lintians output later to see if its a fatal tag we detected, or not.
        # So we only run lintian once on all tags, even if we might reject on some, but not
        # reject on others.
1228 1229
        # Additionally build up a set of tags
        tags = set()
J
Joerg Jaspert 已提交
1230 1231 1232 1233 1234
        (fd, temp_filename) = utils.temp_filename()
        temptagfile = os.fdopen(fd, 'w')
        for tagtype in lintiantags:
            for tag in lintiantags[tagtype]:
                temptagfile.write(tag)
1235
                tags.add(tag)
J
Joerg Jaspert 已提交
1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261
        temptagfile.close()

        # So now we should look at running lintian at the .changes file, capturing output
        # to then parse it.
        command = "lintian --show-overrides --tags-from-file %s %s" % (temp_filename, self.pkg.changes_file)
        (result, output) = commands.getstatusoutput(cmd)
        # We are done with lintian, remove our tempfile
        os.unlink(temp_filename)
        if (result != 0):
            self.rejects.append("lintian failed for %s [return code: %s]." % (self.pkg.changes_file, result))
            self.rejects.append(utils.prefix_multi_line_string(output, " [possible output:] "), "")
            return

        if len(output) > 0:
            # We have output of lintian, this package isn't clean. Lets parse it and see if we
            # are having a victim for a reject.
            # W: tzdata: binary-without-manpage usr/sbin/tzconfig
            for line in output.split('\n'):
                m = re_parse_lintian.match(line)
                if m:
                    etype = m.group(1)
                    epackage = m.group(2)
                    etag = m.group(3)
                    etext = m.group(4)

                    # So lets check if we know the tag at all.
1262
                    if etag in tags:
J
Joerg Jaspert 已提交
1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280
                        if etype == 'O':
                            # We know it and it is overriden. Check that override is allowed.
                            if lintiantags['warning'][etag]:
                                # The tag is overriden, and it is allowed to be overriden.
                                # Continue as if it isnt there.
                                next
                            elif lintiantags['error'][etag]:
                                # The tag is overriden - but is not allowed to be
                                self.rejects.append("%s: Overriden tag %s found, but this tag may not be overwritten." % (epackage, etag))
                                return
                        else:
                            # Tag is known, it is not overriden, direct reject.
                            self.rejects.append("%s: Found lintian output: '%s %s', automatically rejected package." % (epackage, etag, etext))
                            # Now tell if they *might* override it.
                            if lintiantags['wayout'][etag]:
                                self.rejects.append("%s: If you have a good reason, you may override this lintian tag. Laziness to fix your crap is NOT A GOOD REASON, sod off" % (epackage))
                            return

1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299
    ###########################################################################
    def check_urgency(self):
        cnf = Config()
        if self.pkg.changes["architecture"].has_key("source"):
            if not self.pkg.changes.has_key("urgency"):
                self.pkg.changes["urgency"] = cnf["Urgency::Default"]
            self.pkg.changes["urgency"] = self.pkg.changes["urgency"].lower()
            if self.pkg.changes["urgency"] not in cnf.ValueList("Urgency::Valid"):
                self.warnings.append("%s is not a valid urgency; it will be treated as %s by testing." % \
                                     (self.pkg.changes["urgency"], cnf["Urgency::Default"]))
                self.pkg.changes["urgency"] = cnf["Urgency::Default"]

    ###########################################################################

    # Sanity check the time stamps of files inside debs.
    # [Files in the near future cause ugly warnings and extreme time
    #  travel can cause errors on extraction]

    def check_timestamps(self):
M
Mark Hymers 已提交
1300 1301
        Cnf = Config()

1302 1303 1304 1305
        future_cutoff = time.time() + int(Cnf["Dinstall::FutureTimeTravelGrace"])
        past_cutoff = time.mktime(time.strptime(Cnf["Dinstall::PastCutoffYear"],"%Y"))
        tar = TarTime(future_cutoff, past_cutoff)

M
Mark Hymers 已提交
1306
        for filename, entry in self.pkg.files.items():
1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341
            if entry["type"] == "deb":
                tar.reset()
                try:
                    deb_file = utils.open_file(filename)
                    apt_inst.debExtract(deb_file, tar.callback, "control.tar.gz")
                    deb_file.seek(0)
                    try:
                        apt_inst.debExtract(deb_file, tar.callback, "data.tar.gz")
                    except SystemError, e:
                        # If we can't find a data.tar.gz, look for data.tar.bz2 instead.
                        if not re.search(r"Cannot f[ui]nd chunk data.tar.gz$", str(e)):
                            raise
                        deb_file.seek(0)
                        apt_inst.debExtract(deb_file,tar.callback,"data.tar.bz2")

                    deb_file.close()

                    future_files = tar.future_files.keys()
                    if future_files:
                        num_future_files = len(future_files)
                        future_file = future_files[0]
                        future_date = tar.future_files[future_file]
                        self.rejects.append("%s: has %s file(s) with a time stamp too far into the future (e.g. %s [%s])."
                               % (filename, num_future_files, future_file, time.ctime(future_date)))

                    ancient_files = tar.ancient_files.keys()
                    if ancient_files:
                        num_ancient_files = len(ancient_files)
                        ancient_file = ancient_files[0]
                        ancient_date = tar.ancient_files[ancient_file]
                        self.rejects.append("%s: has %s file(s) with a time stamp too ancient (e.g. %s [%s])."
                               % (filename, num_ancient_files, ancient_file, time.ctime(ancient_date)))
                except:
                    self.rejects.append("%s: deb contents timestamp check failed [%s: %s]" % (filename, sys.exc_type, sys.exc_value))

1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395
    ###########################################################################
    def check_transition(self, session):
        cnf = Config()

        sourcepkg = self.pkg.changes["source"]

        # No sourceful upload -> no need to do anything else, direct return
        # We also work with unstable uploads, not experimental or those going to some
        # proposed-updates queue
        if "source" not in self.pkg.changes["architecture"] or \
           "unstable" not in self.pkg.changes["distribution"]:
            return

        # Also only check if there is a file defined (and existant) with
        # checks.
        transpath = cnf.get("Dinstall::Reject::ReleaseTransitions", "")
        if transpath == "" or not os.path.exists(transpath):
            return

        # Parse the yaml file
        sourcefile = file(transpath, 'r')
        sourcecontent = sourcefile.read()
        try:
            transitions = yaml.load(sourcecontent)
        except yaml.YAMLError, msg:
            # This shouldn't happen, there is a wrapper to edit the file which
            # checks it, but we prefer to be safe than ending up rejecting
            # everything.
            utils.warn("Not checking transitions, the transitions file is broken: %s." % (msg))
            return

        # Now look through all defined transitions
        for trans in transitions:
            t = transitions[trans]
            source = t["source"]
            expected = t["new"]

            # Will be None if nothing is in testing.
            current = get_source_in_suite(source, "testing", session)
            if current is not None:
                compare = apt_pkg.VersionCompare(current.version, expected)

            if current is None or compare < 0:
                # This is still valid, the current version in testing is older than
                # the new version we wait for, or there is none in testing yet

                # Check if the source we look at is affected by this.
                if sourcepkg in t['packages']:
                    # The source is affected, lets reject it.

                    rejectmsg = "%s: part of the %s transition.\n\n" % (
                        sourcepkg, trans)

                    if current is not None:
M
Mark Hymers 已提交
1396
                        currentlymsg = "at version %s" % (current.version)
1397 1398 1399 1400 1401 1402
                    else:
                        currentlymsg = "not present in testing"

                    rejectmsg += "Transition description: %s\n\n" % (t["reason"])

                    rejectmsg += "\n".join(textwrap.wrap("""Your package
M
Mark Hymers 已提交
1403 1404 1405 1406 1407 1408
is part of a testing transition designed to get %s migrated (it is
currently %s, we need version %s).  This transition is managed by the
Release Team, and %s is the Release-Team member responsible for it.
Please mail debian-release@lists.debian.org or contact %s directly if you
need further assistance.  You might want to upload to experimental until this
transition is done."""
M
Mark Hymers 已提交
1409
                            % (source, currentlymsg, expected,t["rm"], t["rm"])))
1410 1411 1412 1413

                    self.rejects.append(rejectmsg)
                    return

1414 1415 1416 1417 1418
    ###########################################################################
    def check_signed_by_key(self):
        """Ensure the .changes is signed by an authorized uploader."""
        session = DBConn().session()

1419 1420
        self.check_transition(session)

1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485
        (uid, uid_name, is_dm) = lookup_uid_from_fingerprint(self.pkg.changes["fingerprint"], session=session)

        # match claimed name with actual name:
        if uid is None:
            # This is fundamentally broken but need us to refactor how we get
            # the UIDs/Fingerprints in order for us to fix it properly
            uid, uid_email = self.pkg.changes["fingerprint"], uid
            may_nmu, may_sponsor = 1, 1
            # XXX by default new dds don't have a fingerprint/uid in the db atm,
            #     and can't get one in there if we don't allow nmu/sponsorship
        elif is_dm is False:
            # If is_dm is False, we allow full upload rights
            uid_email = "%s@debian.org" % (uid)
            may_nmu, may_sponsor = 1, 1
        else:
            # Assume limited upload rights unless we've discovered otherwise
            uid_email = uid
            may_nmu, may_sponsor = 0, 0

        if uid_email in [self.pkg.changes["maintaineremail"], self.pkg.changes["changedbyemail"]]:
            sponsored = 0
        elif uid_name in [self.pkg.changes["maintainername"], self.pkg.changes["changedbyname"]]:
            sponsored = 0
            if uid_name == "": sponsored = 1
        else:
            sponsored = 1
            if ("source" in self.pkg.changes["architecture"] and
                uid_email and utils.is_email_alias(uid_email)):
                sponsor_addresses = utils.gpg_get_key_addresses(self.pkg.changes["fingerprint"])
                if (self.pkg.changes["maintaineremail"] not in sponsor_addresses and
                    self.pkg.changes["changedbyemail"] not in sponsor_addresses):
                    self.pkg.changes["sponsoremail"] = uid_email

        if sponsored and not may_sponsor:
            self.rejects.append("%s is not authorised to sponsor uploads" % (uid))

        if not sponsored and not may_nmu:
            should_reject = True
            highest_sid, highest_version = None, None

            # XXX: This reimplements in SQLA what existed before but it's fundamentally fucked
            #      It ignores higher versions with the dm_upload_allowed flag set to false
            #      I'm keeping the existing behaviour for now until I've gone back and
            #      checked exactly what the GR says - mhy
            for si in get_sources_from_name(source=self.pkg.changes['source'], dm_upload_allowed=True, session=session):
                if highest_version is None or apt_pkg.VersionCompare(si.version, highest_version) == 1:
                     highest_sid = si.source_id
                     highest_version = si.version

            if highest_sid is None:
                self.rejects.append("Source package %s does not have 'DM-Upload-Allowed: yes' in its most recent version" % self.pkg.changes["source"])
            else:
                for sup in session.query(SrcUploader).join(DBSource).filter_by(source_id=highest_sid):
                    (rfc822, rfc2047, name, email) = sup.maintainer.get_split_maintainer()
                    if email == uid_email or name == uid_name:
                        should_reject = False
                        break

            if should_reject is True:
                self.rejects.append("%s is not in Maintainer or Uploaders of source package %s" % (uid, self.pkg.changes["source"]))

            for b in self.pkg.changes["binary"].keys():
                for suite in self.pkg.changes["distribution"].keys():
                    q = session.query(DBSource)
                    q = q.join(DBBinary).filter_by(package=b)
M
Mark Hymers 已提交
1486
                    q = q.join(BinAssociation).join(Suite).filter_by(suite_name=suite)
1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497

                    for s in q.all():
                        if s.source != self.pkg.changes["source"]:
                            self.rejects.append("%s may not hijack %s from source package %s in suite %s" % (uid, b, s, suite))

            for f in self.pkg.files.keys():
                if self.pkg.files[f].has_key("byhand"):
                    self.rejects.append("%s may not upload BYHAND file %s" % (uid, f))
                if self.pkg.files[f].has_key("new"):
                    self.rejects.append("%s may not upload NEW file %s" % (uid, f))

M
Mark Hymers 已提交
1498 1499
        session.close()

1500
    ###########################################################################
J
New.  
James Troup 已提交
1501
    def build_summaries(self):
J
Joerg Jaspert 已提交
1502
        """ Build a summary of changes the upload introduces. """
1503 1504

        (byhand, new, summary, override_summary) = self.pkg.file_summary()
J
New.  
James Troup 已提交
1505

1506
        short_summary = summary
J
New.  
James Troup 已提交
1507 1508

        # This is for direport's benefit...
1509
        f = re_fdnic.sub("\n .\n", self.pkg.changes.get("changes", ""))
J
New.  
James Troup 已提交
1510 1511

        if byhand or new:
1512
            summary += "Changes: " + f
J
New.  
James Troup 已提交
1513

1514 1515
        summary += "\n\nOverride entries for your package:\n" + override_summary + "\n"

1516
        summary += self.announce(short_summary, 0)
J
New.  
James Troup 已提交
1517

1518
        return (summary, short_summary)
J
New.  
James Troup 已提交
1519 1520 1521

    ###########################################################################

1522
    def close_bugs(self, summary, action):
J
Joerg Jaspert 已提交
1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536
        """
        Send mail to close bugs as instructed by the closes field in the changes file.
        Also add a line to summary if any work was done.

        @type summary: string
        @param summary: summary text, as given by L{build_summaries}

        @type action: bool
        @param action: Set to false no real action will be done.

        @rtype: string
        @return: summary. If action was taken, extended by the list of closed bugs.

        """
J
New.  
James Troup 已提交
1537

1538 1539 1540
        template = os.path.join(Config()["Dir::Templates"], 'process-unchecked.bug-close')

        bugs = self.pkg.changes["closes"].keys()
J
New.  
James Troup 已提交
1541

1542
        if not bugs:
1543
            return summary
J
New.  
James Troup 已提交
1544

1545
        bugs.sort()
1546 1547 1548 1549
        summary += "Closing bugs: "
        for bug in bugs:
            summary += "%s " % (bug)
            if action:
M
Mark Hymers 已提交
1550
                self.update_subst()
1551 1552 1553
                self.Subst["__BUG_NUMBER__"] = bug
                if self.pkg.changes["distribution"].has_key("stable"):
                    self.Subst["__STABLE_WARNING__"] = """
1554 1555 1556 1557
Note that this package is not part of the released stable Debian
distribution.  It may have dependencies on other unreleased software,
or other instabilities.  Please take care if you wish to install it.
The update will eventually make its way into the next released Debian
1558
distribution."""
1559
                else:
1560
                    self.Subst["__STABLE_WARNING__"] = ""
M
Mark Hymers 已提交
1561 1562
                mail_message = utils.TemplateSubst(self.Subst, template)
                utils.send_mail(mail_message)
1563 1564 1565 1566 1567

                # Clear up after ourselves
                del self.Subst["__BUG_NUMBER__"]
                del self.Subst["__STABLE_WARNING__"]

M
Mark Hymers 已提交
1568 1569
        if action and self.logger:
            self.logger.log(["closing bugs"] + bugs)
1570

1571
        summary += "\n"
1572

1573
        return summary
1574 1575 1576

    ###########################################################################

1577
    def announce(self, short_summary, action):
J
Joerg Jaspert 已提交
1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590
        """
        Send an announce mail about a new upload.

        @type short_summary: string
        @param short_summary: Short summary text to include in the mail

        @type action: bool
        @param action: Set to false no real action will be done.

        @rtype: string
        @return: Textstring about action taken.

        """
1591 1592 1593

        cnf = Config()
        announcetemplate = os.path.join(cnf["Dir::Templates"], 'process-unchecked.announce')
1594 1595

        # Only do announcements for source uploads with a recent dpkg-dev installed
1596 1597
        if float(self.pkg.changes.get("format", 0)) < 1.6 or not \
           self.pkg.changes["architecture"].has_key("source"):
1598
            return ""
J
New.  
James Troup 已提交
1599

1600 1601
        lists_done = {}
        summary = ""
1602

1603 1604 1605
        self.Subst["__SHORT_SUMMARY__"] = short_summary

        for dist in self.pkg.changes["distribution"].keys():
M
Mark Hymers 已提交
1606
            announce_list = cnf.Find("Suite::%s::Announce" % (dist))
J
Joerg Jaspert 已提交
1607
            if announce_list == "" or lists_done.has_key(announce_list):
1608
                continue
1609

J
Joerg Jaspert 已提交
1610 1611
            lists_done[announce_list] = 1
            summary += "Announcing to %s\n" % (announce_list)
1612 1613

            if action:
M
Mark Hymers 已提交
1614
                self.update_subst()
1615 1616 1617 1618 1619 1620 1621 1622
                self.Subst["__ANNOUNCE_LIST_ADDRESS__"] = announce_list
                if cnf.get("Dinstall::TrackingServer") and \
                   self.pkg.changes["architecture"].has_key("source"):
                    trackingsendto = "Bcc: %s@%s" % (self.pkg.changes["source"], cnf["Dinstall::TrackingServer"])
                    self.Subst["__ANNOUNCE_LIST_ADDRESS__"] += "\n" + trackingsendto

                mail_message = utils.TemplateSubst(self.Subst, announcetemplate)
                utils.send_mail(mail_message)
1623

1624 1625 1626
                del self.Subst["__ANNOUNCE_LIST_ADDRESS__"]

        if cnf.FindB("Dinstall::CloseBugs"):
1627
            summary = self.close_bugs(summary, action)
1628

1629 1630
        del self.Subst["__SHORT_SUMMARY__"]

1631
        return summary
J
New.  
James Troup 已提交
1632 1633 1634

    ###########################################################################

J
NEW  
Joerg Jaspert 已提交
1635
    def accept (self, summary, short_summary, targetdir=None):
J
Joerg Jaspert 已提交
1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652
        """
        Accept an upload.

        This moves all files referenced from the .changes into the I{accepted}
        queue, sends the accepted mail, announces to lists, closes bugs and
        also checks for override disparities. If enabled it will write out
        the version history for the BTS Version Tracking and will finally call
        L{queue_build}.

        @type summary: string
        @param summary: Summary text

        @type short_summary: string
        @param short_summary: Short summary

        """

1653 1654 1655 1656
        cnf = Config()
        stats = SummaryStats()

        accepttemplate = os.path.join(cnf["Dir::Templates"], 'process-unchecked.accepted')
J
New.  
James Troup 已提交
1657

J
NEW  
Joerg Jaspert 已提交
1658
        if targetdir is None:
1659
            targetdir = cnf["Dir::Queue::Accepted"]
J
NEW  
Joerg Jaspert 已提交
1660

J
New.  
James Troup 已提交
1661
        print "Accepting."
M
Mark Hymers 已提交
1662
        if self.logger:
M
Mark Hymers 已提交
1663
            self.logger.log(["Accepting changes", self.pkg.changes_file])
J
New.  
James Troup 已提交
1664

M
Mark Hymers 已提交
1665
        self.pkg.write_dot_dak(targetdir)
J
New.  
James Troup 已提交
1666 1667

        # Move all the files into the accepted directory
1668 1669 1670 1671 1672 1673 1674
        utils.move(self.pkg.changes_file, targetdir)

        for name, entry in sorted(self.pkg.files.items()):
            utils.move(name, targetdir)
            stats.accept_bytes += float(entry["size"])

        stats.accept_count += 1
J
New.  
James Troup 已提交
1675 1676 1677

        # Send accept mail, announce to lists, close bugs and check for
        # override disparities
1678
        if not cnf["Dinstall::Options::No-Mail"]:
M
Mark Hymers 已提交
1679
            self.update_subst()
1680 1681 1682
            self.Subst["__SUITE__"] = ""
            self.Subst["__SUMMARY__"] = summary
            mail_message = utils.TemplateSubst(self.Subst, accepttemplate)
1683
            utils.send_mail(mail_message)
J
New.  
James Troup 已提交
1684 1685
            self.announce(short_summary, 1)

1686
        ## Helper stuff for DebBugs Version Tracking
1687
        if cnf.Find("Dir::Queue::BTSVersionTrack"):
1688 1689 1690 1691 1692
            # ??? once queue/* is cleared on *.d.o and/or reprocessed
            # the conditionalization on dsc["bts changelog"] should be
            # dropped.

            # Write out the version history from the changelog
1693 1694
            if self.pkg.changes["architecture"].has_key("source") and \
               self.pkg.dsc.has_key("bts changelog"):
1695

1696
                (fd, temp_filename) = utils.temp_filename(cnf["Dir::Queue::BTSVersionTrack"], prefix=".")
J
fdopen  
Joerg Jaspert 已提交
1697
                version_history = os.fdopen(fd, 'w')
1698
                version_history.write(self.pkg.dsc["bts changelog"])
1699
                version_history.close()
1700 1701
                filename = "%s/%s" % (cnf["Dir::Queue::BTSVersionTrack"],
                                      self.pkg.changes_file[:-8]+".versions")
1702
                os.rename(temp_filename, filename)
J
Joerg Jaspert 已提交
1703
                os.chmod(filename, 0644)
1704 1705

            # Write out the binary -> source mapping.
1706
            (fd, temp_filename) = utils.temp_filename(cnf["Dir::Queue::BTSVersionTrack"], prefix=".")
J
fdopen  
Joerg Jaspert 已提交
1707
            debinfo = os.fdopen(fd, 'w')
1708 1709 1710 1711 1712
            for name, entry in sorted(self.pkg.files.items()):
                if entry["type"] == "deb":
                    line = " ".join([entry["package"], entry["version"],
                                     entry["architecture"], entry["source package"],
                                     entry["source version"]])
1713 1714
                    debinfo.write(line+"\n")
            debinfo.close()
1715 1716
            filename = "%s/%s" % (cnf["Dir::Queue::BTSVersionTrack"],
                                  self.pkg.changes_file[:-8]+".debinfo")
1717
            os.rename(temp_filename, filename)
J
Joerg Jaspert 已提交
1718
            os.chmod(filename, 0644)
1719

J
NEW  
Joerg Jaspert 已提交
1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731
        # Its is Cnf["Dir::Queue::Accepted"] here, not targetdir!
        # <Ganneff> we do call queue_build too
        # <mhy> well yes, we'd have had to if we were inserting into accepted
        # <Ganneff> now. thats database only.
        # <mhy> urgh, that's going to get messy
        # <Ganneff> so i make the p-n call to it *also* using accepted/
        # <mhy> but then the packages will be in the queue_build table without the files being there
        # <Ganneff> as the buildd queue is only regenerated whenever unchecked runs
        # <mhy> ah, good point
        # <Ganneff> so it will work out, as unchecked move it over
        # <mhy> that's all completely sick
        # <Ganneff> yes
1732

1733 1734 1735 1736
        # This routine returns None on success or an error on failure
        res = get_queue('accepted').autobuild_upload(self.pkg, cnf["Dir::Queue::Accepted"])
        if res:
            utils.fubar(res)
J
Joerg Jaspert 已提交
1737

J
New.  
James Troup 已提交
1738

1739
    def check_override(self):
J
Joerg Jaspert 已提交
1740 1741 1742 1743 1744 1745 1746 1747
        """
        Checks override entries for validity. Mails "Override disparity" warnings,
        if that feature is enabled.

        Abandons the check if
          - override disparity checks are disabled
          - mail sending is disabled
        """
1748 1749

        cnf = Config()
J
New.  
James Troup 已提交
1750

1751
        # Abandon the check if:
1752 1753 1754 1755
        #  a) override disparity checks have been disabled
        #  b) we're not sending mail
        if not cnf.FindB("Dinstall::OverrideDisparityCheck") or \
           cnf["Dinstall::Options::No-Mail"]:
1756
            return
J
New.  
James Troup 已提交
1757

1758
        summary = self.pkg.check_override()
J
New.  
James Troup 已提交
1759 1760

        if summary == "":
1761
            return
J
New.  
James Troup 已提交
1762

1763 1764
        overridetemplate = os.path.join(cnf["Dir::Templates"], 'process-unchecked.override-disparity')

M
Mark Hymers 已提交
1765
        self.update_subst()
1766 1767
        self.Subst["__SUMMARY__"] = summary
        mail_message = utils.TemplateSubst(self.Subst, overridetemplate)
1768
        utils.send_mail(mail_message)
1769
        del self.Subst["__SUMMARY__"]
J
New.  
James Troup 已提交
1770 1771

    ###########################################################################
1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797

    def remove(self, dir=None):
        """
        Used (for instance) in p-u to remove the package from unchecked
        """
        if dir is None:
            os.chdir(self.pkg.directory)
        else:
            os.chdir(dir)

        for f in self.pkg.files.keys():
            os.unlink(f)
        os.unlink(self.pkg.changes_file)

    ###########################################################################

    def move_to_dir (self, dest, perms=0660, changesperms=0664):
        """
        Move files to dest with certain perms/changesperms
        """
        utils.move(self.pkg.changes_file, dest, perms=changesperms)
        for f in self.pkg.files.keys():
            utils.move(f, dest, perms=perms)

    ###########################################################################

1798
    def force_reject(self, reject_files):
J
Joerg Jaspert 已提交
1799 1800 1801 1802 1803 1804 1805 1806 1807 1808
        """
        Forcefully move files from the current directory to the
        reject directory.  If any file already exists in the reject
        directory it will be moved to the morgue to make way for
        the new file.

        @type files: dict
        @param files: file dictionary

        """
J
New.  
James Troup 已提交
1809

1810
        cnf = Config()
J
New.  
James Troup 已提交
1811

1812
        for file_entry in reject_files:
J
New.  
James Troup 已提交
1813
            # Skip any files which don't exist or which we don't have permission to copy.
1814
            if os.access(file_entry, os.R_OK) == 0:
1815
                continue
1816 1817 1818

            dest_file = os.path.join(cnf["Dir::Queue::Reject"], file_entry)

J
New.  
James Troup 已提交
1819
            try:
1820
                dest_fd = os.open(dest_file, os.O_RDWR | os.O_CREAT | os.O_EXCL, 0644)
J
New.  
James Troup 已提交
1821 1822
            except OSError, e:
                # File exists?  Let's try and move it to the morgue
1823 1824
                if e.errno == errno.EEXIST:
                    morgue_file = os.path.join(cnf["Dir::Morgue"], cnf["Dir::MorgueReject"], file_entry)
J
New.  
James Troup 已提交
1825
                    try:
1826
                        morgue_file = utils.find_next_free(morgue_file)
J
Joerg Jaspert 已提交
1827
                    except NoFreeFilenameError:
J
New.  
James Troup 已提交
1828 1829
                        # Something's either gone badly Pete Tong, or
                        # someone is trying to exploit us.
J
Joerg Jaspert 已提交
1830
                        utils.warn("**WARNING** failed to move %s from the reject directory to the morgue." % (file_entry))
1831 1832
                        return
                    utils.move(dest_file, morgue_file, perms=0660)
J
New.  
James Troup 已提交
1833
                    try:
1834
                        dest_fd = os.open(dest_file, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0644)
J
New.  
James Troup 已提交
1835 1836
                    except OSError, e:
                        # Likewise
J
Joerg Jaspert 已提交
1837
                        utils.warn("**WARNING** failed to claim %s in the reject directory." % (file_entry))
1838
                        return
J
New.  
James Troup 已提交
1839
                else:
1840
                    raise
J
New.  
James Troup 已提交
1841 1842
            # If we got here, we own the destination file, so we can
            # safely overwrite it.
J
Joerg Jaspert 已提交
1843
            utils.move(file_entry, dest_file, 1, perms=0660)
1844
            os.close(dest_fd)
1845

J
New.  
James Troup 已提交
1846
    ###########################################################################
1847
    def do_reject (self, manual=0, reject_message="", note=""):
J
Joerg Jaspert 已提交
1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860
        """
        Reject an upload. If called without a reject message or C{manual} is
        true, spawn an editor so the user can write one.

        @type manual: bool
        @param manual: manual or automated rejection

        @type reject_message: string
        @param reject_message: A reject message

        @return: 0

        """
J
James Troup 已提交
1861 1862 1863
        # If we weren't given a manual rejection message, spawn an
        # editor so the user can add one in...
        if manual and not reject_message:
J
various  
Joerg Jaspert 已提交
1864
            (fd, temp_filename) = utils.temp_filename()
J
Joerg Jaspert 已提交
1865 1866 1867 1868 1869
            temp_file = os.fdopen(fd, 'w')
            if len(note) > 0:
                for line in note:
                    temp_file.write(line)
            temp_file.close()
J
James Troup 已提交
1870
            editor = os.environ.get("EDITOR","vi")
1871
            answer = 'E'
J
James Troup 已提交
1872 1873
            while answer == 'E':
                os.system("%s %s" % (editor, temp_filename))
1874 1875 1876 1877 1878
                temp_fh = utils.open_file(temp_filename)
                reject_message = "".join(temp_fh.readlines())
                temp_fh.close()
                print "Reject message:"
                print utils.prefix_multi_line_string(reject_message,"  ",include_blank_lines=1)
J
James Troup 已提交
1879
                prompt = "[R]eject, Edit, Abandon, Quit ?"
1880
                answer = "XXX"
1881
                while prompt.find(answer) == -1:
1882 1883
                    answer = utils.our_raw_input(prompt)
                    m = re_default_answer.search(prompt)
J
James Troup 已提交
1884
                    if answer == "":
1885 1886 1887
                        answer = m.group(1)
                    answer = answer[:1].upper()
            os.unlink(temp_filename)
J
James Troup 已提交
1888
            if answer == 'A':
1889
                return 1
J
James Troup 已提交
1890
            elif answer == 'Q':
1891
                sys.exit(0)
J
James Troup 已提交
1892

J
New.  
James Troup 已提交
1893 1894
        print "Rejecting.\n"

1895
        cnf = Config()
J
New.  
James Troup 已提交
1896

1897 1898
        reason_filename = self.pkg.changes_file[:-8] + ".reason"
        reason_filename = os.path.join(cnf["Dir::Queue::Reject"], reason_filename)
J
New.  
James Troup 已提交
1899 1900

        # Move all the files into the reject directory
1901
        reject_files = self.pkg.files.keys() + [self.pkg.changes_file]
1902
        self.force_reject(reject_files)
J
New.  
James Troup 已提交
1903 1904 1905

        # If we fail here someone is probably trying to exploit the race
        # so let's just raise an exception ...
J
James Troup 已提交
1906
        if os.path.exists(reason_filename):
1907 1908
            os.unlink(reason_filename)
        reason_fd = os.open(reason_filename, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0644)
J
New.  
James Troup 已提交
1909

1910 1911
        rej_template = os.path.join(cnf["Dir::Templates"], "queue.rejected")

M
Mark Hymers 已提交
1912
        self.update_subst()
J
New.  
James Troup 已提交
1913
        if not manual:
1914 1915 1916
            self.Subst["__REJECTOR_ADDRESS__"] = cnf["Dinstall::MyEmailAddress"]
            self.Subst["__MANUAL_REJECT_MESSAGE__"] = ""
            self.Subst["__CC__"] = "X-DAK-Rejection: automatic (moo)\nX-Katie-Rejection: automatic (moo)"
1917
            os.write(reason_fd, reject_message)
1918
            reject_mail_message = utils.TemplateSubst(self.Subst, rej_template)
J
New.  
James Troup 已提交
1919 1920
        else:
            # Build up the rejection email
1921 1922 1923 1924 1925
            user_email_address = utils.whoami() + " <%s>" % (cnf["Dinstall::MyAdminAddress"])
            self.Subst["__REJECTOR_ADDRESS__"] = user_email_address
            self.Subst["__MANUAL_REJECT_MESSAGE__"] = reject_message
            self.Subst["__CC__"] = "Cc: " + Cnf["Dinstall::MyEmailAddress"]
            reject_mail_message = utils.TemplateSubst(self.Subst, rej_template)
J
New.  
James Troup 已提交
1926
            # Write the rejection email out as the <foo>.reason file
1927
            os.write(reason_fd, reject_mail_message)
J
James Troup 已提交
1928

1929 1930 1931 1932
        del self.Subst["__REJECTOR_ADDRESS__"]
        del self.Subst["__MANUAL_REJECT_MESSAGE__"]
        del self.Subst["__CC__"]

1933
        os.close(reason_fd)
J
New.  
James Troup 已提交
1934 1935

        # Send the rejection mail if appropriate
1936
        if not cnf["Dinstall::Options::No-Mail"]:
1937
            utils.send_mail(reject_mail_message)
J
New.  
James Troup 已提交
1938

M
Mark Hymers 已提交
1939 1940
        if self.logger:
            self.logger.log(["rejected", self.pkg.changes_file])
J
Joerg Jaspert 已提交
1941

1942
        return 0
J
New.  
James Troup 已提交
1943 1944

    ################################################################################
M
Mark Hymers 已提交
1945
    def in_override_p(self, package, component, suite, binary_type, file, session):
J
Joerg Jaspert 已提交
1946 1947 1948 1949 1950 1951 1952
        """
        Check if a package already has override entries in the DB

        @type package: string
        @param package: package name

        @type component: string
1953
        @param component: database id of the component
J
Joerg Jaspert 已提交
1954 1955

        @type suite: int
1956
        @param suite: database id of the suite
J
Joerg Jaspert 已提交
1957 1958 1959 1960 1961 1962 1963 1964 1965 1966

        @type binary_type: string
        @param binary_type: type of the package

        @type file: string
        @param file: filename we check

        @return: the database result. But noone cares anyway.

        """
1967 1968 1969

        cnf = Config()

J
New.  
James Troup 已提交
1970
        if binary_type == "": # must be source
J
Joerg Jaspert 已提交
1971
            file_type = "dsc"
J
New.  
James Troup 已提交
1972
        else:
J
Joerg Jaspert 已提交
1973
            file_type = binary_type
J
New.  
James Troup 已提交
1974 1975

        # Override suite name; used for example with proposed-updates
1976 1977 1978 1979
        if cnf.Find("Suite::%s::OverrideSuite" % (suite)) != "":
            suite = cnf["Suite::%s::OverrideSuite" % (suite)]

        result = get_override(package, suite, component, file_type, session)
J
New.  
James Troup 已提交
1980 1981

        # If checking for a source package fall back on the binary override type
1982 1983
        if file_type == "dsc" and len(result) < 1:
            result = get_override(package, suite, component, ['deb', 'udeb'], session)
J
New.  
James Troup 已提交
1984 1985

        # Remember the section and priority so we can check them later if appropriate
1986 1987 1988 1989 1990
        if len(result) > 0:
            result = result[0]
            self.pkg.files[file]["override section"] = result.section.section
            self.pkg.files[file]["override priority"] = result.priority.priority
            return result
J
New.  
James Troup 已提交
1991

1992
        return None
J
New.  
James Troup 已提交
1993

1994
    ################################################################################
1995 1996 1997 1998 1999 2000 2001
    def get_anyversion(self, sv_list, suite):
        """
        @type sv_list: list
        @param sv_list: list of (suite, version) tuples to check

        @type suite: string
        @param suite: suite name
2002

2003 2004
        Description: TODO
        """
M
Mark Hymers 已提交
2005
        Cnf = Config()
2006
        anyversion = None
M
Mark Hymers 已提交
2007
        anysuite = [suite] + Cnf.ValueList("Suite::%s::VersionChecks::Enhances" % (suite))
2008
        for (s, v) in sv_list:
2009
            if s in [ x.lower() for x in anysuite ]:
2010
                if not anyversion or apt_pkg.VersionCompare(anyversion, v) <= 0:
2011 2012
                    anyversion = v

2013 2014 2015 2016
        return anyversion

    ################################################################################

2017
    def cross_suite_version_check(self, sv_list, file, new_version, sourceful=False):
J
Joerg Jaspert 已提交
2018
        """
2019 2020 2021 2022 2023 2024 2025 2026 2027
        @type sv_list: list
        @param sv_list: list of (suite, version) tuples to check

        @type file: string
        @param file: XXX

        @type new_version: string
        @param new_version: XXX

J
Joerg Jaspert 已提交
2028
        Ensure versions are newer than existing packages in target
2029
        suites and that cross-suite version checking rules as
J
Joerg Jaspert 已提交
2030 2031
        set out in the conf file are satisfied.
        """
2032

2033 2034
        cnf = Config()

2035 2036
        # Check versions for each target suite
        for target_suite in self.pkg.changes["distribution"].keys():
2037 2038 2039
            must_be_newer_than = [ i.lower() for i in cnf.ValueList("Suite::%s::VersionChecks::MustBeNewerThan" % (target_suite)) ]
            must_be_older_than = [ i.lower() for i in cnf.ValueList("Suite::%s::VersionChecks::MustBeOlderThan" % (target_suite)) ]

2040 2041
            # Enforce "must be newer than target suite" even if conffile omits it
            if target_suite not in must_be_newer_than:
2042
                must_be_newer_than.append(target_suite)
2043 2044 2045 2046 2047

            for (suite, existent_version) in sv_list:
                vercmp = apt_pkg.VersionCompare(new_version, existent_version)

                if suite in must_be_newer_than and sourceful and vercmp < 1:
2048
                    self.rejects.append("%s: old version (%s) in %s >= new version (%s) targeted at %s." % (file, existent_version, suite, new_version, target_suite))
2049 2050

                if suite in must_be_older_than and vercmp > -1:
2051
                    cansave = 0
2052

2053 2054 2055 2056 2057 2058
                    if self.pkg.changes.get('distribution-version', {}).has_key(suite):
                        # we really use the other suite, ignoring the conflicting one ...
                        addsuite = self.pkg.changes["distribution-version"][suite]

                        add_version = self.get_anyversion(sv_list, addsuite)
                        target_version = self.get_anyversion(sv_list, target_suite)
2059

2060 2061 2062 2063 2064 2065 2066 2067 2068 2069
                        if not add_version:
                            # not add_version can only happen if we map to a suite
                            # that doesn't enhance the suite we're propup'ing from.
                            # so "propup-ver x a b c; map a d" is a problem only if
                            # d doesn't enhance a.
                            #
                            # i think we could always propagate in this case, rather
                            # than complaining. either way, this isn't a REJECT issue
                            #
                            # And - we really should complain to the dorks who configured dak
2070
                            self.warnings.append("%s is mapped to, but not enhanced by %s - adding anyways" % (suite, addsuite))
2071 2072
                            self.pkg.changes.setdefault("propdistribution", {})
                            self.pkg.changes["propdistribution"][addsuite] = 1
2073 2074 2075 2076 2077
                            cansave = 1
                        elif not target_version:
                            # not targets_version is true when the package is NEW
                            # we could just stick with the "...old version..." REJECT
                            # for this, I think.
2078
                            self.rejects.append("Won't propogate NEW packages.")
2079 2080
                        elif apt_pkg.VersionCompare(new_version, add_version) < 0:
                            # propogation would be redundant. no need to reject though.
2081
                            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))
2082 2083
                            cansave = 1
                        elif apt_pkg.VersionCompare(new_version, add_version) > 0 and \
2084
                             apt_pkg.VersionCompare(add_version, target_version) >= 0:
2085
                            # propogate!!
2086
                            self.warnings.append("Propogating upload to %s" % (addsuite))
2087 2088
                            self.pkg.changes.setdefault("propdistribution", {})
                            self.pkg.changes["propdistribution"][addsuite] = 1
2089
                            cansave = 1
2090

2091
                    if not cansave:
2092
                        self.reject.append("%s: old version (%s) in %s <= new version (%s) targeted at %s." % (file, existent_version, suite, new_version, target_suite))
2093 2094

    ################################################################################
M
Mark Hymers 已提交
2095
    def check_binary_against_db(self, file, session):
2096
        # Ensure version is sane
2097 2098 2099 2100 2101
        q = session.query(BinAssociation)
        q = q.join(DBBinary).filter(DBBinary.package==self.pkg.files[file]["package"])
        q = q.join(Architecture).filter(Architecture.arch_string.in_([self.pkg.files[file]["architecture"], 'all']))

        self.cross_suite_version_check([ (x.suite.suite_name, x.binary.version) for x in q.all() ],
M
Mark Hymers 已提交
2102
                                       file, self.pkg.files[file]["version"], sourceful=False)
2103

J
New.  
James Troup 已提交
2104
        # Check for any existing copies of the file
M
Mark Hymers 已提交
2105 2106 2107
        q = session.query(DBBinary).filter_by(package=self.pkg.files[file]["package"])
        q = q.filter_by(version=self.pkg.files[file]["version"])
        q = q.join(Architecture).filter_by(arch_string=self.pkg.files[file]["architecture"])
2108 2109

        if q.count() > 0:
2110
            self.rejects.append("%s: can not overwrite existing copy already in the archive." % (file))
J
New.  
James Troup 已提交
2111 2112 2113

    ################################################################################

M
Mark Hymers 已提交
2114
    def check_source_against_db(self, file, session):
J
Joerg Jaspert 已提交
2115 2116
        """
        """
2117 2118
        source = self.pkg.dsc.get("source")
        version = self.pkg.dsc.get("version")
J
New.  
James Troup 已提交
2119

2120
        # Ensure version is sane
2121 2122 2123 2124 2125
        q = session.query(SrcAssociation)
        q = q.join(DBSource).filter(DBSource.source==source)

        self.cross_suite_version_check([ (x.suite.suite_name, x.source.version) for x in q.all() ],
                                       file, version, sourceful=True)
2126

J
New.  
James Troup 已提交
2127
    ################################################################################
M
Mark Hymers 已提交
2128
    def check_dsc_against_db(self, file, session):
J
Joerg Jaspert 已提交
2129 2130 2131 2132 2133 2134 2135 2136 2137
        """

        @warning: NB: this function can remove entries from the 'files' index [if
         the .orig.tar.gz is a duplicate of the one in the archive]; if
         you're iterating over 'files' and call this function as part of
         the loop, be sure to add a check to the top of the loop to
         ensure you haven't just tried to dereference the deleted entry.

        """
M
Mark Hymers 已提交
2138

M
Mark Hymers 已提交
2139
        Cnf = Config()
2140
        self.pkg.orig_tar_gz = None
J
New.  
James Troup 已提交
2141 2142 2143 2144

        # Try and find all files mentioned in the .dsc.  This has
        # to work harder to cope with the multiple possible
        # locations of an .orig.tar.gz.
2145 2146
        # The ordering on the select is needed to pick the newest orig
        # when it exists in multiple places.
2147
        for dsc_name, dsc_entry in self.pkg.dsc_files.items():
2148
            found = None
2149 2150 2151 2152 2153
            if self.pkg.files.has_key(dsc_name):
                actual_md5 = self.pkg.files[dsc_name]["md5sum"]
                actual_size = int(self.pkg.files[dsc_name]["size"])
                found = "%s in incoming" % (dsc_name)

J
New.  
James Troup 已提交
2154
                # Check the file does not already exist in the archive
M
Mark Hymers 已提交
2155
                ql = get_poolfile_like_name(dsc_name, session)
2156

2157 2158
                # Strip out anything that isn't '%s' or '/%s$'
                for i in ql:
2159
                    if not i.filename.endswith(dsc_name):
2160
                        ql.remove(i)
2161

2162
                # "[dak] has not broken them.  [dak] has fixed a
J
New.  
James Troup 已提交
2163 2164 2165 2166 2167 2168 2169 2170
                # brokenness.  Your crappy hack exploited a bug in
                # the old dinstall.
                #
                # "(Come on!  I thought it was always obvious that
                # one just doesn't release different files with
                # the same name and version.)"
                #                        -- ajk@ on d-devel@l.d.o

2171
                if len(ql) > 0:
2172
                    # Ignore exact matches for .orig.tar.gz
2173
                    match = 0
2174
                    if dsc_name.endswith(".orig.tar.gz"):
2175
                        for i in ql:
2176 2177 2178
                            if self.pkg.files.has_key(dsc_name) and \
                               int(self.pkg.files[dsc_name]["size"]) == int(i.filesize) and \
                               self.pkg.files[dsc_name]["md5sum"] == i.md5sum:
2179
                                self.warnings.append("ignoring %s, since it's already in the archive." % (dsc_name))
2180 2181 2182
                                # TODO: Don't delete the entry, just mark it as not needed
                                # This would fix the stupidity of changing something we often iterate over
                                # whilst we're doing it
M
Mark Hymers 已提交
2183
                                del self.pkg.files[dsc_name]
2184
                                self.pkg.orig_tar_gz = os.path.join(i.location.path, i.filename)
2185
                                match = 1
2186 2187

                    if not match:
2188
                        self.rejects.append("can not overwrite existing copy of '%s' already in the archive." % (dsc_name))
2189 2190

            elif dsc_name.endswith(".orig.tar.gz"):
J
New.  
James Troup 已提交
2191
                # Check in the pool
M
Mark Hymers 已提交
2192
                ql = get_poolfile_like_name(dsc_name, session)
2193

2194
                # Strip out anything that isn't '%s' or '/%s$'
2195
                # TODO: Shouldn't we just search for things which end with our string explicitly in the SQL?
2196
                for i in ql:
2197
                    if not i.filename.endswith(dsc_name):
2198
                        ql.remove(i)
J
New.  
James Troup 已提交
2199

2200
                if len(ql) > 0:
2201 2202 2203
                    # Unfortunately, we may get more than one match here if,
                    # for example, the package was in potato but had an -sa
                    # upload in woody.  So we need to choose the right one.
J
New.  
James Troup 已提交
2204

J
Various  
Joerg Jaspert 已提交
2205 2206
                    # default to something sane in case we don't match any or have only one
                    x = ql[0]
J
New.  
James Troup 已提交
2207 2208 2209

                    if len(ql) > 1:
                        for i in ql:
2210
                            old_file = os.path.join(i.location.path, i.filename)
2211
                            old_file_fh = utils.open_file(old_file)
2212
                            actual_md5 = apt_pkg.md5sum(old_file_fh)
2213
                            old_file_fh.close()
2214
                            actual_size = os.stat(old_file)[stat.ST_SIZE]
2215
                            if actual_md5 == dsc_entry["md5sum"] and actual_size == int(dsc_entry["size"]):
2216
                                x = i
J
New.  
James Troup 已提交
2217

2218
                    old_file = os.path.join(i.location.path, i.filename)
2219
                    old_file_fh = utils.open_file(old_file)
2220
                    actual_md5 = apt_pkg.md5sum(old_file_fh)
2221
                    old_file_fh.close()
2222 2223
                    actual_size = os.stat(old_file)[stat.ST_SIZE]
                    found = old_file
M
Mark Hymers 已提交
2224
                    suite_type = x.location.archive_type
J
Various  
Joerg Jaspert 已提交
2225
                    # need this for updating dsc_files in install()
M
Mark Hymers 已提交
2226
                    dsc_entry["files id"] = x.file_id
2227
                    # See install() in process-accepted...
M
Mark Hymers 已提交
2228
                    self.pkg.orig_tar_id = x.file_id
2229
                    self.pkg.orig_tar_gz = old_file
M
Mark Hymers 已提交
2230
                    self.pkg.orig_tar_location = x.location.location_id
J
New.  
James Troup 已提交
2231
                else:
2232
                    # TODO: Record the queues and info in the DB so we don't hardcode all this crap
2233
                    # Not there? Check the queue directories...
2234
                    for directory in [ "Accepted", "New", "Byhand", "ProposedUpdates", "OldProposedUpdates", "Embargoed", "Unembargoed" ]:
M
Mark Hymers 已提交
2235 2236
                        if not Cnf.has_key("Dir::Queue::%s" % (directory)):
                            continue
M
Mark Hymers 已提交
2237
                        in_otherdir = os.path.join(Cnf["Dir::Queue::%s" % (directory)], dsc_name)
2238 2239 2240 2241 2242 2243 2244
                        if os.path.exists(in_otherdir):
                            in_otherdir_fh = utils.open_file(in_otherdir)
                            actual_md5 = apt_pkg.md5sum(in_otherdir_fh)
                            in_otherdir_fh.close()
                            actual_size = os.stat(in_otherdir)[stat.ST_SIZE]
                            found = in_otherdir
                            self.pkg.orig_tar_gz = in_otherdir
2245 2246

                    if not found:
2247
                        self.rejects.append("%s refers to %s, but I can't find it in the queue or in the pool." % (file, dsc_name))
2248 2249
                        self.pkg.orig_tar_gz = -1
                        continue
J
New.  
James Troup 已提交
2250
            else:
2251
                self.rejects.append("%s refers to %s, but I can't find it in the queue." % (file, dsc_name))
2252
                continue
2253
            if actual_md5 != dsc_entry["md5sum"]:
2254
                self.rejects.append("md5sum for %s doesn't match %s." % (found, file))
2255
            if actual_size != int(dsc_entry["size"]):
2256
                self.rejects.append("size for %s doesn't match %s." % (found, file))
J
New.  
James Troup 已提交
2257

M
Mark Hymers 已提交
2258
    ################################################################################
M
Mark Hymers 已提交
2259
    def accepted_checks(self, overwrite_checks, session):
M
Mark Hymers 已提交
2260 2261 2262 2263 2264 2265 2266 2267
        # Recheck anything that relies on the database; since that's not
        # frozen between accept and our run time when called from p-a.

        # overwrite_checks is set to False when installing to stable/oldstable

        propogate={}
        nopropogate={}

M
Mark Hymers 已提交
2268 2269 2270 2271 2272 2273
        # Find the .dsc (again)
        dsc_filename = None
        for f in self.pkg.files.keys():
            if self.pkg.files[f]["type"] == "dsc":
                dsc_filename = f

M
Mark Hymers 已提交
2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299
        for checkfile in self.pkg.files.keys():
            # The .orig.tar.gz can disappear out from under us is it's a
            # duplicate of one in the archive.
            if not self.pkg.files.has_key(checkfile):
                continue

            entry = self.pkg.files[checkfile]

            # Check that the source still exists
            if entry["type"] == "deb":
                source_version = entry["source version"]
                source_package = entry["source package"]
                if not self.pkg.changes["architecture"].has_key("source") \
                   and not source_exists(source_package, source_version,  self.pkg.changes["distribution"].keys()):
                    self.rejects.append("no source found for %s %s (%s)." % (source_package, source_version, checkfile))

            # Version and file overwrite checks
            if overwrite_checks:
                if entry["type"] == "deb":
                    self.check_binary_against_db(checkfile, session)
                elif entry["type"] == "dsc":
                    self.check_source_against_db(checkfile, session)
                    self.check_dsc_against_db(dsc_filename, session)

            # propogate in the case it is in the override tables:
            for suite in self.pkg.changes.get("propdistribution", {}).keys():
M
Mark Hymers 已提交
2300
                if self.in_override_p(entry["package"], entry["component"], suite, entry.get("dbtype",""), checkfile, session):
M
Mark Hymers 已提交
2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312
                    propogate[suite] = 1
                else:
                    nopropogate[suite] = 1

        for suite in propogate.keys():
            if suite in nopropogate:
                continue
            self.pkg.changes["distribution"][suite] = 1

        for checkfile in self.pkg.files.keys():
            # Check the package is still in the override tables
            for suite in self.pkg.changes["distribution"].keys():
M
Mark Hymers 已提交
2313
                if not self.in_override_p(entry["package"], entry["component"], suite, entry.get("dbtype",""), checkfile, session):
M
Mark Hymers 已提交
2314 2315 2316 2317 2318 2319 2320 2321 2322 2323
                    self.rejects.append("%s is NEW for %s." % (checkfile, suite))

    ################################################################################
    # This is not really a reject, but an unaccept, but since a) the code for
    # that is non-trivial (reopen bugs, unannounce etc.), b) this should be
    # extremely rare, for now we'll go with whining at our admin folks...

    def do_unaccept(self):
        cnf = Config()

M
Mark Hymers 已提交
2324
        self.update_subst()
M
Mark Hymers 已提交
2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354
        self.Subst["__REJECTOR_ADDRESS__"] = cnf["Dinstall::MyEmailAddress"]
        self.Subst["__REJECT_MESSAGE__"] = self.package_info()
        self.Subst["__CC__"] = "Cc: " + cnf["Dinstall::MyEmailAddress"]
        self.Subst["__BCC__"] = "X-DAK: dak process-accepted\nX-Katie: $Revision: 1.18 $"
        if cnf.has_key("Dinstall::Bcc"):
            self.Subst["__BCC__"] += "\nBcc: %s" % (cnf["Dinstall::Bcc"])

        template = os.path.join(cnf["Dir::Templates"], "process-accepted.unaccept")

        reject_mail_message = utils.TemplateSubst(self.Subst, template)

        # Write the rejection email out as the <foo>.reason file
        reason_filename = os.path.basename(self.pkg.changes_file[:-8]) + ".reason"
        reject_filename = os.path.join(cnf["Dir::Queue::Reject"], reason_filename)

        # If we fail here someone is probably trying to exploit the race
        # so let's just raise an exception ...
        if os.path.exists(reject_filename):
            os.unlink(reject_filename)

        fd = os.open(reject_filename, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0644)
        os.write(fd, reject_mail_message)
        os.close(fd)

        utils.send_mail(reject_mail_message)

        del self.Subst["__REJECTOR_ADDRESS__"]
        del self.Subst["__REJECT_MESSAGE__"]
        del self.Subst["__CC__"]

2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378
    ################################################################################
    # If any file of an upload has a recent mtime then chances are good
    # the file is still being uploaded.

    def upload_too_new(self):
        cnf = Config()
        too_new = False
        # Move back to the original directory to get accurate time stamps
        cwd = os.getcwd()
        os.chdir(self.pkg.directory)
        file_list = self.pkg.files.keys()
        file_list.extend(self.pkg.dsc_files.keys())
        file_list.append(self.pkg.changes_file)
        for f in file_list:
            try:
                last_modified = time.time()-os.path.getmtime(f)
                if last_modified < int(cnf["Dinstall::SkipTime"]):
                    too_new = True
                    break
            except:
                pass

        os.chdir(cwd)
        return too_new