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