]> git.decadent.org.uk Git - dak.git/blob - dak/process_unchecked.py
More trivial fixes.
[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
47 ################################################################################
48
49 # Globals
50 Cnf = None
51 Options = None
52 Logger = None
53 Upload = None
54
55 reprocess = 0
56 in_holding = {}
57
58 # Aliases to the real vars in the Upload class; hysterical raisins.
59 reject_message = ""
60 changes = {}
61 dsc = {}
62 dsc_files = {}
63 files = {}
64 pkg = {}
65
66 ###############################################################################
67
68 def init():
69     global Cnf, Options, Upload, changes, dsc, dsc_files, files, pkg
70
71     apt_pkg.init()
72
73     Cnf = apt_pkg.newConfiguration()
74     apt_pkg.ReadConfigFileISC(Cnf,daklib.utils.which_conf_file())
75
76     Arguments = [('a',"automatic","Dinstall::Options::Automatic"),
77                  ('h',"help","Dinstall::Options::Help"),
78                  ('n',"no-action","Dinstall::Options::No-Action"),
79                  ('p',"no-lock", "Dinstall::Options::No-Lock"),
80                  ('s',"no-mail", "Dinstall::Options::No-Mail")]
81
82     for i in ["automatic", "help", "no-action", "no-lock", "no-mail",
83               "override-distribution", "version"]:
84         Cnf["Dinstall::Options::%s" % (i)] = ""
85
86     changes_files = apt_pkg.ParseCommandLine(Cnf,Arguments,sys.argv)
87     Options = Cnf.SubTree("Dinstall::Options")
88
89     if Options["Help"]:
90         usage()
91
92     Upload = daklib.queue.Upload(Cnf)
93
94     changes = Upload.pkg.changes
95     dsc = Upload.pkg.dsc
96     dsc_files = Upload.pkg.dsc_files
97     files = Upload.pkg.files
98     pkg = Upload.pkg
99
100     return changes_files
101
102 ################################################################################
103
104 def usage (exit_code=0):
105     print """Usage: dinstall [OPTION]... [CHANGES]...
106   -a, --automatic           automatic run
107   -h, --help                show this help and exit.
108   -n, --no-action           don't do anything
109   -p, --no-lock             don't check lockfile !! for cron.daily only !!
110   -s, --no-mail             don't send any mail
111   -V, --version             display the version number and exit"""
112     sys.exit(exit_code)
113
114 ################################################################################
115
116 def reject (str, prefix="Rejected: "):
117     global reject_message
118     if str:
119         reject_message += prefix + str + "\n"
120
121 ################################################################################
122
123 def copy_to_holding(filename):
124     global in_holding
125
126     base_filename = os.path.basename(filename)
127
128     dest = Cnf["Dir::Queue::Holding"] + '/' + base_filename
129     try:
130         fd = os.open(dest, os.O_RDWR|os.O_CREAT|os.O_EXCL, 0640)
131         os.close(fd)
132     except OSError, e:
133         # Shouldn't happen, but will if, for example, someone lists a
134         # file twice in the .changes.
135         if errno.errorcode[e.errno] == 'EEXIST':
136             reject("%s: already exists in holding area; can not overwrite." % (base_filename))
137             return
138         raise
139
140     try:
141         shutil.copy(filename, dest)
142     except IOError, e:
143         # In either case (ENOENT or EACCES) we want to remove the
144         # O_CREAT | O_EXCLed ghost file, so add the file to the list
145         # of 'in holding' even if it's not the real file.
146         if errno.errorcode[e.errno] == 'ENOENT':
147             reject("%s: can not copy to holding area: file not found." % (base_filename))
148             os.unlink(dest)
149             return
150         elif errno.errorcode[e.errno] == 'EACCES':
151             reject("%s: can not copy to holding area: read permission denied." % (base_filename))
152             os.unlink(dest)
153             return
154         raise
155
156     in_holding[base_filename] = ""
157
158 ################################################################################
159
160 def clean_holding():
161     global in_holding
162
163     cwd = os.getcwd()
164     os.chdir(Cnf["Dir::Queue::Holding"])
165     for file in in_holding.keys():
166         if os.path.exists(file):
167             if file.find('/') != -1:
168                 daklib.utils.fubar("WTF? clean_holding() got a file ('%s') with / in it!" % (file))
169             else:
170                 os.unlink(file)
171     in_holding = {}
172     os.chdir(cwd)
173
174 ################################################################################
175
176 def check_changes():
177     filename = pkg.changes_file
178
179     # Parse the .changes field into a dictionary
180     try:
181         changes.update(daklib.utils.parse_changes(filename))
182     except daklib.utils.cant_open_exc:
183         reject("%s: can't read file." % (filename))
184         return 0
185     except daklib.utils.changes_parse_error_exc, line:
186         reject("%s: parse error, can't grok: %s." % (filename, line))
187         return 0
188
189     # Parse the Files field from the .changes into another dictionary
190     try:
191         files.update(daklib.utils.build_file_list(changes))
192     except daklib.utils.changes_parse_error_exc, line:
193         reject("%s: parse error, can't grok: %s." % (filename, line))
194     except daklib.utils.nk_format_exc, format:
195         reject("%s: unknown format '%s'." % (filename, format))
196         return 0
197
198     # Check for mandatory fields
199     for i in ("source", "binary", "architecture", "version", "distribution",
200               "maintainer", "files", "changes", "description"):
201         if not changes.has_key(i):
202             reject("%s: Missing mandatory field `%s'." % (filename, i))
203             return 0    # Avoid <undef> errors during later tests
204
205     # Split multi-value fields into a lower-level dictionary
206     for i in ("architecture", "distribution", "binary", "closes"):
207         o = changes.get(i, "")
208         if o != "":
209             del changes[i]
210         changes[i] = {}
211         for j in o.split():
212             changes[i][j] = 1
213
214     # Fix the Maintainer: field to be RFC822/2047 compatible
215     try:
216         (changes["maintainer822"], changes["maintainer2047"],
217          changes["maintainername"], changes["maintaineremail"]) = \
218          daklib.utils.fix_maintainer (changes["maintainer"])
219     except daklib.utils.ParseMaintError, msg:
220         reject("%s: Maintainer field ('%s') failed to parse: %s" \
221                % (filename, changes["maintainer"], msg))
222
223     # ...likewise for the Changed-By: field if it exists.
224     try:
225         (changes["changedby822"], changes["changedby2047"],
226          changes["changedbyname"], changes["changedbyemail"]) = \
227          daklib.utils.fix_maintainer (changes.get("changed-by", ""))
228     except daklib.utils.ParseMaintError, msg:
229         (changes["changedby822"], changes["changedby2047"],
230          changes["changedbyname"], changes["changedbyemail"]) = \
231          ("", "", "", "")
232         reject("%s: Changed-By field ('%s') failed to parse: %s" \
233                % (filename, changes["changed-by"], msg))
234
235     # Ensure all the values in Closes: are numbers
236     if changes.has_key("closes"):
237         for i in changes["closes"].keys():
238             if daklib.queue.re_isanum.match (i) == None:
239                 reject("%s: `%s' from Closes field isn't a number." % (filename, i))
240
241
242     # chopversion = no epoch; chopversion2 = no epoch and no revision (e.g. for .orig.tar.gz comparison)
243     changes["chopversion"] = daklib.utils.re_no_epoch.sub('', changes["version"])
244     changes["chopversion2"] = daklib.utils.re_no_revision.sub('', changes["chopversion"])
245
246     # Check there isn't already a changes file of the same name in one
247     # of the queue directories.
248     base_filename = os.path.basename(filename)
249     for dir in [ "Accepted", "Byhand", "Done", "New" ]:
250         if os.path.exists(Cnf["Dir::Queue::%s" % (dir) ]+'/'+base_filename):
251             reject("%s: a file with this name already exists in the %s directory." % (base_filename, dir))
252
253     # Check the .changes is non-empty
254     if not files:
255         reject("%s: nothing to do (Files field is empty)." % (base_filename))
256         return 0
257
258     return 1
259
260 ################################################################################
261
262 def check_distributions():
263     "Check and map the Distribution field of a .changes file."
264
265     # Handle suite mappings
266     for map in Cnf.ValueList("SuiteMappings"):
267         args = map.split()
268         type = args[0]
269         if type == "map" or type == "silent-map":
270             (source, dest) = args[1:3]
271             if changes["distribution"].has_key(source):
272                 del changes["distribution"][source]
273                 changes["distribution"][dest] = 1
274                 if type != "silent-map":
275                     reject("Mapping %s to %s." % (source, dest),"")
276             if changes.has_key("distribution-version"):
277                 if changes["distribution-version"].has_key(source):
278                     changes["distribution-version"][source]=dest
279         elif type == "map-unreleased":
280             (source, dest) = args[1:3]
281             if changes["distribution"].has_key(source):
282                 for arch in changes["architecture"].keys():
283                     if arch not in Cnf.ValueList("Suite::%s::Architectures" % (source)):
284                         reject("Mapping %s to %s for unreleased architecture %s." % (source, dest, arch),"")
285                         del changes["distribution"][source]
286                         changes["distribution"][dest] = 1
287                         break
288         elif type == "ignore":
289             suite = args[1]
290             if changes["distribution"].has_key(suite):
291                 del changes["distribution"][suite]
292                 reject("Ignoring %s as a target suite." % (suite), "Warning: ")
293         elif type == "reject":
294             suite = args[1]
295             if changes["distribution"].has_key(suite):
296                 reject("Uploads to %s are not accepted." % (suite))
297         elif type == "propup-version":
298             # give these as "uploaded-to(non-mapped) suites-to-add-when-upload-obsoletes"
299             #
300             # changes["distribution-version"] looks like: {'testing': 'testing-proposed-updates'}
301             if changes["distribution"].has_key(args[1]):
302                 changes.setdefault("distribution-version", {})
303                 for suite in args[2:]: changes["distribution-version"][suite]=suite
304
305     # Ensure there is (still) a target distribution
306     if changes["distribution"].keys() == []:
307         reject("no valid distribution.")
308
309     # Ensure target distributions exist
310     for suite in changes["distribution"].keys():
311         if not Cnf.has_key("Suite::%s" % (suite)):
312             reject("Unknown distribution `%s'." % (suite))
313
314 ################################################################################
315
316 def check_deb_ar(filename, control):
317     """Sanity check the ar of a .deb, i.e. that there is:
318
319  o debian-binary
320  o control.tar.gz
321  o data.tar.gz or data.tar.bz2
322
323 in that order, and nothing else.  If the third member is a
324 data.tar.bz2, an additional check is performed for the required
325 Pre-Depends on dpkg (>= 1.10.24)."""
326     cmd = "ar t %s" % (filename)
327     (result, output) = commands.getstatusoutput(cmd)
328     if result != 0:
329         reject("%s: 'ar t' invocation failed." % (filename))
330         reject(daklib.utils.prefix_multi_line_string(output, " [ar output:] "), "")
331     chunks = output.split('\n')
332     if len(chunks) != 3:
333         reject("%s: found %d chunks, expected 3." % (filename, len(chunks)))
334     if chunks[0] != "debian-binary":
335         reject("%s: first chunk is '%s', expected 'debian-binary'." % (filename, chunks[0]))
336     if chunks[1] != "control.tar.gz":
337         reject("%s: second chunk is '%s', expected 'control.tar.gz'." % (filename, chunks[1]))
338     if chunks[2] == "data.tar.bz2":
339         # Packages using bzip2 compression must have a Pre-Depends on dpkg >= 1.10.24.
340         found_needed_predep = 0
341         for parsed_dep in apt_pkg.ParseDepends(control.Find("Pre-Depends", "")):
342             for atom in parsed_dep:
343                 (dep, version, constraint) = atom
344                 if dep != "dpkg" or (constraint != ">=" and constraint != ">>") or \
345                        len(parsed_dep) > 1: # or'ed deps don't count
346                     continue
347                 if (constraint == ">=" and apt_pkg.VersionCompare(version, "1.10.24") < 0) or \
348                        (constraint == ">>" and apt_pkg.VersionCompare(version, "1.10.23") < 0):
349                     continue
350                 found_needed_predep = 1
351         if not found_needed_predep:
352             reject("%s: uses bzip2 compression, but doesn't Pre-Depend on dpkg (>= 1.10.24)" % (filename))
353     elif chunks[2] != "data.tar.gz":
354         reject("%s: third chunk is '%s', expected 'data.tar.gz' or 'data.tar.bz2'." % (filename, chunks[2]))
355
356 ################################################################################
357
358 def check_files():
359     global reprocess
360
361     archive = daklib.utils.where_am_i()
362     file_keys = files.keys()
363
364     # if reprocess is 2 we've already done this and we're checking
365     # things again for the new .orig.tar.gz.
366     # [Yes, I'm fully aware of how disgusting this is]
367     if not Options["No-Action"] and reprocess < 2:
368         cwd = os.getcwd()
369         os.chdir(pkg.directory)
370         for file in file_keys:
371             copy_to_holding(file)
372         os.chdir(cwd)
373
374     # Check there isn't already a .changes or .dak file of the same name in
375     # the proposed-updates "CopyChanges" or "CopyDotDak" storage directories.
376     # [NB: this check must be done post-suite mapping]
377     base_filename = os.path.basename(pkg.changes_file)
378     dot_dak_filename = base_filename[:-8]+".dak"
379     for suite in changes["distribution"].keys():
380         copychanges = "Suite::%s::CopyChanges" % (suite)
381         if Cnf.has_key(copychanges) and \
382                os.path.exists(Cnf[copychanges]+"/"+base_filename):
383             reject("%s: a file with this name already exists in %s" \
384                    % (base_filename, Cnf[copychanges]))
385
386         copy_dot_dak = "Suite::%s::CopyDotDak" % (suite)
387         if Cnf.has_key(copy_dot_dak) and \
388                os.path.exists(Cnf[copy_dot_dak]+"/"+dot_dak_filename):
389             reject("%s: a file with this name already exists in %s" \
390                    % (dot_dak_filename, Cnf[copy_dot_dak]))
391
392     reprocess = 0
393     has_binaries = 0
394     has_source = 0
395
396     for file in file_keys:
397         # Ensure the file does not already exist in one of the accepted directories
398         for dir in [ "Accepted", "Byhand", "New" ]:
399             if os.path.exists(Cnf["Dir::Queue::%s" % (dir) ]+'/'+file):
400                 reject("%s file already exists in the %s directory." % (file, dir))
401         if not daklib.utils.re_taint_free.match(file):
402             reject("!!WARNING!! tainted filename: '%s'." % (file))
403         # Check the file is readable
404         if os.access(file,os.R_OK) == 0:
405             # When running in -n, copy_to_holding() won't have
406             # generated the reject_message, so we need to.
407             if Options["No-Action"]:
408                 if os.path.exists(file):
409                     reject("Can't read `%s'. [permission denied]" % (file))
410                 else:
411                     reject("Can't read `%s'. [file not found]" % (file))
412             files[file]["type"] = "unreadable"
413             continue
414         # If it's byhand skip remaining checks
415         if files[file]["section"] == "byhand" or files[file]["section"] == "raw-installer":
416             files[file]["byhand"] = 1
417             files[file]["type"] = "byhand"
418         # Checks for a binary package...
419         elif daklib.utils.re_isadeb.match(file):
420             has_binaries = 1
421             files[file]["type"] = "deb"
422
423             # Extract package control information
424             deb_file = daklib.utils.open_file(file)
425             try:
426                 control = apt_pkg.ParseSection(apt_inst.debExtractControl(deb_file))
427             except:
428                 reject("%s: debExtractControl() raised %s." % (file, sys.exc_type))
429                 deb_file.close()
430                 # Can't continue, none of the checks on control would work.
431                 continue
432             deb_file.close()
433
434             # Check for mandatory fields
435             for field in [ "Package", "Architecture", "Version" ]:
436                 if control.Find(field) == None:
437                     reject("%s: No %s field in control." % (file, field))
438                     # Can't continue
439                     continue
440
441             # Ensure the package name matches the one give in the .changes
442             if not changes["binary"].has_key(control.Find("Package", "")):
443                 reject("%s: control file lists name as `%s', which isn't in changes file." % (file, control.Find("Package", "")))
444
445             # Validate the package field
446             package = control.Find("Package")
447             if not re_valid_pkg_name.match(package):
448                 reject("%s: invalid package name '%s'." % (file, package))
449
450             # Validate the version field
451             version = control.Find("Version")
452             if not re_valid_version.match(version):
453                 reject("%s: invalid version number '%s'." % (file, version))
454
455             # Ensure the architecture of the .deb is one we know about.
456             default_suite = Cnf.get("Dinstall::DefaultSuite", "Unstable")
457             architecture = control.Find("Architecture")
458             if architecture not in Cnf.ValueList("Suite::%s::Architectures" % (default_suite)):
459                 reject("Unknown architecture '%s'." % (architecture))
460
461             # Ensure the architecture of the .deb is one of the ones
462             # listed in the .changes.
463             if not changes["architecture"].has_key(architecture):
464                 reject("%s: control file lists arch as `%s', which isn't in changes file." % (file, architecture))
465
466             # Sanity-check the Depends field
467             depends = control.Find("Depends")
468             if depends == '':
469                 reject("%s: Depends field is empty." % (file))
470
471             # Check the section & priority match those given in the .changes (non-fatal)
472             if control.Find("Section") and files[file]["section"] != "" and files[file]["section"] != control.Find("Section"):
473                 reject("%s control file lists section as `%s', but changes file has `%s'." % (file, control.Find("Section", ""), files[file]["section"]), "Warning: ")
474             if control.Find("Priority") and files[file]["priority"] != "" and files[file]["priority"] != control.Find("Priority"):
475                 reject("%s control file lists priority as `%s', but changes file has `%s'." % (file, control.Find("Priority", ""), files[file]["priority"]),"Warning: ")
476
477             files[file]["package"] = package
478             files[file]["architecture"] = architecture
479             files[file]["version"] = version
480             files[file]["maintainer"] = control.Find("Maintainer", "")
481             if file.endswith(".udeb"):
482                 files[file]["dbtype"] = "udeb"
483             elif file.endswith(".deb"):
484                 files[file]["dbtype"] = "deb"
485             else:
486                 reject("%s is neither a .deb or a .udeb." % (file))
487             files[file]["source"] = control.Find("Source", files[file]["package"])
488             # Get the source version
489             source = files[file]["source"]
490             source_version = ""
491             if source.find("(") != -1:
492                 m = daklib.utils.re_extract_src_version.match(source)
493                 source = m.group(1)
494                 source_version = m.group(2)
495             if not source_version:
496                 source_version = files[file]["version"]
497             files[file]["source package"] = source
498             files[file]["source version"] = source_version
499
500             # Ensure the filename matches the contents of the .deb
501             m = daklib.utils.re_isadeb.match(file)
502             #  package name
503             file_package = m.group(1)
504             if files[file]["package"] != file_package:
505                 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"]))
506             epochless_version = daklib.utils.re_no_epoch.sub('', control.Find("Version"))
507             #  version
508             file_version = m.group(2)
509             if epochless_version != file_version:
510                 reject("%s: version part of filename (%s) does not match package version in the %s (%s)." % (file, file_version, files[file]["dbtype"], epochless_version))
511             #  architecture
512             file_architecture = m.group(3)
513             if files[file]["architecture"] != file_architecture:
514                 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"]))
515
516             # Check for existent source
517             source_version = files[file]["source version"]
518             source_package = files[file]["source package"]
519             if changes["architecture"].has_key("source"):
520                 if source_version != changes["version"]:
521                     reject("source version (%s) for %s doesn't match changes version %s." % (source_version, file, changes["version"]))
522             else:
523                 # Check in the SQL database
524                 if not Upload.source_exists(source_package, source_version, changes["distribution"].keys()):
525                     # Check in one of the other directories
526                     source_epochless_version = daklib.utils.re_no_epoch.sub('', source_version)
527                     dsc_filename = "%s_%s.dsc" % (source_package, source_epochless_version)
528                     if os.path.exists(Cnf["Dir::Queue::Byhand"] + '/' + dsc_filename):
529                         files[file]["byhand"] = 1
530                     elif os.path.exists(Cnf["Dir::Queue::New"] + '/' + dsc_filename):
531                         files[file]["new"] = 1
532                     elif not os.path.exists(Cnf["Dir::Queue::Accepted"] + '/' + dsc_filename):
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         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.match(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
1003 # If any file of an upload has a recent mtime then chances are good
1004 # the file is still being uploaded.
1005
1006 def upload_too_new():
1007     too_new = 0
1008     # Move back to the original directory to get accurate time stamps
1009     cwd = os.getcwd()
1010     os.chdir(pkg.directory)
1011     file_list = pkg.files.keys()
1012     file_list.extend(pkg.dsc_files.keys())
1013     file_list.append(pkg.changes_file)
1014     for file in file_list:
1015         try:
1016             last_modified = time.time()-os.path.getmtime(file)
1017             if last_modified < int(Cnf["Dinstall::SkipTime"]):
1018                 too_new = 1
1019                 break
1020         except:
1021             pass
1022     os.chdir(cwd)
1023     return too_new
1024
1025 ################################################################################
1026
1027 def action ():
1028     # changes["distribution"] may not exist in corner cases
1029     # (e.g. unreadable changes files)
1030     if not changes.has_key("distribution") or not isinstance(changes["distribution"], DictType):
1031         changes["distribution"] = {}
1032
1033     (summary, short_summary) = Upload.build_summaries()
1034
1035     # q-unapproved hax0ring
1036     queue_info = {
1037          "New": { "is": is_new, "process": acknowledge_new },
1038          "Byhand" : { "is": is_byhand, "process": do_byhand },
1039          "Unembargo" : { "is": is_unembargo, "process": queue_unembargo },
1040          "Embargo" : { "is": is_embargo, "process": queue_embargo },
1041     }
1042     queues = [ "New", "Byhand" ]
1043     if Cnf.FindB("Dinstall::SecurityQueueHandling"):
1044         queues += [ "Unembargo", "Embargo" ]
1045
1046     (prompt, answer) = ("", "XXX")
1047     if Options["No-Action"] or Options["Automatic"]:
1048         answer = 'S'
1049
1050     queuekey = ''
1051
1052     if reject_message.find("Rejected") != -1:
1053         if upload_too_new():
1054             print "SKIP (too new)\n" + reject_message,
1055             prompt = "[S]kip, Quit ?"
1056         else:
1057             print "REJECT\n" + reject_message,
1058             prompt = "[R]eject, Skip, Quit ?"
1059             if Options["Automatic"]:
1060                 answer = 'R'
1061     else:
1062         queue = None
1063         for q in queues:
1064             if queue_info[q]["is"]():
1065                 queue = q
1066                 break
1067         if queue:
1068             print "%s for %s\n%s%s" % (
1069                 queue.upper(), ", ".join(changes["distribution"].keys()), 
1070                 reject_message, summary),
1071             queuekey = queue[0].upper()
1072             if queuekey in "RQSA":
1073                 queuekey = "D"
1074                 prompt = "[D]ivert, Skip, Quit ?"
1075             else:
1076                 prompt = "[%s]%s, Skip, Quit ?" % (queuekey, queue[1:].lower())
1077             if Options["Automatic"]:
1078                 answer = queuekey
1079         else:
1080             print "ACCEPT\n" + reject_message + summary,
1081             prompt = "[A]ccept, Skip, Quit ?"
1082             if Options["Automatic"]:
1083                 answer = 'A'
1084
1085     while prompt.find(answer) == -1:
1086         answer = daklib.utils.our_raw_input(prompt)
1087         m = daklib.queue.re_default_answer.match(prompt)
1088         if answer == "":
1089             answer = m.group(1)
1090         answer = answer[:1].upper()
1091
1092     if answer == 'R':
1093         os.chdir (pkg.directory)
1094         Upload.do_reject(0, reject_message)
1095     elif answer == 'A':
1096         accept(summary, short_summary)
1097         remove_from_unchecked()
1098     elif answer == queuekey:
1099         queue_info[queue]["process"](summary)
1100         remove_from_unchecked()
1101     elif answer == 'Q':
1102         sys.exit(0)
1103
1104 def remove_from_unchecked():
1105     os.chdir (pkg.directory)
1106     for file in files.keys():
1107         os.unlink(file)
1108     os.unlink(pkg.changes_file)
1109
1110 ################################################################################
1111
1112 def accept (summary, short_summary):
1113     Upload.accept(summary, short_summary)
1114     Upload.check_override()
1115
1116 ################################################################################
1117
1118 def move_to_dir (dest, perms=0660, changesperms=0664):
1119     daklib.utils.move (pkg.changes_file, dest, perms=changesperms)
1120     file_keys = files.keys()
1121     for file in file_keys:
1122         daklib.utils.move (file, dest, perms=perms)
1123
1124 ################################################################################
1125
1126 def is_unembargo ():
1127     q = Upload.projectB.query(
1128       "SELECT package FROM disembargo WHERE package = '%s' AND version = '%s'" % 
1129       (changes["source"], changes["version"]))
1130     ql = q.getresult()
1131     if ql:
1132         return 1
1133
1134     if pkg.directory == Cnf["Dir::Queue::Disembargo"].rstrip("/"):
1135         if changes["architecture"].has_key("source"):
1136             if Options["No-Action"]: return 1
1137
1138             Upload.projectB.query(
1139               "INSERT INTO disembargo (package, version) VALUES ('%s', '%s')" % 
1140               (changes["source"], changes["version"]))
1141             return 1
1142
1143     return 0
1144
1145 def queue_unembargo (summary):
1146     print "Moving to UNEMBARGOED holding area."
1147     Logger.log(["Moving to unembargoed", pkg.changes_file])
1148
1149     Upload.dump_vars(Cnf["Dir::Queue::Unembargoed"])
1150     move_to_dir(Cnf["Dir::Queue::Unembargoed"])
1151     Upload.queue_build("unembargoed", Cnf["Dir::Queue::Unembargoed"])
1152
1153     # Check for override disparities
1154     Upload.Subst["__SUMMARY__"] = summary
1155     Upload.check_override()
1156
1157 ################################################################################
1158
1159 def is_embargo ():
1160     return 0
1161
1162 def queue_embargo (summary):
1163     print "Moving to EMBARGOED holding area."
1164     Logger.log(["Moving to embargoed", pkg.changes_file])
1165
1166     Upload.dump_vars(Cnf["Dir::Queue::Embargoed"])
1167     move_to_dir(Cnf["Dir::Queue::Embargoed"])
1168     Upload.queue_build("embargoed", Cnf["Dir::Queue::Embargoed"])
1169
1170     # Check for override disparities
1171     Upload.Subst["__SUMMARY__"] = summary
1172     Upload.check_override()
1173
1174 ################################################################################
1175
1176 def is_byhand ():
1177     for file in files.keys():
1178         if files[file].has_key("byhand"):
1179             return 1
1180     return 0
1181
1182 def do_byhand (summary):
1183     print "Moving to BYHAND holding area."
1184     Logger.log(["Moving to byhand", pkg.changes_file])
1185
1186     Upload.dump_vars(Cnf["Dir::Queue::Byhand"])
1187     move_to_dir(Cnf["Dir::Queue::Byhand"])
1188
1189     # Check for override disparities
1190     Upload.Subst["__SUMMARY__"] = summary
1191     Upload.check_override()
1192
1193 ################################################################################
1194
1195 def is_new ():
1196     for file in files.keys():
1197         if files[file].has_key("new"):
1198             return 1
1199     return 0
1200
1201 def acknowledge_new (summary):
1202     Subst = Upload.Subst
1203
1204     print "Moving to NEW holding area."
1205     Logger.log(["Moving to new", pkg.changes_file])
1206
1207     Upload.dump_vars(Cnf["Dir::Queue::New"])
1208     move_to_dir(Cnf["Dir::Queue::New"])
1209
1210     if not Options["No-Mail"]:
1211         print "Sending new ack."
1212         Subst["__SUMMARY__"] = summary
1213         new_ack_message = daklib.utils.TemplateSubst(Subst,Cnf["Dir::Templates"]+"/process-unchecked.new")
1214         daklib.utils.send_mail(new_ack_message)
1215
1216 ################################################################################
1217
1218 # reprocess is necessary for the case of foo_1.2-1 and foo_1.2-2 in
1219 # Incoming. -1 will reference the .orig.tar.gz, but -2 will not.
1220 # Upload.check_dsc_against_db() can find the .orig.tar.gz but it will
1221 # not have processed it during it's checks of -2.  If -1 has been
1222 # deleted or otherwise not checked by 'dak process-unchecked', the
1223 # .orig.tar.gz will not have been checked at all.  To get round this,
1224 # we force the .orig.tar.gz into the .changes structure and reprocess
1225 # the .changes file.
1226
1227 def process_it (changes_file):
1228     global reprocess, reject_message
1229
1230     # Reset some globals
1231     reprocess = 1
1232     Upload.init_vars()
1233     # Some defaults in case we can't fully process the .changes file
1234     changes["maintainer2047"] = Cnf["Dinstall::MyEmailAddress"]
1235     changes["changedby2047"] = Cnf["Dinstall::MyEmailAddress"]
1236     reject_message = ""
1237
1238     # Absolutize the filename to avoid the requirement of being in the
1239     # same directory as the .changes file.
1240     pkg.changes_file = os.path.abspath(changes_file)
1241
1242     # Remember where we are so we can come back after cd-ing into the
1243     # holding directory.
1244     pkg.directory = os.getcwd()
1245
1246     try:
1247         # If this is the Real Thing(tm), copy things into a private
1248         # holding directory first to avoid replacable file races.
1249         if not Options["No-Action"]:
1250             os.chdir(Cnf["Dir::Queue::Holding"])
1251             copy_to_holding(pkg.changes_file)
1252             # Relativize the filename so we use the copy in holding
1253             # rather than the original...
1254             pkg.changes_file = os.path.basename(pkg.changes_file)
1255         changes["fingerprint"] = daklib.utils.check_signature(pkg.changes_file, reject)
1256         if changes["fingerprint"]:
1257             valid_changes_p = check_changes()
1258         else:
1259             valid_changes_p = 0
1260         if valid_changes_p:
1261             while reprocess:
1262                 check_distributions()
1263                 check_files()
1264                 valid_dsc_p = check_dsc()
1265                 if valid_dsc_p:
1266                     check_source()
1267                 check_md5sums()
1268                 check_urgency()
1269                 check_timestamps()
1270         Upload.update_subst(reject_message)
1271         action()
1272     except SystemExit:
1273         raise
1274     except:
1275         print "ERROR"
1276         traceback.print_exc(file=sys.stderr)
1277         pass
1278
1279     # Restore previous WD
1280     os.chdir(pkg.directory)
1281
1282 ###############################################################################
1283
1284 def main():
1285     global Cnf, Options, Logger
1286
1287     changes_files = init()
1288
1289     # -n/--dry-run invalidates some other options which would involve things happening
1290     if Options["No-Action"]:
1291         Options["Automatic"] = ""
1292
1293     # Ensure all the arguments we were given are .changes files
1294     for file in changes_files:
1295         if not file.endswith(".changes"):
1296             daklib.utils.warn("Ignoring '%s' because it's not a .changes file." % (file))
1297             changes_files.remove(file)
1298
1299     if changes_files == []:
1300         daklib.utils.fubar("Need at least one .changes file as an argument.")
1301
1302     # Check that we aren't going to clash with the daily cron job
1303
1304     if not Options["No-Action"] and os.path.exists("%s/daily.lock" % (Cnf["Dir::Lock"])) and not Options["No-Lock"]:
1305         daklib.utils.fubar("Archive maintenance in progress.  Try again later.")
1306
1307     # Obtain lock if not in no-action mode and initialize the log
1308
1309     if not Options["No-Action"]:
1310         lock_fd = os.open(Cnf["Dinstall::LockFile"], os.O_RDWR | os.O_CREAT)
1311         try:
1312             fcntl.lockf(lock_fd, fcntl.LOCK_EX | fcntl.LOCK_NB)
1313         except IOError, e:
1314             if errno.errorcode[e.errno] == 'EACCES' or errno.errorcode[e.errno] == 'EAGAIN':
1315                 daklib.utils.fubar("Couldn't obtain lock; assuming another 'dak process-unchecked' is already running.")
1316             else:
1317                 raise
1318         Logger = Upload.Logger = daklib.logging.Logger(Cnf, "process-unchecked")
1319
1320     # debian-{devel-,}-changes@lists.debian.org toggles writes access based on this header
1321     bcc = "X-DAK: dak process-unchecked\nX-Katie: this header is obsolete"
1322     if Cnf.has_key("Dinstall::Bcc"):
1323         Upload.Subst["__BCC__"] = bcc + "\nBcc: %s" % (Cnf["Dinstall::Bcc"])
1324     else:
1325         Upload.Subst["__BCC__"] = bcc
1326
1327
1328     # Sort the .changes files so that we process sourceful ones first
1329     changes_files.sort(daklib.utils.changes_compare)
1330
1331     # Process the changes files
1332     for changes_file in changes_files:
1333         print "\n" + changes_file
1334         try:
1335             process_it (changes_file)
1336         finally:
1337             if not Options["No-Action"]:
1338                 clean_holding()
1339
1340     accept_count = Upload.accept_count
1341     accept_bytes = Upload.accept_bytes
1342     if accept_count:
1343         sets = "set"
1344         if accept_count > 1:
1345             sets = "sets"
1346         print "Accepted %d package %s, %s." % (accept_count, sets, daklib.utils.size_type(int(accept_bytes)))
1347         Logger.log(["total",accept_count,accept_bytes])
1348
1349     if not Options["No-Action"]:
1350         Logger.close()
1351
1352 ################################################################################
1353
1354 if __name__ == '__main__':
1355     main()
1356