]> git.decadent.org.uk Git - dak.git/blob - dak/process_unchecked.py
Modified dak to use non-braindead DM schema, and use an actual column for
[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 from daklib import database
34 from daklib import logging
35 from daklib import queue
36 from daklib import utils
37 from daklib.dak_exceptions import *
38
39 from types import *
40
41 ################################################################################
42
43 re_valid_version = re.compile(r"^([0-9]+:)?[0-9A-Za-z\.\-\+:~]+$")
44 re_valid_pkg_name = re.compile(r"^[\dA-Za-z][\dA-Za-z\+\-\.]+$")
45 re_changelog_versions = re.compile(r"^\w[-+0-9a-z.]+ \([^\(\) \t]+\)")
46 re_strip_revision = re.compile(r"-([^-]+)$")
47 re_strip_srcver = re.compile(r"\s+\(\S+\)$")
48 re_spacestrip = re.compile('(\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,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 = 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 f in in_holding.keys():
169         if os.path.exists(f):
170             if f.find('/') != -1:
171                 utils.fubar("WTF? clean_holding() got a file ('%s') with / in it!" % (f))
172             else:
173                 os.unlink(f)
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(utils.parse_changes(filename))
185     except CantOpenError:
186         reject("%s: can't read file." % (filename))
187         return 0
188     except ParseChangesError, 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(utils.build_file_list(changes))
195     except ParseChangesError, line:
196         reject("%s: parse error, can't grok: %s." % (filename, line))
197     except UnknownFormatError, 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          utils.fix_maintainer (changes["maintainer"])
230     except 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          utils.fix_maintainer (changes.get("changed-by", ""))
239     except 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 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"] = utils.re_no_epoch.sub('', changes["version"])
255     changes["chopversion2"] = 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 d in [ "Accepted", "Byhand", "Done", "New", "ProposedUpdates", "OldProposedUpdates" ]:
261         if os.path.exists(Cnf["Dir::Queue::%s" % (d) ]+'/'+base_filename):
262             reject("%s: a file with this name already exists in the %s directory." % (base_filename, d))
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 m in Cnf.ValueList("SuiteMappings"):
278         args = m.split()
279         mtype = args[0]
280         if mtype == "map" or mtype == "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 mtype != "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 mtype == "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 mtype == "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 mtype == "reject":
305             suite = args[1]
306             if changes["distribution"].has_key(suite):
307                 reject("Uploads to %s are not accepted." % (suite))
308         elif mtype == "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):
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(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 = 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 f in file_keys:
365             copy_to_holding(f)
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 f in file_keys:
391         # Ensure the file does not already exist in one of the accepted directories
392         for d in [ "Accepted", "Byhand", "New", "ProposedUpdates", "OldProposedUpdates", "Embargoed", "Unembargoed" ]:
393             if not Cnf.has_key("Dir::Queue::%s" % (d)): continue
394             if os.path.exists(Cnf["Dir::Queue::%s" % (d) ] + '/' + f):
395                 reject("%s file already exists in the %s directory." % (f, d))
396         if not utils.re_taint_free.match(f):
397             reject("!!WARNING!! tainted filename: '%s'." % (f))
398         # Check the file is readable
399         if os.access(f, 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(f):
404                     reject("Can't read `%s'. [permission denied]" % (f))
405                 else:
406                     reject("Can't read `%s'. [file not found]" % (f))
407             files[f]["type"] = "unreadable"
408             continue
409         # If it's byhand skip remaining checks
410         if files[f]["section"] == "byhand" or files[f]["section"][:4] == "raw-":
411             files[f]["byhand"] = 1
412             files[f]["type"] = "byhand"
413         # Checks for a binary package...
414         elif utils.re_isadeb.match(f):
415             has_binaries = 1
416             files[f]["type"] = "deb"
417
418             # Extract package control information
419             deb_file = utils.open_file(f)
420             try:
421                 control = apt_pkg.ParseSection(apt_inst.debExtractControl(deb_file))
422             except:
423                 reject("%s: debExtractControl() raised %s." % (f, 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." % (f, 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." % (f, 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'." % (f, 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'." % (f, 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             upload_suite = changes["distribution"].keys()[0]
454             if architecture not in Cnf.ValueList("Suite::%s::Architectures" % (default_suite)) and architecture not in Cnf.ValueList("Suite::%s::Architectures" % (upload_suite)):
455                 reject("Unknown architecture '%s'." % (architecture))
456
457             # Ensure the architecture of the .deb is one of the ones
458             # listed in the .changes.
459             if not changes["architecture"].has_key(architecture):
460                 reject("%s: control file lists arch as `%s', which isn't in changes file." % (f, architecture))
461
462             # Sanity-check the Depends field
463             depends = control.Find("Depends")
464             if depends == '':
465                 reject("%s: Depends field is empty." % (f))
466
467             # Sanity-check the Provides field
468             provides = control.Find("Provides")
469             if provides:
470                 provide = re_spacestrip.sub('', provides)
471                 if provide == '':
472                     reject("%s: Provides field is empty." % (f))
473                 prov_list = provide.split(",")
474                 for prov in prov_list:
475                     if not re_valid_pkg_name.match(prov):
476                         reject("%s: Invalid Provides field content %s." % (f, prov))
477
478
479             # Check the section & priority match those given in the .changes (non-fatal)
480             if control.Find("Section") and files[f]["section"] != "" and files[f]["section"] != control.Find("Section"):
481                 reject("%s control file lists section as `%s', but changes file has `%s'." % (f, control.Find("Section", ""), files[f]["section"]), "Warning: ")
482             if control.Find("Priority") and files[f]["priority"] != "" and files[f]["priority"] != control.Find("Priority"):
483                 reject("%s control file lists priority as `%s', but changes file has `%s'." % (f, control.Find("Priority", ""), files[f]["priority"]),"Warning: ")
484
485             files[f]["package"] = package
486             files[f]["architecture"] = architecture
487             files[f]["version"] = version
488             files[f]["maintainer"] = control.Find("Maintainer", "")
489             if f.endswith(".udeb"):
490                 files[f]["dbtype"] = "udeb"
491             elif f.endswith(".deb"):
492                 files[f]["dbtype"] = "deb"
493             else:
494                 reject("%s is neither a .deb or a .udeb." % (f))
495             files[f]["source"] = control.Find("Source", files[f]["package"])
496             # Get the source version
497             source = files[f]["source"]
498             source_version = ""
499             if source.find("(") != -1:
500                 m = utils.re_extract_src_version.match(source)
501                 source = m.group(1)
502                 source_version = m.group(2)
503             if not source_version:
504                 source_version = files[f]["version"]
505             files[f]["source package"] = source
506             files[f]["source version"] = source_version
507
508             # Ensure the filename matches the contents of the .deb
509             m = utils.re_isadeb.match(f)
510             #  package name
511             file_package = m.group(1)
512             if files[f]["package"] != file_package:
513                 reject("%s: package part of filename (%s) does not match package name in the %s (%s)." % (f, file_package, files[f]["dbtype"], files[f]["package"]))
514             epochless_version = utils.re_no_epoch.sub('', control.Find("Version"))
515             #  version
516             file_version = m.group(2)
517             if epochless_version != file_version:
518                 reject("%s: version part of filename (%s) does not match package version in the %s (%s)." % (f, file_version, files[f]["dbtype"], epochless_version))
519             #  architecture
520             file_architecture = m.group(3)
521             if files[f]["architecture"] != file_architecture:
522                 reject("%s: architecture part of filename (%s) does not match package architecture in the %s (%s)." % (f, file_architecture, files[f]["dbtype"], files[f]["architecture"]))
523
524             # Check for existent source
525             source_version = files[f]["source version"]
526             source_package = files[f]["source package"]
527             if changes["architecture"].has_key("source"):
528                 if source_version != changes["version"]:
529                     reject("source version (%s) for %s doesn't match changes version %s." % (source_version, f, changes["version"]))
530             else:
531                 # Check in the SQL database
532                 if not Upload.source_exists(source_package, source_version, changes["distribution"].keys()):
533                     # Check in one of the other directories
534                     source_epochless_version = utils.re_no_epoch.sub('', source_version)
535                     dsc_filename = "%s_%s.dsc" % (source_package, source_epochless_version)
536                     if os.path.exists(Cnf["Dir::Queue::Byhand"] + '/' + dsc_filename):
537                         files[f]["byhand"] = 1
538                     elif os.path.exists(Cnf["Dir::Queue::New"] + '/' + dsc_filename):
539                         files[f]["new"] = 1
540                     else:
541                         dsc_file_exists = 0
542                         for myq in ["Accepted", "Embargoed", "Unembargoed", "ProposedUpdates", "OldProposedUpdates"]:
543                             if Cnf.has_key("Dir::Queue::%s" % (myq)):
544                                 if os.path.exists(Cnf["Dir::Queue::"+myq] + '/' + dsc_filename):
545                                     dsc_file_exists = 1
546                                     break
547                         if not dsc_file_exists:
548                             reject("no source found for %s %s (%s)." % (source_package, source_version, f))
549             # Check the version and for file overwrites
550             reject(Upload.check_binary_against_db(f),"")
551
552             check_deb_ar(f)
553
554         # Checks for a source package...
555         else:
556             m = utils.re_issource.match(f)
557             if m:
558                 has_source = 1
559                 files[f]["package"] = m.group(1)
560                 files[f]["version"] = m.group(2)
561                 files[f]["type"] = m.group(3)
562
563                 # Ensure the source package name matches the Source filed in the .changes
564                 if changes["source"] != files[f]["package"]:
565                     reject("%s: changes file doesn't say %s for Source" % (f, files[f]["package"]))
566
567                 # Ensure the source version matches the version in the .changes file
568                 if files[f]["type"] == "orig.tar.gz":
569                     changes_version = changes["chopversion2"]
570                 else:
571                     changes_version = changes["chopversion"]
572                 if changes_version != files[f]["version"]:
573                     reject("%s: should be %s according to changes file." % (f, changes_version))
574
575                 # Ensure the .changes lists source in the Architecture field
576                 if not changes["architecture"].has_key("source"):
577                     reject("%s: changes file doesn't list `source' in Architecture field." % (f))
578
579                 # Check the signature of a .dsc file
580                 if files[f]["type"] == "dsc":
581                     dsc["fingerprint"] = utils.check_signature(f, reject)
582
583                 files[f]["architecture"] = "source"
584
585             # Not a binary or source package?  Assume byhand...
586             else:
587                 files[f]["byhand"] = 1
588                 files[f]["type"] = "byhand"
589
590         # Per-suite file checks
591         files[f]["oldfiles"] = {}
592         for suite in changes["distribution"].keys():
593             # Skip byhand
594             if files[f].has_key("byhand"):
595                 continue
596
597             # Handle component mappings
598             for m in Cnf.ValueList("ComponentMappings"):
599                 (source, dest) = m.split()
600                 if files[f]["component"] == source:
601                     files[f]["original component"] = source
602                     files[f]["component"] = dest
603
604             # Ensure the component is valid for the target suite
605             if Cnf.has_key("Suite:%s::Components" % (suite)) and \
606                files[f]["component"] not in Cnf.ValueList("Suite::%s::Components" % (suite)):
607                 reject("unknown component `%s' for suite `%s'." % (files[f]["component"], suite))
608                 continue
609
610             # Validate the component
611             component = files[f]["component"]
612             component_id = database.get_component_id(component)
613             if component_id == -1:
614                 reject("file '%s' has unknown component '%s'." % (f, component))
615                 continue
616
617             # See if the package is NEW
618             if not Upload.in_override_p(files[f]["package"], files[f]["component"], suite, files[f].get("dbtype",""), f):
619                 files[f]["new"] = 1
620
621             # Validate the priority
622             if files[f]["priority"].find('/') != -1:
623                 reject("file '%s' has invalid priority '%s' [contains '/']." % (f, files[f]["priority"]))
624
625             # Determine the location
626             location = Cnf["Dir::Pool"]
627             location_id = database.get_location_id (location, component, archive)
628             if location_id == -1:
629                 reject("[INTERNAL ERROR] couldn't determine location (Component: %s, Archive: %s)" % (component, archive))
630             files[f]["location id"] = location_id
631
632             # Check the md5sum & size against existing files (if any)
633             files[f]["pool name"] = utils.poolify (changes["source"], files[f]["component"])
634             files_id = database.get_files_id(files[f]["pool name"] + f, files[f]["size"], files[f]["md5sum"], files[f]["location id"])
635             if files_id == -1:
636                 reject("INTERNAL ERROR, get_files_id() returned multiple matches for %s." % (f))
637             elif files_id == -2:
638                 reject("md5sum and/or size mismatch on existing copy of %s." % (f))
639             files[f]["files id"] = files_id
640
641             # Check for packages that have moved from one component to another
642             q = Upload.projectB.query("""
643 SELECT c.name FROM binaries b, bin_associations ba, suite s, location l,
644                    component c, architecture a, files f
645  WHERE b.package = '%s' AND s.suite_name = '%s'
646    AND (a.arch_string = '%s' OR a.arch_string = 'all')
647    AND ba.bin = b.id AND ba.suite = s.id AND b.architecture = a.id
648    AND f.location = l.id AND l.component = c.id AND b.file = f.id"""
649                                % (files[f]["package"], suite,
650                                   files[f]["architecture"]))
651             ql = q.getresult()
652             if ql:
653                 files[f]["othercomponents"] = ql[0][0]
654
655     # If the .changes file says it has source, it must have source.
656     if changes["architecture"].has_key("source"):
657         if not has_source:
658             reject("no source found and Architecture line in changes mention source.")
659
660         if not has_binaries and Cnf.FindB("Dinstall::Reject::NoSourceOnly"):
661             reject("source only uploads are not supported.")
662
663 ###############################################################################
664
665 def check_dsc():
666     global reprocess
667
668     # Ensure there is source to check
669     if not changes["architecture"].has_key("source"):
670         return 1
671
672     # Find the .dsc
673     dsc_filename = None
674     for f in files.keys():
675         if files[f]["type"] == "dsc":
676             if dsc_filename:
677                 reject("can not process a .changes file with multiple .dsc's.")
678                 return 0
679             else:
680                 dsc_filename = f
681
682     # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
683     if not dsc_filename:
684         reject("source uploads must contain a dsc file")
685         return 0
686
687     # Parse the .dsc file
688     try:
689         dsc.update(utils.parse_changes(dsc_filename, signing_rules=1))
690     except CantOpenError:
691         # if not -n copy_to_holding() will have done this for us...
692         if Options["No-Action"]:
693             reject("%s: can't read file." % (dsc_filename))
694     except ParseChangesError, line:
695         reject("%s: parse error, can't grok: %s." % (dsc_filename, line))
696     except InvalidDscError, line:
697         reject("%s: syntax error on line %s." % (dsc_filename, line))
698     # Build up the file list of files mentioned by the .dsc
699     try:
700         dsc_files.update(utils.build_file_list(dsc, is_a_dsc=1))
701     except NoFilesFieldError:
702         reject("%s: no Files: field." % (dsc_filename))
703         return 0
704     except UnknownFormatError, format:
705         reject("%s: unknown format '%s'." % (dsc_filename, format))
706         return 0
707     except ParseChangesError, line:
708         reject("%s: parse error, can't grok: %s." % (dsc_filename, line))
709         return 0
710
711     # Enforce mandatory fields
712     for i in ("format", "source", "version", "binary", "maintainer", "architecture", "files"):
713         if not dsc.has_key(i):
714             reject("%s: missing mandatory field `%s'." % (dsc_filename, i))
715             return 0
716
717     # Validate the source and version fields
718     if not re_valid_pkg_name.match(dsc["source"]):
719         reject("%s: invalid source name '%s'." % (dsc_filename, dsc["source"]))
720     if not re_valid_version.match(dsc["version"]):
721         reject("%s: invalid version number '%s'." % (dsc_filename, dsc["version"]))
722
723     # Bumping the version number of the .dsc breaks extraction by stable's
724     # dpkg-source.  So let's not do that...
725     if dsc["format"] != "1.0":
726         reject("%s: incompatible 'Format' version produced by a broken version of dpkg-dev 1.9.1{3,4}." % (dsc_filename))
727
728     # Validate the Maintainer field
729     try:
730         utils.fix_maintainer (dsc["maintainer"])
731     except ParseMaintError, msg:
732         reject("%s: Maintainer field ('%s') failed to parse: %s" \
733                % (dsc_filename, dsc["maintainer"], msg))
734
735     # Validate the build-depends field(s)
736     for field_name in [ "build-depends", "build-depends-indep" ]:
737         field = dsc.get(field_name)
738         if field:
739             # Check for broken dpkg-dev lossage...
740             if field.startswith("ARRAY"):
741                 reject("%s: invalid %s field produced by a broken version of dpkg-dev (1.10.11)" % (dsc_filename, field_name.title()))
742
743             # Have apt try to parse them...
744             try:
745                 apt_pkg.ParseSrcDepends(field)
746             except:
747                 reject("%s: invalid %s field (can not be parsed by apt)." % (dsc_filename, field_name.title()))
748                 pass
749
750     # Ensure the version number in the .dsc matches the version number in the .changes
751     epochless_dsc_version = utils.re_no_epoch.sub('', dsc["version"])
752     changes_version = files[dsc_filename]["version"]
753     if epochless_dsc_version != files[dsc_filename]["version"]:
754         reject("version ('%s') in .dsc does not match version ('%s') in .changes." % (epochless_dsc_version, changes_version))
755
756     # Ensure there is a .tar.gz in the .dsc file
757     has_tar = 0
758     for f in dsc_files.keys():
759         m = utils.re_issource.match(f)
760         if not m:
761             reject("%s: %s in Files field not recognised as source." % (dsc_filename, f))
762             continue
763         ftype = m.group(3)
764         if ftype == "orig.tar.gz" or ftype == "tar.gz":
765             has_tar = 1
766     if not has_tar:
767         reject("%s: no .tar.gz or .orig.tar.gz in 'Files' field." % (dsc_filename))
768
769     # Ensure source is newer than existing source in target suites
770     reject(Upload.check_source_against_db(dsc_filename),"")
771
772     (reject_msg, is_in_incoming) = Upload.check_dsc_against_db(dsc_filename)
773     reject(reject_msg, "")
774     if is_in_incoming:
775         if not Options["No-Action"]:
776             copy_to_holding(is_in_incoming)
777         orig_tar_gz = os.path.basename(is_in_incoming)
778         files[orig_tar_gz] = {}
779         files[orig_tar_gz]["size"] = os.stat(orig_tar_gz)[stat.ST_SIZE]
780         files[orig_tar_gz]["md5sum"] = dsc_files[orig_tar_gz]["md5sum"]
781         files[orig_tar_gz]["sha1sum"] = dsc_files[orig_tar_gz]["sha1sum"]
782         files[orig_tar_gz]["sha256sum"] = dsc_files[orig_tar_gz]["sha256sum"]
783         files[orig_tar_gz]["section"] = files[dsc_filename]["section"]
784         files[orig_tar_gz]["priority"] = files[dsc_filename]["priority"]
785         files[orig_tar_gz]["component"] = files[dsc_filename]["component"]
786         files[orig_tar_gz]["type"] = "orig.tar.gz"
787         reprocess = 2
788
789     return 1
790
791 ################################################################################
792
793 def get_changelog_versions(source_dir):
794     """Extracts a the source package and (optionally) grabs the
795     version history out of debian/changelog for the BTS."""
796
797     # Find the .dsc (again)
798     dsc_filename = None
799     for f in files.keys():
800         if files[f]["type"] == "dsc":
801             dsc_filename = f
802
803     # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
804     if not dsc_filename:
805         return
806
807     # Create a symlink mirror of the source files in our temporary directory
808     for f in files.keys():
809         m = utils.re_issource.match(f)
810         if m:
811             src = os.path.join(source_dir, f)
812             # If a file is missing for whatever reason, give up.
813             if not os.path.exists(src):
814                 return
815             ftype = m.group(3)
816             if ftype == "orig.tar.gz" and pkg.orig_tar_gz:
817                 continue
818             dest = os.path.join(os.getcwd(), f)
819             os.symlink(src, dest)
820
821     # If the orig.tar.gz is not a part of the upload, create a symlink to the
822     # existing copy.
823     if pkg.orig_tar_gz:
824         dest = os.path.join(os.getcwd(), os.path.basename(pkg.orig_tar_gz))
825         os.symlink(pkg.orig_tar_gz, dest)
826
827     # Extract the source
828     cmd = "dpkg-source -sn -x %s" % (dsc_filename)
829     (result, output) = commands.getstatusoutput(cmd)
830     if (result != 0):
831         reject("'dpkg-source -x' failed for %s [return code: %s]." % (dsc_filename, result))
832         reject(utils.prefix_multi_line_string(output, " [dpkg-source output:] "), "")
833         return
834
835     if not Cnf.Find("Dir::Queue::BTSVersionTrack"):
836         return
837
838     # Get the upstream version
839     upstr_version = utils.re_no_epoch.sub('', dsc["version"])
840     if re_strip_revision.search(upstr_version):
841         upstr_version = re_strip_revision.sub('', upstr_version)
842
843     # Ensure the changelog file exists
844     changelog_filename = "%s-%s/debian/changelog" % (dsc["source"], upstr_version)
845     if not os.path.exists(changelog_filename):
846         reject("%s: debian/changelog not found in extracted source." % (dsc_filename))
847         return
848
849     # Parse the changelog
850     dsc["bts changelog"] = ""
851     changelog_file = utils.open_file(changelog_filename)
852     for line in changelog_file.readlines():
853         m = re_changelog_versions.match(line)
854         if m:
855             dsc["bts changelog"] += line
856     changelog_file.close()
857
858     # Check we found at least one revision in the changelog
859     if not dsc["bts changelog"]:
860         reject("%s: changelog format not recognised (empty version tree)." % (dsc_filename))
861
862 ########################################
863
864 def check_source():
865     # Bail out if:
866     #    a) there's no source
867     # or b) reprocess is 2 - we will do this check next time when orig.tar.gz is in 'files'
868     # or c) the orig.tar.gz is MIA
869     if not changes["architecture"].has_key("source") or reprocess == 2 \
870        or pkg.orig_tar_gz == -1:
871         return
872
873     # Create a temporary directory to extract the source into
874     if Options["No-Action"]:
875         tmpdir = tempfile.mkdtemp()
876     else:
877         # We're in queue/holding and can create a random directory.
878         tmpdir = "%s" % (os.getpid())
879         os.mkdir(tmpdir)
880
881     # Move into the temporary directory
882     cwd = os.getcwd()
883     os.chdir(tmpdir)
884
885     # Get the changelog version history
886     get_changelog_versions(cwd)
887
888     # Move back and cleanup the temporary tree
889     os.chdir(cwd)
890     try:
891         shutil.rmtree(tmpdir)
892     except OSError, e:
893         if errno.errorcode[e.errno] != 'EACCES':
894             utils.fubar("%s: couldn't remove tmp dir for source tree." % (dsc["source"]))
895
896         reject("%s: source tree could not be cleanly removed." % (dsc["source"]))
897         # We probably have u-r or u-w directories so chmod everything
898         # and try again.
899         cmd = "chmod -R u+rwx %s" % (tmpdir)
900         result = os.system(cmd)
901         if result != 0:
902             utils.fubar("'%s' failed with result %s." % (cmd, result))
903         shutil.rmtree(tmpdir)
904     except:
905         utils.fubar("%s: couldn't remove tmp dir for source tree." % (dsc["source"]))
906
907 ################################################################################
908
909 # FIXME: should be a debian specific check called from a hook
910
911 def check_urgency ():
912     if changes["architecture"].has_key("source"):
913         if not changes.has_key("urgency"):
914             changes["urgency"] = Cnf["Urgency::Default"]
915         changes["urgency"] = changes["urgency"].lower()
916         if changes["urgency"] not in Cnf.ValueList("Urgency::Valid"):
917             reject("%s is not a valid urgency; it will be treated as %s by testing." % (changes["urgency"], Cnf["Urgency::Default"]), "Warning: ")
918             changes["urgency"] = Cnf["Urgency::Default"]
919
920 ################################################################################
921
922 def check_hashes ():
923     utils.check_hash(".changes", files, "md5", apt_pkg.md5sum)
924     utils.check_size(".changes", files)
925     utils.check_hash(".dsc", dsc_files, "md5", apt_pkg.md5sum)
926     utils.check_size(".dsc", dsc_files)
927
928     # This is stupid API, but it'll have to do for now until
929     # we actually have proper abstraction
930     for m in utils.ensure_hashes(changes, dsc, files, dsc_files):
931         reject(m)
932
933 ################################################################################
934
935 # Sanity check the time stamps of files inside debs.
936 # [Files in the near future cause ugly warnings and extreme time
937 #  travel can cause errors on extraction]
938
939 def check_timestamps():
940     class Tar:
941         def __init__(self, future_cutoff, past_cutoff):
942             self.reset()
943             self.future_cutoff = future_cutoff
944             self.past_cutoff = past_cutoff
945
946         def reset(self):
947             self.future_files = {}
948             self.ancient_files = {}
949
950         def callback(self, Kind,Name,Link,Mode,UID,GID,Size,MTime,Major,Minor):
951             if MTime > self.future_cutoff:
952                 self.future_files[Name] = MTime
953             if MTime < self.past_cutoff:
954                 self.ancient_files[Name] = MTime
955     ####
956
957     future_cutoff = time.time() + int(Cnf["Dinstall::FutureTimeTravelGrace"])
958     past_cutoff = time.mktime(time.strptime(Cnf["Dinstall::PastCutoffYear"],"%Y"))
959     tar = Tar(future_cutoff, past_cutoff)
960     for filename in files.keys():
961         if files[filename]["type"] == "deb":
962             tar.reset()
963             try:
964                 deb_file = utils.open_file(filename)
965                 apt_inst.debExtract(deb_file,tar.callback,"control.tar.gz")
966                 deb_file.seek(0)
967                 try:
968                     apt_inst.debExtract(deb_file,tar.callback,"data.tar.gz")
969                 except SystemError, e:
970                     # If we can't find a data.tar.gz, look for data.tar.bz2 instead.
971                     if not re.search(r"Cannot f[ui]nd chunk data.tar.gz$", str(e)):
972                         raise
973                     deb_file.seek(0)
974                     apt_inst.debExtract(deb_file,tar.callback,"data.tar.bz2")
975                 deb_file.close()
976                 #
977                 future_files = tar.future_files.keys()
978                 if future_files:
979                     num_future_files = len(future_files)
980                     future_file = future_files[0]
981                     future_date = tar.future_files[future_file]
982                     reject("%s: has %s file(s) with a time stamp too far into the future (e.g. %s [%s])."
983                            % (filename, num_future_files, future_file,
984                               time.ctime(future_date)))
985                 #
986                 ancient_files = tar.ancient_files.keys()
987                 if ancient_files:
988                     num_ancient_files = len(ancient_files)
989                     ancient_file = ancient_files[0]
990                     ancient_date = tar.ancient_files[ancient_file]
991                     reject("%s: has %s file(s) with a time stamp too ancient (e.g. %s [%s])."
992                            % (filename, num_ancient_files, ancient_file,
993                               time.ctime(ancient_date)))
994             except:
995                 reject("%s: deb contents timestamp check failed [%s: %s]" % (filename, sys.exc_type, sys.exc_value))
996
997 ################################################################################
998
999 def lookup_uid_from_fingerprint(fpr):
1000     q = Upload.projectB.query("SELECT u.uid, u.name, u.debian_maintainer FROM fingerprint f, uid u WHERE f.uid = u.id AND f.fingerprint = '%s'" % (fpr))
1001     qs = q.getresult()
1002     if len(qs) == 0:
1003         return (None, None)
1004     else:
1005         return qs[0]
1006
1007 def check_signed_by_key():
1008     """Ensure the .changes is signed by an authorized uploader."""
1009
1010     (uid, uid_name, is_dm) = lookup_uid_from_fingerprint(changes["fingerprint"])
1011     if uid_name == None:
1012         uid_name = ""
1013
1014     # match claimed name with actual name:
1015     if uid == None:
1016         uid, uid_email = changes["fingerprint"], uid
1017         may_nmu, may_sponsor = 1, 1
1018         # XXX by default new dds don't have a fingerprint/uid in the db atm,
1019         #     and can't get one in there if we don't allow nmu/sponsorship
1020     elif is_dm is "t":
1021         uid_email = uid
1022         may_nmu, may_sponsor = 0, 0
1023     else:
1024         uid_email = "%s@debian.org" % (uid)
1025         may_nmu, may_sponsor = 1, 1
1026
1027     if uid_email in [changes["maintaineremail"], changes["changedbyemail"]]:
1028         sponsored = 0
1029     elif uid_name in [changes["maintainername"], changes["changedbyname"]]:
1030         sponsored = 0
1031         if uid_name == "": sponsored = 1
1032     else:
1033         sponsored = 1
1034         if ("source" in changes["architecture"] and
1035             uid_email and utils.is_email_alias(uid_email)):
1036             sponsor_addresses = utils.gpg_get_key_addresses(changes["fingerprint"])
1037             if (changes["maintaineremail"] not in sponsor_addresses and
1038                 changes["changedbyemail"] not in sponsor_addresses):
1039                 changes["sponsoremail"] = uid_email
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         if "experimental" not in check_suites: check_suites.append("experimental")
1049         for suite in check_suites:
1050             suite_id = database.get_suite_id(suite)
1051             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))
1052             for si in q.getresult():
1053                 if si[0] not in source_ids: source_ids.append(si[0])
1054
1055         is_nmu = 1
1056         for si in source_ids:
1057             q = Upload.projectB.query("SELECT m.name FROM maintainer m WHERE m.id IN (SELECT su.maintainer FROM src_uploaders su JOIN source s ON (s.id = su.source) WHERE su.source = %s AND s.dm_upload_allowed = 'yes')" % (si))
1058             for m in q.getresult():
1059                 (rfc822, rfc2047, name, email) = utils.fix_maintainer(m[0])
1060                 if email == uid_email or name == uid_name:
1061                     is_nmu=0
1062                     break
1063         if is_nmu:
1064             reject("%s may not upload/NMU source package %s" % (uid, changes["source"]))
1065
1066         for b in changes["binary"].keys():
1067             for suite in changes["distribution"].keys():
1068                 suite_id = database.get_suite_id(suite)
1069                 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))
1070                 for s in q.getresult():
1071                     if s[0] != changes["source"]:
1072                         reject("%s may not hijack %s from source package %s in suite %s" % (uid, b, s, suite))
1073
1074         for f in files.keys():
1075             if files[f].has_key("byhand"):
1076                 reject("%s may not upload BYHAND file %s" % (uid, f))
1077             if files[f].has_key("new"):
1078                 reject("%s may not upload NEW file %s" % (uid, f))
1079
1080
1081 ################################################################################
1082 ################################################################################
1083
1084 # If any file of an upload has a recent mtime then chances are good
1085 # the file is still being uploaded.
1086
1087 def upload_too_new():
1088     too_new = 0
1089     # Move back to the original directory to get accurate time stamps
1090     cwd = os.getcwd()
1091     os.chdir(pkg.directory)
1092     file_list = pkg.files.keys()
1093     file_list.extend(pkg.dsc_files.keys())
1094     file_list.append(pkg.changes_file)
1095     for f in file_list:
1096         try:
1097             last_modified = time.time()-os.path.getmtime(f)
1098             if last_modified < int(Cnf["Dinstall::SkipTime"]):
1099                 too_new = 1
1100                 break
1101         except:
1102             pass
1103     os.chdir(cwd)
1104     return too_new
1105
1106 ################################################################################
1107
1108 def action ():
1109     # changes["distribution"] may not exist in corner cases
1110     # (e.g. unreadable changes files)
1111     if not changes.has_key("distribution") or not isinstance(changes["distribution"], DictType):
1112         changes["distribution"] = {}
1113
1114     (summary, short_summary) = Upload.build_summaries()
1115
1116     # q-unapproved hax0ring
1117     queue_info = {
1118          "New": { "is": is_new, "process": acknowledge_new },
1119          "Autobyhand" : { "is" : is_autobyhand, "process": do_autobyhand },
1120          "Byhand" : { "is": is_byhand, "process": do_byhand },
1121          "OldStableUpdate" : { "is": is_oldstableupdate,
1122                                 "process": do_oldstableupdate },
1123          "StableUpdate" : { "is": is_stableupdate, "process": do_stableupdate },
1124          "Unembargo" : { "is": is_unembargo, "process": queue_unembargo },
1125          "Embargo" : { "is": is_embargo, "process": queue_embargo },
1126     }
1127     queues = [ "New", "Autobyhand", "Byhand" ]
1128     if Cnf.FindB("Dinstall::SecurityQueueHandling"):
1129         queues += [ "Unembargo", "Embargo" ]
1130     else:
1131         queues += [ "OldStableUpdate", "StableUpdate" ]
1132
1133     (prompt, answer) = ("", "XXX")
1134     if Options["No-Action"] or Options["Automatic"]:
1135         answer = 'S'
1136
1137     queuekey = ''
1138
1139     if reject_message.find("Rejected") != -1:
1140         if upload_too_new():
1141             print "SKIP (too new)\n" + reject_message,
1142             prompt = "[S]kip, Quit ?"
1143         else:
1144             print "REJECT\n" + reject_message,
1145             prompt = "[R]eject, Skip, Quit ?"
1146             if Options["Automatic"]:
1147                 answer = 'R'
1148     else:
1149         qu = None
1150         for q in queues:
1151             if queue_info[q]["is"]():
1152                 qu = q
1153                 break
1154         if qu:
1155             print "%s for %s\n%s%s" % (
1156                 qu.upper(), ", ".join(changes["distribution"].keys()),
1157                 reject_message, summary),
1158             queuekey = qu[0].upper()
1159             if queuekey in "RQSA":
1160                 queuekey = "D"
1161                 prompt = "[D]ivert, Skip, Quit ?"
1162             else:
1163                 prompt = "[%s]%s, Skip, Quit ?" % (queuekey, qu[1:].lower())
1164             if Options["Automatic"]:
1165                 answer = queuekey
1166         else:
1167             print "ACCEPT\n" + reject_message + summary,
1168             prompt = "[A]ccept, Skip, Quit ?"
1169             if Options["Automatic"]:
1170                 answer = 'A'
1171
1172     while prompt.find(answer) == -1:
1173         answer = utils.our_raw_input(prompt)
1174         m = queue.re_default_answer.match(prompt)
1175         if answer == "":
1176             answer = m.group(1)
1177         answer = answer[:1].upper()
1178
1179     if answer == 'R':
1180         os.chdir (pkg.directory)
1181         Upload.do_reject(0, reject_message)
1182     elif answer == 'A':
1183         accept(summary, short_summary)
1184         remove_from_unchecked()
1185     elif answer == queuekey:
1186         queue_info[qu]["process"](summary, short_summary)
1187         remove_from_unchecked()
1188     elif answer == 'Q':
1189         sys.exit(0)
1190
1191 def remove_from_unchecked():
1192     os.chdir (pkg.directory)
1193     for f in files.keys():
1194         os.unlink(f)
1195     os.unlink(pkg.changes_file)
1196
1197 ################################################################################
1198
1199 def accept (summary, short_summary):
1200     Upload.accept(summary, short_summary)
1201     Upload.check_override()
1202
1203 ################################################################################
1204
1205 def move_to_dir (dest, perms=0660, changesperms=0664):
1206     utils.move (pkg.changes_file, dest, perms=changesperms)
1207     file_keys = files.keys()
1208     for f in file_keys:
1209         utils.move (f, dest, perms=perms)
1210
1211 ################################################################################
1212
1213 def is_unembargo ():
1214     q = Upload.projectB.query(
1215       "SELECT package FROM disembargo WHERE package = '%s' AND version = '%s'" %
1216       (changes["source"], changes["version"]))
1217     ql = q.getresult()
1218     if ql:
1219         return 1
1220
1221     oldcwd = os.getcwd()
1222     os.chdir(Cnf["Dir::Queue::Disembargo"])
1223     disdir = os.getcwd()
1224     os.chdir(oldcwd)
1225
1226     if pkg.directory == disdir:
1227         if changes["architecture"].has_key("source"):
1228             if Options["No-Action"]: return 1
1229
1230             Upload.projectB.query(
1231               "INSERT INTO disembargo (package, version) VALUES ('%s', '%s')" %
1232               (changes["source"], changes["version"]))
1233             return 1
1234
1235     return 0
1236
1237 def queue_unembargo (summary, short_summary):
1238     print "Moving to UNEMBARGOED holding area."
1239     Logger.log(["Moving to unembargoed", pkg.changes_file])
1240
1241     Upload.dump_vars(Cnf["Dir::Queue::Unembargoed"])
1242     move_to_dir(Cnf["Dir::Queue::Unembargoed"])
1243     Upload.queue_build("unembargoed", Cnf["Dir::Queue::Unembargoed"])
1244
1245     # Check for override disparities
1246     Upload.Subst["__SUMMARY__"] = summary
1247     Upload.check_override()
1248
1249     # Send accept mail, announce to lists, close bugs and check for
1250     # override disparities
1251     if not Cnf["Dinstall::Options::No-Mail"]:
1252         Upload.Subst["__SUITE__"] = ""
1253         mail_message = utils.TemplateSubst(Upload.Subst,Cnf["Dir::Templates"]+"/process-unchecked.accepted")
1254         utils.send_mail(mail_message)
1255         Upload.announce(short_summary, 1)
1256
1257 ################################################################################
1258
1259 def is_embargo ():
1260     # if embargoed queues are enabled always embargo
1261     return 1
1262
1263 def queue_embargo (summary, short_summary):
1264     print "Moving to EMBARGOED holding area."
1265     Logger.log(["Moving to embargoed", pkg.changes_file])
1266
1267     Upload.dump_vars(Cnf["Dir::Queue::Embargoed"])
1268     move_to_dir(Cnf["Dir::Queue::Embargoed"])
1269     Upload.queue_build("embargoed", Cnf["Dir::Queue::Embargoed"])
1270
1271     # Check for override disparities
1272     Upload.Subst["__SUMMARY__"] = summary
1273     Upload.check_override()
1274
1275     # Send accept mail, announce to lists, close bugs and check for
1276     # override disparities
1277     if not Cnf["Dinstall::Options::No-Mail"]:
1278         Upload.Subst["__SUITE__"] = ""
1279         mail_message = utils.TemplateSubst(Upload.Subst,Cnf["Dir::Templates"]+"/process-unchecked.accepted")
1280         utils.send_mail(mail_message)
1281         Upload.announce(short_summary, 1)
1282
1283 ################################################################################
1284
1285 def is_stableupdate ():
1286     if not changes["distribution"].has_key("proposed-updates"):
1287         return 0
1288
1289     if not changes["architecture"].has_key("source"):
1290         pusuite = database.get_suite_id("proposed-updates")
1291         q = Upload.projectB.query(
1292           "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" %
1293           (changes["source"], changes["version"], pusuite))
1294         ql = q.getresult()
1295         if ql:
1296             # source is already in proposed-updates so no need to hold
1297             return 0
1298
1299     return 1
1300
1301 def do_stableupdate (summary, short_summary):
1302     print "Moving to PROPOSED-UPDATES holding area."
1303     Logger.log(["Moving to proposed-updates", pkg.changes_file]);
1304
1305     Upload.dump_vars(Cnf["Dir::Queue::ProposedUpdates"]);
1306     move_to_dir(Cnf["Dir::Queue::ProposedUpdates"], perms=0664)
1307
1308     # Check for override disparities
1309     Upload.Subst["__SUMMARY__"] = summary;
1310     Upload.check_override();
1311
1312 ################################################################################
1313
1314 def is_oldstableupdate ():
1315     if not changes["distribution"].has_key("oldstable-proposed-updates"):
1316         return 0
1317
1318     if not changes["architecture"].has_key("source"):
1319         pusuite = database.get_suite_id("oldstable-proposed-updates")
1320         q = Upload.projectB.query(
1321           "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" %
1322           (changes["source"], changes["version"], pusuite))
1323         ql = q.getresult()
1324         if ql:
1325             # source is already in oldstable-proposed-updates so no need to hold
1326             return 0
1327
1328     return 1
1329
1330 def do_oldstableupdate (summary, short_summary):
1331     print "Moving to OLDSTABLE-PROPOSED-UPDATES holding area."
1332     Logger.log(["Moving to oldstable-proposed-updates", pkg.changes_file]);
1333
1334     Upload.dump_vars(Cnf["Dir::Queue::OldProposedUpdates"]);
1335     move_to_dir(Cnf["Dir::Queue::OldProposedUpdates"], perms=0664)
1336
1337     # Check for override disparities
1338     Upload.Subst["__SUMMARY__"] = summary;
1339     Upload.check_override();
1340
1341 ################################################################################
1342
1343 def is_autobyhand ():
1344     all_auto = 1
1345     any_auto = 0
1346     for f in files.keys():
1347         if files[f].has_key("byhand"):
1348             any_auto = 1
1349
1350             # filename is of form "PKG_VER_ARCH.EXT" where PKG, VER and ARCH
1351             # don't contain underscores, and ARCH doesn't contain dots.
1352             # further VER matches the .changes Version:, and ARCH should be in
1353             # the .changes Architecture: list.
1354             if f.count("_") < 2:
1355                 all_auto = 0
1356                 continue
1357
1358             (pckg, ver, archext) = f.split("_", 2)
1359             if archext.count(".") < 1 or changes["version"] != ver:
1360                 all_auto = 0
1361                 continue
1362
1363             ABH = Cnf.SubTree("AutomaticByHandPackages")
1364             if not ABH.has_key(pckg) or \
1365               ABH["%s::Source" % (pckg)] != changes["source"]:
1366                 print "not match %s %s" % (pckg, changes["source"])
1367                 all_auto = 0
1368                 continue
1369
1370             (arch, ext) = archext.split(".", 1)
1371             if arch not in changes["architecture"]:
1372                 all_auto = 0
1373                 continue
1374
1375             files[f]["byhand-arch"] = arch
1376             files[f]["byhand-script"] = ABH["%s::Script" % (pckg)]
1377
1378     return any_auto and all_auto
1379
1380 def do_autobyhand (summary, short_summary):
1381     print "Attempting AUTOBYHAND."
1382     byhandleft = 0
1383     for f in files.keys():
1384         byhandfile = f
1385         if not files[f].has_key("byhand"):
1386             continue
1387         if not files[f].has_key("byhand-script"):
1388             byhandleft = 1
1389             continue
1390
1391         os.system("ls -l %s" % byhandfile)
1392         result = os.system("%s %s %s %s %s" % (
1393                 files[f]["byhand-script"], byhandfile,
1394                 changes["version"], files[f]["byhand-arch"],
1395                 os.path.abspath(pkg.changes_file)))
1396         if result == 0:
1397             os.unlink(byhandfile)
1398             del files[f]
1399         else:
1400             print "Error processing %s, left as byhand." % (f)
1401             byhandleft = 1
1402
1403     if byhandleft:
1404         do_byhand(summary, short_summary)
1405     else:
1406         accept(summary, short_summary)
1407
1408 ################################################################################
1409
1410 def is_byhand ():
1411     for f in files.keys():
1412         if files[f].has_key("byhand"):
1413             return 1
1414     return 0
1415
1416 def do_byhand (summary, short_summary):
1417     print "Moving to BYHAND holding area."
1418     Logger.log(["Moving to byhand", pkg.changes_file])
1419
1420     Upload.dump_vars(Cnf["Dir::Queue::Byhand"])
1421     move_to_dir(Cnf["Dir::Queue::Byhand"])
1422
1423     # Check for override disparities
1424     Upload.Subst["__SUMMARY__"] = summary
1425     Upload.check_override()
1426
1427 ################################################################################
1428
1429 def is_new ():
1430     for f in files.keys():
1431         if files[f].has_key("new"):
1432             return 1
1433     return 0
1434
1435 def acknowledge_new (summary, short_summary):
1436     Subst = Upload.Subst
1437
1438     print "Moving to NEW holding area."
1439     Logger.log(["Moving to new", pkg.changes_file])
1440
1441     Upload.dump_vars(Cnf["Dir::Queue::New"])
1442     move_to_dir(Cnf["Dir::Queue::New"])
1443
1444     if not Options["No-Mail"]:
1445         print "Sending new ack."
1446         Subst["__SUMMARY__"] = summary
1447         new_ack_message = utils.TemplateSubst(Subst,Cnf["Dir::Templates"]+"/process-unchecked.new")
1448         utils.send_mail(new_ack_message)
1449
1450 ################################################################################
1451
1452 # reprocess is necessary for the case of foo_1.2-1 and foo_1.2-2 in
1453 # Incoming. -1 will reference the .orig.tar.gz, but -2 will not.
1454 # Upload.check_dsc_against_db() can find the .orig.tar.gz but it will
1455 # not have processed it during it's checks of -2.  If -1 has been
1456 # deleted or otherwise not checked by 'dak process-unchecked', the
1457 # .orig.tar.gz will not have been checked at all.  To get round this,
1458 # we force the .orig.tar.gz into the .changes structure and reprocess
1459 # the .changes file.
1460
1461 def process_it (changes_file):
1462     global reprocess, reject_message
1463
1464     # Reset some globals
1465     reprocess = 1
1466     Upload.init_vars()
1467     # Some defaults in case we can't fully process the .changes file
1468     changes["maintainer2047"] = Cnf["Dinstall::MyEmailAddress"]
1469     changes["changedby2047"] = Cnf["Dinstall::MyEmailAddress"]
1470     reject_message = ""
1471
1472     # Absolutize the filename to avoid the requirement of being in the
1473     # same directory as the .changes file.
1474     pkg.changes_file = os.path.abspath(changes_file)
1475
1476     # Remember where we are so we can come back after cd-ing into the
1477     # holding directory.
1478     pkg.directory = os.getcwd()
1479
1480     try:
1481         # If this is the Real Thing(tm), copy things into a private
1482         # holding directory first to avoid replacable file races.
1483         if not Options["No-Action"]:
1484             os.chdir(Cnf["Dir::Queue::Holding"])
1485             copy_to_holding(pkg.changes_file)
1486             # Relativize the filename so we use the copy in holding
1487             # rather than the original...
1488             pkg.changes_file = os.path.basename(pkg.changes_file)
1489         changes["fingerprint"] = utils.check_signature(pkg.changes_file, reject)
1490         if changes["fingerprint"]:
1491             valid_changes_p = check_changes()
1492         else:
1493             valid_changes_p = 0
1494         if valid_changes_p:
1495             while reprocess:
1496                 check_distributions()
1497                 check_files()
1498                 valid_dsc_p = check_dsc()
1499                 if valid_dsc_p:
1500                     check_source()
1501                 check_hashes()
1502                 check_urgency()
1503                 check_timestamps()
1504                 check_signed_by_key()
1505         Upload.update_subst(reject_message)
1506         action()
1507     except SystemExit:
1508         raise
1509     except:
1510         print "ERROR"
1511         traceback.print_exc(file=sys.stderr)
1512         pass
1513
1514     # Restore previous WD
1515     os.chdir(pkg.directory)
1516
1517 ###############################################################################
1518
1519 def main():
1520     global Cnf, Options, Logger
1521
1522     changes_files = init()
1523
1524     # -n/--dry-run invalidates some other options which would involve things happening
1525     if Options["No-Action"]:
1526         Options["Automatic"] = ""
1527
1528     # Ensure all the arguments we were given are .changes files
1529     for f in changes_files:
1530         if not f.endswith(".changes"):
1531             utils.warn("Ignoring '%s' because it's not a .changes file." % (f))
1532             changes_files.remove(f)
1533
1534     if changes_files == []:
1535         utils.fubar("Need at least one .changes file as an argument.")
1536
1537     # Check that we aren't going to clash with the daily cron job
1538
1539     if not Options["No-Action"] and os.path.exists("%s/daily.lock" % (Cnf["Dir::Lock"])) and not Options["No-Lock"]:
1540         utils.fubar("Archive maintenance in progress.  Try again later.")
1541
1542     # Obtain lock if not in no-action mode and initialize the log
1543
1544     if not Options["No-Action"]:
1545         lock_fd = os.open(Cnf["Dinstall::LockFile"], os.O_RDWR | os.O_CREAT)
1546         try:
1547             fcntl.lockf(lock_fd, fcntl.LOCK_EX | fcntl.LOCK_NB)
1548         except IOError, e:
1549             if errno.errorcode[e.errno] == 'EACCES' or errno.errorcode[e.errno] == 'EAGAIN':
1550                 utils.fubar("Couldn't obtain lock; assuming another 'dak process-unchecked' is already running.")
1551             else:
1552                 raise
1553         Logger = Upload.Logger = logging.Logger(Cnf, "process-unchecked")
1554
1555     # debian-{devel-,}-changes@lists.debian.org toggles writes access based on this header
1556     bcc = "X-DAK: dak process-unchecked\nX-Katie: $Revision: 1.65 $"
1557     if Cnf.has_key("Dinstall::Bcc"):
1558         Upload.Subst["__BCC__"] = bcc + "\nBcc: %s" % (Cnf["Dinstall::Bcc"])
1559     else:
1560         Upload.Subst["__BCC__"] = bcc
1561
1562
1563     # Sort the .changes files so that we process sourceful ones first
1564     changes_files.sort(utils.changes_compare)
1565
1566     # Process the changes files
1567     for changes_file in changes_files:
1568         print "\n" + changes_file
1569         try:
1570             process_it (changes_file)
1571         finally:
1572             if not Options["No-Action"]:
1573                 clean_holding()
1574
1575     accept_count = Upload.accept_count
1576     accept_bytes = Upload.accept_bytes
1577     if accept_count:
1578         sets = "set"
1579         if accept_count > 1:
1580             sets = "sets"
1581         print "Accepted %d package %s, %s." % (accept_count, sets, utils.size_type(int(accept_bytes)))
1582         Logger.log(["total",accept_count,accept_bytes])
1583
1584     if not Options["No-Action"]:
1585         Logger.close()
1586
1587 ################################################################################
1588
1589 if __name__ == '__main__':
1590     main()