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