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