katie 54.7 KB
Newer Older
J
James Troup 已提交
1 2 3 4
#!/usr/bin/env python

# Installs Debian packaes
# Copyright (C) 2000  James Troup <james@nocrew.org>
J
James Troup 已提交
5
# $Id: katie,v 1.14 2000-12-19 21:06:20 troup Exp $
J
James Troup 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110

# 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

# Based (almost entirely) on dinstall by Guy Maor <maor@debian.org>

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

#    Cartman: "I'm trying to make the best of a bad situation, I don't
#              need to hear crap from a bunch of hippy freaks living in
#              denial.  Screw you guys, I'm going home."
#
#    Kyle: "But Cartman, we're trying to..."
#
#    Cartman: "uhh.. screw you guys... home."

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

import FCNTL, commands, fcntl, getopt, os, pg, pwd, re, shutil, stat, string, sys, tempfile, time
import apt_inst, apt_pkg
import utils, db_access

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

re_isanum = re.compile (r'^\d+$');
re_isadeb = re.compile (r'.*\.u?deb$');
re_issource = re.compile (r'(.+)_(.+?)\.(orig\.tar\.gz|diff\.gz|tar\.gz|dsc)');
re_dpackage = re.compile (r'^package:\s*(.*)', re.IGNORECASE);
re_darchitecture = re.compile (r'^architecture:\s*(.*)', re.IGNORECASE);
re_dversion = re.compile (r'^version:\s*(.*)', re.IGNORECASE);
re_dsection = re.compile (r'^section:\s*(.*)', re.IGNORECASE);
re_dpriority = re.compile (r'^priority:\s*(.*)', re.IGNORECASE);
re_changes = re.compile (r'changes$');
re_override_package = re.compile(r'(\S*)\s+.*');
re_default_answer = re.compile(r"\[(.*)\]");
re_fdnic = re.compile("\n\n");

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

#
reject_footer = """If you don't understand why your files were rejected, or if the
override file requires editing, reply to this email.

Your rejected files are in incoming/REJECT/.  (Some may also be in
incoming/ if your .changes file was unparsable.)  If only some of the
files need to repaired, you may move any good files back to incoming/.
Please remove any bad files from incoming/REJECT/."""
#
new_ack_footer = """Your package contains new components which requires manual editing of
the override file.  It is ok otherwise, so please be patient.  New
packages are usually added to the override file about once a week.

You may have gotten the distribution wrong.  You'll get warnings above
if files already exist in other distributions."""
#
installed_footer = """If the override file requires editing, file a bug on ftp.debian.org.

Thank you for your contribution to Debian GNU."""

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

# Globals
Cnf = None;
reject_message = "";
changes = {};
dsc = {};
dsc_files = {};
files = {};
projectB = None;
new_ack_new = {};
new_ack_old = {};
overrides = {};
install_count = 0;
install_bytes = 0.0;
reprocess = 0;
orig_tar_id = None;

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

def usage (exit_code):
    print """Usage: dinstall [OPTION]... [CHANGES]...
  -a, --automatic           automatic run
  -d, --debug=VALUE         debug
  -k, --ack-new             acknowledge new packages
  -m, --manual-reject=MSG   manual reject with `msg'
  -n, --dry-run             don't do anything
  -p, --no-lock             don't check lockfile !! for cron.daily only !!
  -r, --no-version-check    override version check
  -u, --distribution=DIST   override distribution to `dist'"""
    sys.exit(exit_code)

def check_signature (filename):
    global reject_message

J
James Troup 已提交
111
    (result, output) = commands.getstatusoutput("gpg --emulate-md-encode-bug --batch --no-options --no-default-keyring --always-trust --keyring=%s --keyring=%s < %s >/dev/null" % (Cnf["Dinstall::PGPKeyring"], Cnf["Dinstall::GPGKeyring"], filename))
J
James Troup 已提交
112 113 114 115 116 117 118
    if (result != 0):
        reject_message = "Rejected: GPG signature check failed on `%s'.\n%s\n" % (filename, output)
        return 0
    return 1

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

J
James Troup 已提交
119
def read_override_file (filename, suite, component, binary_type):
J
James Troup 已提交
120
    global overrides;
J
James Troup 已提交
121

J
James Troup 已提交
122 123 124 125 126
    file = utils.open_file(filename, 'r');
    for line in file.readlines():
        line = string.strip(utils.re_comments.sub('', line))
        override_package = re_override_package.sub(r'\1', line)
        if override_package != "":
J
James Troup 已提交
127
            overrides[suite][component][binary_type][override_package] = 1
J
James Troup 已提交
128 129 130 131 132
    file.close()


# See if a given package is in the override file.  Caches and only loads override files on demand.

J
James Troup 已提交
133
def in_override_p (package, component, suite, binary_type):
J
James Troup 已提交
134 135
    global overrides;

J
James Troup 已提交
136 137 138
    if binary_type == "" or binary_type == "deb":
        binary_type = "-";

J
James Troup 已提交
139 140 141 142
    # Avoid <undef> on unknown distributions
    if db_access.get_suite_id(suite) == -1:
        return None;

J
James Troup 已提交
143 144 145
    # FIXME: nasty non-US speficic hack
    if string.lower(component[:7]) == "non-us/":
        component = component[7:];
J
James Troup 已提交
146
    if not overrides.has_key(suite) or not overrides[suite].has_key(component) or not overrides[suite][component].has_key(binary_type):
J
James Troup 已提交
147 148 149 150
        if not overrides.has_key(suite):
            overrides[suite] = {}
        if not overrides[suite].has_key(component):
            overrides[suite][component] = {}
J
James Troup 已提交
151 152
        if not overrides[suite][component].has_key(binary_type):
            overrides[suite][component][binary_type] = {}
J
James Troup 已提交
153 154
        if Cnf.has_key("Suite::%s::SingleOverrideFile" % (suite)): # legacy mixed suite (i.e. experimental)
            override_filename = Cnf["Dir::OverrideDir"] + 'override.' + Cnf["Suite::%s::OverrideCodeName" % (suite)];
J
James Troup 已提交
155
            read_override_file (override_filename, suite, component, binary_type);
J
James Troup 已提交
156
        else: # all others.
J
James Troup 已提交
157 158
            if binary_type == "udeb":
                override_filename = Cnf["Dir::OverrideDir"] + 'override.' + Cnf["Suite::%s::OverrideCodeName" % (suite)] + '.debian-installer.' + component;
J
James Troup 已提交
159
                read_override_file (override_filename, suite, component, binary_type);
J
James Troup 已提交
160 161 162
            else:
                for src in ("", ".src"):
                    override_filename = Cnf["Dir::OverrideDir"] + 'override.' + Cnf["Suite::%s::OverrideCodeName" % (suite)] + '.' + component + src;
J
James Troup 已提交
163
                    read_override_file (override_filename, suite, component, binary_type);
J
James Troup 已提交
164

J
James Troup 已提交
165
    return overrides[suite][component][binary_type].get(package, None);
J
James Troup 已提交
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240

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

def check_changes(filename):
    global reject_message, changes, files

    # Parse the .changes field into a dictionary [FIXME - need to trap errors, pass on to reject_message etc.]
    try:
        changes = utils.parse_changes(filename)
    except utils.cant_open_exc:
        reject_message = "Rejected: can't read changes file '%s'.\n" % (filename)
        return 0;
    except utils.changes_parse_error_exc, line:
        reject_message = "Rejected: error parsing changes file '%s', can't grok: %s.\n" % (filename, line)
        changes["maintainer822"] = Cnf["Dinstall::MyEmailAddress"];
        return 0;

    # Parse the Files field from the .changes into another dictionary [FIXME need to trap errors as above]
    files = utils.build_file_list(changes, "")

    # Check for mandatory fields
    for i in ("source", "binary", "architecture", "version", "distribution","maintainer", "files"):
        if not changes.has_key(i):
            reject_message = "Rejected: Missing field `%s' in changes file." % (i)
            return 0    # Avoid <undef> errors during later tests

    # Fix the Maintainer: field to be RFC822 compatible
    (changes["maintainer822"], changes["maintainername"], changes["maintaineremail"]) = utils.fix_maintainer (changes["maintainer"])

    # Override the Distribution: field if appropriate
    if Cnf["Dinstall::Options::Override-Distribution"] != "":
        reject_message = reject_message + "Warning: Distribution was overriden from %s to %s.\n" % (changes["distribution"], Cnf["Dinstall::Options::Override-Distribution"])
        changes["distribution"] = Cnf["Dinstall::Options::Override-Distribution"]

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

    # Ensure all the values in Closes: are numbers
    if changes.has_key("closes"):
        for i in changes["closes"].keys():
            if re_isanum.match (i) == None:
                reject_message = reject_message + "Rejected: `%s' from Closes field isn't a number.\n" % (i)

    # Map frozen to unstable if frozen doesn't exist
    if changes["distribution"].has_key("frozen") and not Cnf.has_key("Suite::Frozen"):
        del changes["distribution"]["frozen"]
        reject_message = reject_message + "Mapping frozen to unstable.\n"

    # Ensure target distributions exist
    for i in changes["distribution"].keys():
        if not Cnf.has_key("Suite::%s" % (i)):
            reject_message = reject_message + "Rejected: Unknown distribution `%s'.\n" % (i)

    # Map unreleased arches from stable to unstable
    if changes["distribution"].has_key("stable"):
        for i in changes["architecture"].keys():
            if not Cnf.has_key("Suite::Stable::Architectures::%s" % (i)):
                reject_message = reject_message + "Mapping stable to unstable for unreleased arch `%s'.\n" % (i)
                del changes["distribution"]["stable"]
    
    # Map arches not being released from frozen to unstable
    if changes["distribution"].has_key("frozen"):
        for i in changes["architecture"].keys():
            if not Cnf.has_key("Suite::Frozen::Architectures::%s" % (i)):
                reject_message = reject_message + "Mapping frozen to unstable for non-releasing arch `%s'.\n" % (i)
                del changes["distribution"]["frozen"]

    # Handle uploads to stable
    if changes["distribution"].has_key("stable"):
J
James Troup 已提交
241
        # If running from within proposed-updates; assume an install to stable
J
James Troup 已提交
242
        if string.find(os.getcwd(), 'proposed-updates') != -1:
J
James Troup 已提交
243
            # FIXME: should probably remove anything that != stable
J
James Troup 已提交
244
            for i in ("frozen", "unstable"):
245
                if changes["distribution"].has_key(i):
J
James Troup 已提交
246 247
                    reject_message = reject_message + "Removing %s from distribution list.\n"
                    del changes["distribution"][i]
J
James Troup 已提交
248 249 250 251 252 253
            changes["stable upload"] = 1;
            # If we can't find a file from the .changes; assume it's a package already in the pool and move into the pool
            file = files.keys()[0];
            if os.access(file, os.R_OK) == 0:
                pool_dir = Cnf["Dir::PoolDir"] + '/' + utils.poolify(changes["source"], files[file]["component"]);
                os.chdir(pool_dir);
J
James Troup 已提交
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
        # Otherwise (normal case) map stable to updates
        else:
            reject_message = reject_message + "Mapping stable to updates.\n";
            del changes["distribution"]["stable"];
            changes["distribution"]["proposed-updates"] = 1;

    # chopversion = no epoch; chopversion2 = no epoch and no revision (e.g. for .orig.tar.gz comparison)
    changes["chopversion"] = utils.re_no_epoch.sub('', changes["version"])
    changes["chopversion2"] = utils.re_no_revision.sub('', changes["chopversion"])
    
    if string.find(reject_message, "Rejected:") != -1:
        return 0
    else: 
        return 1

def check_files():
    global reject_message
    
    archive = utils.where_am_i();

    for file in files.keys():
        # Check the file is readable
        if os.access(file,os.R_OK) == 0:
            reject_message = reject_message + "Rejected: Can't read `%s'.\n" % (file)
            files[file]["type"] = "unreadable";
            continue
        # If it's byhand skip remaining checks
        if files[file]["section"] == "byhand":
            files[file]["byhand"] = 1;
            files[file]["type"] = "byhand";
        # Checks for a binary package...
        elif re_isadeb.match(file) != None:
            # Extract package information using dpkg-deb
            control = apt_pkg.ParseSection(apt_inst.debExtractControl(utils.open_file(file,"r")))

            # Check for mandatory fields
            if control.Find("Package") == None:
                reject_message = reject_message + "Rejected: %s: No package field in control.\n" % (file)
            if control.Find("Architecture") == None:
                reject_message = reject_message + "Rejected: %s: No architecture field in control.\n" % (file)
            if control.Find("Version") == None:
                reject_message = reject_message + "Rejected: %s: No version field in control.\n" % (file)
                
            # Ensure the package name matches the one give in the .changes
            if not changes["binary"].has_key(control.Find("Package", "")):
                reject_message = reject_message + "Rejected: %s: control file lists name as `%s', which isn't in changes file.\n" % (file, control.Find("Package", ""))

            # Validate the architecture
            if not Cnf.has_key("Suite::Unstable::Architectures::%s" % (control.Find("Architecture", ""))):
                reject_message = reject_message + "Rejected: Unknown architecture '%s'.\n" % (control.Find("Architecture", ""))

            # Check the architecture matches the one given in the .changes
            if not changes["architecture"].has_key(control.Find("Architecture", "")):
                reject_message = reject_message + "Rejected: %s: control file lists arch as `%s', which isn't in changes file.\n" % (file, control.Find("Architecture", ""))
            # Check the section & priority match those given in the .changes (non-fatal)
            if control.Find("Section") != None and files[file]["section"] != "" and files[file]["section"] != control.Find("Section"):
                reject_message = reject_message + "Warning: %s control file lists section as `%s', but changes file has `%s'.\n" % (file, control.Find("Section", ""), files[file]["section"])
            if control.Find("Priority") != None and files[file]["priority"] != "" and files[file]["priority"] != control.Find("Priority"):
                reject_message = reject_message + "Warning: %s control file lists priority as `%s', but changes file has `%s'.\n" % (file, control.Find("Priority", ""), files[file]["priority"])

            epochless_version = utils.re_no_epoch.sub('', control.Find("Version", ""))

            files[file]["package"] = control.Find("Package");
            files[file]["architecture"] = control.Find("Architecture");
            files[file]["version"] = control.Find("Version");
            files[file]["maintainer"] = control.Find("Maintainer", "");
            if file[-5:] == ".udeb":
                files[file]["dbtype"] = "udeb";
            elif file[-4:] == ".deb":
                files[file]["dbtype"] = "deb";
            else:
                reject_message = reject_message + "Rejected: %s is neither a .deb or a .udeb.\n " % (file);
            files[file]["type"] = "deb";
            files[file]["fullname"] = "%s_%s_%s.deb" % (control.Find("Package", ""), epochless_version, control.Find("Architecture", ""))
            files[file]["source"] = control.Find("Source", "");
            if files[file]["source"] == "":
                files[file]["source"] = files[file]["package"];
        # Checks for a source package...
        else:
            m = re_issource.match(file)
            if m != None:
                files[file]["package"] = m.group(1)
                files[file]["version"] = m.group(2)
                files[file]["type"] = m.group(3)
                
                # Ensure the source package name matches the Source filed in the .changes
                if changes["source"] != files[file]["package"]:
                    reject_message = reject_message + "Rejected: %s: changes file doesn't say %s for Source\n" % (file, files[file]["package"])

                # Ensure the source version matches the version in the .changes file
                if files[file]["type"] == "orig.tar.gz":
                    changes_version = changes["chopversion2"]
                else:
                    changes_version = changes["chopversion"]
                if changes_version != files[file]["version"]:
                    reject_message = reject_message + "Rejected: %s: should be %s according to changes file.\n" % (file, changes_version)

                # Ensure the .changes lists source in the Architecture field
                if not changes["architecture"].has_key("source"):
                    reject_message = reject_message + "Rejected: %s: changes file doesn't list `source' in Architecture field.\n" % (file)

                # Check the signature of a .dsc file
                if files[file]["type"] == "dsc":
                    check_signature(file)

                files[file]["fullname"] = file

            # Not a binary or source package?  Assume byhand...
            else:
                files[file]["byhand"] = 1;
                files[file]["type"] = "byhand";
                
        files[file]["oldfiles"] = {}
        for suite in changes["distribution"].keys():
            # Skip byhand
            if files[file].has_key("byhand"):
                continue

            if Cnf.has_key("Suite:%s::Components" % (suite)) and not Cnf.has_key("Suite::%s::Components::%s" % (suite, files[file]["component"])):
                reject_message = reject_message + "Rejected: unknown component `%s' for suite `%s'.\n" % (files[file]["component"], suite)
                continue

            # See if the package is NEW
J
James Troup 已提交
377
            if not in_override_p(files[file]["package"], files[file]["component"], suite, files[file].get("dbtype","")):
J
James Troup 已提交
378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393
                files[file]["new"] = 1
                
            # Find any old binary packages
            if files[file]["type"] == "deb":
                q = projectB.query("SELECT b.id, b.version, f.filename, l.path, c.name FROM binaries b, bin_associations ba, suite s, location l, component c, architecture a, files f WHERE b.package = '%s' AND s.suite_name = '%s' AND a.arch_string = '%s' AND ba.bin = b.id AND ba.suite = s.id AND b.architecture = a.id AND f.location = l.id AND l.component = c.id AND b.file = f.id"
                                   % (files[file]["package"], suite, files[file]["architecture"]))
                oldfiles = q.dictresult()
                for oldfile in oldfiles:
                    files[file]["oldfiles"][suite] = oldfile
                    # Check versions [NB: per-suite only; no cross-suite checking done (yet)]
                    if apt_pkg.VersionCompare(files[file]["version"], oldfile["version"]) != 1:
                        if Cnf["Dinstall::Options::No-Version-Check"]:
                            reject_message = reject_message + "Overriden rejection"
                        else:
                            reject_message = reject_message + "Rejected"
                        reject_message = reject_message + ": %s Old version `%s' >= new version `%s'.\n" % (file, oldfile["version"], files[file]["version"])
394
                # Check for existing copies of the file
J
James Troup 已提交
395 396 397 398
                if not changes.has_key("stable upload"):
                    q = projectB.query("SELECT b.id FROM binaries b, architecture a WHERE b.package = '%s' AND b.version = '%s' AND a.arch_string = '%s' AND a.id = b.architecture" % (files[file]["package"], files[file]["version"], files[file]["architecture"]))
                    if q.getresult() != []:
                        reject_message = reject_message + "Rejected: can not overwrite existing copy of '%s' already in the archive.\n" % (file)
399

J
James Troup 已提交
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417
            # Find any old .dsc files
            elif files[file]["type"] == "dsc":
                q = projectB.query("SELECT s.id, s.version, f.filename, l.path, c.name FROM source s, src_associations sa, suite su, location l, component c, files f WHERE s.source = '%s' AND su.suite_name = '%s' AND sa.source = s.id AND sa.suite = su.id AND f.location = l.id AND l.component = c.id AND f.id = s.file"
                                   % (files[file]["package"], suite))
                oldfiles = q.dictresult()
                if len(oldfiles) >= 1:
                    files[file]["oldfiles"][suite] = oldfiles[0]

            # Validate the component
            component = files[file]["component"];
            component_id = db_access.get_component_id(component);
            if component_id == -1:
                reject_message = reject_message + "Rejected: file '%s' has unknown component '%s'.\n" % (file, component);
                continue;
            
            # Check the md5sum & size against existing files (if any)
            location = Cnf["Dir::PoolDir"];
            files[file]["location id"] = db_access.get_location_id (location, component, archive);
J
James Troup 已提交
418 419 420
            
            files[file]["pool name"] = utils.poolify (changes["source"], files[file]["component"]);
            files_id = db_access.get_files_id(files[file]["pool name"] + file, files[file]["size"], files[file]["md5sum"], files[file]["location id"]);
J
James Troup 已提交
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
            if files_id == -1:
                reject_message = reject_message + "Rejected: INTERNAL ERROR, get_files_id() returned multiple matches for %s.\n" % (file)
            elif files_id == -2:
                reject_message = reject_message + "Rejected: md5sum and/or size mismatch on existing copy of %s.\n" % (file)
            files[file]["files id"] = files_id

            # Check for packages that have moved from one component to another
            if files[file]["oldfiles"].has_key(suite) and files[file]["oldfiles"][suite]["name"] != files[file]["component"]:
                files[file]["othercomponents"] = files[file]["oldfiles"][suite]["name"];

                
    if string.find(reject_message, "Rejected:") != -1:
        return 0
    else: 
        return 1

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

def check_dsc ():
    global dsc, dsc_files, reject_message, reprocess, orig_tar_id;
J
James Troup 已提交
441

J
James Troup 已提交
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
    for file in files.keys():
        if files[file]["type"] == "dsc":
            try:
                dsc = utils.parse_changes(file)
            except utils.cant_open_exc:
                reject_message = reject_message + "Rejected: can't read changes file '%s'.\n" % (filename)
                return 0;
            except utils.changes_parse_error_exc, line:
                reject_message = reject_message + "Rejected: error parsing changes file '%s', can't grok: %s.\n" % (filename, line)
                return 0;
            try:
                dsc_files = utils.build_file_list(dsc, 1)
            except utils.no_files_exc:
                reject_message = reject_message + "Rejected: no Files: field in .dsc file.\n";
                continue;

            # 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.
            for dsc_file in dsc_files.keys():
                if files.has_key(dsc_file):
                    actual_md5 = files[dsc_file]["md5sum"]
                    found = "%s in incoming" % (dsc_file)
465
                    # Check the file does not already exist in the archive
J
James Troup 已提交
466
                    if not changes.has_key("stable upload"):
J
James Troup 已提交
467
                        q = projectB.query("SELECT f.id FROM files f, location l WHERE f.filename ~ '/%s' AND l.id = f.location" % (utils.regex_safe(dsc_file)));
J
James Troup 已提交
468 469
                        if q.getresult() != []:
                            reject_message = reject_message + "Rejected: can not overwrite existing copy of '%s' already in the archive.\n" % (dsc_file)
J
James Troup 已提交
470 471
                elif dsc_file[-12:] == ".orig.tar.gz":
                    # Check in the pool
J
James Troup 已提交
472
                    q = projectB.query("SELECT l.path, f.filename, l.type, f.id FROM files f, location l WHERE f.filename ~ '/%s' AND l.id = f.location" % (utils.regex_safe(dsc_file)));
J
James Troup 已提交
473 474 475 476 477 478
                    ql = q.getresult();
                    if len(ql) > 0:
                        old_file = ql[0][0] + ql[0][1];
                        actual_md5 = apt_pkg.md5sum(utils.open_file(old_file,"r"));
                        found = old_file;
                        suite_type = ql[0][2];
J
James Troup 已提交
479
                        dsc_files[dsc_file]["files id"] = ql[0][3]; # need this for updating dsc_files in install()
J
James Troup 已提交
480 481 482 483
                        # See install()...
                        if suite_type == "legacy" or suite_type == "legacy-mixed":
                            orig_tar_id = ql[0][3];
                    else:
J
James Troup 已提交
484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
                        # Not there? Check in Incoming...
                        # [See comment above process_it() for explanation
                        #  of why this is necessary...]
                        if os.access(dsc_file, os.R_OK) != 0:
                            files[dsc_file] = {};
                            files[dsc_file]["size"] = os.stat(dsc_file)[stat.ST_SIZE];
                            files[dsc_file]["md5sum"] = dsc_files[dsc_file]["md5sum"];
                            files[dsc_file]["section"] = files[file]["section"];
                            files[dsc_file]["priority"] = files[file]["priority"];
                            files[dsc_file]["component"] = files[file]["component"];
                            reprocess = 1;
                            return 1;
                        else:
                            reject_message = reject_message + "Rejected: %s refers to %s, but I can't find it in Incoming or in the pool.\n" % (file, dsc_file);
                            continue;
J
James Troup 已提交
499 500 501 502 503
                else:
                    reject_message = reject_message + "Rejected: %s refers to %s, but I can't find it in Incoming." % (file, dsc_file);
                    continue;
                if actual_md5 != dsc_files[dsc_file]["md5sum"]:
                    reject_message = reject_message + "Rejected: md5sum for %s doesn't match %s.\n" % (found, file)
504

J
James Troup 已提交
505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 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 618 619
    if string.find(reject_message, "Rejected:") != -1:
        return 0
    else: 
        return 1

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

def check_md5sums ():
    global reject_message;

    for file in files.keys():
        try:
            file_handle = utils.open_file(file,"r");
        except utils.cant_open_exc:
            pass;
        else:
            if apt_pkg.md5sum(file_handle) != files[file]["md5sum"]:
                reject_message = reject_message + "Rejected: md5sum check failed for %s.\n" % (file);

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

def action (changes_filename):
    byhand = confirm = suites = summary = new = "";

    # changes["distribution"] may not exist in corner cases
    # (e.g. unreadable changes files)
    if not changes.has_key("distribution"):
        changes["distribution"] = {};
    
    for suite in changes["distribution"].keys():
        if Cnf.has_key("Suite::%s::Confirm"):
            confirm = confirm + suite + ", "
        suites = suites + suite + ", "
    confirm = confirm[:-2]
    suites = suites[:-2]

    for file in files.keys():
        if files[file].has_key("byhand"):
            byhand = 1
            summary = summary + file + " byhand\n"
        elif files[file].has_key("new"):
            new = 1
            summary = summary + "(new) %s %s %s\n" % (file, files[file]["priority"], files[file]["section"])
            if files[file].has_key("othercomponents"):
                summary = summary + "WARNING: Already present in %s distribution.\n" % (files[file]["othercomponents"])
            if files[file]["type"] == "deb":
                summary = summary + apt_pkg.ParseSection(apt_inst.debExtractControl(utils.open_file(file,"r")))["Description"] + '\n';
        else:
            files[file]["pool name"] = utils.poolify (changes["source"], files[file]["component"])
            destination = Cnf["Dir::PoolRoot"] + files[file]["pool name"] + file
            summary = summary + file + "\n  to " + destination + "\n"

    short_summary = summary;

    # This is for direport's benefit...
    f = re_fdnic.sub("\n .\n", changes.get("changes",""));

    if confirm or byhand or new:
        summary = summary + "Changes: " + f;

    summary = summary + announce (short_summary, 0)
    
    (prompt, answer) = ("", "XXX")
    if Cnf["Dinstall::Options::No-Action"] or Cnf["Dinstall::Options::Automatic"]:
        answer = 'S'

    if string.find(reject_message, "Rejected") != -1:
        if time.time()-os.path.getmtime(changes_filename) < 86400:
            print "SKIP (too new)\n" + reject_message,;
            prompt = "[S]kip, Manual reject, Quit ?";
        else:
            print "REJECT\n" + reject_message,;
            prompt = "[R]eject, Manual reject, Skip, Quit ?";
            if Cnf["Dinstall::Options::Automatic"]:
                answer = 'R';
    elif new:
        print "NEW to %s\n%s%s" % (suites, reject_message, summary),;
        prompt = "[S]kip, New ack, Manual reject, Quit ?";
        if Cnf["Dinstall::Options::Automatic"] and Cnf["Dinstall::Options::Ack-New"]:
            answer = 'N';
    elif byhand:
        print "BYHAND\n" + reject_message + summary,;
        prompt = "[I]nstall, Manual reject, Skip, Quit ?";
    elif confirm:
        print "CONFIRM to %s\n%s%s" % (confirm, reject_message, summary),
        prompt = "[I]nstall, Manual reject, Skip, Quit ?";
    else:
        print "INSTALL\n" + reject_message + summary,;
        prompt = "[I]nstall, Manual reject, Skip, Quit ?";
        if Cnf["Dinstall::Options::Automatic"]:
            answer = 'I';

    while string.find(prompt, answer) == -1:
        print prompt,;
        answer = utils.our_raw_input()
        m = re_default_answer.match(prompt)
        if answer == "":
            answer = m.group(1)
        answer = string.upper(answer[:1])

    if answer == 'R':
        reject (changes_filename, "");
    elif answer == 'M':
        manual_reject (changes_filename);
    elif answer == 'I':
        install (changes_filename, summary, short_summary);
    elif answer == 'N':
        acknowledge_new (changes_filename, summary);
    elif answer == 'Q':
        sys.exit(0)

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

def install (changes_filename, summary, short_summary):
    global install_count, install_bytes
J
James Troup 已提交
620 621 622 623 624

    # Stable uploads are a special case
    if changes.has_key("stable upload"):
        stable_install (changes_filename, summary, short_summary);
        return;
J
James Troup 已提交
625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651
    
    print "Installing."

    archive = utils.where_am_i();

    # Begin a transaction; if we bomb out anywhere between here and the COMMIT WORK below, the DB will not be changed.
    projectB.query("BEGIN WORK");

    # Add the .dsc file to the DB
    for file in files.keys():
        if files[file]["type"] == "dsc":
            package = dsc["source"]
            version = dsc["version"]  # NB: not files[file]["version"], that has no epoch
            maintainer = dsc["maintainer"]
            maintainer = string.replace(maintainer, "'", "\\'")
            maintainer_id = db_access.get_or_set_maintainer_id(maintainer);
            filename = files[file]["pool name"] + file;
            dsc_location_id = files[file]["location id"];
            if not files[file]["files id"]:
                files[file]["files id"] = db_access.set_files_id (filename, files[file]["size"], files[file]["md5sum"], dsc_location_id)
            projectB.query("INSERT INTO source (source, version, maintainer, file) VALUES ('%s', '%s', %d, %d)"
                           % (package, version, maintainer_id, files[file]["files id"]))
            
            for suite in changes["distribution"].keys():
                suite_id = db_access.get_suite_id(suite);
                projectB.query("INSERT INTO src_associations (suite, source) VALUES (%d, currval('source_id_seq'))" % (suite_id))

J
James Troup 已提交
652 653 654 655
            # Add the source files to the DB (files and dsc_files)
            projectB.query("INSERT INTO dsc_files (source, file) VALUES (currval('source_id_seq'), %d)" % (files[file]["files id"]));
            for dsc_file in dsc_files.keys():
                filename = files[file]["pool name"] + dsc_file;
J
James Troup 已提交
656 657 658 659 660
                # If the .orig.tar.gz is already in the pool, it's
                # files id is stored in dsc_files by check_dsc().
                files_id = dsc_files[dsc_file].get("files id", None);
                if files_id == None:
                    files_id = db_access.get_files_id(filename, dsc_files[dsc_file]["size"], dsc_files[dsc_file]["md5sum"], dsc_location_id);
J
James Troup 已提交
661 662
                # FIXME: needs to check for -1/-2 and or handle exception
                if files_id == None:
J
James Troup 已提交
663
                    files_id = db_access.set_files_id (filename, dsc_files[dsc_file]["size"], dsc_files[dsc_file]["md5sum"], dsc_location_id);
J
James Troup 已提交
664 665
                projectB.query("INSERT INTO dsc_files (source, file) VALUES (currval('source_id_seq'), %d)" % (files_id));
            
J
James Troup 已提交
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 694 695 696 697 698 699 700 701 702 703
    # Add the .deb files to the DB
    for file in files.keys():
        if files[file]["type"] == "deb":
            package = files[file]["package"]
            version = files[file]["version"]
            maintainer = files[file]["maintainer"]
            maintainer = string.replace(maintainer, "'", "\\'")
            maintainer_id = db_access.get_or_set_maintainer_id(maintainer);
            architecture = files[file]["architecture"]
            architecture_id = db_access.get_architecture_id (architecture);
            type = files[file]["dbtype"];
            component = files[file]["component"]
            source = files[file]["source"]
            source_version = ""
            if string.find(source, "(") != -1:
                m = utils.re_extract_src_version.match(source)
                source = m.group(1)
                source_version = m.group(2)
            if not source_version:
                source_version = version
            filename = files[file]["pool name"] + file;
            if not files[file]["files id"]:
                files[file]["files id"] = db_access.set_files_id (filename, files[file]["size"], files[file]["md5sum"], files[file]["location id"])
            source_id = db_access.get_source_id (source, source_version);
            if source_id:
                projectB.query("INSERT INTO binaries (package, version, maintainer, source, architecture, file, type) VALUES ('%s', '%s', %d, %d, %d, %d, '%s')"
                               % (package, version, maintainer_id, source_id, architecture_id, files[file]["files id"], type));
            else:
                projectB.query("INSERT INTO binaries (package, version, maintainer, architecture, file, type) VALUES ('%s', '%s', %d, %d, %d, '%s')"
                               % (package, version, maintainer_id, architecture_id, files[file]["files id"], type));
            for suite in changes["distribution"].keys():
                suite_id = db_access.get_suite_id(suite);
                projectB.query("INSERT INTO bin_associations (suite, bin) VALUES (%d, currval('binaries_id_seq'))" % (suite_id));

    # If the .orig.tar.gz is in a legacy directory we need to poolify
    # it, so that apt-get source (and anything else that goes by the
    # "Directory:" field in the Sources.gz file) works.
    if orig_tar_id != None:
J
James Troup 已提交
704
        q = projectB.query("SELECT DISTINCT ON (f.id) l.path, f.filename, f.id as files_id, df.source, df.id as dsc_files_id, f.size, f.md5sum FROM files f, dsc_files df, location l WHERE df.source IN (SELECT source FROM dsc_files WHERE file = %s) AND f.id = df.file AND l.id = f.location AND (l.type = 'legacy' OR l.type = 'legacy-mixed')" % (orig_tar_id));
J
James Troup 已提交
705 706 707 708
        qd = q.dictresult();
        for qid in qd:
            # First move the files to the new location
            legacy_filename = qid["path"]+qid["filename"];
709
            pool_location = utils.poolify (changes["source"], files[file]["component"]);
J
James Troup 已提交
710 711 712
            pool_filename = pool_location + os.path.basename(qid["filename"]);
            destination = Cnf["Dir::PoolDir"] + pool_location
            utils.move(legacy_filename, destination);
J
James Troup 已提交
713 714
            # Then Update the DB's files table
            q = projectB.query("UPDATE files SET filename = '%s', location = '%s' WHERE id = '%s'" % (pool_filename, dsc_location_id, qid["files_id"]));
J
James Troup 已提交
715

J
James Troup 已提交
716 717 718 719 720 721 722 723 724 725 726 727 728 729
    # Install the files into the pool
    for file in files.keys():
        if files[file].has_key("byhand"):
            continue
        destination = Cnf["Dir::PoolDir"] + files[file]["pool name"] + file
        destdir = os.path.dirname(destination)
        utils.move (file, destination)
        install_bytes = install_bytes + float(files[file]["size"])

    # Copy the .changes file across for suite which need it.
    for suite in changes["distribution"].keys():
        if Cnf.has_key("Suite::%s::CopyChanges" % (suite)):
            utils.copy (changes_filename, Cnf["Dir::RootDir"] + Cnf["Suite::%s::CopyChanges" % (suite)]);

J
James Troup 已提交
730 731
    projectB.query("COMMIT WORK");

732 733
    utils.move (changes_filename, Cnf["Dir::IncomingDir"] + 'DONE/' + os.path.basename(changes_filename))

J
James Troup 已提交
734 735 736 737 738 739 740 741 742 743 744 745 746
    install_count = install_count + 1;

    if not Cnf["Dinstall::Options::No-Mail"]:
        mail_message = """Return-Path: %s
From: %s
To: %s
Bcc: troup@auric.debian.org
Subject: %s INSTALLED

%s
Installing:
%s

J
James Troup 已提交
747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 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
%s""" % (Cnf["Dinstall::MyEmailAddress"], Cnf["Dinstall::MyEmailAddress"], changes["maintainer822"], os.path.basename(changes_filename), reject_message, summary, installed_footer)
        utils.send_mail (mail_message, "")
        announce (short_summary, 1)

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

def stable_install (changes_filename, summary, short_summary):
    global install_count, install_bytes
    
    print "Installing to stable."

    archive = utils.where_am_i();

    # Begin a transaction; if we bomb out anywhere between here and the COMMIT WORK below, the DB will not be changed.
    projectB.query("BEGIN WORK");

    # Add the .dsc file to the DB
    for file in files.keys():
        if files[file]["type"] == "dsc":
            package = dsc["source"]
            version = dsc["version"]  # NB: not files[file]["version"], that has no epoch
            q = projectB.query("SELECT id FROM source WHERE source = '%s' AND version = '%s'" % (package, version))
            ql = q.getresult()
            if ql == []:
                sys.stderr.write("INTERNAL ERROR: couldn't find '%s' (%s) in source table.\n" % (package, version));
                sys.exit(1);
            source_id = ql[0][0];
            suite_id = db_access.get_suite_id('proposed-updates');
            projectB.query("DELETE FROM src_associations WHERE suite = '%s' AND source = '%s'" % (suite_id, source_id));
            suite_id = db_access.get_suite_id('stable');
            projectB.query("INSERT INTO src_associations (suite, source) VALUES ('%s', '%s')" % (suite_id, source_id));
                
    # Add the .deb files to the DB
    for file in files.keys():
        if files[file]["type"] == "deb":
            package = files[file]["package"]
            version = files[file]["version"]
            architecture = files[file]["architecture"]
            q = projectB.query("SELECT b.id FROM binaries b, architecture a WHERE b.package = '%s' AND b.version = '%s' AND (a.arch_string = '%s' OR a.arch_string = 'all') AND b.architecture = a.id" % (package, version, architecture))
            ql = q.getresult()
            if ql == []:
                sys.stderr.write("INTERNAL ERROR: couldn't find '%s' (%s for %s architecture) in binaries table.\n" % (package, version, architecture));
                sys.exit(1);
            binary_id = ql[0][0];
            suite_id = db_access.get_suite_id('proposed-updates');
            projectB.query("DELETE FROM bin_associations WHERE suite = '%s' AND bin = '%s'" % (suite_id, binary_id));
            suite_id = db_access.get_suite_id('stable');
            projectB.query("INSERT INTO bin_associations (suite, bin) VALUES ('%s', '%s')" % (suite_id, binary_id));

    projectB.query("COMMIT WORK");

    utils.move (changes_filename, Cnf["Rhona::Morgue"] + os.path.basename(changes_filename));

    # Update the Stable ChangeLog file

    new_changelog_filename = Cnf["Dir::RootDir"] + Cnf["Suite::Stable::ChangeLogBase"] + ".ChangeLog";
    changelog_filename = Cnf["Dir::RootDir"] + Cnf["Suite::Stable::ChangeLogBase"] + "ChangeLog";
    if os.path.exists(new_changelog_filename):
        os.unlink (new_changelog_filename);
    
    new_changelog = utils.open_file(new_changelog_filename, 'w');
    for file in files.keys():
        if files[file]["type"] == "deb":
            new_changelog.write("stable/%s/binary-%s/%s\n" % (files[file]["component"], files[file]["architecture"], file));
        elif re_issource.match(file) != None:
            new_changelog.write("stable/%s/source/%s\n" % (files[file]["component"], file));
        else:
            new_changelog.write("%s\n" % (file));
    chop_changes = re_fdnic.sub("\n", changes["changes"]);
    new_changelog.write(chop_changes + '\n\n');
    if os.access(changelog_filename, os.R_OK) != 0:
        changelog = utils.open_file(changelog_filename, 'r');
        new_changelog.write(changelog.read());
    new_changelog.close();
    if os.access(changelog_filename, os.R_OK) != 0:
        os.unlink(changelog_filename);
    utils.move(new_changelog_filename, changelog_filename);

    install_count = install_count + 1;

    if not Cnf["Dinstall::Options::No-Mail"]:
        mail_message = """Return-Path: %s
From: %s
To: %s
Bcc: troup@auric.debian.org
Subject: %s INSTALLED into stable

%s
Installing:
%s

%s""" % (Cnf["Dinstall::MyEmailAddress"], Cnf["Dinstall::MyEmailAddress"], changes["maintainer822"], os.path.basename(changes_filename), reject_message, summary, installed_footer)
J
James Troup 已提交
839 840 841 842 843 844 845 846 847 848 849 850
        utils.send_mail (mail_message, "")
        announce (short_summary, 1)

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

def reject (changes_filename, manual_reject_mail_filename):
    print "Rejecting.\n"

    base_changes_filename = os.path.basename(changes_filename);
    reason_filename = re_changes.sub("reason", base_changes_filename);
    reject_filename = "%s/REJECT/%s" % (Cnf["Dir::IncomingDir"], reason_filename);

J
James Troup 已提交
851 852 853
    # Move the .changes files and it's contents into REJECT/ (if we can; errors are ignored)
    try:
        utils.move (changes_filename, "%s/REJECT/%s" % (Cnf["Dir::IncomingDir"], base_changes_filename));
J
James Troup 已提交
854 855
    except utils.cant_overwrite_exc:
        sys.stderr.write("W: couldn't overwrite existing file '%s/REJECT/%s" % (Cnf["Dir::IncomingDir"], base_changes_filename));
J
James Troup 已提交
856
        pass;
J
James Troup 已提交
857
    for file in files.keys():
J
James Troup 已提交
858
        if os.path.exists(file):
J
James Troup 已提交
859 860
            try:
                utils.move (file, "%s/REJECT/%s" % (Cnf["Dir::IncomingDir"], file));
J
James Troup 已提交
861 862
            except utils.cant_overwrite_exc:
                sys.stderr.write("W: couldn't overwrite existing file '%s/REJECT/%s" % (Cnf["Dir::IncomingDir"], file));
J
James Troup 已提交
863
                pass;
J
James Troup 已提交
864 865 866 867 868 869 870 871 872 873 874 875 876 877 878

    # If this is not a manual rejection generate the .reason file and rejection mail message
    if manual_reject_mail_filename == "":
        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_message);
        os.close(fd);
        reject_mail_message = """From: %s
To: %s
Bcc: troup@auric.debian.org
Subject: %s REJECTED

%s
===
J
James Troup 已提交
879
%s""" % (Cnf["Dinstall::MyEmailAddress"], changes["maintainer822"], os.path.basename(changes_filename), reject_message, reject_footer);
J
James Troup 已提交
880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903
    else: # Have a manual rejection file to use
        reject_mail_message = ""; # avoid <undef>'s
        
    # Send the rejection mail if appropriate
    if not Cnf["Dinstall::Options::No-Mail"]:
        utils.send_mail (reject_mail_message, manual_reject_mail_filename);

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

def manual_reject (changes_filename):
    # Build up the rejection email 
    user_email_address = string.replace(string.split(pwd.getpwuid(os.getuid())[4],',')[0], '.', '')
    user_email_address = user_email_address + " <%s@%s>" % (pwd.getpwuid(os.getuid())[0], Cnf["Dinstall::MyHost"])
    manual_reject_message = Cnf.get("Dinstall::Options::Manual-Reject", "")

    reject_mail_message = """From: %s
Cc: %s
To: %s
Bcc: troup@auric.debian.org
Subject: %s REJECTED

%s
%s
===
J
James Troup 已提交
904
%s""" % (user_email_address, Cnf["Dinstall::MyEmailAddress"], changes["maintainer822"], os.path.basename(changes_filename), manual_reject_message, reject_message, reject_footer)
J
James Troup 已提交
905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929
    
    # Write the rejection email out as the <foo>.reason file
    reason_filename = re_changes.sub("reason", os.path.basename(changes_filename));
    reject_filename = "%s/REJECT/%s" % (Cnf["Dir::IncomingDir"], reason_filename)
    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);
    
    # If we weren't given one, spawn an editor so the user can add one in
    if manual_reject_message == "":
        result = os.system("vi +6 %s" % (reject_file))
        if result != 0:
            sys.stderr.write ("vi invocation failed for `%s'!" % (reject_file))
            sys.exit(result)

    # Then process it as if it were an automatic rejection
    reject (changes_filename, reject_filename)

#####################################################################################################################
 
def acknowledge_new (changes_filename, summary):
    global new_ack_new;

J
James Troup 已提交
930 931
    changes_filename = os.path.basename(changes_filename);

J
James Troup 已提交
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
    new_ack_new[changes_filename] = 1;

    if new_ack_old.has_key(changes_filename):
        print "Ack already sent.";
        return;

    print "Sending new ack.";
    if not Cnf["Dinstall::Options::No-Mail"]:
        new_ack_message = """Return-Path: %s
From: %s
To: %s
Bcc: troup@auric.debian.org
Subject: %s is NEW

%s
%s""" % (Cnf["Dinstall::MyEmailAddress"], Cnf["Dinstall::MyEmailAddress"], changes["maintainer822"], changes_filename, summary, new_ack_footer);
        utils.send_mail(new_ack_message,"");

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

def announce (short_summary, action):
    # Only do announcements for source uploads with a recent dpkg-dev installed
    if float(changes.get("format", 0)) < 1.6 or not changes["architecture"].has_key("source"):
        return ""

    lists_done = {}
    summary = ""

    for dist in changes["distribution"].keys():
J
James Troup 已提交
961 962
        list = Cnf.Find("Suite::%s::Announce" % (dist))
        if list == None or lists_done.has_key(list):
J
James Troup 已提交
963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 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 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063
            continue
        lists_done[list] = 1
        summary = summary + "Announcing to %s\n" % (list)

        if action:
            mail_message = """Return-Path: %s
From: %s
To: %s
Bcc: troup@auric.debian.org
Subject: Installed %s %s (%s)

%s

Installed:
%s
""" % (Cnf["Dinstall::MyEmailAddress"], changes["maintainer822"], list, changes["source"], changes["version"], string.join(changes["architecture"].keys(), ' ' ),
       changes["filecontents"], short_summary)
            utils.send_mail (mail_message, "")

    (dsc_rfc822, dsc_name, dsc_email) = utils.fix_maintainer (dsc.get("maintainer",Cnf["Dinstall::MyEmailAddress"]));
    bugs = changes["closes"].keys()
    bugs.sort()
    if dsc_name == changes["maintainername"]:
        summary = summary + "Closing bugs: "
        for bug in bugs:
            summary = summary + "%s " % (bug)
            if action:
                mail_message = """Return-Path: %s
From: %s
To: %s-close@bugs.debian.org
Bcc: troup@auric.debian.org
Subject: Bug#%s: fixed in %s %s

We believe that the bug you reported is fixed in the latest version of
%s, which has been installed in the Debian FTP archive:

%s""" % (Cnf["Dinstall::MyEmailAddress"], changes["maintainer822"], bug, bug, changes["source"], changes["version"], changes["source"], short_summary)

                if changes["distribution"].has_key("stable"):
                    mail_message = mail_message + """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
distribution."""

                mail_message = mail_message + """A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to %s@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
%s (supplier of updated %s package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@debian.org)


%s""" % (bug, changes["maintainer"], changes["source"], changes["filecontents"])

                utils.send_mail (mail_message, "")
    else:                     # NMU
        summary = summary + "Setting bugs to severity fixed: "
        control_message = ""
        for bug in bugs:
            summary = summary + "%s " % (bug)
            control_message = control_message + "severity %s fixed\n" % (bug)
        if action and control_message != "":
            mail_message = """Return-Path: %s
From: %s
To: control@bugs.debian.org
Bcc: troup@auric.debian.org, %s
Subject: Fixed in NMU of %s %s

%s
quit

This message was generated automatically in response to a
non-maintainer upload.  The .changes file follows.

%s
""" % (Cnf["Dinstall::MyEmailAddress"], changes["maintainer822"], changes["maintainer822"], changes["source"], changes["version"], control_message, changes["filecontents"])
            utils.send_mail (mail_message, "")
    summary = summary + "\n"

    return summary

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

# reprocess is necessary for the case of foo_1.2-1 and foo_1.2-2 in
# Incoming. -1 will reference the .orig.tar.gz, but -2 will not.
# dsccheckdistrib() can find the .orig.tar.gz but it will not have
# processed it during it's checks of -2.  If -1 has been deleted or
# otherwise not checked by da-install, the .orig.tar.gz will not have
# been checked at all.  To get round this, we force the .orig.tar.gz
# into the .changes structure and reprocess the .changes file.

def process_it (changes_file):
J
James Troup 已提交
1064
    global reprocess, orig_tar_id, changes, dsc, dsc_files, files;
J
James Troup 已提交
1065 1066 1067

    reprocess = 1;
    orig_tar_id = None;
J
James Troup 已提交
1068 1069 1070 1071 1072 1073
    # Reset some globals
    changes = {};
    dsc = {};
    dsc_files = {};
    files = {};
    orig_tar_id = None;
J
James Troup 已提交
1074

J
James Troup 已提交
1075 1076 1077 1078 1079 1080 1081
    # Absolutize the filename to avoid the requirement of being in the
    # same directory as the .changes file.
    changes_file = os.path.abspath(changes_file);

    # And since handling of installs to stable munges with the CWD;
    # save and restore it.
    cwd = os.getcwd();
J
James Troup 已提交
1082
    
J
James Troup 已提交
1083 1084 1085 1086 1087 1088 1089 1090 1091 1092
    check_signature (changes_file);
    check_changes (changes_file);
    while reprocess:
        reprocess = 0;
        check_files ();
        check_md5sums ();
        check_dsc ();
        
    action(changes_file);

J
James Troup 已提交
1093 1094 1095
    # Restore CWD
    os.chdir(cwd);

J
James Troup 已提交
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 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167
###############################################################################

def main():
    global Cnf, projectB, reject_message, install_bytes, new_ack_old

    apt_pkg.init();
    
    Cnf = apt_pkg.newConfiguration();
    apt_pkg.ReadConfigFileISC(Cnf,utils.which_conf_file());

    Arguments = [('a',"automatic","Dinstall::Options::Automatic"),
                 ('d',"debug","Dinstall::Options::Debug", "IntVal"),
                 ('h',"help","Dinstall::Options::Help"),
                 ('k',"ack-new","Dinstall::Options::Ack-New"),
                 ('m',"manual-reject","Dinstall::Options::Manual-Reject", "HasArg"),
                 ('n',"no-action","Dinstall::Options::No-Action"),
                 ('p',"no-lock", "Dinstall::Options::No-Lock"),
                 ('r',"no-version-check", "Dinstall::Options::No-Version-Check"),
                 ('s',"no-mail", "Dinstall::Options::No-Mail"),
                 ('u',"override-distribution", "Dinstall::Options::Override-Distribution", "HasArg"),
                 ('v',"version","Dinstall::Options::Version")];
    
    changes_files = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv);

    if Cnf["Dinstall::Options::Help"]:
        usage(0);
        
    if Cnf["Dinstall::Options::Version"]:
        print "katie version 0.0000000000";
        usage(0);

    postgresql_user = None; # Default == Connect as user running program.

    # -n/--dry-run invalidates some other options which would involve things happening
    if Cnf["Dinstall::Options::No-Action"]:
        Cnf["Dinstall::Options::Automatic"] = ""
        Cnf["Dinstall::Options::Ack-New"] = ""
        postgresql_user = Cnf["DB::ROUser"];

    projectB = pg.connect('projectb', Cnf["DB::Host"], int(Cnf["DB::Port"]), None, None, postgresql_user);

    db_access.init(Cnf, projectB);

    # Check that we aren't going to clash with the daily cron job

    if os.path.exists("%s/Archive_Maintenance_In_Progress" % (Cnf["Dir::RootDir"])) and not Cnf["Dinstall::Options::No-Lock"]:
        sys.stderr.write("Archive maintenance in progress.  Try again later.\n");
        sys.exit(2);
    
    # Obtain lock if not in no-action mode

    if not Cnf["Dinstall::Options::No-Action"]:
        lock_fd = os.open(Cnf["Dinstall::LockFile"], os.O_RDWR);
        fcntl.lockf(lock_fd, FCNTL.F_TLOCK);

    # Read in the list of already-acknowledged NEW packages
    new_ack_list = utils.open_file(Cnf["Dinstall::NewAckList"],'r');
    new_ack_old = {};
    for line in new_ack_list.readlines():
        new_ack_old[line[:-1]] = 1;
    new_ack_list.close();

    # Process the changes files
    for changes_file in changes_files:
        reject_message = ""
        print "\n" + changes_file;
        process_it (changes_file);

    if install_count:
        sets = "set"
        if install_count > 1:
            sets = "sets"
J
James Troup 已提交
1168
        sys.stderr.write("Installed %d package %s, %s.\n" % (install_count, sets, utils.size_type(int(install_bytes))));
J
James Troup 已提交
1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180

    # Write out the list of already-acknowledged NEW packages
    if Cnf["Dinstall::Options::Ack-New"]:
        new_ack_list = utils.open_file(Cnf["Dinstall::NewAckList"],'w')
        for i in new_ack_new.keys():
            new_ack_list.write(i+'\n')
        new_ack_list.close()
    
            
if __name__ == '__main__':
    main()