]> git.decadent.org.uk Git - dak.git/blob - dak/process_unchecked.py
9b1b48671177773ddab7bb8606fba61fc9804883
[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", "ProposedUpdates" ]:
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", "ProposedUpdates" ]:
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                     else:
533                         dsc_file_exists = 0
534                         for myq in ["Accepted", "Embargoed", "Unembargoed", "ProposedUpdates"]:
535                             if Cnf.has_key("Dir::Queue::%s" % (myq)):
536                                 if os.path.exists(Cnf["Dir::Queue::"+myq] + '/' + dsc_filename):
537                                     dsc_file_exists = 1
538                                     break
539                         if not dsc_file_exists:
540                             reject("no source found for %s %s (%s)." % (source_package, source_version, file))
541             # Check the version and for file overwrites
542             reject(Upload.check_binary_against_db(file),"")
543
544             check_deb_ar(file, control)
545
546         # Checks for a source package...
547         else:
548             m = daklib.utils.re_issource.match(file)
549             if m:
550                 has_source = 1
551                 files[file]["package"] = m.group(1)
552                 files[file]["version"] = m.group(2)
553                 files[file]["type"] = m.group(3)
554
555                 # Ensure the source package name matches the Source filed in the .changes
556                 if changes["source"] != files[file]["package"]:
557                     reject("%s: changes file doesn't say %s for Source" % (file, files[file]["package"]))
558
559                 # Ensure the source version matches the version in the .changes file
560                 if files[file]["type"] == "orig.tar.gz":
561                     changes_version = changes["chopversion2"]
562                 else:
563                     changes_version = changes["chopversion"]
564                 if changes_version != files[file]["version"]:
565                     reject("%s: should be %s according to changes file." % (file, changes_version))
566
567                 # Ensure the .changes lists source in the Architecture field
568                 if not changes["architecture"].has_key("source"):
569                     reject("%s: changes file doesn't list `source' in Architecture field." % (file))
570
571                 # Check the signature of a .dsc file
572                 if files[file]["type"] == "dsc":
573                     dsc["fingerprint"] = daklib.utils.check_signature(file, reject)
574
575                 files[file]["architecture"] = "source"
576
577             # Not a binary or source package?  Assume byhand...
578             else:
579                 files[file]["byhand"] = 1
580                 files[file]["type"] = "byhand"
581
582         # Per-suite file checks
583         files[file]["oldfiles"] = {}
584         for suite in changes["distribution"].keys():
585             # Skip byhand
586             if files[file].has_key("byhand"):
587                 continue
588
589             # Handle component mappings
590             for map in Cnf.ValueList("ComponentMappings"):
591                 (source, dest) = map.split()
592                 if files[file]["component"] == source:
593                     files[file]["original component"] = source
594                     files[file]["component"] = dest
595
596             # Ensure the component is valid for the target suite
597             if Cnf.has_key("Suite:%s::Components" % (suite)) and \
598                files[file]["component"] not in Cnf.ValueList("Suite::%s::Components" % (suite)):
599                 reject("unknown component `%s' for suite `%s'." % (files[file]["component"], suite))
600                 continue
601
602             # Validate the component
603             component = files[file]["component"]
604             component_id = daklib.database.get_component_id(component)
605             if component_id == -1:
606                 reject("file '%s' has unknown component '%s'." % (file, component))
607                 continue
608
609             # See if the package is NEW
610             if not Upload.in_override_p(files[file]["package"], files[file]["component"], suite, files[file].get("dbtype",""), file):
611                 files[file]["new"] = 1
612
613             # Validate the priority
614             if files[file]["priority"].find('/') != -1:
615                 reject("file '%s' has invalid priority '%s' [contains '/']." % (file, files[file]["priority"]))
616
617             # Determine the location
618             location = Cnf["Dir::Pool"]
619             location_id = daklib.database.get_location_id (location, component, archive)
620             if location_id == -1:
621                 reject("[INTERNAL ERROR] couldn't determine location (Component: %s, Archive: %s)" % (component, archive))
622             files[file]["location id"] = location_id
623
624             # Check the md5sum & size against existing files (if any)
625             files[file]["pool name"] = daklib.utils.poolify (changes["source"], files[file]["component"])
626             files_id = daklib.database.get_files_id(files[file]["pool name"] + file, files[file]["size"], files[file]["md5sum"], files[file]["location id"])
627             if files_id == -1:
628                 reject("INTERNAL ERROR, get_files_id() returned multiple matches for %s." % (file))
629             elif files_id == -2:
630                 reject("md5sum and/or size mismatch on existing copy of %s." % (file))
631             files[file]["files id"] = files_id
632
633             # Check for packages that have moved from one component to another
634             q = Upload.projectB.query("""
635 SELECT c.name FROM binaries b, bin_associations ba, suite s, location l,
636                    component c, architecture a, files f
637  WHERE b.package = '%s' AND s.suite_name = '%s'
638    AND (a.arch_string = '%s' OR a.arch_string = 'all')
639    AND ba.bin = b.id AND ba.suite = s.id AND b.architecture = a.id
640    AND f.location = l.id AND l.component = c.id AND b.file = f.id"""
641                                % (files[file]["package"], suite,
642                                   files[file]["architecture"]))
643             ql = q.getresult()
644             if ql:
645                 files[file]["othercomponents"] = ql[0][0]
646
647     # If the .changes file says it has source, it must have source.
648     if changes["architecture"].has_key("source"):
649         if not has_source:
650             reject("no source found and Architecture line in changes mention source.")
651
652         if not has_binaries and Cnf.FindB("Dinstall::Reject::NoSourceOnly"):
653             reject("source only uploads are not supported.")
654
655 ###############################################################################
656
657 def check_dsc():
658     global reprocess
659
660     # Ensure there is source to check
661     if not changes["architecture"].has_key("source"):
662         return 1
663
664     # Find the .dsc
665     dsc_filename = None
666     for file in files.keys():
667         if files[file]["type"] == "dsc":
668             if dsc_filename:
669                 reject("can not process a .changes file with multiple .dsc's.")
670                 return 0
671             else:
672                 dsc_filename = file
673
674     # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
675     if not dsc_filename:
676         reject("source uploads must contain a dsc file")
677         return 0
678
679     # Parse the .dsc file
680     try:
681         dsc.update(daklib.utils.parse_changes(dsc_filename, signing_rules=1))
682     except daklib.utils.cant_open_exc:
683         # if not -n copy_to_holding() will have done this for us...
684         if Options["No-Action"]:
685             reject("%s: can't read file." % (dsc_filename))
686     except daklib.utils.changes_parse_error_exc, line:
687         reject("%s: parse error, can't grok: %s." % (dsc_filename, line))
688     except daklib.utils.invalid_dsc_format_exc, line:
689         reject("%s: syntax error on line %s." % (dsc_filename, line))
690     # Build up the file list of files mentioned by the .dsc
691     try:
692         dsc_files.update(daklib.utils.build_file_list(dsc, is_a_dsc=1))
693     except daklib.utils.no_files_exc:
694         reject("%s: no Files: field." % (dsc_filename))
695         return 0
696     except daklib.utils.changes_parse_error_exc, line:
697         reject("%s: parse error, can't grok: %s." % (dsc_filename, line))
698         return 0
699
700     # Enforce mandatory fields
701     for i in ("format", "source", "version", "binary", "maintainer", "architecture", "files"):
702         if not dsc.has_key(i):
703             reject("%s: missing mandatory field `%s'." % (dsc_filename, i))
704             return 0
705
706     # Validate the source and version fields
707     if not re_valid_pkg_name.match(dsc["source"]):
708         reject("%s: invalid source name '%s'." % (dsc_filename, dsc["source"]))
709     if not re_valid_version.match(dsc["version"]):
710         reject("%s: invalid version number '%s'." % (dsc_filename, dsc["version"]))
711
712     # Bumping the version number of the .dsc breaks extraction by stable's
713     # dpkg-source.  So let's not do that...
714     if dsc["format"] != "1.0":
715         reject("%s: incompatible 'Format' version produced by a broken version of dpkg-dev 1.9.1{3,4}." % (dsc_filename))
716
717     # Validate the Maintainer field
718     try:
719         daklib.utils.fix_maintainer (dsc["maintainer"])
720     except daklib.utils.ParseMaintError, msg:
721         reject("%s: Maintainer field ('%s') failed to parse: %s" \
722                % (dsc_filename, dsc["maintainer"], msg))
723
724     # Validate the build-depends field(s)
725     for field_name in [ "build-depends", "build-depends-indep" ]:
726         field = dsc.get(field_name)
727         if field:
728             # Check for broken dpkg-dev lossage...
729             if field.startswith("ARRAY"):
730                 reject("%s: invalid %s field produced by a broken version of dpkg-dev (1.10.11)" % (dsc_filename, field_name.title()))
731
732             # Have apt try to parse them...
733             try:
734                 apt_pkg.ParseSrcDepends(field)
735             except:
736                 reject("%s: invalid %s field (can not be parsed by apt)." % (dsc_filename, field_name.title()))
737                 pass
738
739     # Ensure the version number in the .dsc matches the version number in the .changes
740     epochless_dsc_version = daklib.utils.re_no_epoch.sub('', dsc["version"])
741     changes_version = files[dsc_filename]["version"]
742     if epochless_dsc_version != files[dsc_filename]["version"]:
743         reject("version ('%s') in .dsc does not match version ('%s') in .changes." % (epochless_dsc_version, changes_version))
744
745     # Ensure there is a .tar.gz in the .dsc file
746     has_tar = 0
747     for f in dsc_files.keys():
748         m = daklib.utils.re_issource.match(f)
749         if not m:
750             reject("%s: %s in Files field not recognised as source." % (dsc_filename, f))
751         type = m.group(3)
752         if type == "orig.tar.gz" or type == "tar.gz":
753             has_tar = 1
754     if not has_tar:
755         reject("%s: no .tar.gz or .orig.tar.gz in 'Files' field." % (dsc_filename))
756
757     # Ensure source is newer than existing source in target suites
758     reject(Upload.check_source_against_db(dsc_filename),"")
759
760     (reject_msg, is_in_incoming) = Upload.check_dsc_against_db(dsc_filename)
761     reject(reject_msg, "")
762     if is_in_incoming:
763         if not Options["No-Action"]:
764             copy_to_holding(is_in_incoming)
765         orig_tar_gz = os.path.basename(is_in_incoming)
766         files[orig_tar_gz] = {}
767         files[orig_tar_gz]["size"] = os.stat(orig_tar_gz)[stat.ST_SIZE]
768         files[orig_tar_gz]["md5sum"] = dsc_files[orig_tar_gz]["md5sum"]
769         files[orig_tar_gz]["section"] = files[dsc_filename]["section"]
770         files[orig_tar_gz]["priority"] = files[dsc_filename]["priority"]
771         files[orig_tar_gz]["component"] = files[dsc_filename]["component"]
772         files[orig_tar_gz]["type"] = "orig.tar.gz"
773         reprocess = 2
774
775     return 1
776
777 ################################################################################
778
779 def get_changelog_versions(source_dir):
780     """Extracts a the source package and (optionally) grabs the
781     version history out of debian/changelog for the BTS."""
782
783     # Find the .dsc (again)
784     dsc_filename = None
785     for file in files.keys():
786         if files[file]["type"] == "dsc":
787             dsc_filename = file
788
789     # If there isn't one, we have nothing to do. (We have reject()ed the upload already)
790     if not dsc_filename:
791         return
792
793     # Create a symlink mirror of the source files in our temporary directory
794     for f in files.keys():
795         m = daklib.utils.re_issource.match(f)
796         if m:
797             src = os.path.join(source_dir, f)
798             # If a file is missing for whatever reason, give up.
799             if not os.path.exists(src):
800                 return
801             type = m.group(3)
802             if type == "orig.tar.gz" and pkg.orig_tar_gz:
803                 continue
804             dest = os.path.join(os.getcwd(), f)
805             os.symlink(src, dest)
806
807     # If the orig.tar.gz is not a part of the upload, create a symlink to the
808     # existing copy.
809     if pkg.orig_tar_gz:
810         dest = os.path.join(os.getcwd(), os.path.basename(pkg.orig_tar_gz))
811         os.symlink(pkg.orig_tar_gz, dest)
812
813     # Extract the source
814     cmd = "dpkg-source -sn -x %s" % (dsc_filename)
815     (result, output) = commands.getstatusoutput(cmd)
816     if (result != 0):
817         reject("'dpkg-source -x' failed for %s [return code: %s]." % (dsc_filename, result))
818         reject(daklib.utils.prefix_multi_line_string(output, " [dpkg-source output:] "), "")
819         return
820
821     if not Cnf.Find("Dir::Queue::BTSVersionTrack"):
822         return
823
824     # Get the upstream version
825     upstr_version = daklib.utils.re_no_epoch.sub('', dsc["version"])
826     if re_strip_revision.search(upstr_version):
827         upstr_version = re_strip_revision.sub('', upstr_version)
828
829     # Ensure the changelog file exists
830     changelog_filename = "%s-%s/debian/changelog" % (dsc["source"], upstr_version)
831     if not os.path.exists(changelog_filename):
832         reject("%s: debian/changelog not found in extracted source." % (dsc_filename))
833         return
834
835     # Parse the changelog
836     dsc["bts changelog"] = ""
837     changelog_file = daklib.utils.open_file(changelog_filename)
838     for line in changelog_file.readlines():
839         m = re_changelog_versions.match(line)
840         if m:
841             dsc["bts changelog"] += line
842     changelog_file.close()
843
844     # Check we found at least one revision in the changelog
845     if not dsc["bts changelog"]:
846         reject("%s: changelog format not recognised (empty version tree)." % (dsc_filename))
847
848 ########################################
849
850 def check_source():
851     # Bail out if:
852     #    a) there's no source 
853     # or b) reprocess is 2 - we will do this check next time when orig.tar.gz is in 'files'
854     # or c) the orig.tar.gz is MIA
855     if not changes["architecture"].has_key("source") or reprocess == 2 \
856        or pkg.orig_tar_gz == -1:
857         return
858
859     # Create a temporary directory to extract the source into
860     if Options["No-Action"]:
861         tmpdir = tempfile.mktemp()
862     else:
863         # We're in queue/holding and can create a random directory.
864         tmpdir = "%s" % (os.getpid())
865     os.mkdir(tmpdir)
866
867     # Move into the temporary directory
868     cwd = os.getcwd()
869     os.chdir(tmpdir)
870
871     # Get the changelog version history
872     get_changelog_versions(cwd)
873
874     # Move back and cleanup the temporary tree
875     os.chdir(cwd)
876     try:
877         shutil.rmtree(tmpdir)
878     except OSError, e:
879         if errno.errorcode[e.errno] != 'EACCES':
880             daklib.utils.fubar("%s: couldn't remove tmp dir for source tree." % (dsc["source"]))
881
882         reject("%s: source tree could not be cleanly removed." % (dsc["source"]))
883         # We probably have u-r or u-w directories so chmod everything
884         # and try again.
885         cmd = "chmod -R u+rwx %s" % (tmpdir)
886         result = os.system(cmd)
887         if result != 0:
888             daklib.utils.fubar("'%s' failed with result %s." % (cmd, result))
889         shutil.rmtree(tmpdir)
890     except:
891         daklib.utils.fubar("%s: couldn't remove tmp dir for source tree." % (dsc["source"]))
892
893 ################################################################################
894
895 # FIXME: should be a debian specific check called from a hook
896
897 def check_urgency ():
898     if changes["architecture"].has_key("source"):
899         if not changes.has_key("urgency"):
900             changes["urgency"] = Cnf["Urgency::Default"]
901         if changes["urgency"] not in Cnf.ValueList("Urgency::Valid"):
902             reject("%s is not a valid urgency; it will be treated as %s by testing." % (changes["urgency"], Cnf["Urgency::Default"]), "Warning: ")
903             changes["urgency"] = Cnf["Urgency::Default"]
904         changes["urgency"] = changes["urgency"].lower()
905
906 ################################################################################
907
908 def check_md5sums ():
909     for file in files.keys():
910         try:
911             file_handle = daklib.utils.open_file(file)
912         except daklib.utils.cant_open_exc:
913             continue
914
915         # Check md5sum
916         if apt_pkg.md5sum(file_handle) != files[file]["md5sum"]:
917             reject("%s: md5sum check failed." % (file))
918         file_handle.close()
919         # Check size
920         actual_size = os.stat(file)[stat.ST_SIZE]
921         size = int(files[file]["size"])
922         if size != actual_size:
923             reject("%s: actual file size (%s) does not match size (%s) in .changes"
924                    % (file, actual_size, size))
925
926     for file in dsc_files.keys():
927         try:
928             file_handle = daklib.utils.open_file(file)
929         except daklib.utils.cant_open_exc:
930             continue
931
932         # Check md5sum
933         if apt_pkg.md5sum(file_handle) != dsc_files[file]["md5sum"]:
934             reject("%s: md5sum check failed." % (file))
935         file_handle.close()
936         # Check size
937         actual_size = os.stat(file)[stat.ST_SIZE]
938         size = int(dsc_files[file]["size"])
939         if size != actual_size:
940             reject("%s: actual file size (%s) does not match size (%s) in .dsc"
941                    % (file, actual_size, size))
942
943 ################################################################################
944
945 # Sanity check the time stamps of files inside debs.
946 # [Files in the near future cause ugly warnings and extreme time
947 #  travel can cause errors on extraction]
948
949 def check_timestamps():
950     class Tar:
951         def __init__(self, future_cutoff, past_cutoff):
952             self.reset()
953             self.future_cutoff = future_cutoff
954             self.past_cutoff = past_cutoff
955
956         def reset(self):
957             self.future_files = {}
958             self.ancient_files = {}
959
960         def callback(self, Kind,Name,Link,Mode,UID,GID,Size,MTime,Major,Minor):
961             if MTime > self.future_cutoff:
962                 self.future_files[Name] = MTime
963             if MTime < self.past_cutoff:
964                 self.ancient_files[Name] = MTime
965     ####
966
967     future_cutoff = time.time() + int(Cnf["Dinstall::FutureTimeTravelGrace"])
968     past_cutoff = time.mktime(time.strptime(Cnf["Dinstall::PastCutoffYear"],"%Y"))
969     tar = Tar(future_cutoff, past_cutoff)
970     for filename in files.keys():
971         if files[filename]["type"] == "deb":
972             tar.reset()
973             try:
974                 deb_file = daklib.utils.open_file(filename)
975                 apt_inst.debExtract(deb_file,tar.callback,"control.tar.gz")
976                 deb_file.seek(0)
977                 try:
978                     apt_inst.debExtract(deb_file,tar.callback,"data.tar.gz")
979                 except SystemError, e:
980                     # If we can't find a data.tar.gz, look for data.tar.bz2 instead.
981                     if not re.match(r"Cannot f[ui]nd chunk data.tar.gz$", str(e)):
982                         raise
983                     deb_file.seek(0)
984                     apt_inst.debExtract(deb_file,tar.callback,"data.tar.bz2")
985                 deb_file.close()
986                 #
987                 future_files = tar.future_files.keys()
988                 if future_files:
989                     num_future_files = len(future_files)
990                     future_file = future_files[0]
991                     future_date = tar.future_files[future_file]
992                     reject("%s: has %s file(s) with a time stamp too far into the future (e.g. %s [%s])."
993                            % (filename, num_future_files, future_file,
994                               time.ctime(future_date)))
995                 #
996                 ancient_files = tar.ancient_files.keys()
997                 if ancient_files:
998                     num_ancient_files = len(ancient_files)
999                     ancient_file = ancient_files[0]
1000                     ancient_date = tar.ancient_files[ancient_file]
1001                     reject("%s: has %s file(s) with a time stamp too ancient (e.g. %s [%s])."
1002                            % (filename, num_ancient_files, ancient_file,
1003                               time.ctime(ancient_date)))
1004             except:
1005                 reject("%s: deb contents timestamp check failed [%s: %s]" % (filename, sys.exc_type, sys.exc_value))
1006
1007 ################################################################################
1008 ################################################################################
1009
1010 # If any file of an upload has a recent mtime then chances are good
1011 # the file is still being uploaded.
1012
1013 def upload_too_new():
1014     too_new = 0
1015     # Move back to the original directory to get accurate time stamps
1016     cwd = os.getcwd()
1017     os.chdir(pkg.directory)
1018     file_list = pkg.files.keys()
1019     file_list.extend(pkg.dsc_files.keys())
1020     file_list.append(pkg.changes_file)
1021     for file in file_list:
1022         try:
1023             last_modified = time.time()-os.path.getmtime(file)
1024             if last_modified < int(Cnf["Dinstall::SkipTime"]):
1025                 too_new = 1
1026                 break
1027         except:
1028             pass
1029     os.chdir(cwd)
1030     return too_new
1031
1032 ################################################################################
1033
1034 def action ():
1035     # changes["distribution"] may not exist in corner cases
1036     # (e.g. unreadable changes files)
1037     if not changes.has_key("distribution") or not isinstance(changes["distribution"], DictType):
1038         changes["distribution"] = {}
1039
1040     (summary, short_summary) = Upload.build_summaries()
1041
1042     # q-unapproved hax0ring
1043     queue_info = {
1044          "New": { "is": is_new, "process": acknowledge_new },
1045          "Byhand" : { "is": is_byhand, "process": do_byhand },
1046          "StableUpdate" : { "is": is_stableupdate, "process": do_stableupdate },
1047          "Unembargo" : { "is": is_unembargo, "process": queue_unembargo },
1048          "Embargo" : { "is": is_embargo, "process": queue_embargo },
1049     }
1050     queues = [ "New", "Byhand" ]
1051     if Cnf.FindB("Dinstall::SecurityQueueHandling"):
1052         queues += [ "Unembargo", "Embargo" ]
1053     else:
1054         queues += [ "StableUpdate" ]
1055
1056     (prompt, answer) = ("", "XXX")
1057     if Options["No-Action"] or Options["Automatic"]:
1058         answer = 'S'
1059
1060     queuekey = ''
1061
1062     if reject_message.find("Rejected") != -1:
1063         if upload_too_new():
1064             print "SKIP (too new)\n" + reject_message,
1065             prompt = "[S]kip, Quit ?"
1066         else:
1067             print "REJECT\n" + reject_message,
1068             prompt = "[R]eject, Skip, Quit ?"
1069             if Options["Automatic"]:
1070                 answer = 'R'
1071     else:
1072         queue = None
1073         for q in queues:
1074             if queue_info[q]["is"]():
1075                 queue = q
1076                 break
1077         if queue:
1078             print "%s for %s\n%s%s" % (
1079                 queue.upper(), ", ".join(changes["distribution"].keys()), 
1080                 reject_message, summary),
1081             queuekey = queue[0].upper()
1082             if queuekey in "RQSA":
1083                 queuekey = "D"
1084                 prompt = "[D]ivert, Skip, Quit ?"
1085             else:
1086                 prompt = "[%s]%s, Skip, Quit ?" % (queuekey, queue[1:].lower())
1087             if Options["Automatic"]:
1088                 answer = queuekey
1089         else:
1090             print "ACCEPT\n" + reject_message + summary,
1091             prompt = "[A]ccept, Skip, Quit ?"
1092             if Options["Automatic"]:
1093                 answer = 'A'
1094
1095     while prompt.find(answer) == -1:
1096         answer = daklib.utils.our_raw_input(prompt)
1097         m = daklib.queue.re_default_answer.match(prompt)
1098         if answer == "":
1099             answer = m.group(1)
1100         answer = answer[:1].upper()
1101
1102     if answer == 'R':
1103         os.chdir (pkg.directory)
1104         Upload.do_reject(0, reject_message)
1105     elif answer == 'A':
1106         accept(summary, short_summary)
1107         remove_from_unchecked()
1108     elif answer == queuekey:
1109         queue_info[queue]["process"](summary)
1110         remove_from_unchecked()
1111     elif answer == 'Q':
1112         sys.exit(0)
1113
1114 def remove_from_unchecked():
1115     os.chdir (pkg.directory)
1116     for file in files.keys():
1117         os.unlink(file)
1118     os.unlink(pkg.changes_file)
1119
1120 ################################################################################
1121
1122 def accept (summary, short_summary):
1123     Upload.accept(summary, short_summary)
1124     Upload.check_override()
1125
1126 ################################################################################
1127
1128 def move_to_dir (dest, perms=0660, changesperms=0664):
1129     daklib.utils.move (pkg.changes_file, dest, perms=changesperms)
1130     file_keys = files.keys()
1131     for file in file_keys:
1132         daklib.utils.move (file, dest, perms=perms)
1133
1134 ################################################################################
1135
1136 def is_unembargo ():
1137     q = Upload.projectB.query(
1138       "SELECT package FROM disembargo WHERE package = '%s' AND version = '%s'" % 
1139       (changes["source"], changes["version"]))
1140     ql = q.getresult()
1141     if ql:
1142         return 1
1143
1144     oldcwd = os.getcwd()
1145     os.chdir(Cnf["Dir::Queue::Disembargo"])
1146     disdir = os.getcwd()
1147     os.chdir(oldcwd)
1148
1149     if pkg.directory == disdir:
1150         if changes["architecture"].has_key("source"):
1151             if Options["No-Action"]: return 1
1152
1153             Upload.projectB.query(
1154               "INSERT INTO disembargo (package, version) VALUES ('%s', '%s')" % 
1155               (changes["source"], changes["version"]))
1156             return 1
1157
1158     return 0
1159
1160 def queue_unembargo (summary):
1161     print "Moving to UNEMBARGOED holding area."
1162     Logger.log(["Moving to unembargoed", pkg.changes_file])
1163
1164     Upload.dump_vars(Cnf["Dir::Queue::Unembargoed"])
1165     move_to_dir(Cnf["Dir::Queue::Unembargoed"])
1166     Upload.queue_build("unembargoed", Cnf["Dir::Queue::Unembargoed"])
1167
1168     # Check for override disparities
1169     Upload.Subst["__SUMMARY__"] = summary
1170     Upload.check_override()
1171
1172 ################################################################################
1173
1174 def is_embargo ():
1175     return 0
1176
1177 def queue_embargo (summary):
1178     print "Moving to EMBARGOED holding area."
1179     Logger.log(["Moving to embargoed", pkg.changes_file])
1180
1181     Upload.dump_vars(Cnf["Dir::Queue::Embargoed"])
1182     move_to_dir(Cnf["Dir::Queue::Embargoed"])
1183     Upload.queue_build("embargoed", Cnf["Dir::Queue::Embargoed"])
1184
1185     # Check for override disparities
1186     Upload.Subst["__SUMMARY__"] = summary
1187     Upload.check_override()
1188
1189 ################################################################################
1190
1191 def is_stableupdate ():
1192     if changes["distribution"].has_key("proposed-updates"):
1193         return 1
1194     return 0
1195
1196 def do_stableupdate (summary):
1197     print "Moving to PROPOSED-UPDATES holding area."
1198     Logger.log(["Moving to proposed-updates", pkg.changes_file]);
1199
1200     Upload.dump_vars(Cnf["Dir::Queue::ProposedUpdates"]);
1201     move_to_dir(Cnf["Dir::Queue::ProposedUpdates"])
1202
1203     # Check for override disparities
1204     Upload.Subst["__SUMMARY__"] = summary;
1205     Upload.check_override();
1206
1207 ################################################################################
1208
1209 def is_byhand ():
1210     for file in files.keys():
1211         if files[file].has_key("byhand"):
1212             return 1
1213     return 0
1214
1215 def do_byhand (summary):
1216     print "Moving to BYHAND holding area."
1217     Logger.log(["Moving to byhand", pkg.changes_file])
1218
1219     Upload.dump_vars(Cnf["Dir::Queue::Byhand"])
1220     move_to_dir(Cnf["Dir::Queue::Byhand"])
1221
1222     # Check for override disparities
1223     Upload.Subst["__SUMMARY__"] = summary
1224     Upload.check_override()
1225
1226 ################################################################################
1227
1228 def is_new ():
1229     for file in files.keys():
1230         if files[file].has_key("new"):
1231             return 1
1232     return 0
1233
1234 def acknowledge_new (summary):
1235     Subst = Upload.Subst
1236
1237     print "Moving to NEW holding area."
1238     Logger.log(["Moving to new", pkg.changes_file])
1239
1240     Upload.dump_vars(Cnf["Dir::Queue::New"])
1241     move_to_dir(Cnf["Dir::Queue::New"])
1242
1243     if not Options["No-Mail"]:
1244         print "Sending new ack."
1245         Subst["__SUMMARY__"] = summary
1246         new_ack_message = daklib.utils.TemplateSubst(Subst,Cnf["Dir::Templates"]+"/process-unchecked.new")
1247         daklib.utils.send_mail(new_ack_message)
1248
1249 ################################################################################
1250
1251 # reprocess is necessary for the case of foo_1.2-1 and foo_1.2-2 in
1252 # Incoming. -1 will reference the .orig.tar.gz, but -2 will not.
1253 # Upload.check_dsc_against_db() can find the .orig.tar.gz but it will
1254 # not have processed it during it's checks of -2.  If -1 has been
1255 # deleted or otherwise not checked by 'dak process-unchecked', the
1256 # .orig.tar.gz will not have been checked at all.  To get round this,
1257 # we force the .orig.tar.gz into the .changes structure and reprocess
1258 # the .changes file.
1259
1260 def process_it (changes_file):
1261     global reprocess, reject_message
1262
1263     # Reset some globals
1264     reprocess = 1
1265     Upload.init_vars()
1266     # Some defaults in case we can't fully process the .changes file
1267     changes["maintainer2047"] = Cnf["Dinstall::MyEmailAddress"]
1268     changes["changedby2047"] = Cnf["Dinstall::MyEmailAddress"]
1269     reject_message = ""
1270
1271     # Absolutize the filename to avoid the requirement of being in the
1272     # same directory as the .changes file.
1273     pkg.changes_file = os.path.abspath(changes_file)
1274
1275     # Remember where we are so we can come back after cd-ing into the
1276     # holding directory.
1277     pkg.directory = os.getcwd()
1278
1279     try:
1280         # If this is the Real Thing(tm), copy things into a private
1281         # holding directory first to avoid replacable file races.
1282         if not Options["No-Action"]:
1283             os.chdir(Cnf["Dir::Queue::Holding"])
1284             copy_to_holding(pkg.changes_file)
1285             # Relativize the filename so we use the copy in holding
1286             # rather than the original...
1287             pkg.changes_file = os.path.basename(pkg.changes_file)
1288         changes["fingerprint"] = daklib.utils.check_signature(pkg.changes_file, reject)
1289         if changes["fingerprint"]:
1290             valid_changes_p = check_changes()
1291         else:
1292             valid_changes_p = 0
1293         if valid_changes_p:
1294             while reprocess:
1295                 check_distributions()
1296                 check_files()
1297                 valid_dsc_p = check_dsc()
1298                 if valid_dsc_p:
1299                     check_source()
1300                 check_md5sums()
1301                 check_urgency()
1302                 check_timestamps()
1303         Upload.update_subst(reject_message)
1304         action()
1305     except SystemExit:
1306         raise
1307     except:
1308         print "ERROR"
1309         traceback.print_exc(file=sys.stderr)
1310         pass
1311
1312     # Restore previous WD
1313     os.chdir(pkg.directory)
1314
1315 ###############################################################################
1316
1317 def main():
1318     global Cnf, Options, Logger
1319
1320     changes_files = init()
1321
1322     # -n/--dry-run invalidates some other options which would involve things happening
1323     if Options["No-Action"]:
1324         Options["Automatic"] = ""
1325
1326     # Ensure all the arguments we were given are .changes files
1327     for file in changes_files:
1328         if not file.endswith(".changes"):
1329             daklib.utils.warn("Ignoring '%s' because it's not a .changes file." % (file))
1330             changes_files.remove(file)
1331
1332     if changes_files == []:
1333         daklib.utils.fubar("Need at least one .changes file as an argument.")
1334
1335     # Check that we aren't going to clash with the daily cron job
1336
1337     if not Options["No-Action"] and os.path.exists("%s/daily.lock" % (Cnf["Dir::Lock"])) and not Options["No-Lock"]:
1338         daklib.utils.fubar("Archive maintenance in progress.  Try again later.")
1339
1340     # Obtain lock if not in no-action mode and initialize the log
1341
1342     if not Options["No-Action"]:
1343         lock_fd = os.open(Cnf["Dinstall::LockFile"], os.O_RDWR | os.O_CREAT)
1344         try:
1345             fcntl.lockf(lock_fd, fcntl.LOCK_EX | fcntl.LOCK_NB)
1346         except IOError, e:
1347             if errno.errorcode[e.errno] == 'EACCES' or errno.errorcode[e.errno] == 'EAGAIN':
1348                 daklib.utils.fubar("Couldn't obtain lock; assuming another 'dak process-unchecked' is already running.")
1349             else:
1350                 raise
1351         Logger = Upload.Logger = daklib.logging.Logger(Cnf, "process-unchecked")
1352
1353     # debian-{devel-,}-changes@lists.debian.org toggles writes access based on this header
1354     bcc = "X-DAK: dak process-unchecked\nX-Katie: $Revision: 1.65 $"
1355     if Cnf.has_key("Dinstall::Bcc"):
1356         Upload.Subst["__BCC__"] = bcc + "\nBcc: %s" % (Cnf["Dinstall::Bcc"])
1357     else:
1358         Upload.Subst["__BCC__"] = bcc
1359
1360
1361     # Sort the .changes files so that we process sourceful ones first
1362     changes_files.sort(daklib.utils.changes_compare)
1363
1364     # Process the changes files
1365     for changes_file in changes_files:
1366         print "\n" + changes_file
1367         try:
1368             process_it (changes_file)
1369         finally:
1370             if not Options["No-Action"]:
1371                 clean_holding()
1372
1373     accept_count = Upload.accept_count
1374     accept_bytes = Upload.accept_bytes
1375     if accept_count:
1376         sets = "set"
1377         if accept_count > 1:
1378             sets = "sets"
1379         print "Accepted %d package %s, %s." % (accept_count, sets, daklib.utils.size_type(int(accept_bytes)))
1380         Logger.log(["total",accept_count,accept_bytes])
1381
1382     if not Options["No-Action"]:
1383         Logger.close()
1384
1385 ################################################################################
1386
1387 if __name__ == '__main__':
1388     main()
1389