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