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