]> git.decadent.org.uk Git - dak.git/blob - dak/process_unchecked.py
Added a transition check feature for the release team, together with an
[dak.git] / dak / process_unchecked.py
1 #!/usr/bin/env python
2
3 # Checks Debian packages from Incoming
4 # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006  James Troup <james@nocrew.org>
5
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20 # Originally based on dinstall by Guy Maor <maor@debian.org>
21
22 ################################################################################
23
24 # Computer games don't affect kids. I mean if Pacman affected our generation as
25 # kids, we'd all run around in a darkened room munching pills and listening to
26 # repetitive music.
27 #         -- Unknown
28
29 ################################################################################
30
31 import commands, errno, fcntl, os, re, shutil, stat, sys, time, tempfile, traceback
32 import apt_inst, apt_pkg
33 import daklib.database
34 import daklib.logging
35 import daklib.queue 
36 import daklib.utils
37
38 from types import *
39 from syck import *
40
41
42 ################################################################################
43
44 re_valid_version = re.compile(r"^([0-9]+:)?[0-9A-Za-z\.\-\+:~]+$")
45 re_valid_pkg_name = re.compile(r"^[\dA-Za-z][\dA-Za-z\+\-\.]+$")
46 re_changelog_versions = re.compile(r"^\w[-+0-9a-z.]+ \([^\(\) \t]+\)")
47 re_strip_revision = re.compile(r"-([^-]+)$")
48 re_strip_srcver = re.compile(r"\s+\(\S+\)$")
49
50 ################################################################################
51
52 # Globals
53 Cnf = None
54 Options = None
55 Logger = None
56 Upload = None
57
58 reprocess = 0
59 in_holding = {}
60
61 # Aliases to the real vars in the Upload class; hysterical raisins.
62 reject_message = ""
63 changes = {}
64 dsc = {}
65 dsc_files = {}
66 files = {}
67 pkg = {}
68
69 ###############################################################################
70
71 def init():
72     global Cnf, Options, Upload, changes, dsc, dsc_files, files, pkg
73
74     apt_pkg.init()
75
76     Cnf = apt_pkg.newConfiguration()
77     apt_pkg.ReadConfigFileISC(Cnf,daklib.utils.which_conf_file())
78
79     Arguments = [('a',"automatic","Dinstall::Options::Automatic"),
80                  ('h',"help","Dinstall::Options::Help"),
81                  ('n',"no-action","Dinstall::Options::No-Action"),
82                  ('p',"no-lock", "Dinstall::Options::No-Lock"),
83                  ('s',"no-mail", "Dinstall::Options::No-Mail")]
84
85     for i in ["automatic", "help", "no-action", "no-lock", "no-mail",
86               "override-distribution", "version"]:
87         Cnf["Dinstall::Options::%s" % (i)] = ""
88
89     changes_files = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv)
90     Options = Cnf.SubTree("Dinstall::Options")
91
92     if Options["Help"]:
93         usage()
94
95     Upload = daklib.queue.Upload(Cnf)
96
97     changes = Upload.pkg.changes
98     dsc = Upload.pkg.dsc
99     dsc_files = Upload.pkg.dsc_files
100     files = Upload.pkg.files
101     pkg = Upload.pkg
102
103     return changes_files
104
105 ################################################################################
106
107 def usage (exit_code=0):
108     print """Usage: dinstall [OPTION]... [CHANGES]...
109   -a, --automatic           automatic run
110   -h, --help                show this help and exit.
111   -n, --no-action           don't do anything
112   -p, --no-lock             don't check lockfile !! for cron.daily only !!
113   -s, --no-mail             don't send any mail
114   -V, --version             display the version number and exit"""
115     sys.exit(exit_code)
116
117 ################################################################################
118
119 def reject (str, prefix="Rejected: "):
120     global reject_message
121     if str:
122         reject_message += prefix + str + "\n"
123
124 ################################################################################
125
126 def copy_to_holding(filename):
127     global in_holding
128
129     base_filename = os.path.basename(filename)
130
131     dest = Cnf["Dir::Queue::Holding"] + '/' + base_filename
132     try:
133         fd = os.open(dest, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0640)
134         os.close(fd)
135     except OSError, e:
136         # Shouldn't happen, but will if, for example, someone lists a
137         # file twice in the .changes.
138         if errno.errorcode[e.errno] == 'EEXIST':
139             reject("%s: already exists in holding area; can not overwrite." % (base_filename))
140             return
141         raise
142
143     try:
144         shutil.copy(filename, dest)
145     except IOError, e:
146         # In either case (ENOENT or EACCES) we want to remove the
147         # O_CREAT | O_EXCLed ghost file, so add the file to the list
148         # of 'in holding' even if it's not the real file.
149         if errno.errorcode[e.errno] == 'ENOENT':
150             reject("%s: can not copy to holding area: file not found." % (base_filename))
151             os.unlink(dest)
152             return
153         elif errno.errorcode[e.errno] == 'EACCES':
154             reject("%s: can not copy to holding area: read permission denied." % (base_filename))
155             os.unlink(dest)
156             return
157         raise
158
159     in_holding[base_filename] = ""
160
161 ################################################################################
162
163 def clean_holding():
164     global in_holding
165
166     cwd = os.getcwd()
167     os.chdir(Cnf["Dir::Queue::Holding"])
168     for file in in_holding.keys():
169         if os.path.exists(file):
170             if file.find('/') != -1:
171                 daklib.utils.fubar("WTF? clean_holding() got a file ('%s') with / in it!" % (file))
172             else:
173                 os.unlink(file)
174     in_holding = {}
175     os.chdir(cwd)
176
177 ################################################################################
178
179 def check_changes():
180     filename = pkg.changes_file
181
182     # Parse the .changes field into a dictionary
183     try:
184         changes.update(daklib.utils.parse_changes(filename))
185     except daklib.utils.cant_open_exc:
186         reject("%s: can't read file." % (filename))
187         return 0
188     except daklib.utils.changes_parse_error_exc, line:
189         reject("%s: parse error, can't grok: %s." % (filename, line))
190         return 0
191
192     # Parse the Files field from the .changes into another dictionary
193     try:
194         files.update(daklib.utils.build_file_list(changes))
195     except daklib.utils.changes_parse_error_exc, line:
196         reject("%s: parse error, can't grok: %s." % (filename, line))
197     except daklib.utils.nk_format_exc, format:
198         reject("%s: unknown format '%s'." % (filename, format))
199         return 0
200
201     # Check for mandatory fields
202     for i in ("source", "binary", "architecture", "version", "distribution",
203               "maintainer", "files", "changes", "description"):
204         if not changes.has_key(i):
205             reject("%s: Missing mandatory field `%s'." % (filename, i))
206             return 0    # Avoid <undef> errors during later tests
207
208     # Strip a source version in brackets from the source field
209     if re_strip_srcver.search(changes["source"]):
210         changes["source"] = re_strip_srcver.sub('', changes["source"])
211
212     # Ensure the source field is a valid package name.
213     if not re_valid_pkg_name.match(changes["source"]):
214         reject("%s: invalid source name '%s'." % (filename, changes["source"]))
215
216     # Split multi-value fields into a lower-level dictionary
217     for i in ("architecture", "distribution", "binary", "closes"):
218         o = changes.get(i, "")
219         if o != "":
220             del changes[i]
221         changes[i] = {}
222         for j in o.split():
223             changes[i][j] = 1
224
225     # Fix the Maintainer: field to be RFC822/2047 compatible
226     try:
227         (changes["maintainer822"], changes["maintainer2047"],
228          changes["maintainername"], changes["maintaineremail"]) = \
229          daklib.utils.fix_maintainer (changes["maintainer"])
230     except daklib.utils.ParseMaintError, msg:
231         reject("%s: Maintainer field ('%s') failed to parse: %s" \
232                % (filename, changes["maintainer"], msg))
233
234     # ...likewise for the Changed-By: field if it exists.
235     try:
236         (changes["changedby822"], changes["changedby2047"],
237          changes["changedbyname"], changes["changedbyemail"]) = \
238          daklib.utils.fix_maintainer (changes.get("changed-by", ""))
239     except daklib.utils.ParseMaintError, msg:
240         (changes["changedby822"], changes["changedby2047"],
241          changes["changedbyname"], changes["changedbyemail"]) = \
242          ("", "", "", "")
243         reject("%s: Changed-By field ('%s') failed to parse: %s" \
244                % (filename, changes["changed-by"], msg))
245
246     # Ensure all the values in Closes: are numbers
247     if changes.has_key("closes"):
248         for i in changes["closes"].keys():
249             if daklib.queue.re_isanum.match (i) == None:
250                 reject("%s: `%s' from Closes field isn't a number." % (filename, i))
251
252
253     # chopversion = no epoch; chopversion2 = no epoch and no revision (e.g. for .orig.tar.gz comparison)
254     changes["chopversion"] = daklib.utils.re_no_epoch.sub('', changes["version"])
255     changes["chopversion2"] = daklib.utils.re_no_revision.sub('', changes["chopversion"])
256
257     # Check there isn't already a changes file of the same name in one
258     # of the queue directories.
259     base_filename = os.path.basename(filename)
260     for dir in [ "Accepted", "Byhand", "Done", "New", "ProposedUpdates", "OldProposedUpdates" ]:
261         if os.path.exists(Cnf["Dir::Queue::%s" % (dir) ]+'/'+base_filename):
262             reject("%s: a file with this name already exists in the %s directory." % (base_filename, dir))
263
264     # Check the .changes is non-empty
265     if not files:
266         reject("%s: nothing to do (Files field is empty)." % (base_filename))
267         return 0
268
269     return 1
270
271 ################################################################################
272
273 def check_distributions():
274     "Check and map the Distribution field of a .changes file."
275
276     # Handle suite mappings
277     for map in Cnf.ValueList("SuiteMappings"):
278         args = map.split()
279         type = args[0]
280         if type == "map" or type == "silent-map":
281             (source, dest) = args[1:3]
282             if changes["distribution"].has_key(source):
283                 del changes["distribution"][source]
284                 changes["distribution"][dest] = 1
285                 if type != "silent-map":
286                     reject("Mapping %s to %s." % (source, dest),"")
287             if changes.has_key("distribution-version"):
288                 if changes["distribution-version"].has_key(source):
289                     changes["distribution-version"][source]=dest
290         elif type == "map-unreleased":
291             (source, dest) = args[1:3]
292             if changes["distribution"].has_key(source):
293                 for arch in changes["architecture"].keys():
294                     if arch not in Cnf.ValueList("Suite::%s::Architectures" % (source)):
295                         reject("Mapping %s to %s for unreleased architecture %s." % (source, dest, arch),"")
296                         del changes["distribution"][source]
297                         changes["distribution"][dest] = 1
298                         break
299         elif type == "ignore":
300             suite = args[1]
301             if changes["distribution"].has_key(suite):
302                 del changes["distribution"][suite]
303                 reject("Ignoring %s as a target suite." % (suite), "Warning: ")
304         elif type == "reject":
305             suite = args[1]
306             if changes["distribution"].has_key(suite):
307                 reject("Uploads to %s are not accepted." % (suite))
308         elif type == "propup-version":
309             # give these as "uploaded-to(non-mapped) suites-to-add-when-upload-obsoletes"
310             #
311             # changes["distribution-version"] looks like: {'testing': 'testing-proposed-updates'}
312             if changes["distribution"].has_key(args[1]):
313                 changes.setdefault("distribution-version", {})
314                 for suite in args[2:]: changes["distribution-version"][suite]=suite
315
316     # Ensure there is (still) a target distribution
317     if changes["distribution"].keys() == []:
318         reject("no valid distribution.")
319
320     # Ensure target distributions exist
321     for suite in changes["distribution"].keys():
322         if not Cnf.has_key("Suite::%s" % (suite)):
323             reject("Unknown distribution `%s'." % (suite))
324
325 ################################################################################
326
327 def check_deb_ar(filename, control):
328     """Sanity check the ar of a .deb, i.e. that there is:
329
330  o debian-binary
331  o control.tar.gz
332  o data.tar.gz or data.tar.bz2
333
334 in that order, and nothing else."""
335     cmd = "ar t %s" % (filename)
336     (result, output) = commands.getstatusoutput(cmd)
337     if result != 0:
338         reject("%s: 'ar t' invocation failed." % (filename))
339         reject(daklib.utils.prefix_multi_line_string(output, " [ar output:] "), "")
340     chunks = output.split('\n')
341     if len(chunks) != 3:
342         reject("%s: found %d chunks, expected 3." % (filename, len(chunks)))
343     if chunks[0] != "debian-binary":
344         reject("%s: first chunk is '%s', expected 'debian-binary'." % (filename, chunks[0]))
345     if chunks[1] != "control.tar.gz":
346         reject("%s: second chunk is '%s', expected 'control.tar.gz'." % (filename, chunks[1]))
347     if chunks[2] not in [ "data.tar.bz2", "data.tar.gz" ]:
348         reject("%s: third chunk is '%s', expected 'data.tar.gz' or 'data.tar.bz2'." % (filename, chunks[2]))
349
350 ################################################################################
351
352 def check_files():
353     global reprocess
354
355     archive = daklib.utils.where_am_i()
356     file_keys = files.keys()
357
358     # if reprocess is 2 we've already done this and we're checking
359     # things again for the new .orig.tar.gz.
360     # [Yes, I'm fully aware of how disgusting this is]
361     if not Options["No-Action"] and reprocess < 2:
362         cwd = os.getcwd()
363         os.chdir(pkg.directory)
364         for file in file_keys:
365             copy_to_holding(file)
366         os.chdir(cwd)
367
368     # Check there isn't already a .changes or .dak file of the same name in
369     # the proposed-updates "CopyChanges" or "CopyDotDak" storage directories.
370     # [NB: this check must be done post-suite mapping]
371     base_filename = os.path.basename(pkg.changes_file)
372     dot_dak_filename = base_filename[:-8]+".dak"
373     for suite in changes["distribution"].keys():
374         copychanges = "Suite::%s::CopyChanges" % (suite)
375         if Cnf.has_key(copychanges) and \
376                os.path.exists(Cnf[copychanges]+"/"+base_filename):
377             reject("%s: a file with this name already exists in %s" \
378                    % (base_filename, Cnf[copychanges]))
379
380         copy_dot_dak = "Suite::%s::CopyDotDak" % (suite)
381         if Cnf.has_key(copy_dot_dak) and \
382                os.path.exists(Cnf[copy_dot_dak]+"/"+dot_dak_filename):
383             reject("%s: a file with this name already exists in %s" \
384                    % (dot_dak_filename, Cnf[copy_dot_dak]))
385
386     reprocess = 0
387     has_binaries = 0
388     has_source = 0
389
390     for file in file_keys:
391         # Ensure the file does not already exist in one of the accepted directories
392         for dir in [ "Accepted", "Byhand", "New", "ProposedUpdates", "OldProposedUpdates", "Embargoed", "Unembargoed" ]:
393             if not Cnf.has_key("Dir::Queue::%s" % (dir)): continue
394             if os.path.exists(Cnf["Dir::Queue::%s" % (dir) ]+'/'+file):
395                 reject("%s file already exists in the %s directory." % (file, dir))
396         if not daklib.utils.re_taint_free.match(file):
397             reject("!!WARNING!! tainted filename: '%s'." % (file))
398         # Check the file is readable
399         if os.access(file,os.R_OK) == 0:
400             # When running in -n, copy_to_holding() won't have
401             # generated the reject_message, so we need to.
402             if Options["No-Action"]:
403                 if os.path.exists(file):
404                     reject("Can't read `%s'. [permission denied]" % (file))
405                 else:
406                     reject("Can't read `%s'. [file not found]" % (file))
407             files[file]["type"] = "unreadable"
408             continue
409         # If it's byhand skip remaining checks
410         if files[file]["section"] == "byhand" or files[file]["section"][:4] == "raw-":
411             files[file]["byhand"] = 1
412             files[file]["type"] = "byhand"
413         # Checks for a binary package...
414         elif daklib.utils.re_isadeb.match(file):
415             has_binaries = 1
416             files[file]["type"] = "deb"
417
418             # Extract package control information
419             deb_file = daklib.utils.open_file(file)
420             try:
421                 control = apt_pkg.ParseSection(apt_inst.debExtractControl(deb_file))
422             except:
423                 reject("%s: debExtractControl() raised %s." % (file, sys.exc_type))
424                 deb_file.close()
425                 # Can't continue, none of the checks on control would work.
426                 continue
427             deb_file.close()
428
429             # Check for mandatory fields
430             for field in [ "Package", "Architecture", "Version" ]:
431                 if control.Find(field) == None:
432                     reject("%s: No %s field in control." % (file, field))
433                     # Can't continue
434                     continue
435
436             # Ensure the package name matches the one give in the .changes
437             if not changes["binary"].has_key(control.Find("Package", "")):
438                 reject("%s: control file lists name as `%s', which isn't in changes file." % (file, control.Find("Package", "")))
439
440             # Validate the package field
441             package = control.Find("Package")
442             if not re_valid_pkg_name.match(package):
443                 reject("%s: invalid package name '%s'." % (file, package))
444
445             # Validate the version field
446             version = control.Find("Version")
447             if not re_valid_version.match(version):
448                 reject("%s: invalid version number '%s'." % (file, version))
449
450             # Ensure the architecture of the .deb is one we know about.
451             default_suite = Cnf.get("Dinstall::DefaultSuite", "Unstable")
452             architecture = control.Find("Architecture")
453             if architecture not in Cnf.ValueList("Suite::%s::Architectures" % (default_suite)):
454                 reject("Unknown architecture '%s'." % (architecture))
455
456             # Ensure the architecture of the .deb is one of the ones
457             # listed in the .changes.
458             if not changes["architecture"].has_key(architecture):
459                 reject("%s: control file lists arch as `%s', which isn't in changes file." % (file, architecture))
460
461             # Sanity-check the Depends field
462             depends = control.Find("Depends")
463             if depends == '':
464                 reject("%s: Depends field is empty." % (file))
465
466             # Check the section & priority match those given in the .changes (non-fatal)
467             if control.Find("Section") and files[file]["section"] != "" and files[file]["section"] != control.Find("Section"):
468                 reject("%s control file lists section as `%s', but changes file has `%s'." % (file, control.Find("Section", ""), files[file]["section"]), "Warning: ")
469             if control.Find("Priority") and files[file]["priority"] != "" and files[file]["priority"] != control.Find("Priority"):
470                 reject("%s control file lists priority as `%s', but changes file has `%s'." % (file, control.Find("Priority", ""), files[file]["priority"]),"Warning: ")
471
472             files[file]["package"] = package
473             files[file]["architecture"] = architecture
474             files[file]["version"] = version
475             files[file]["maintainer"] = control.Find("Maintainer", "")
476             if file.endswith(".udeb"):
477                 files[file]["dbtype"] = "udeb"
478             elif file.endswith(".deb"):
479                 files[file]["dbtype"] = "deb"
480             else:
481                 reject("%s is neither a .deb or a .udeb." % (file))
482             files[file]["source"] = control.Find("Source", files[file]["package"])
483             # Get the source version
484             source = files[file]["source"]
485             source_version = ""
486             if source.find("(") != -1:
487                 m = daklib.utils.re_extract_src_version.match(source)
488                 source = m.group(1)
489                 source_version = m.group(2)
490             if not source_version:
491                 source_version = files[file]["version"]
492             files[file]["source package"] = source
493             files[file]["source version"] = source_version
494
495             # Ensure the filename matches the contents of the .deb
496             m = daklib.utils.re_isadeb.match(file)
497             #  package name
498             file_package = m.group(1)
499             if files[file]["package"] != file_package:
500                 reject("%s: package part of filename (%s) does not match package name in the %s (%s)." % (file, file_package, files[file]["dbtype"], files[file]["package"]))
501             epochless_version = daklib.utils.re_no_epoch.sub('', control.Find("Version"))
502             #  version
503             file_version = m.group(2)
504             if epochless_version != file_version:
505                 reject("%s: version part of filename (%s) does not match package version in the %s (%s)." % (file, file_version, files[file]["dbtype"], epochless_version))
506             #  architecture
507             file_architecture = m.group(3)
508             if files[file]["architecture"] != file_architecture:
509                 reject("%s: architecture part of filename (%s) does not match package architecture in the %s (%s)." % (file, file_architecture, files[file]["dbtype"], files[file]["architecture"]))
510
511             # Check for existent source
512             source_version = files[file]["source version"]
513             source_package = files[file]["source package"]
514             if changes["architecture"].has_key("source"):
515                 if source_version != changes["version"]:
516                     reject("source version (%s) for %s doesn't match changes version %s." % (source_version, file, changes["version"]))
517             else:
518                 # Check in the SQL database
519                 if not Upload.source_exists(source_package, source_version, changes["distribution"].keys()):
520                     # Check in one of the other directories
521                     source_epochless_version = daklib.utils.re_no_epoch.sub('', source_version)
522                     dsc_filename = "%s_%s.dsc" % (source_package, source_epochless_version)
523                     if os.path.exists(Cnf["Dir::Queue::Byhand"] + '/' + dsc_filename):
524                         files[file]["byhand"] = 1
525                     elif os.path.exists(Cnf["Dir::Queue::New"] + '/' + dsc_filename):
526                         files[file]["new"] = 1
527                     else:
528                         dsc_file_exists = 0
529                         for myq in ["Accepted", "Embargoed", "Unembargoed", "ProposedUpdates", "OldProposedUpdates"]:
530                             if Cnf.has_key("Dir::Queue::%s" % (myq)):
531                                 if os.path.exists(Cnf["Dir::Queue::"+myq] + '/' + dsc_filename):
532                                     dsc_file_exists = 1
533                                     break
534                         if not dsc_file_exists:
535                             reject("no source found for %s %s (%s)." % (source_package, source_version, file))
536             # Check the version and for file overwrites
537             reject(Upload.check_binary_against_db(file),"")
538
539             check_deb_ar(file, control)
540
541         # Checks for a source package...
542         else:
543             m = daklib.utils.re_issource.match(file)
544             if m:
545                 has_source = 1
546                 files[file]["package"] = m.group(1)
547                 files[file]["version"] = m.group(2)
548                 files[file]["type"] = m.group(3)
549
550                 # Ensure the source package name matches the Source filed in the .changes
551                 if changes["source"] != files[file]["package"]:
552                     reject("%s: changes file doesn't say %s for Source" % (file, files[file]["package"]))
553
554                 # Ensure the source version matches the version in the .changes file
555                 if files[file]["type"] == "orig.tar.gz":
556                     changes_version = changes["chopversion2"]
557                 else:
558                     changes_version = changes["chopversion"]
559                 if changes_version != files[file]["version"]:
560                     reject("%s: should be %s according to changes file." % (file, changes_version))
561
562                 # Ensure the .changes lists source in the Architecture field
563                 if not changes["architecture"].has_key("source"):
564                     reject("%s: changes file doesn't list `source' in Architecture field." % (file))
565
566                 # Check the signature of a .dsc file
567                 if files[file]["type"] == "dsc":
568                     dsc["fingerprint"] = daklib.utils.check_signature(file, reject)
569
570                 files[file]["architecture"] = "source"
571
572             # Not a binary or source package?  Assume byhand...
573             else:
574                 files[file]["byhand"] = 1
575                 files[file]["type"] = "byhand"
576
577         # Per-suite file checks
578         files[file]["oldfiles"] = {}
579         for suite in changes["distribution"].keys():
580             # Skip byhand
581             if files[file].has_key("byhand"):
582                 continue
583
584             # Handle component mappings
585             for map in Cnf.ValueList("ComponentMappings"):
586                 (source, dest) = map.split()
587                 if files[file]["component"] == source:
588                     files[file]["original component"] = source
589                     files[file]["component"] = dest
590
591             # Ensure the component is valid for the target suite
592             if Cnf.has_key("Suite:%s::Components" % (suite)) and \
593                files[file]["component"] not in Cnf.ValueList("Suite::%s::Components" % (suite)):
594                 reject("unknown component `%s' for suite `%s'." % (files[file]["component"], suite))
595                 continue
596
597             # Validate the component
598             component = files[file]["component"]
599             component_id = daklib.database.get_component_id(component)
600             if component_id == -1:
601                 reject("file '%s' has unknown component '%s'." % (file, component))
602                 continue
603
604             # See if the package is NEW
605             if not Upload.in_override_p(files[file]["package"], files[file]["component"], suite, files[file].get("dbtype",""), file):
606                 files[file]["new"] = 1
607
608             # Validate the priority
609             if files[file]["priority"].find('/') != -1:
610                 reject("file '%s' has invalid priority '%s' [contains '/']." % (file, files[file]["priority"]))
611
612             # Determine the location
613             location = Cnf["Dir::Pool"]
614             location_id = daklib.database.get_location_id (location, component, archive)
615             if location_id == -1:
616                 reject("[INTERNAL ERROR] couldn't determine location (Component: %s, Archive: %s)" % (component, archive))
617             files[file]["location id"] = location_id
618
619             # Check the md5sum & size against existing files (if any)
620             files[file]["pool name"] = daklib.utils.poolify (changes["source"], files[file]["component"])
621             files_id = daklib.database.get_files_id(files[file]["pool name"] + file, files[file]["size"], files[file]["md5sum"], files[file]["location id"])
622             if files_id == -1:
623                 reject("INTERNAL ERROR, get_files_id() returned multiple matches for %s." % (file))
624             elif files_id == -2:
625                 reject("md5sum and/or size mismatch on existing copy of %s." % (file))
626             files[file]["files id"] = files_id
627
628             # Check for packages that have moved from one component to another
629             q = Upload.projectB.query("""
630 SELECT c.name FROM binaries b, bin_associations ba, suite s, location l,
631                    component c, architecture a, files f
632  WHERE b.package = '%s' AND s.suite_name = '%s'
633    AND (a.arch_string = '%s' OR a.arch_string = 'all')
634    AND ba.bin = b.id AND ba.suite = s.id AND b.architecture = a.id
635    AND f.location = l.id AND l.component = c.id AND b.file = f.id"""
636                                % (files[file]["package"], suite,
637                                   files[file]["architecture"]))
638             ql = q.getresult()
639             if ql:
640                 files[file]["othercomponents"] = ql[0][0]
641
642     # If the .changes file says it has source, it must have source.
643     if changes["architecture"].has_key("source"):
644         if not has_source:
645             reject("no source found and Architecture line in changes mention source.")
646
647         if not has_binaries and Cnf.FindB("Dinstall::Reject::NoSourceOnly"):
648             reject("source only uploads are not supported.")
649
650 ###############################################################################
651
652 def check_dsc():
653     global reprocess
654
655     # Ensure there is source to check
656     if not changes["architecture"].has_key("source"):
657         return 1
658
659     # Find the .dsc
660     dsc_filename = None
661     for file in files.keys():
662         if files[file]["type"] == "dsc":
663             if dsc_filename:
664                 reject("can not process a .changes file with multiple .dsc's.")
665                 return 0
666             else:
667                 dsc_filename = file
668
669     # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
670     if not dsc_filename:
671         reject("source uploads must contain a dsc file")
672         return 0
673
674     # Parse the .dsc file
675     try:
676         dsc.update(daklib.utils.parse_changes(dsc_filename, signing_rules=1))
677     except daklib.utils.cant_open_exc:
678         # if not -n copy_to_holding() will have done this for us...
679         if Options["No-Action"]:
680             reject("%s: can't read file." % (dsc_filename))
681     except daklib.utils.changes_parse_error_exc, line:
682         reject("%s: parse error, can't grok: %s." % (dsc_filename, line))
683     except daklib.utils.invalid_dsc_format_exc, line:
684         reject("%s: syntax error on line %s." % (dsc_filename, line))
685     # Build up the file list of files mentioned by the .dsc
686     try:
687         dsc_files.update(daklib.utils.build_file_list(dsc, is_a_dsc=1))
688     except daklib.utils.no_files_exc:
689         reject("%s: no Files: field." % (dsc_filename))
690         return 0
691     except daklib.utils.changes_parse_error_exc, line:
692         reject("%s: parse error, can't grok: %s." % (dsc_filename, line))
693         return 0
694
695     # Enforce mandatory fields
696     for i in ("format", "source", "version", "binary", "maintainer", "architecture", "files"):
697         if not dsc.has_key(i):
698             reject("%s: missing mandatory field `%s'." % (dsc_filename, i))
699             return 0
700
701     # Validate the source and version fields
702     if not re_valid_pkg_name.match(dsc["source"]):
703         reject("%s: invalid source name '%s'." % (dsc_filename, dsc["source"]))
704     if not re_valid_version.match(dsc["version"]):
705         reject("%s: invalid version number '%s'." % (dsc_filename, dsc["version"]))
706
707     # Bumping the version number of the .dsc breaks extraction by stable's
708     # dpkg-source.  So let's not do that...
709     if dsc["format"] != "1.0":
710         reject("%s: incompatible 'Format' version produced by a broken version of dpkg-dev 1.9.1{3,4}." % (dsc_filename))
711
712     # Validate the Maintainer field
713     try:
714         daklib.utils.fix_maintainer (dsc["maintainer"])
715     except daklib.utils.ParseMaintError, msg:
716         reject("%s: Maintainer field ('%s') failed to parse: %s" \
717                % (dsc_filename, dsc["maintainer"], msg))
718
719     # Validate the build-depends field(s)
720     for field_name in [ "build-depends", "build-depends-indep" ]:
721         field = dsc.get(field_name)
722         if field:
723             # Check for broken dpkg-dev lossage...
724             if field.startswith("ARRAY"):
725                 reject("%s: invalid %s field produced by a broken version of dpkg-dev (1.10.11)" % (dsc_filename, field_name.title()))
726
727             # Have apt try to parse them...
728             try:
729                 apt_pkg.ParseSrcDepends(field)
730             except:
731                 reject("%s: invalid %s field (can not be parsed by apt)." % (dsc_filename, field_name.title()))
732                 pass
733
734     # Ensure the version number in the .dsc matches the version number in the .changes
735     epochless_dsc_version = daklib.utils.re_no_epoch.sub('', dsc["version"])
736     changes_version = files[dsc_filename]["version"]
737     if epochless_dsc_version != files[dsc_filename]["version"]:
738         reject("version ('%s') in .dsc does not match version ('%s') in .changes." % (epochless_dsc_version, changes_version))
739
740     # Ensure there is a .tar.gz in the .dsc file
741     has_tar = 0
742     for f in dsc_files.keys():
743         m = daklib.utils.re_issource.match(f)
744         if not m:
745             reject("%s: %s in Files field not recognised as source." % (dsc_filename, f))
746             continue
747         type = m.group(3)
748         if type == "orig.tar.gz" or type == "tar.gz":
749             has_tar = 1
750     if not has_tar:
751         reject("%s: no .tar.gz or .orig.tar.gz in 'Files' field." % (dsc_filename))
752
753     # Ensure source is newer than existing source in target suites
754     reject(Upload.check_source_against_db(dsc_filename),"")
755
756     (reject_msg, is_in_incoming) = Upload.check_dsc_against_db(dsc_filename)
757     reject(reject_msg, "")
758     if is_in_incoming:
759         if not Options["No-Action"]:
760             copy_to_holding(is_in_incoming)
761         orig_tar_gz = os.path.basename(is_in_incoming)
762         files[orig_tar_gz] = {}
763         files[orig_tar_gz]["size"] = os.stat(orig_tar_gz)[stat.ST_SIZE]
764         files[orig_tar_gz]["md5sum"] = dsc_files[orig_tar_gz]["md5sum"]
765         files[orig_tar_gz]["section"] = files[dsc_filename]["section"]
766         files[orig_tar_gz]["priority"] = files[dsc_filename]["priority"]
767         files[orig_tar_gz]["component"] = files[dsc_filename]["component"]
768         files[orig_tar_gz]["type"] = "orig.tar.gz"
769         reprocess = 2
770
771     return 1
772
773 ################################################################################
774
775 def get_changelog_versions(source_dir):
776     """Extracts a the source package and (optionally) grabs the
777     version history out of debian/changelog for the BTS."""
778
779     # Find the .dsc (again)
780     dsc_filename = None
781     for file in files.keys():
782         if files[file]["type"] == "dsc":
783             dsc_filename = file
784
785     # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
786     if not dsc_filename:
787         return
788
789     # Create a symlink mirror of the source files in our temporary directory
790     for f in files.keys():
791         m = daklib.utils.re_issource.match(f)
792         if m:
793             src = os.path.join(source_dir, f)
794             # If a file is missing for whatever reason, give up.
795             if not os.path.exists(src):
796                 return
797             type = m.group(3)
798             if type == "orig.tar.gz" and pkg.orig_tar_gz:
799                 continue
800             dest = os.path.join(os.getcwd(), f)
801             os.symlink(src, dest)
802
803     # If the orig.tar.gz is not a part of the upload, create a symlink to the
804     # existing copy.
805     if pkg.orig_tar_gz:
806         dest = os.path.join(os.getcwd(), os.path.basename(pkg.orig_tar_gz))
807         os.symlink(pkg.orig_tar_gz, dest)
808
809     # Extract the source
810     cmd = "dpkg-source -sn -x %s" % (dsc_filename)
811     (result, output) = commands.getstatusoutput(cmd)
812     if (result != 0):
813         reject("'dpkg-source -x' failed for %s [return code: %s]." % (dsc_filename, result))
814         reject(daklib.utils.prefix_multi_line_string(output, " [dpkg-source output:] "), "")
815         return
816
817     if not Cnf.Find("Dir::Queue::BTSVersionTrack"):
818         return
819
820     # Get the upstream version
821     upstr_version = daklib.utils.re_no_epoch.sub('', dsc["version"])
822     if re_strip_revision.search(upstr_version):
823         upstr_version = re_strip_revision.sub('', upstr_version)
824
825     # Ensure the changelog file exists
826     changelog_filename = "%s-%s/debian/changelog" % (dsc["source"], upstr_version)
827     if not os.path.exists(changelog_filename):
828         reject("%s: debian/changelog not found in extracted source." % (dsc_filename))
829         return
830
831     # Parse the changelog
832     dsc["bts changelog"] = ""
833     changelog_file = daklib.utils.open_file(changelog_filename)
834     for line in changelog_file.readlines():
835         m = re_changelog_versions.match(line)
836         if m:
837             dsc["bts changelog"] += line
838     changelog_file.close()
839
840     # Check we found at least one revision in the changelog
841     if not dsc["bts changelog"]:
842         reject("%s: changelog format not recognised (empty version tree)." % (dsc_filename))
843
844 ########################################
845
846 def check_source():
847     # Bail out if:
848     #    a) there's no source 
849     # or b) reprocess is 2 - we will do this check next time when orig.tar.gz is in 'files'
850     # or c) the orig.tar.gz is MIA
851     if not changes["architecture"].has_key("source") or reprocess == 2 \
852        or pkg.orig_tar_gz == -1:
853         return
854
855     # Create a temporary directory to extract the source into
856     if Options["No-Action"]:
857         tmpdir = tempfile.mktemp()
858     else:
859         # We're in queue/holding and can create a random directory.
860         tmpdir = "%s" % (os.getpid())
861     os.mkdir(tmpdir)
862
863     # Move into the temporary directory
864     cwd = os.getcwd()
865     os.chdir(tmpdir)
866
867     # Get the changelog version history
868     get_changelog_versions(cwd)
869
870     # Move back and cleanup the temporary tree
871     os.chdir(cwd)
872     try:
873         shutil.rmtree(tmpdir)
874     except OSError, e:
875         if errno.errorcode[e.errno] != 'EACCES':
876             daklib.utils.fubar("%s: couldn't remove tmp dir for source tree." % (dsc["source"]))
877
878         reject("%s: source tree could not be cleanly removed." % (dsc["source"]))
879         # We probably have u-r or u-w directories so chmod everything
880         # and try again.
881         cmd = "chmod -R u+rwx %s" % (tmpdir)
882         result = os.system(cmd)
883         if result != 0:
884             daklib.utils.fubar("'%s' failed with result %s." % (cmd, result))
885         shutil.rmtree(tmpdir)
886     except:
887         daklib.utils.fubar("%s: couldn't remove tmp dir for source tree." % (dsc["source"]))
888
889 ################################################################################
890
891 # FIXME: should be a debian specific check called from a hook
892
893 def check_urgency ():
894     if changes["architecture"].has_key("source"):
895         if not changes.has_key("urgency"):
896             changes["urgency"] = Cnf["Urgency::Default"]
897         if changes["urgency"] not in Cnf.ValueList("Urgency::Valid"):
898             reject("%s is not a valid urgency; it will be treated as %s by testing." % (changes["urgency"], Cnf["Urgency::Default"]), "Warning: ")
899             changes["urgency"] = Cnf["Urgency::Default"]
900         changes["urgency"] = changes["urgency"].lower()
901
902 ################################################################################
903
904 def check_md5sums ():
905     for file in files.keys():
906         try:
907             file_handle = daklib.utils.open_file(file)
908         except daklib.utils.cant_open_exc:
909             continue
910
911         # Check md5sum
912         if apt_pkg.md5sum(file_handle) != files[file]["md5sum"]:
913             reject("%s: md5sum check failed." % (file))
914         file_handle.close()
915         # Check size
916         actual_size = os.stat(file)[stat.ST_SIZE]
917         size = int(files[file]["size"])
918         if size != actual_size:
919             reject("%s: actual file size (%s) does not match size (%s) in .changes"
920                    % (file, actual_size, size))
921
922     for file in dsc_files.keys():
923         try:
924             file_handle = daklib.utils.open_file(file)
925         except daklib.utils.cant_open_exc:
926             continue
927
928         # Check md5sum
929         if apt_pkg.md5sum(file_handle) != dsc_files[file]["md5sum"]:
930             reject("%s: md5sum check failed." % (file))
931         file_handle.close()
932         # Check size
933         actual_size = os.stat(file)[stat.ST_SIZE]
934         size = int(dsc_files[file]["size"])
935         if size != actual_size:
936             reject("%s: actual file size (%s) does not match size (%s) in .dsc"
937                    % (file, actual_size, size))
938
939 ################################################################################
940
941 # Sanity check the time stamps of files inside debs.
942 # [Files in the near future cause ugly warnings and extreme time
943 #  travel can cause errors on extraction]
944
945 def check_timestamps():
946     class Tar:
947         def __init__(self, future_cutoff, past_cutoff):
948             self.reset()
949             self.future_cutoff = future_cutoff
950             self.past_cutoff = past_cutoff
951
952         def reset(self):
953             self.future_files = {}
954             self.ancient_files = {}
955
956         def callback(self, Kind,Name,Link,Mode,UID,GID,Size,MTime,Major,Minor):
957             if MTime > self.future_cutoff:
958                 self.future_files[Name] = MTime
959             if MTime < self.past_cutoff:
960                 self.ancient_files[Name] = MTime
961     ####
962
963     future_cutoff = time.time() + int(Cnf["Dinstall::FutureTimeTravelGrace"])
964     past_cutoff = time.mktime(time.strptime(Cnf["Dinstall::PastCutoffYear"],"%Y"))
965     tar = Tar(future_cutoff, past_cutoff)
966     for filename in files.keys():
967         if files[filename]["type"] == "deb":
968             tar.reset()
969             try:
970                 deb_file = daklib.utils.open_file(filename)
971                 apt_inst.debExtract(deb_file,tar.callback,"control.tar.gz")
972                 deb_file.seek(0)
973                 try:
974                     apt_inst.debExtract(deb_file,tar.callback,"data.tar.gz")
975                 except SystemError, e:
976                     # If we can't find a data.tar.gz, look for data.tar.bz2 instead.
977                     if not re.search(r"Cannot f[ui]nd chunk data.tar.gz$", str(e)):
978                         raise
979                     deb_file.seek(0)
980                     apt_inst.debExtract(deb_file,tar.callback,"data.tar.bz2")
981                 deb_file.close()
982                 #
983                 future_files = tar.future_files.keys()
984                 if future_files:
985                     num_future_files = len(future_files)
986                     future_file = future_files[0]
987                     future_date = tar.future_files[future_file]
988                     reject("%s: has %s file(s) with a time stamp too far into the future (e.g. %s [%s])."
989                            % (filename, num_future_files, future_file,
990                               time.ctime(future_date)))
991                 #
992                 ancient_files = tar.ancient_files.keys()
993                 if ancient_files:
994                     num_ancient_files = len(ancient_files)
995                     ancient_file = ancient_files[0]
996                     ancient_date = tar.ancient_files[ancient_file]
997                     reject("%s: has %s file(s) with a time stamp too ancient (e.g. %s [%s])."
998                            % (filename, num_ancient_files, ancient_file,
999                               time.ctime(ancient_date)))
1000             except:
1001                 reject("%s: deb contents timestamp check failed [%s: %s]" % (filename, sys.exc_type, sys.exc_value))
1002
1003 ################################################################################
1004
1005 def lookup_uid_from_fingerprint(fpr):
1006     q = Upload.projectB.query("SELECT u.uid, u.name FROM fingerprint f, uid u WHERE f.uid = u.id AND f.fingerprint = '%s'" % (fpr))
1007     qs = q.getresult()
1008     if len(qs) == 0:
1009         return (None, None)
1010     else:
1011         return qs[0]
1012
1013 def check_signed_by_key():
1014     """Ensure the .changes is signed by an authorized uploader."""
1015
1016     (uid, uid_name) = lookup_uid_from_fingerprint(changes["fingerprint"])
1017     if uid_name == None:
1018         uid_name = ""
1019
1020     # match claimed name with actual name:
1021     if uid == None:
1022         uid, uid_email = changes["fingerprint"], uid
1023         may_nmu, may_sponsor = 1, 1
1024         # XXX by default new dds don't have a fingerprint/uid in the db atm,
1025         #     and can't get one in there if we don't allow nmu/sponsorship
1026     elif uid[:3] == "dm:":
1027         uid_email = uid[3:]
1028         may_nmu, may_sponsor = 0, 0
1029     else:
1030         uid_email = "%s@debian.org" % (uid)
1031         may_nmu, may_sponsor = 1, 1
1032
1033     if uid_email in [changes["maintaineremail"], changes["changedbyemail"]]:
1034         sponsored = 0
1035     elif uid_name in [changes["maintainername"], changes["changedbyname"]]:
1036         sponsored = 0
1037         if uid_name == "": sponsored = 1
1038     else:
1039         sponsored = 1
1040
1041     if sponsored and not may_sponsor: 
1042         reject("%s is not authorised to sponsor uploads" % (uid))
1043
1044     if not sponsored and not may_nmu:
1045         source_ids = []
1046         check_suites = changes["distribution"].keys()
1047         if "unstable" not in check_suites: check_suites.append("unstable")
1048         for suite in check_suites:
1049             suite_id = daklib.database.get_suite_id(suite)
1050             q = Upload.projectB.query("SELECT s.id FROM source s JOIN src_associations sa ON (s.id = sa.source) WHERE s.source = '%s' AND sa.suite = %d" % (changes["source"], suite_id))
1051             for si in q.getresult():
1052                 if si[0] not in source_ids: source_ids.append(si[0])
1053
1054         print "source_ids: %s" % (",".join([str(x) for x in source_ids]))
1055
1056         is_nmu = 1
1057         for si in source_ids:
1058             is_nmu = 1
1059             q = Upload.projectB.query("SELECT m.name FROM maintainer m WHERE m.id IN (SELECT maintainer FROM src_uploaders WHERE src_uploaders.source = %s)" % (si))
1060             for m in q.getresult():
1061                 (rfc822, rfc2047, name, email) = daklib.utils.fix_maintainer(m[0])
1062                 if email == uid_email or name == uid_name:
1063                     is_nmu=0
1064                     break
1065         if is_nmu:
1066             reject("%s may not upload/NMU source package %s" % (uid, changes["source"]))
1067
1068         for b in changes["binary"].keys():
1069             for suite in changes["distribution"].keys():
1070                 suite_id = daklib.database.get_suite_id(suite)
1071                 q = Upload.projectB.query("SELECT DISTINCT s.source FROM source s JOIN binaries b ON (s.id = b.source) JOIN bin_associations ba On (b.id = ba.bin) WHERE b.package = '%s' AND ba.suite = %s" % (b, suite_id))
1072                 for s in q.getresult():
1073                     if s[0] != changes["source"]:
1074                         reject("%s may not hijack %s from source package %s in suite %s" % (uid, b, s, suite))
1075
1076         for file in files.keys():
1077             if files[file].has_key("byhand"): 
1078                 reject("%s may not upload BYHAND file %s" % (uid, file))
1079             if files[file].has_key("new"):
1080                 reject("%s may not upload NEW file %s" % (uid, file))
1081
1082     # The remaining checks only apply to binary-only uploads right now
1083     if changes["architecture"].has_key("source"):
1084         return
1085
1086     if not Cnf.Exists("Binary-Upload-Restrictions"):
1087         return
1088
1089     restrictions = Cnf.SubTree("Binary-Upload-Restrictions")
1090
1091     # If the restrictions only apply to certain components make sure
1092     # that the upload is actual targeted there.
1093     if restrictions.Exists("Components"):
1094         restricted_components = restrictions.SubTree("Components").ValueList()
1095         is_restricted = False
1096         for file in files:
1097             if files[file]["component"] in restricted_components:
1098                 is_restricted = True
1099                 break
1100         if not is_restricted:
1101             return
1102
1103     # Assuming binary only upload restrictions are in place we then
1104     # iterate over suite and architecture checking the key is in the
1105     # allowed list.  If no allowed list exists for a given suite or
1106     # architecture it's assumed to be open to anyone.
1107     for suite in changes["distribution"].keys():
1108         if not restrictions.Exists(suite):
1109             continue
1110         for arch in changes["architecture"].keys():
1111             if not restrictions.SubTree(suite).Exists(arch):
1112                 continue
1113             allowed_keys = restrictions.SubTree("%s::%s" % (suite, arch)).ValueList()
1114             if changes["fingerprint"] not in allowed_keys:
1115                 base_filename = os.path.basename(pkg.changes_file)
1116                 reject("%s: not signed by authorised uploader for %s/%s"
1117                        % (base_filename, suite, arch))
1118
1119 ################################################################################
1120 ################################################################################
1121
1122 # If any file of an upload has a recent mtime then chances are good
1123 # the file is still being uploaded.
1124
1125 def upload_too_new():
1126     too_new = 0
1127     # Move back to the original directory to get accurate time stamps
1128     cwd = os.getcwd()
1129     os.chdir(pkg.directory)
1130     file_list = pkg.files.keys()
1131     file_list.extend(pkg.dsc_files.keys())
1132     file_list.append(pkg.changes_file)
1133     for file in file_list:
1134         try:
1135             last_modified = time.time()-os.path.getmtime(file)
1136             if last_modified < int(Cnf["Dinstall::SkipTime"]):
1137                 too_new = 1
1138                 break
1139         except:
1140             pass
1141     os.chdir(cwd)
1142     return too_new
1143
1144 ################################################################################
1145 ################################################################################
1146
1147 # We reject packages if the release team defined a transition for them
1148 def check_transition():
1149     to_dump = 0
1150
1151     # Only check if there is a file defined with checks. It's a little bit
1152     # specific to Debian, not much use for others, so return early there.
1153     if not Cnf.has_key("Dinstall::Reject::ReleaseTransitions"):
1154         return
1155     
1156     # No need to do anything if this upload has no source included
1157     if not changes["architecture"].has_key("source"):
1158         return
1159
1160     # We first load the current set of transitions, if any
1161     if not os.path.exists("%s" % (Cnf["Dinstall::Reject::ReleaseTransitions"])):
1162         # Nothing to do, no file exists
1163         return
1164     # Parse the yaml file
1165     sourcefile = file(Cnf["Dinstall::Reject::ReleaseTransitions"], 'r')
1166     transitions = load(sourcefile)
1167
1168     # Now look through all defined transitions
1169     for trans in transition:
1170         t = transition[trans]
1171         # We check if the transition is still valid
1172         # If not we remove the whole setting from the dictionary and later dump it,
1173         # so we don't process it again.
1174         source = t["source"]
1175         new_vers = t["new"]
1176         q = Upload.projectB.query("""
1177         SELECT s.version FROM source s, suite su, src_associations sa
1178         WHERE sa.source=s.id
1179           AND sa.suite=su.id
1180           AND su.suite_name='testing'
1181           AND s.source='%s'"""
1182                                 % (source))
1183         ql = q.getresult()
1184         if ql:
1185             current_vers = ql[0][0]
1186         if apt_pkg.VersionCompare(new_vers, current_vers) == 1:
1187             # This is still valid, the current version in database is older than
1188             # the new version we wait for
1189
1190             # Check if the source we look at is affected by this.
1191             if changes["source"] in t['packages']:
1192                 # The source is affected, lets reject it.
1193                 reject("""%s: part of the %s transition.
1194
1195                 Your package is part of a testing transition to get %s migrated.
1196
1197                 Transition reason: %s
1198
1199                 This transition will finish when %s, version %s, reaches testing.
1200                 This transition is managed by the Release Team and %s
1201                 is the Release-Team member responsible for it.
1202                 Please contact them or debian-release@lists.debian.org if you
1203                 need further assistance.
1204                 """
1205                        % (changes["source"], trans, source, t["reason"], source, new_vers, t["rm"]))
1206                 return 0
1207         else:
1208             # We either have the wanted or a newer version in testing, or the package got
1209             # removed completly. In that case we don't need to keep the transition blocker
1210             del transition[trans]
1211             to_dump = 1
1212
1213     if to_dump:
1214         destfile = file(Cnf["Dinstall::Reject::ReleaseTransitions"], 'w')
1215         dump(transition, destfile)
1216
1217 ################################################################################
1218
1219 def action ():
1220     # changes["distribution"] may not exist in corner cases
1221     # (e.g. unreadable changes files)
1222     if not changes.has_key("distribution") or not isinstance(changes["distribution"], DictType):
1223         changes["distribution"] = {}
1224
1225     (summary, short_summary) = Upload.build_summaries()
1226
1227     # q-unapproved hax0ring
1228     queue_info = {
1229          "New": { "is": is_new, "process": acknowledge_new },
1230          "Autobyhand" : { "is" : is_autobyhand, "process": do_autobyhand },
1231          "Byhand" : { "is": is_byhand, "process": do_byhand },
1232          "OldStableUpdate" : { "is": is_oldstableupdate, 
1233                                 "process": do_oldstableupdate },
1234          "StableUpdate" : { "is": is_stableupdate, "process": do_stableupdate },
1235          "Unembargo" : { "is": is_unembargo, "process": queue_unembargo },
1236          "Embargo" : { "is": is_embargo, "process": queue_embargo },
1237     }
1238     queues = [ "New", "Autobyhand", "Byhand" ]
1239     if Cnf.FindB("Dinstall::SecurityQueueHandling"):
1240         queues += [ "Unembargo", "Embargo" ]
1241     else:
1242         queues += [ "OldStableUpdate", "StableUpdate" ]
1243
1244     (prompt, answer) = ("", "XXX")
1245     if Options["No-Action"] or Options["Automatic"]:
1246         answer = 'S'
1247
1248     queuekey = ''
1249
1250     if reject_message.find("Rejected") != -1:
1251         if upload_too_new():
1252             print "SKIP (too new)\n" + reject_message,
1253             prompt = "[S]kip, Quit ?"
1254         else:
1255             print "REJECT\n" + reject_message,
1256             prompt = "[R]eject, Skip, Quit ?"
1257             if Options["Automatic"]:
1258                 answer = 'R'
1259     else:
1260         queue = None
1261         for q in queues:
1262             if queue_info[q]["is"]():
1263                 queue = q
1264                 break
1265         if queue:
1266             print "%s for %s\n%s%s" % (
1267                 queue.upper(), ", ".join(changes["distribution"].keys()), 
1268                 reject_message, summary),
1269             queuekey = queue[0].upper()
1270             if queuekey in "RQSA":
1271                 queuekey = "D"
1272                 prompt = "[D]ivert, Skip, Quit ?"
1273             else:
1274                 prompt = "[%s]%s, Skip, Quit ?" % (queuekey, queue[1:].lower())
1275             if Options["Automatic"]:
1276                 answer = queuekey
1277         else:
1278             print "ACCEPT\n" + reject_message + summary,
1279             prompt = "[A]ccept, Skip, Quit ?"
1280             if Options["Automatic"]:
1281                 answer = 'A'
1282
1283     while prompt.find(answer) == -1:
1284         answer = daklib.utils.our_raw_input(prompt)
1285         m = daklib.queue.re_default_answer.match(prompt)
1286         if answer == "":
1287             answer = m.group(1)
1288         answer = answer[:1].upper()
1289
1290     if answer == 'R':
1291         os.chdir (pkg.directory)
1292         Upload.do_reject(0, reject_message)
1293     elif answer == 'A':
1294         accept(summary, short_summary)
1295         remove_from_unchecked()
1296     elif answer == queuekey:
1297         queue_info[queue]["process"](summary, short_summary)
1298         remove_from_unchecked()
1299     elif answer == 'Q':
1300         sys.exit(0)
1301
1302 def remove_from_unchecked():
1303     os.chdir (pkg.directory)
1304     for file in files.keys():
1305         os.unlink(file)
1306     os.unlink(pkg.changes_file)
1307
1308 ################################################################################
1309
1310 def accept (summary, short_summary):
1311     Upload.accept(summary, short_summary)
1312     Upload.check_override()
1313
1314 ################################################################################
1315
1316 def move_to_dir (dest, perms=0660, changesperms=0664):
1317     daklib.utils.move (pkg.changes_file, dest, perms=changesperms)
1318     file_keys = files.keys()
1319     for file in file_keys:
1320         daklib.utils.move (file, dest, perms=perms)
1321
1322 ################################################################################
1323
1324 def is_unembargo ():
1325     q = Upload.projectB.query(
1326       "SELECT package FROM disembargo WHERE package = '%s' AND version = '%s'" % 
1327       (changes["source"], changes["version"]))
1328     ql = q.getresult()
1329     if ql:
1330         return 1
1331
1332     oldcwd = os.getcwd()
1333     os.chdir(Cnf["Dir::Queue::Disembargo"])
1334     disdir = os.getcwd()
1335     os.chdir(oldcwd)
1336
1337     if pkg.directory == disdir:
1338         if changes["architecture"].has_key("source"):
1339             if Options["No-Action"]: return 1
1340
1341             Upload.projectB.query(
1342               "INSERT INTO disembargo (package, version) VALUES ('%s', '%s')" % 
1343               (changes["source"], changes["version"]))
1344             return 1
1345
1346     return 0
1347
1348 def queue_unembargo (summary, short_summary):
1349     print "Moving to UNEMBARGOED holding area."
1350     Logger.log(["Moving to unembargoed", pkg.changes_file])
1351
1352     Upload.dump_vars(Cnf["Dir::Queue::Unembargoed"])
1353     move_to_dir(Cnf["Dir::Queue::Unembargoed"])
1354     Upload.queue_build("unembargoed", Cnf["Dir::Queue::Unembargoed"])
1355
1356     # Check for override disparities
1357     Upload.Subst["__SUMMARY__"] = summary
1358     Upload.check_override()
1359
1360 ################################################################################
1361
1362 def is_embargo ():
1363     # if embargoed queues are enabled always embargo
1364     return 1
1365
1366 def queue_embargo (summary, short_summary):
1367     print "Moving to EMBARGOED holding area."
1368     Logger.log(["Moving to embargoed", pkg.changes_file])
1369
1370     Upload.dump_vars(Cnf["Dir::Queue::Embargoed"])
1371     move_to_dir(Cnf["Dir::Queue::Embargoed"])
1372     Upload.queue_build("embargoed", Cnf["Dir::Queue::Embargoed"])
1373
1374     # Check for override disparities
1375     Upload.Subst["__SUMMARY__"] = summary
1376     Upload.check_override()
1377
1378 ################################################################################
1379
1380 def is_stableupdate ():
1381     if not changes["distribution"].has_key("proposed-updates"):
1382         return 0
1383
1384     if not changes["architecture"].has_key("source"):
1385         pusuite = daklib.database.get_suite_id("proposed-updates")
1386         q = Upload.projectB.query(
1387           "SELECT S.source FROM source s JOIN src_associations sa ON (s.id = sa.source) WHERE s.source = '%s' AND s.version = '%s' AND sa.suite = %d" % 
1388           (changes["source"], changes["version"], pusuite))
1389         ql = q.getresult()
1390         if ql:
1391             # source is already in proposed-updates so no need to hold
1392             return 0
1393
1394     return 1
1395
1396 def do_stableupdate (summary, short_summary):
1397     print "Moving to PROPOSED-UPDATES holding area."
1398     Logger.log(["Moving to proposed-updates", pkg.changes_file]);
1399
1400     Upload.dump_vars(Cnf["Dir::Queue::ProposedUpdates"]);
1401     move_to_dir(Cnf["Dir::Queue::ProposedUpdates"])
1402
1403     # Check for override disparities
1404     Upload.Subst["__SUMMARY__"] = summary;
1405     Upload.check_override();
1406
1407 ################################################################################
1408
1409 def is_oldstableupdate ():
1410     if not changes["distribution"].has_key("oldstable-proposed-updates"):
1411         return 0
1412
1413     if not changes["architecture"].has_key("source"):
1414         pusuite = daklib.database.get_suite_id("oldstable-proposed-updates")
1415         q = Upload.projectB.query(
1416           "SELECT S.source FROM source s JOIN src_associations sa ON (s.id = sa.source) WHERE s.source = '%s' AND s.version = '%s' AND sa.suite = %d" % 
1417           (changes["source"], changes["version"], pusuite))
1418         ql = q.getresult()
1419         if ql:
1420             # source is already in oldstable-proposed-updates so no need to hold
1421             return 0
1422
1423     return 1
1424
1425 def do_oldstableupdate (summary, short_summary):
1426     print "Moving to OLDSTABLE-PROPOSED-UPDATES holding area."
1427     Logger.log(["Moving to oldstable-proposed-updates", pkg.changes_file]);
1428
1429     Upload.dump_vars(Cnf["Dir::Queue::OldProposedUpdates"]);
1430     move_to_dir(Cnf["Dir::Queue::OldProposedUpdates"])
1431
1432     # Check for override disparities
1433     Upload.Subst["__SUMMARY__"] = summary;
1434     Upload.check_override();
1435
1436 ################################################################################
1437
1438 def is_autobyhand ():
1439     all_auto = 1
1440     any_auto = 0
1441     for file in files.keys():
1442         if files[file].has_key("byhand"):
1443             any_auto = 1
1444
1445             # filename is of form "PKG_VER_ARCH.EXT" where PKG, VER and ARCH
1446             # don't contain underscores, and ARCH doesn't contain dots.
1447             # further VER matches the .changes Version:, and ARCH should be in
1448             # the .changes Architecture: list.
1449             if file.count("_") < 2:
1450                 all_auto = 0
1451                 continue
1452         
1453             (pkg, ver, archext) = file.split("_", 2)
1454             if archext.count(".") < 1 or changes["version"] != ver:
1455                 all_auto = 0
1456                 continue
1457
1458             ABH = Cnf.SubTree("AutomaticByHandPackages")
1459             if not ABH.has_key(pkg) or \
1460               ABH["%s::Source" % (pkg)] != changes["source"]:
1461                 print "not match %s %s" % (pkg, changes["source"])
1462                 all_auto = 0
1463                 continue
1464
1465             (arch, ext) = archext.split(".", 1)
1466             if arch not in changes["architecture"]:
1467                 all_auto = 0
1468                 continue
1469
1470             files[file]["byhand-arch"] = arch
1471             files[file]["byhand-script"] = ABH["%s::Script" % (pkg)]
1472
1473     return any_auto and all_auto
1474
1475 def do_autobyhand (summary, short_summary):
1476     print "Attempting AUTOBYHAND."
1477     byhandleft = 0
1478     for file in files.keys():
1479         byhandfile = file
1480         if not files[file].has_key("byhand"):
1481             continue
1482         if not files[file].has_key("byhand-script"):
1483             byhandleft = 1
1484             continue
1485
1486         os.system("ls -l %s" % byhandfile)
1487         result = os.system("%s %s %s %s %s" % (
1488                 files[file]["byhand-script"], byhandfile, 
1489                 changes["version"], files[file]["byhand-arch"],
1490                 os.path.abspath(pkg.changes_file)))
1491         if result == 0:
1492             os.unlink(byhandfile)
1493             del files[file]
1494         else:
1495             print "Error processing %s, left as byhand." % (file)
1496             byhandleft = 1
1497
1498     if byhandleft:
1499         do_byhand(summary, short_summary)
1500     else:
1501         accept(summary, short_summary)
1502
1503 ################################################################################
1504
1505 def is_byhand ():
1506     for file in files.keys():
1507         if files[file].has_key("byhand"):
1508             return 1
1509     return 0
1510
1511 def do_byhand (summary, short_summary):
1512     print "Moving to BYHAND holding area."
1513     Logger.log(["Moving to byhand", pkg.changes_file])
1514
1515     Upload.dump_vars(Cnf["Dir::Queue::Byhand"])
1516     move_to_dir(Cnf["Dir::Queue::Byhand"])
1517
1518     # Check for override disparities
1519     Upload.Subst["__SUMMARY__"] = summary
1520     Upload.check_override()
1521
1522 ################################################################################
1523
1524 def is_new ():
1525     for file in files.keys():
1526         if files[file].has_key("new"):
1527             return 1
1528     return 0
1529
1530 def acknowledge_new (summary, short_summary):
1531     Subst = Upload.Subst
1532
1533     print "Moving to NEW holding area."
1534     Logger.log(["Moving to new", pkg.changes_file])
1535
1536     Upload.dump_vars(Cnf["Dir::Queue::New"])
1537     move_to_dir(Cnf["Dir::Queue::New"])
1538
1539     if not Options["No-Mail"]:
1540         print "Sending new ack."
1541         Subst["__SUMMARY__"] = summary
1542         new_ack_message = daklib.utils.TemplateSubst(Subst,Cnf["Dir::Templates"]+"/process-unchecked.new")
1543         daklib.utils.send_mail(new_ack_message)
1544
1545 ################################################################################
1546
1547 # reprocess is necessary for the case of foo_1.2-1 and foo_1.2-2 in
1548 # Incoming. -1 will reference the .orig.tar.gz, but -2 will not.
1549 # Upload.check_dsc_against_db() can find the .orig.tar.gz but it will
1550 # not have processed it during it's checks of -2.  If -1 has been
1551 # deleted or otherwise not checked by 'dak process-unchecked', the
1552 # .orig.tar.gz will not have been checked at all.  To get round this,
1553 # we force the .orig.tar.gz into the .changes structure and reprocess
1554 # the .changes file.
1555
1556 def process_it (changes_file):
1557     global reprocess, reject_message
1558
1559     # Reset some globals
1560     reprocess = 1
1561     Upload.init_vars()
1562     # Some defaults in case we can't fully process the .changes file
1563     changes["maintainer2047"] = Cnf["Dinstall::MyEmailAddress"]
1564     changes["changedby2047"] = Cnf["Dinstall::MyEmailAddress"]
1565     reject_message = ""
1566
1567     # Absolutize the filename to avoid the requirement of being in the
1568     # same directory as the .changes file.
1569     pkg.changes_file = os.path.abspath(changes_file)
1570
1571     # Remember where we are so we can come back after cd-ing into the
1572     # holding directory.
1573     pkg.directory = os.getcwd()
1574
1575     try:
1576         # If this is the Real Thing(tm), copy things into a private
1577         # holding directory first to avoid replacable file races.
1578         if not Options["No-Action"]:
1579             os.chdir(Cnf["Dir::Queue::Holding"])
1580             copy_to_holding(pkg.changes_file)
1581             # Relativize the filename so we use the copy in holding
1582             # rather than the original...
1583             pkg.changes_file = os.path.basename(pkg.changes_file)
1584         changes["fingerprint"] = daklib.utils.check_signature(pkg.changes_file, reject)
1585         if changes["fingerprint"]:
1586             valid_changes_p = check_changes()
1587         else:
1588             valid_changes_p = 0
1589         if valid_changes_p:
1590             while reprocess:
1591                 check_distributions()
1592                 check_files()
1593                 valid_dsc_p = check_dsc()
1594                 if valid_dsc_p:
1595                     check_source()
1596                 check_md5sums()
1597                 check_urgency()
1598                 check_timestamps()
1599                 check_signed_by_key()
1600                 check_transition()
1601         Upload.update_subst(reject_message)
1602         action()
1603     except SystemExit:
1604         raise
1605     except:
1606         print "ERROR"
1607         traceback.print_exc(file=sys.stderr)
1608         pass
1609
1610     # Restore previous WD
1611     os.chdir(pkg.directory)
1612
1613 ###############################################################################
1614
1615 def main():
1616     global Cnf, Options, Logger
1617
1618     changes_files = init()
1619
1620     # -n/--dry-run invalidates some other options which would involve things happening
1621     if Options["No-Action"]:
1622         Options["Automatic"] = ""
1623
1624     # Ensure all the arguments we were given are .changes files
1625     for file in changes_files:
1626         if not file.endswith(".changes"):
1627             daklib.utils.warn("Ignoring '%s' because it's not a .changes file." % (file))
1628             changes_files.remove(file)
1629
1630     if changes_files == []:
1631         daklib.utils.fubar("Need at least one .changes file as an argument.")
1632
1633     # Check that we aren't going to clash with the daily cron job
1634
1635     if not Options["No-Action"] and os.path.exists("%s/daily.lock" % (Cnf["Dir::Lock"])) and not Options["No-Lock"]:
1636         daklib.utils.fubar("Archive maintenance in progress.  Try again later.")
1637
1638     # Obtain lock if not in no-action mode and initialize the log
1639
1640     if not Options["No-Action"]:
1641         lock_fd = os.open(Cnf["Dinstall::LockFile"], os.O_RDWR | os.O_CREAT)
1642         try:
1643             fcntl.lockf(lock_fd, fcntl.LOCK_EX | fcntl.LOCK_NB)
1644         except IOError, e:
1645             if errno.errorcode[e.errno] == 'EACCES' or errno.errorcode[e.errno] == 'EAGAIN':
1646                 daklib.utils.fubar("Couldn't obtain lock; assuming another 'dak process-unchecked' is already running.")
1647             else:
1648                 raise
1649         Logger = Upload.Logger = daklib.logging.Logger(Cnf, "process-unchecked")
1650
1651     # debian-{devel-,}-changes@lists.debian.org toggles writes access based on this header
1652     bcc = "X-DAK: dak process-unchecked\nX-Katie: $Revision: 1.65 $"
1653     if Cnf.has_key("Dinstall::Bcc"):
1654         Upload.Subst["__BCC__"] = bcc + "\nBcc: %s" % (Cnf["Dinstall::Bcc"])
1655     else:
1656         Upload.Subst["__BCC__"] = bcc
1657
1658
1659     # Sort the .changes files so that we process sourceful ones first
1660     changes_files.sort(daklib.utils.changes_compare)
1661
1662     # Process the changes files
1663     for changes_file in changes_files:
1664         print "\n" + changes_file
1665         try:
1666             process_it (changes_file)
1667         finally:
1668             if not Options["No-Action"]:
1669                 clean_holding()
1670
1671     accept_count = Upload.accept_count
1672     accept_bytes = Upload.accept_bytes
1673     if accept_count:
1674         sets = "set"
1675         if accept_count > 1:
1676             sets = "sets"
1677         print "Accepted %d package %s, %s." % (accept_count, sets, daklib.utils.size_type(int(accept_bytes)))
1678         Logger.log(["total",accept_count,accept_bytes])
1679
1680     if not Options["No-Action"]:
1681         Logger.close()
1682
1683 ################################################################################
1684
1685 if __name__ == '__main__':
1686     main()
1687