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