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