]> git.decadent.org.uk Git - dak.git/blob - daklib/archive.py
daklib/archive.py: ignore missing source files when copying to temporary directory
[dak.git] / daklib / archive.py
1 # Copyright (C) 2012, Ansgar Burchardt <ansgar@debian.org>
2 #
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; either version 2 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License along
14 # with this program; if not, write to the Free Software Foundation, Inc.,
15 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
16
17 """module to manipulate the archive
18
19 This module provides classes to manipulate the archive.
20 """
21
22 from daklib.dbconn import *
23 import daklib.checks as checks
24 from daklib.config import Config
25 import daklib.upload as upload
26 import daklib.utils as utils
27 from daklib.fstransactions import FilesystemTransaction
28 from daklib.regexes import re_changelog_versions, re_bin_only_nmu
29
30 import apt_pkg
31 from datetime import datetime
32 import os
33 import shutil
34 import subprocess
35 from sqlalchemy.orm.exc import NoResultFound
36 import tempfile
37 import traceback
38
39 class ArchiveException(Exception):
40     pass
41
42 class HashMismatchException(ArchiveException):
43     pass
44
45 class ArchiveTransaction(object):
46     """manipulate the archive in a transaction
47     """
48     def __init__(self):
49         self.fs = FilesystemTransaction()
50         self.session = DBConn().session()
51
52     def get_file(self, hashed_file, source_name):
53         """Look for file C{hashed_file} in database
54
55         @type  hashed_file: L{daklib.upload.HashedFile}
56         @param hashed_file: file to look for in the database
57
58         @raise KeyError: file was not found in the database
59         @raise HashMismatchException: hash mismatch
60
61         @rtype:  L{daklib.dbconn.PoolFile}
62         @return: database entry for the file
63         """
64         poolname = os.path.join(utils.poolify(source_name), hashed_file.filename)
65         try:
66             poolfile = self.session.query(PoolFile).filter_by(filename=poolname).one()
67             if poolfile.filesize != hashed_file.size or poolfile.md5sum != hashed_file.md5sum or poolfile.sha1sum != hashed_file.sha1sum or poolfile.sha256sum != hashed_file.sha256sum:
68                 raise HashMismatchException('{0}: Does not match file already existing in the pool.'.format(hashed_file.filename))
69             return poolfile
70         except NoResultFound:
71             raise KeyError('{0} not found in database.'.format(poolname))
72
73     def _install_file(self, directory, hashed_file, archive, component, source_name):
74         """Install a file
75
76         Will not give an error when the file is already present.
77
78         @rtype:  L{daklib.dbconn.PoolFile}
79         @return: batabase object for the new file
80         """
81         session = self.session
82
83         poolname = os.path.join(utils.poolify(source_name), hashed_file.filename)
84         try:
85             poolfile = self.get_file(hashed_file, source_name)
86         except KeyError:
87             poolfile = PoolFile(filename=poolname, filesize=hashed_file.size)
88             poolfile.md5sum = hashed_file.md5sum
89             poolfile.sha1sum = hashed_file.sha1sum
90             poolfile.sha256sum = hashed_file.sha256sum
91             session.add(poolfile)
92             session.flush()
93
94         try:
95             session.query(ArchiveFile).filter_by(archive=archive, component=component, file=poolfile).one()
96         except NoResultFound:
97             archive_file = ArchiveFile(archive, component, poolfile)
98             session.add(archive_file)
99             session.flush()
100
101             path = os.path.join(archive.path, 'pool', component.component_name, poolname)
102             hashed_file_path = os.path.join(directory, hashed_file.filename)
103             self.fs.copy(hashed_file_path, path, link=False, mode=archive.mode)
104
105         return poolfile
106
107     def install_binary(self, directory, binary, suite, component, allow_tainted=False, fingerprint=None, source_suites=None, extra_source_archives=None):
108         """Install a binary package
109
110         @type  directory: str
111         @param directory: directory the binary package is located in
112
113         @type  binary: L{daklib.upload.Binary}
114         @param binary: binary package to install
115
116         @type  suite: L{daklib.dbconn.Suite}
117         @param suite: target suite
118
119         @type  component: L{daklib.dbconn.Component}
120         @param component: target component
121
122         @type  allow_tainted: bool
123         @param allow_tainted: allow to copy additional files from tainted archives
124
125         @type  fingerprint: L{daklib.dbconn.Fingerprint}
126         @param fingerprint: optional fingerprint
127
128         @type  source_suites: list of L{daklib.dbconn.Suite} or C{True}
129         @param source_suites: suites to copy the source from if they are not
130                               in C{suite} or C{True} to allow copying from any
131                               suite.
132                               This can also be a SQLAlchemy (sub)query object.
133
134         @type  extra_source_archives: list of L{daklib.dbconn.Archive}
135         @param extra_source_archives: extra archives to copy Built-Using sources from
136
137         @rtype:  L{daklib.dbconn.DBBinary}
138         @return: databse object for the new package
139         """
140         session = self.session
141         control = binary.control
142         maintainer = get_or_set_maintainer(control['Maintainer'], session)
143         architecture = get_architecture(control['Architecture'], session)
144
145         (source_name, source_version) = binary.source
146         source_query = session.query(DBSource).filter_by(source=source_name, version=source_version)
147         source = source_query.filter(DBSource.suites.contains(suite)).first()
148         if source is None:
149             if source_suites != True:
150                 source_query = source_query.join(DBSource.suites) \
151                     .filter(Suite.suite_id == source_suites.c.id)
152             source = source_query.first()
153             if source is None:
154                 raise ArchiveException('{0}: trying to install to {1}, but could not find source'.format(binary.hashed_file.filename, suite.suite_name))
155             self.copy_source(source, suite, component)
156
157         db_file = self._install_file(directory, binary.hashed_file, suite.archive, component, source_name)
158
159         unique = dict(
160             package=control['Package'],
161             version=control['Version'],
162             architecture=architecture,
163             )
164         rest = dict(
165             source=source,
166             maintainer=maintainer,
167             poolfile=db_file,
168             binarytype=binary.type,
169             fingerprint=fingerprint,
170             )
171
172         try:
173             db_binary = session.query(DBBinary).filter_by(**unique).one()
174             for key, value in rest.iteritems():
175                 if getattr(db_binary, key) != value:
176                     raise ArchiveException('{0}: Does not match binary in database.'.format(binary.hashed_file.filename))
177         except NoResultFound:
178             db_binary = DBBinary(**unique)
179             for key, value in rest.iteritems():
180                 setattr(db_binary, key, value)
181             session.add(db_binary)
182             session.flush()
183             import_metadata_into_db(db_binary, session)
184
185             self._add_built_using(db_binary, binary.hashed_file.filename, control, suite, extra_archives=extra_source_archives)
186
187         if suite not in db_binary.suites:
188             db_binary.suites.append(suite)
189
190         session.flush()
191
192         return db_binary
193
194     def _ensure_extra_source_exists(self, filename, source, archive, extra_archives=None):
195         """ensure source exists in the given archive
196
197         This is intended to be used to check that Built-Using sources exist.
198
199         @type  filename: str
200         @param filename: filename to use in error messages
201
202         @type  source: L{daklib.dbconn.DBSource}
203         @param source: source to look for
204
205         @type  archive: L{daklib.dbconn.Archive}
206         @param archive: archive to look in
207
208         @type  extra_archives: list of L{daklib.dbconn.Archive}
209         @param extra_archives: list of archives to copy the source package from
210                                if it is not yet present in C{archive}
211         """
212         session = self.session
213         db_file = session.query(ArchiveFile).filter_by(file=source.poolfile, archive=archive).first()
214         if db_file is not None:
215             return True
216
217         # Try to copy file from one extra archive
218         if extra_archives is None:
219             extra_archives = []
220         db_file = session.query(ArchiveFile).filter_by(file=source.poolfile).filter(ArchiveFile.archive_id.in_([ a.archive_id for a in extra_archives])).first()
221         if db_file is None:
222             raise ArchiveException('{0}: Built-Using refers to package {1} (= {2}) not in target archive {3}.'.format(filename, source.source, source.version, archive.archive_name))
223
224         source_archive = db_file.archive
225         for dsc_file in source.srcfiles:
226             af = session.query(ArchiveFile).filter_by(file=dsc_file.poolfile, archive=source_archive, component=db_file.component).one()
227             # We were given an explicit list of archives so it is okay to copy from tainted archives.
228             self._copy_file(af.file, archive, db_file.component, allow_tainted=True)
229
230     def _add_built_using(self, db_binary, filename, control, suite, extra_archives=None):
231         """Add Built-Using sources to C{db_binary.extra_sources}
232         """
233         session = self.session
234         built_using = control.get('Built-Using', None)
235
236         if built_using is not None:
237             for dep in apt_pkg.parse_depends(built_using):
238                 assert len(dep) == 1, 'Alternatives are not allowed in Built-Using field'
239                 bu_source_name, bu_source_version, comp = dep[0]
240                 assert comp == '=', 'Built-Using must contain strict dependencies'
241
242                 bu_source = session.query(DBSource).filter_by(source=bu_source_name, version=bu_source_version).first()
243                 if bu_source is None:
244                     raise ArchiveException('{0}: Built-Using refers to non-existing source package {1} (= {2})'.format(filename, bu_source_name, bu_source_version))
245
246                 self._ensure_extra_source_exists(filename, bu_source, suite.archive, extra_archives=extra_archives)
247
248                 db_binary.extra_sources.append(bu_source)
249
250     def install_source(self, directory, source, suite, component, changed_by, allow_tainted=False, fingerprint=None):
251         """Install a source package
252
253         @type  directory: str
254         @param directory: directory the source package is located in
255
256         @type  source: L{daklib.upload.Source}
257         @param source: source package to install
258
259         @type  suite: L{daklib.dbconn.Suite}
260         @param suite: target suite
261
262         @type  component: L{daklib.dbconn.Component}
263         @param component: target component
264
265         @type  changed_by: L{daklib.dbconn.Maintainer}
266         @param changed_by: person who prepared this version of the package
267
268         @type  allow_tainted: bool
269         @param allow_tainted: allow to copy additional files from tainted archives
270
271         @type  fingerprint: L{daklib.dbconn.Fingerprint}
272         @param fingerprint: optional fingerprint
273
274         @rtype:  L{daklib.dbconn.DBSource}
275         @return: database object for the new source
276         """
277         session = self.session
278         archive = suite.archive
279         control = source.dsc
280         maintainer = get_or_set_maintainer(control['Maintainer'], session)
281         source_name = control['Source']
282
283         ### Add source package to database
284
285         # We need to install the .dsc first as the DBSource object refers to it.
286         db_file_dsc = self._install_file(directory, source._dsc_file, archive, component, source_name)
287
288         unique = dict(
289             source=source_name,
290             version=control['Version'],
291             )
292         rest = dict(
293             maintainer=maintainer,
294             changedby=changed_by,
295             #install_date=datetime.now().date(),
296             poolfile=db_file_dsc,
297             fingerprint=fingerprint,
298             dm_upload_allowed=(control.get('DM-Upload-Allowed', 'no') == 'yes'),
299             )
300
301         created = False
302         try:
303             db_source = session.query(DBSource).filter_by(**unique).one()
304             for key, value in rest.iteritems():
305                 if getattr(db_source, key) != value:
306                     raise ArchiveException('{0}: Does not match source in database.'.format(source._dsc_file.filename))
307         except NoResultFound:
308             created = True
309             db_source = DBSource(**unique)
310             for key, value in rest.iteritems():
311                 setattr(db_source, key, value)
312             # XXX: set as default in postgres?
313             db_source.install_date = datetime.now().date()
314             session.add(db_source)
315             session.flush()
316
317             # Add .dsc file. Other files will be added later.
318             db_dsc_file = DSCFile()
319             db_dsc_file.source = db_source
320             db_dsc_file.poolfile = db_file_dsc
321             session.add(db_dsc_file)
322             session.flush()
323
324         if suite in db_source.suites:
325             return db_source
326
327         db_source.suites.append(suite)
328
329         if not created:
330             return db_source
331
332         ### Now add remaining files and copy them to the archive.
333
334         for hashed_file in source.files.itervalues():
335             hashed_file_path = os.path.join(directory, hashed_file.filename)
336             if os.path.exists(hashed_file_path):
337                 db_file = self._install_file(directory, hashed_file, archive, component, source_name)
338                 session.add(db_file)
339             else:
340                 db_file = self.get_file(hashed_file, source_name)
341                 self._copy_file(db_file, archive, component, allow_tainted=allow_tainted)
342
343             db_dsc_file = DSCFile()
344             db_dsc_file.source = db_source
345             db_dsc_file.poolfile = db_file
346             session.add(db_dsc_file)
347
348         session.flush()
349
350         # Importing is safe as we only arrive here when we did not find the source already installed earlier.
351         import_metadata_into_db(db_source, session)
352
353         # Uploaders are the maintainer and co-maintainers from the Uploaders field
354         db_source.uploaders.append(maintainer)
355         if 'Uploaders' in control:
356             def split_uploaders(field):
357                 import re
358                 for u in re.sub(">[ ]*,", ">\t", field).split("\t"):
359                     yield u.strip()
360
361             for u in split_uploaders(control['Uploaders']):
362                 db_source.uploaders.append(get_or_set_maintainer(u, session))
363         session.flush()
364
365         return db_source
366
367     def _copy_file(self, db_file, archive, component, allow_tainted=False):
368         """Copy a file to the given archive and component
369
370         @type  db_file: L{daklib.dbconn.PoolFile}
371         @param db_file: file to copy
372
373         @type  archive: L{daklib.dbconn.Archive}
374         @param archive: target archive
375
376         @type  component: L{daklib.dbconn.Archive}
377         @param component: target component
378
379         @type  allow_tainted: bool
380         @param allow_tainted: allow to copy from tainted archives (such as NEW)
381         """
382         session = self.session
383
384         if session.query(ArchiveFile).filter_by(archive=archive, component=component, file=db_file).first() is None:
385             query = session.query(ArchiveFile).filter_by(file=db_file, component=component)
386             if not allow_tainted:
387                 query = query.join(Archive).filter(Archive.tainted == False)
388
389             source_af = query.first()
390             if source_af is None:
391                 raise ArchiveException('cp: Could not find {0} in component {1} in any archive.'.format(db_file.filename, component.component_name))
392             target_af = ArchiveFile(archive, component, db_file)
393             session.add(target_af)
394             session.flush()
395             self.fs.copy(source_af.path, target_af.path, link=False, mode=archive.mode)
396
397     def copy_binary(self, db_binary, suite, component, allow_tainted=False, extra_archives=None):
398         """Copy a binary package to the given suite and component
399
400         @type  db_binary: L{daklib.dbconn.DBBinary}
401         @param db_binary: binary to copy
402
403         @type  suite: L{daklib.dbconn.Suite}
404         @param suite: target suite
405
406         @type  component: L{daklib.dbconn.Component}
407         @param component: target component
408
409         @type  allow_tainted: bool
410         @param allow_tainted: allow to copy from tainted archives (such as NEW)
411
412         @type  extra_archives: list of L{daklib.dbconn.Archive}
413         @param extra_archives: extra archives to copy Built-Using sources from
414         """
415         session = self.session
416         archive = suite.archive
417         if archive.tainted:
418             allow_tainted = True
419
420         filename = db_binary.poolfile.filename
421
422         # make sure source is present in target archive
423         db_source = db_binary.source
424         if session.query(ArchiveFile).filter_by(archive=archive, file=db_source.poolfile).first() is None:
425             raise ArchiveException('{0}: cannot copy to {1}: source is not present in target archive'.format(filename, suite.suite_name))
426
427         # make sure built-using packages are present in target archive
428         for db_source in db_binary.extra_sources:
429             self._ensure_extra_source_exists(filename, db_source, archive, extra_archives=extra_archives)
430
431         # copy binary
432         db_file = db_binary.poolfile
433         self._copy_file(db_file, suite.archive, component, allow_tainted=allow_tainted)
434         if suite not in db_binary.suites:
435             db_binary.suites.append(suite)
436         self.session.flush()
437
438     def copy_source(self, db_source, suite, component, allow_tainted=False):
439         """Copy a source package to the given suite and component
440
441         @type  db_source: L{daklib.dbconn.DBSource}
442         @param db_source: source to copy
443
444         @type  suite: L{daklib.dbconn.Suite}
445         @param suite: target suite
446
447         @type  component: L{daklib.dbconn.Component}
448         @param component: target component
449
450         @type  allow_tainted: bool
451         @param allow_tainted: allow to copy from tainted archives (such as NEW)
452         """
453         archive = suite.archive
454         if archive.tainted:
455             allow_tainted = True
456         for db_dsc_file in db_source.srcfiles:
457             self._copy_file(db_dsc_file.poolfile, archive, component, allow_tainted=allow_tainted)
458         if suite not in db_source.suites:
459             db_source.suites.append(suite)
460         self.session.flush()
461
462     def remove_file(self, db_file, archive, component):
463         """Remove a file from a given archive and component
464
465         @type  db_file: L{daklib.dbconn.PoolFile}
466         @param db_file: file to remove
467
468         @type  archive: L{daklib.dbconn.Archive}
469         @param archive: archive to remove the file from
470
471         @type  component: L{daklib.dbconn.Component}
472         @param component: component to remove the file from
473         """
474         af = self.session.query(ArchiveFile).filter_by(file=db_file, archive=archive, component=component)
475         self.fs.unlink(af.path)
476         self.session.delete(af)
477
478     def remove_binary(self, binary, suite):
479         """Remove a binary from a given suite and component
480
481         @type  binary: L{daklib.dbconn.DBBinary}
482         @param binary: binary to remove
483
484         @type  suite: L{daklib.dbconn.Suite}
485         @param suite: suite to remove the package from
486         """
487         binary.suites.remove(suite)
488         self.session.flush()
489
490     def remove_source(self, source, suite):
491         """Remove a source from a given suite and component
492
493         @type  source: L{daklib.dbconn.DBSource}
494         @param source: source to remove
495
496         @type  suite: L{daklib.dbconn.Suite}
497         @param suite: suite to remove the package from
498
499         @raise ArchiveException: source package is still referenced by other
500                                  binaries in the suite
501         """
502         session = self.session
503
504         query = session.query(DBBinary).filter_by(source=source) \
505             .filter(DBBinary.suites.contains(suite))
506         if query.first() is not None:
507             raise ArchiveException('src:{0} is still used by binaries in suite {1}'.format(source.source, suite.suite_name))
508
509         source.suites.remove(suite)
510         session.flush()
511
512     def commit(self):
513         """commit changes"""
514         try:
515             self.session.commit()
516             self.fs.commit()
517         finally:
518             self.session.rollback()
519             self.fs.rollback()
520
521     def rollback(self):
522         """rollback changes"""
523         self.session.rollback()
524         self.fs.rollback()
525
526     def __enter__(self):
527         return self
528
529     def __exit__(self, type, value, traceback):
530         if type is None:
531             self.commit()
532         else:
533             self.rollback()
534         return None
535
536 class ArchiveUpload(object):
537     """handle an upload
538
539     This class can be used in a with-statement::
540
541        with ArchiveUpload(...) as upload:
542           ...
543
544     Doing so will automatically run any required cleanup and also rollback the
545     transaction if it was not committed.
546     """
547     def __init__(self, directory, changes, keyrings):
548         self.transaction = ArchiveTransaction()
549         """transaction used to handle the upload
550         @type: L{daklib.archive.ArchiveTransaction}
551         """
552
553         self.session = self.transaction.session
554         """database session"""
555
556         self.original_directory = directory
557         self.original_changes = changes
558
559         self.changes = None
560         """upload to process
561         @type: L{daklib.upload.Changes}
562         """
563
564         self.directory = None
565         """directory with temporary copy of files. set by C{prepare}
566         @type: str
567         """
568
569         self.keyrings = keyrings
570
571         self.fingerprint = self.session.query(Fingerprint).filter_by(fingerprint=changes.primary_fingerprint).one()
572         """fingerprint of the key used to sign the upload
573         @type: L{daklib.dbconn.Fingerprint}
574         """
575
576         self.reject_reasons = []
577         """reasons why the upload cannot by accepted
578         @type: list of str
579         """
580
581         self.warnings = []
582         """warnings
583         @note: Not used yet.
584         @type: list of str
585         """
586
587         self.final_suites = None
588
589         self.new = False
590         """upload is NEW. set by C{check}
591         @type: bool
592         """
593
594         self._new_queue = self.session.query(PolicyQueue).filter_by(queue_name='new').one()
595         self._new = self._new_queue.suite
596
597     def prepare(self):
598         """prepare upload for further processing
599
600         This copies the files involved to a temporary directory.  If you use
601         this method directly, you have to remove the directory given by the
602         C{directory} attribute later on your own.
603
604         Instead of using the method directly, you can also use a with-statement::
605
606            with ArchiveUpload(...) as upload:
607               ...
608
609         This will automatically handle any required cleanup.
610         """
611         assert self.directory is None
612         assert self.original_changes.valid_signature
613
614         cnf = Config()
615         session = self.transaction.session
616
617         self.directory = tempfile.mkdtemp(dir=cnf.get('Dir::TempPath'))
618         with FilesystemTransaction() as fs:
619             src = os.path.join(self.original_directory, self.original_changes.filename)
620             dst = os.path.join(self.directory, self.original_changes.filename)
621             fs.copy(src, dst)
622
623             self.changes = upload.Changes(self.directory, self.original_changes.filename, self.keyrings)
624
625             for f in self.changes.files.itervalues():
626                 src = os.path.join(self.original_directory, f.filename)
627                 dst = os.path.join(self.directory, f.filename)
628                 fs.copy(src, dst)
629
630             source = self.changes.source
631             if source is not None:
632                 for f in source.files.itervalues():
633                     src = os.path.join(self.original_directory, f.filename)
634                     dst = os.path.join(self.directory, f.filename)
635                     if f.filename not in self.changes.files:
636                         try:
637                             db_file = self.transaction.get_file(f, source.dsc['Source'])
638                             db_archive_file = session.query(ArchiveFile).filter_by(file=db_file).first()
639                             fs.copy(db_archive_file.path, dst, symlink=True)
640                         except KeyError:
641                             # Ignore if get_file could not find it. Upload will
642                             # probably be rejected later.
643                             pass
644
645     def unpacked_source(self):
646         """Path to unpacked source
647
648         Get path to the unpacked source. This method does unpack the source
649         into a temporary directory under C{self.directory} if it has not
650         been done so already.
651
652         @rtype:  str or C{None}
653         @return: string giving the path to the unpacked source directory
654                  or C{None} if no source was included in the upload.
655         """
656         assert self.directory is not None
657
658         source = self.changes.source
659         if source is None:
660             return None
661         dsc_path = os.path.join(self.directory, source._dsc_file.filename)
662
663         sourcedir = os.path.join(self.directory, 'source')
664         if not os.path.exists(sourcedir):
665             subprocess.check_call(["dpkg-source", "--no-copy", "-x", dsc_path, sourcedir], shell=False)
666         if not os.path.isdir(sourcedir):
667             raise Exception("{0} is not a directory after extracting source package".format(sourcedir))
668         return sourcedir
669
670     def _map_suite(self, suite_name):
671         for rule in Config().value_list("SuiteMappings"):
672             fields = rule.split()
673             rtype = fields[0]
674             if rtype == "map" or rtype == "silent-map":
675                 (src, dst) = fields[1:3]
676                 if src == suite_name:
677                     suite_name = dst
678                     if rtype != "silent-map":
679                         self.warnings.append('Mapping {0} to {0}.'.format(src, dst))
680             elif rtype == "ignore":
681                 ignored = fields[1]
682                 if suite_name == ignored:
683                     self.warnings.append('Ignoring target suite {0}.'.format(ignored))
684                     suite_name = None
685             elif rtype == "reject":
686                 rejected = fields[1]
687                 if suite_name == rejected:
688                     self.reject_reasons.append('Uploads to {0} are not accepted.'.format(suite))
689             ## XXX: propup-version and map-unreleased not yet implemented
690         return suite_name
691
692     def _mapped_suites(self):
693         """Get target suites after mappings
694
695         @rtype:  list of L{daklib.dbconn.Suite}
696         @return: list giving the mapped target suites of this upload
697         """
698         session = self.session
699
700         suite_names = []
701         for dist in self.changes.distributions:
702             suite_name = self._map_suite(dist)
703             if suite_name is not None:
704                 suite_names.append(suite_name)
705
706         suites = session.query(Suite).filter(Suite.suite_name.in_(suite_names))
707         return suites
708
709     def _check_new(self, suite):
710         """Check if upload is NEW
711
712         An upload is NEW if it has binary or source packages that do not have
713         an override in C{suite} OR if it references files ONLY in a tainted
714         archive (eg. when it references files in NEW).
715
716         @rtype:  bool
717         @return: C{True} if the upload is NEW, C{False} otherwise
718         """
719         session = self.session
720
721         # Check for missing overrides
722         for b in self.changes.binaries:
723             override = self._binary_override(suite, b)
724             if override is None:
725                 return True
726
727         if self.changes.source is not None:
728             override = self._source_override(suite, self.changes.source)
729             if override is None:
730                 return True
731
732         # Check if we reference a file only in a tainted archive
733         files = self.changes.files.values()
734         if self.changes.source is not None:
735             files.extend(self.changes.source.files.values())
736         for f in files:
737             query = session.query(ArchiveFile).join(PoolFile).filter(PoolFile.sha1sum == f.sha1sum)
738             query_untainted = query.join(Archive).filter(Archive.tainted == False)
739
740             in_archive = (query.first() is not None)
741             in_untainted_archive = (query_untainted.first() is not None)
742
743             if in_archive and not in_untainted_archive:
744                 return True
745
746     def _final_suites(self):
747         session = self.session
748
749         mapped_suites = self._mapped_suites()
750         final_suites = set()
751
752         for suite in mapped_suites:
753             overridesuite = suite
754             if suite.overridesuite is not None:
755                 overridesuite = session.query(Suite).filter_by(suite_name=suite.overridesuite).one()
756             if self._check_new(overridesuite):
757                 self.new = True
758             final_suites.add(suite)
759
760         return final_suites
761
762     def _binary_override(self, suite, binary):
763         """Get override entry for a binary
764
765         @type  suite: L{daklib.dbconn.Suite}
766         @param suite: suite to get override for
767
768         @type  binary: L{daklib.upload.Binary}
769         @param binary: binary to get override for
770
771         @rtype:  L{daklib.dbconn.Override} or C{None}
772         @return: override for the given binary or C{None}
773         """
774         if suite.overridesuite is not None:
775             suite = self.session.query(Suite).filter_by(suite_name=suite.overridesuite).one()
776
777         query = self.session.query(Override).filter_by(suite=suite, package=binary.control['Package']) \
778                 .join(Component).filter(Component.component_name == binary.component) \
779                 .join(OverrideType).filter(OverrideType.overridetype == binary.type)
780
781         try:
782             return query.one()
783         except NoResultFound:
784             return None
785
786     def _source_override(self, suite, source):
787         """Get override entry for a source
788
789         @type  suite: L{daklib.dbconn.Suite}
790         @param suite: suite to get override for
791
792         @type  source: L{daklib.upload.Source}
793         @param source: source to get override for
794
795         @rtype:  L{daklib.dbconn.Override} or C{None}
796         @return: override for the given source or C{None}
797         """
798         if suite.overridesuite is not None:
799             suite = self.session.query(Suite).filter_by(suite_name=suite.overridesuite).one()
800
801         # XXX: component for source?
802         query = self.session.query(Override).filter_by(suite=suite, package=source.dsc['Source']) \
803                 .join(OverrideType).filter(OverrideType.overridetype == 'dsc')
804
805         try:
806             return query.one()
807         except NoResultFound:
808             return None
809
810     def _binary_component(self, suite, binary, only_overrides=True):
811         """get component for a binary
812
813         By default this will only look at overrides to get the right component;
814         if C{only_overrides} is C{False} this method will also look at the
815         Section field.
816
817         @type  suite: L{daklib.dbconn.Suite}
818
819         @type  binary: L{daklib.upload.Binary}
820
821         @type  only_overrides: bool
822         @param only_overrides: only use overrides to get the right component
823
824         @rtype: L{daklib.dbconn.Component} or C{None}
825         """
826         override = self._binary_override(suite, binary)
827         if override is not None:
828             return override.component
829         if only_overrides:
830             return None
831         return get_mapped_component(binary.component, self.session)
832
833     def check(self, force=False):
834         """run checks against the upload
835
836         @type  force: bool
837         @param force: ignore failing forcable checks
838
839         @rtype:  bool
840         @return: C{True} if all checks passed, C{False} otherwise
841         """
842         # XXX: needs to be better structured.
843         assert self.changes.valid_signature
844
845         try:
846             for chk in (
847                     checks.SignatureCheck,
848                     checks.ChangesCheck,
849                     checks.TransitionCheck,
850                     checks.UploadBlockCheck,
851                     checks.HashesCheck,
852                     checks.SourceCheck,
853                     checks.BinaryCheck,
854                     checks.BinaryTimestampCheck,
855                     checks.ACLCheck,
856                     checks.SingleDistributionCheck,
857                     checks.NoSourceOnlyCheck,
858                     checks.LintianCheck,
859                     ):
860                 chk().check(self)
861
862             final_suites = self._final_suites()
863             if len(final_suites) == 0:
864                 self.reject_reasons.append('Ended with no suite to install to.')
865                 return False
866
867             for chk in (
868                     checks.SourceFormatCheck,
869                     checks.SuiteArchitectureCheck,
870                     checks.VersionCheck,
871                     ):
872                 for suite in final_suites:
873                     chk().per_suite_check(self, suite)
874
875             if len(self.reject_reasons) != 0:
876                 return False
877
878             self.final_suites = final_suites
879             return True
880         except checks.Reject as e:
881             self.reject_reasons.append(unicode(e))
882         except Exception as e:
883             self.reject_reasons.append("Processing raised an exception: {0}.\n{1}".format(e, traceback.format_exc()))
884         return False
885
886     def _install_to_suite(self, suite, source_component_func, binary_component_func, source_suites=None, extra_source_archives=None):
887         """Install upload to the given suite
888
889         @type  suite: L{daklib.dbconn.Suite}
890         @param suite: suite to install the package into. This is the real suite,
891                       ie. after any redirection to NEW or a policy queue
892
893         @param source_component_func: function to get the L{daklib.dbconn.Component}
894                                       for a L{daklib.upload.Source} object
895
896         @param binary_component_func: function to get the L{daklib.dbconn.Component}
897                                       for a L{daklib.upload.Binary} object
898
899         @param source_suites: see L{daklib.archive.ArchiveTransaction.install_binary}
900
901         @param extra_source_archives: see L{daklib.archive.ArchiveTransaction.install_binary}
902
903         @return: tuple with two elements. The first is a L{daklib.dbconn.DBSource}
904                  object for the install source or C{None} if no source was
905                  included. The second is a list of L{daklib.dbconn.DBBinary}
906                  objects for the installed binary packages.
907         """
908         # XXX: move this function to ArchiveTransaction?
909
910         control = self.changes.changes
911         changed_by = get_or_set_maintainer(control.get('Changed-By', control['Maintainer']), self.session)
912
913         if source_suites is None:
914             source_suites = self.session.query(Suite).join((VersionCheck, VersionCheck.reference_id == Suite.suite_id)).filter(VersionCheck.suite == suite).subquery()
915
916         source = self.changes.source
917         if source is not None:
918             component = source_component_func(source)
919             db_source = self.transaction.install_source(self.directory, source, suite, component, changed_by, fingerprint=self.fingerprint)
920         else:
921             db_source = None
922
923         db_binaries = []
924         for binary in self.changes.binaries:
925             component = binary_component_func(binary)
926             db_binary = self.transaction.install_binary(self.directory, binary, suite, component, fingerprint=self.fingerprint, source_suites=source_suites, extra_source_archives=extra_source_archives)
927             db_binaries.append(db_binary)
928
929         if suite.copychanges:
930             src = os.path.join(self.directory, self.changes.filename)
931             dst = os.path.join(suite.archive.path, 'dists', suite.suite_name, self.changes.filename)
932             self.transaction.fs.copy(src, dst)
933
934         return (db_source, db_binaries)
935
936     def _install_changes(self):
937         assert self.changes.valid_signature
938         control = self.changes.changes
939         session = self.transaction.session
940         config = Config()
941
942         changelog_id = None
943         # Only add changelog for sourceful uploads and binNMUs
944         if 'source' in self.changes.architectures or re_bin_only_nmu.search(control['Version']):
945             query = 'INSERT INTO changelogs_text (changelog) VALUES (:changelog) RETURNING id'
946             changelog_id = session.execute(query, {'changelog': control['Changes']}).scalar()
947             assert changelog_id is not None
948
949         db_changes = DBChange()
950         db_changes.changesname = self.changes.filename
951         db_changes.source = control['Source']
952         db_changes.binaries = control.get('Binary', None)
953         db_changes.architecture = control['Architecture']
954         db_changes.version = control['Version']
955         db_changes.distribution = control['Distribution']
956         db_changes.urgency = control['Urgency']
957         db_changes.maintainer = control['Maintainer']
958         db_changes.changedby = control.get('Changed-By', control['Maintainer'])
959         db_changes.date = control['Date']
960         db_changes.fingerprint = self.fingerprint.fingerprint
961         db_changes.changelog_id = changelog_id
962         db_changes.closes = self.changes.closed_bugs
963
964         self.transaction.session.add(db_changes)
965         self.transaction.session.flush()
966
967         return db_changes
968
969     def _install_policy(self, policy_queue, target_suite, db_changes, db_source, db_binaries):
970         u = PolicyQueueUpload()
971         u.policy_queue = policy_queue
972         u.target_suite = target_suite
973         u.changes = db_changes
974         u.source = db_source
975         u.binaries = db_binaries
976         self.transaction.session.add(u)
977         self.transaction.session.flush()
978
979         dst = os.path.join(policy_queue.path, self.changes.filename)
980         self.transaction.fs.copy(self.changes.path, dst)
981
982         return u
983
984     def try_autobyhand(self):
985         """Try AUTOBYHAND
986
987         Try to handle byhand packages automatically.
988
989         @rtype:  list of L{daklib.upload.HashedFile}
990         @return: list of remaining byhand files
991         """
992         assert len(self.reject_reasons) == 0
993         assert self.changes.valid_signature
994         assert self.final_suites is not None
995
996         byhand = self.changes.byhand_files
997         if len(byhand) == 0:
998             return True
999
1000         suites = list(self.final_suites)
1001         assert len(suites) == 1, "BYHAND uploads must be to a single suite"
1002         suite = suites[0]
1003
1004         cnf = Config()
1005         control = self.changes.changes
1006         automatic_byhand_packages = cnf.subtree("AutomaticByHandPackages")
1007
1008         remaining = []
1009         for f in byhand:
1010             parts = f.filename.split('_', 2)
1011             if len(parts) != 3:
1012                 print "W: unexpected byhand filename {0}. No automatic processing.".format(f.filename)
1013                 remaining.append(f)
1014                 continue
1015
1016             package, version, archext = parts
1017             arch, ext = archext.split('.', 1)
1018
1019             rule = automatic_byhand_packages.get(package)
1020             if rule is None:
1021                 remaining.append(f)
1022                 continue
1023
1024             if rule['Source'] != control['Source'] or rule['Section'] != f.section or rule['Extension'] != ext:
1025                 remaining.append(f)
1026                 continue
1027
1028             script = rule['Script']
1029             retcode = subprocess.call([script, os.path.join(self.directory, f.filename), control['Version'], arch, os.path.join(self.directory, self.changes.filename)], shell=False)
1030             if retcode != 0:
1031                 print "W: error processing {0}.".format(f.filename)
1032                 remaining.append(f)
1033
1034         return len(remaining) == 0
1035
1036     def _install_byhand(self, policy_queue_upload, hashed_file):
1037         """install byhand file
1038
1039         @type  policy_queue_upload: L{daklib.dbconn.PolicyQueueUpload}
1040
1041         @type  hashed_file: L{daklib.upload.HashedFile}
1042         """
1043         fs = self.transaction.fs
1044         session = self.transaction.session
1045         policy_queue = policy_queue_upload.policy_queue
1046
1047         byhand_file = PolicyQueueByhandFile()
1048         byhand_file.upload = policy_queue_upload
1049         byhand_file.filename = hashed_file.filename
1050         session.add(byhand_file)
1051         session.flush()
1052
1053         src = os.path.join(self.directory, hashed_file.filename)
1054         dst = os.path.join(policy_queue.path, hashed_file.filename)
1055         fs.copy(src, dst)
1056
1057         return byhand_file
1058
1059     def _do_bts_versiontracking(self):
1060         cnf = Config()
1061         fs = self.transaction.fs
1062
1063         btsdir = cnf.get('Dir::BTSVersionTrack')
1064         if btsdir is None or btsdir == '':
1065             return
1066
1067         base = os.path.join(btsdir, self.changes.filename[:-8])
1068
1069         # version history
1070         sourcedir = self.unpacked_source()
1071         if sourcedir is not None:
1072             fh = open(os.path.join(sourcedir, 'debian', 'changelog'), 'r')
1073             versions = fs.create("{0}.versions".format(base), mode=0o644)
1074             for line in fh.readlines():
1075                 if re_changelog_versions.match(line):
1076                     versions.write(line)
1077             fh.close()
1078             versions.close()
1079
1080         # binary -> source mapping
1081         debinfo = fs.create("{0}.debinfo".format(base), mode=0o644)
1082         for binary in self.changes.binaries:
1083             control = binary.control
1084             source_package, source_version = binary.source
1085             line = " ".join([control['Package'], control['Version'], source_package, source_version])
1086             print >>debinfo, line
1087         debinfo.close()
1088
1089     def _policy_queue(self, suite):
1090         if suite.policy_queue is not None:
1091             return suite.policy_queue
1092         return None
1093
1094     def install(self):
1095         """install upload
1096
1097         Install upload to a suite or policy queue.  This method does B{not}
1098         handle uploads to NEW.
1099
1100         You need to have called the C{check} method before calling this method.
1101         """
1102         assert len(self.reject_reasons) == 0
1103         assert self.changes.valid_signature
1104         assert self.final_suites is not None
1105         assert not self.new
1106
1107         db_changes = self._install_changes()
1108
1109         for suite in self.final_suites:
1110             overridesuite = suite
1111             if suite.overridesuite is not None:
1112                 overridesuite = self.session.query(Suite).filter_by(suite_name=suite.overridesuite).one()
1113
1114             policy_queue = self._policy_queue(suite)
1115
1116             redirected_suite = suite
1117             if policy_queue is not None:
1118                 redirected_suite = policy_queue.suite
1119
1120             source_component_func = lambda source: self._source_override(overridesuite, source).component
1121             binary_component_func = lambda binary: self._binary_component(overridesuite, binary)
1122
1123             (db_source, db_binaries) = self._install_to_suite(redirected_suite, source_component_func, binary_component_func, extra_source_archives=[suite.archive])
1124
1125             if policy_queue is not None:
1126                 self._install_policy(policy_queue, suite, db_changes, db_source, db_binaries)
1127
1128             # copy to build queues
1129             if policy_queue is None or policy_queue.send_to_build_queues:
1130                 for build_queue in suite.copy_queues:
1131                     self._install_to_suite(build_queue.suite, source_component_func, binary_component_func, extra_source_archives=[suite.archive])
1132
1133         self._do_bts_versiontracking()
1134
1135     def install_to_new(self):
1136         """install upload to NEW
1137
1138         Install upload to NEW.  This method does B{not} handle regular uploads
1139         to suites or policy queues.
1140
1141         You need to have called the C{check} method before calling this method.
1142         """
1143         # Uploads to NEW are special as we don't have overrides.
1144         assert len(self.reject_reasons) == 0
1145         assert self.changes.valid_signature
1146         assert self.final_suites is not None
1147
1148         source = self.changes.source
1149         binaries = self.changes.binaries
1150         byhand = self.changes.byhand_files
1151
1152         new_queue = self.transaction.session.query(PolicyQueue).filter_by(queue_name='new').one()
1153         if len(byhand) > 0:
1154             new_queue = self.transaction.session.query(PolicyQueue).filter_by(queue_name='byhand').one()
1155         new_suite = new_queue.suite
1156
1157         # we need a suite to guess components
1158         suites = list(self.final_suites)
1159         assert len(suites) == 1, "NEW uploads must be to a single suite"
1160         suite = suites[0]
1161
1162         def binary_component_func(binary):
1163             return self._binary_component(suite, binary, only_overrides=False)
1164
1165         # guess source component
1166         # XXX: should be moved into an extra method
1167         binary_component_names = set()
1168         for binary in binaries:
1169             component = binary_component_func(binary)
1170             binary_component_names.add(component.component_name)
1171         source_component_name = None
1172         for c in self.session.query(Component).order_by(Component.component_id):
1173             guess = c.component_name
1174             if guess in binary_component_names:
1175                 source_component_name = guess
1176                 break
1177         if source_component_name is None:
1178             raise Exception('Could not guess source component.')
1179         source_component = self.session.query(Component).filter_by(component_name=source_component_name).one()
1180         source_component_func = lambda source: source_component
1181
1182         db_changes = self._install_changes()
1183         (db_source, db_binaries) = self._install_to_suite(new_suite, source_component_func, binary_component_func, source_suites=True, extra_source_archives=[suite.archive])
1184         policy_upload = self._install_policy(new_queue, suite, db_changes, db_source, db_binaries)
1185
1186         for f in byhand:
1187             self._install_byhand(policy_upload, f)
1188
1189         self._do_bts_versiontracking()
1190
1191     def commit(self):
1192         """commit changes"""
1193         self.transaction.commit()
1194
1195     def rollback(self):
1196         """rollback changes"""
1197         self.transaction.rollback()
1198
1199     def __enter__(self):
1200         self.prepare()
1201         return self
1202
1203     def __exit__(self, type, value, traceback):
1204         if self.directory is not None:
1205             shutil.rmtree(self.directory)
1206             self.directory = None
1207         self.changes = None
1208         self.transaction.rollback()
1209         return None