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