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