]> git.decadent.org.uk Git - dak.git/blob - daklib/archive.py
move method to evaluate component mappings to dbconn.py
[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                         db_file = self.transaction.get_file(f, source.dsc['Source'])
637                         db_archive_file = session.query(ArchiveFile).filter_by(file=db_file).first()
638                         fs.copy(db_archive_file.path, dst, symlink=True)
639
640     def unpacked_source(self):
641         """Path to unpacked source
642
643         Get path to the unpacked source. This method does unpack the source
644         into a temporary directory under C{self.directory} if it has not
645         been done so already.
646
647         @rtype:  str or C{None}
648         @return: string giving the path to the unpacked source directory
649                  or C{None} if no source was included in the upload.
650         """
651         assert self.directory is not None
652
653         source = self.changes.source
654         if source is None:
655             return None
656         dsc_path = os.path.join(self.directory, source._dsc_file.filename)
657
658         sourcedir = os.path.join(self.directory, 'source')
659         if not os.path.exists(sourcedir):
660             subprocess.check_call(["dpkg-source", "--no-copy", "-x", dsc_path, sourcedir], shell=False)
661         if not os.path.isdir(sourcedir):
662             raise Exception("{0} is not a directory after extracting source package".format(sourcedir))
663         return sourcedir
664
665     def _map_suite(self, suite_name):
666         for rule in Config().value_list("SuiteMappings"):
667             fields = rule.split()
668             rtype = fields[0]
669             if rtype == "map" or rtype == "silent-map":
670                 (src, dst) = fields[1:3]
671                 if src == suite_name:
672                     suite_name = dst
673                     if rtype != "silent-map":
674                         self.warnings.append('Mapping {0} to {0}.'.format(src, dst))
675             elif rtype == "ignore":
676                 ignored = fields[1]
677                 if suite_name == ignored:
678                     self.warnings.append('Ignoring target suite {0}.'.format(ignored))
679                     suite_name = None
680             elif rtype == "reject":
681                 rejected = fields[1]
682                 if suite_name == rejected:
683                     self.reject_reasons.append('Uploads to {0} are not accepted.'.format(suite))
684             ## XXX: propup-version and map-unreleased not yet implemented
685         return suite_name
686
687     def _mapped_suites(self):
688         """Get target suites after mappings
689
690         @rtype:  list of L{daklib.dbconn.Suite}
691         @return: list giving the mapped target suites of this upload
692         """
693         session = self.session
694
695         suite_names = []
696         for dist in self.changes.distributions:
697             suite_name = self._map_suite(dist)
698             if suite_name is not None:
699                 suite_names.append(suite_name)
700
701         suites = session.query(Suite).filter(Suite.suite_name.in_(suite_names))
702         return suites
703
704     def _check_new(self, suite):
705         """Check if upload is NEW
706
707         An upload is NEW if it has binary or source packages that do not have
708         an override in C{suite} OR if it references files ONLY in a tainted
709         archive (eg. when it references files in NEW).
710
711         @rtype:  bool
712         @return: C{True} if the upload is NEW, C{False} otherwise
713         """
714         session = self.session
715
716         # Check for missing overrides
717         for b in self.changes.binaries:
718             override = self._binary_override(suite, b)
719             if override is None:
720                 return True
721
722         if self.changes.source is not None:
723             override = self._source_override(suite, self.changes.source)
724             if override is None:
725                 return True
726
727         # Check if we reference a file only in a tainted archive
728         files = self.changes.files.values()
729         if self.changes.source is not None:
730             files.extend(self.changes.source.files.values())
731         for f in files:
732             query = session.query(ArchiveFile).join(PoolFile).filter(PoolFile.sha1sum == f.sha1sum)
733             query_untainted = query.join(Archive).filter(Archive.tainted == False)
734
735             in_archive = (query.first() is not None)
736             in_untainted_archive = (query_untainted.first() is not None)
737
738             if in_archive and not in_untainted_archive:
739                 return True
740
741     def _final_suites(self):
742         session = self.session
743
744         mapped_suites = self._mapped_suites()
745         final_suites = set()
746
747         for suite in mapped_suites:
748             overridesuite = suite
749             if suite.overridesuite is not None:
750                 overridesuite = session.query(Suite).filter_by(suite_name=suite.overridesuite).one()
751             if self._check_new(overridesuite):
752                 self.new = True
753             final_suites.add(suite)
754
755         return final_suites
756
757     def _binary_override(self, suite, binary):
758         """Get override entry for a binary
759
760         @type  suite: L{daklib.dbconn.Suite}
761         @param suite: suite to get override for
762
763         @type  binary: L{daklib.upload.Binary}
764         @param binary: binary to get override for
765
766         @rtype:  L{daklib.dbconn.Override} or C{None}
767         @return: override for the given binary or C{None}
768         """
769         if suite.overridesuite is not None:
770             suite = self.session.query(Suite).filter_by(suite_name=suite.overridesuite).one()
771
772         query = self.session.query(Override).filter_by(suite=suite, package=binary.control['Package']) \
773                 .join(Component).filter(Component.component_name == binary.component) \
774                 .join(OverrideType).filter(OverrideType.overridetype == binary.type)
775
776         try:
777             return query.one()
778         except NoResultFound:
779             return None
780
781     def _source_override(self, suite, source):
782         """Get override entry for a source
783
784         @type  suite: L{daklib.dbconn.Suite}
785         @param suite: suite to get override for
786
787         @type  source: L{daklib.upload.Source}
788         @param source: source to get override for
789
790         @rtype:  L{daklib.dbconn.Override} or C{None}
791         @return: override for the given source or C{None}
792         """
793         if suite.overridesuite is not None:
794             suite = self.session.query(Suite).filter_by(suite_name=suite.overridesuite).one()
795
796         # XXX: component for source?
797         query = self.session.query(Override).filter_by(suite=suite, package=source.dsc['Source']) \
798                 .join(OverrideType).filter(OverrideType.overridetype == 'dsc')
799
800         try:
801             return query.one()
802         except NoResultFound:
803             return None
804
805     def _binary_component(self, suite, binary, only_overrides=True):
806         """get component for a binary
807
808         By default this will only look at overrides to get the right component;
809         if C{only_overrides} is C{False} this method will also look at the
810         Section field.
811
812         @type  suite: L{daklib.dbconn.Suite}
813
814         @type  binary: L{daklib.upload.Binary}
815
816         @type  only_overrides: bool
817         @param only_overrides: only use overrides to get the right component
818
819         @rtype: L{daklib.dbconn.Component} or C{None}
820         """
821         override = self._binary_override(suite, binary)
822         if override is not None:
823             return override.component
824         if only_overrides:
825             return None
826         return get_mapped_component(binary.component, self.session)
827
828     def check(self, force=False):
829         """run checks against the upload
830
831         @type  force: bool
832         @param force: ignore failing forcable checks
833
834         @rtype:  bool
835         @return: C{True} if all checks passed, C{False} otherwise
836         """
837         # XXX: needs to be better structured.
838         assert self.changes.valid_signature
839
840         try:
841             for chk in (
842                     checks.SignatureCheck,
843                     checks.ChangesCheck,
844                     checks.TransitionCheck,
845                     checks.UploadBlockCheck,
846                     checks.HashesCheck,
847                     checks.SourceCheck,
848                     checks.BinaryCheck,
849                     checks.BinaryTimestampCheck,
850                     checks.ACLCheck,
851                     checks.SingleDistributionCheck,
852                     checks.NoSourceOnlyCheck,
853                     checks.LintianCheck,
854                     ):
855                 chk().check(self)
856
857             final_suites = self._final_suites()
858             if len(final_suites) == 0:
859                 self.reject_reasons.append('Ended with no suite to install to.')
860                 return False
861
862             for chk in (
863                     checks.SourceFormatCheck,
864                     checks.SuiteArchitectureCheck,
865                     checks.VersionCheck,
866                     ):
867                 for suite in final_suites:
868                     chk().per_suite_check(self, suite)
869
870             if len(self.reject_reasons) != 0:
871                 return False
872
873             self.final_suites = final_suites
874             return True
875         except checks.Reject as e:
876             self.reject_reasons.append(unicode(e))
877         except Exception as e:
878             self.reject_reasons.append("Processing raised an exception: {0}.\n{1}".format(e, traceback.format_exc()))
879         return False
880
881     def _install_to_suite(self, suite, source_component_func, binary_component_func, source_suites=None, extra_source_archives=None):
882         """Install upload to the given suite
883
884         @type  suite: L{daklib.dbconn.Suite}
885         @param suite: suite to install the package into. This is the real suite,
886                       ie. after any redirection to NEW or a policy queue
887
888         @param source_component_func: function to get the L{daklib.dbconn.Component}
889                                       for a L{daklib.upload.Source} object
890
891         @param binary_component_func: function to get the L{daklib.dbconn.Component}
892                                       for a L{daklib.upload.Binary} object
893
894         @param source_suites: see L{daklib.archive.ArchiveTransaction.install_binary}
895
896         @param extra_source_archives: see L{daklib.archive.ArchiveTransaction.install_binary}
897
898         @return: tuple with two elements. The first is a L{daklib.dbconn.DBSource}
899                  object for the install source or C{None} if no source was
900                  included. The second is a list of L{daklib.dbconn.DBBinary}
901                  objects for the installed binary packages.
902         """
903         # XXX: move this function to ArchiveTransaction?
904
905         control = self.changes.changes
906         changed_by = get_or_set_maintainer(control.get('Changed-By', control['Maintainer']), self.session)
907
908         if source_suites is None:
909             source_suites = self.session.query(Suite).join((VersionCheck, VersionCheck.reference_id == Suite.suite_id)).filter(VersionCheck.suite == suite).subquery()
910
911         source = self.changes.source
912         if source is not None:
913             component = source_component_func(source)
914             db_source = self.transaction.install_source(self.directory, source, suite, component, changed_by, fingerprint=self.fingerprint)
915         else:
916             db_source = None
917
918         db_binaries = []
919         for binary in self.changes.binaries:
920             component = binary_component_func(binary)
921             db_binary = self.transaction.install_binary(self.directory, binary, suite, component, fingerprint=self.fingerprint, source_suites=source_suites, extra_source_archives=extra_source_archives)
922             db_binaries.append(db_binary)
923
924         if suite.copychanges:
925             src = os.path.join(self.directory, self.changes.filename)
926             dst = os.path.join(suite.archive.path, 'dists', suite.suite_name, self.changes.filename)
927             self.transaction.fs.copy(src, dst)
928
929         return (db_source, db_binaries)
930
931     def _install_changes(self):
932         assert self.changes.valid_signature
933         control = self.changes.changes
934         session = self.transaction.session
935         config = Config()
936
937         changelog_id = None
938         # Only add changelog for sourceful uploads and binNMUs
939         if 'source' in self.changes.architectures or re_bin_only_nmu.search(control['Version']):
940             query = 'INSERT INTO changelogs_text (changelog) VALUES (:changelog) RETURNING id'
941             changelog_id = session.execute(query, {'changelog': control['Changes']}).scalar()
942             assert changelog_id is not None
943
944         db_changes = DBChange()
945         db_changes.changesname = self.changes.filename
946         db_changes.source = control['Source']
947         db_changes.binaries = control.get('Binary', None)
948         db_changes.architecture = control['Architecture']
949         db_changes.version = control['Version']
950         db_changes.distribution = control['Distribution']
951         db_changes.urgency = control['Urgency']
952         db_changes.maintainer = control['Maintainer']
953         db_changes.changedby = control.get('Changed-By', control['Maintainer'])
954         db_changes.date = control['Date']
955         db_changes.fingerprint = self.fingerprint.fingerprint
956         db_changes.changelog_id = changelog_id
957         db_changes.closes = self.changes.closed_bugs
958
959         self.transaction.session.add(db_changes)
960         self.transaction.session.flush()
961
962         return db_changes
963
964     def _install_policy(self, policy_queue, target_suite, db_changes, db_source, db_binaries):
965         u = PolicyQueueUpload()
966         u.policy_queue = policy_queue
967         u.target_suite = target_suite
968         u.changes = db_changes
969         u.source = db_source
970         u.binaries = db_binaries
971         self.transaction.session.add(u)
972         self.transaction.session.flush()
973
974         dst = os.path.join(policy_queue.path, self.changes.filename)
975         self.transaction.fs.copy(self.changes.path, dst)
976
977         return u
978
979     def try_autobyhand(self):
980         """Try AUTOBYHAND
981
982         Try to handle byhand packages automatically.
983
984         @rtype:  list of L{daklib.upload.HashedFile}
985         @return: list of remaining byhand files
986         """
987         assert len(self.reject_reasons) == 0
988         assert self.changes.valid_signature
989         assert self.final_suites is not None
990
991         byhand = self.changes.byhand_files
992         if len(byhand) == 0:
993             return True
994
995         suites = list(self.final_suites)
996         assert len(suites) == 1, "BYHAND uploads must be to a single suite"
997         suite = suites[0]
998
999         cnf = Config()
1000         control = self.changes.changes
1001         automatic_byhand_packages = cnf.subtree("AutomaticByHandPackages")
1002
1003         remaining = []
1004         for f in byhand:
1005             parts = f.filename.split('_', 2)
1006             if len(parts) != 3:
1007                 print "W: unexpected byhand filename {0}. No automatic processing.".format(f.filename)
1008                 remaining.append(f)
1009                 continue
1010
1011             package, version, archext = parts
1012             arch, ext = archext.split('.', 1)
1013
1014             rule = automatic_byhand_packages.get(package)
1015             if rule is None:
1016                 remaining.append(f)
1017                 continue
1018
1019             if rule['Source'] != control['Source'] or rule['Section'] != f.section or rule['Extension'] != ext:
1020                 remaining.append(f)
1021                 continue
1022
1023             script = rule['Script']
1024             retcode = subprocess.call([script, os.path.join(self.directory, f.filename), control['Version'], arch, os.path.join(self.directory, self.changes.filename)], shell=False)
1025             if retcode != 0:
1026                 print "W: error processing {0}.".format(f.filename)
1027                 remaining.append(f)
1028
1029         return len(remaining) == 0
1030
1031     def _install_byhand(self, policy_queue_upload, hashed_file):
1032         """install byhand file
1033
1034         @type  policy_queue_upload: L{daklib.dbconn.PolicyQueueUpload}
1035
1036         @type  hashed_file: L{daklib.upload.HashedFile}
1037         """
1038         fs = self.transaction.fs
1039         session = self.transaction.session
1040         policy_queue = policy_queue_upload.policy_queue
1041
1042         byhand_file = PolicyQueueByhandFile()
1043         byhand_file.upload = policy_queue_upload
1044         byhand_file.filename = hashed_file.filename
1045         session.add(byhand_file)
1046         session.flush()
1047
1048         src = os.path.join(self.directory, hashed_file.filename)
1049         dst = os.path.join(policy_queue.path, hashed_file.filename)
1050         fs.copy(src, dst)
1051
1052         return byhand_file
1053
1054     def _do_bts_versiontracking(self):
1055         cnf = Config()
1056         fs = self.transaction.fs
1057
1058         btsdir = cnf.get('Dir::BTSVersionTrack')
1059         if btsdir is None or btsdir == '':
1060             return
1061
1062         base = os.path.join(btsdir, self.changes.filename[:-8])
1063
1064         # version history
1065         sourcedir = self.unpacked_source()
1066         if sourcedir is not None:
1067             fh = open(os.path.join(sourcedir, 'debian', 'changelog'), 'r')
1068             versions = fs.create("{0}.versions".format(base), mode=0o644)
1069             for line in fh.readlines():
1070                 if re_changelog_versions.match(line):
1071                     versions.write(line)
1072             fh.close()
1073             versions.close()
1074
1075         # binary -> source mapping
1076         debinfo = fs.create("{0}.debinfo".format(base), mode=0o644)
1077         for binary in self.changes.binaries:
1078             control = binary.control
1079             source_package, source_version = binary.source
1080             line = " ".join([control['Package'], control['Version'], source_package, source_version])
1081             print >>debinfo, line
1082         debinfo.close()
1083
1084     def _policy_queue(self, suite):
1085         if suite.policy_queue is not None:
1086             return suite.policy_queue
1087         return None
1088
1089     def install(self):
1090         """install upload
1091
1092         Install upload to a suite or policy queue.  This method does B{not}
1093         handle uploads to NEW.
1094
1095         You need to have called the C{check} method before calling this method.
1096         """
1097         assert len(self.reject_reasons) == 0
1098         assert self.changes.valid_signature
1099         assert self.final_suites is not None
1100         assert not self.new
1101
1102         db_changes = self._install_changes()
1103
1104         for suite in self.final_suites:
1105             overridesuite = suite
1106             if suite.overridesuite is not None:
1107                 overridesuite = self.session.query(Suite).filter_by(suite_name=suite.overridesuite).one()
1108
1109             policy_queue = self._policy_queue(suite)
1110
1111             redirected_suite = suite
1112             if policy_queue is not None:
1113                 redirected_suite = policy_queue.suite
1114
1115             source_component_func = lambda source: self._source_override(overridesuite, source).component
1116             binary_component_func = lambda binary: self._binary_component(overridesuite, binary)
1117
1118             (db_source, db_binaries) = self._install_to_suite(redirected_suite, source_component_func, binary_component_func, extra_source_archives=[suite.archive])
1119
1120             if policy_queue is not None:
1121                 self._install_policy(policy_queue, suite, db_changes, db_source, db_binaries)
1122
1123             # copy to build queues
1124             if policy_queue is None or policy_queue.send_to_build_queues:
1125                 for build_queue in suite.copy_queues:
1126                     self._install_to_suite(build_queue.suite, source_component_func, binary_component_func, extra_source_archives=[suite.archive])
1127
1128         self._do_bts_versiontracking()
1129
1130     def install_to_new(self):
1131         """install upload to NEW
1132
1133         Install upload to NEW.  This method does B{not} handle regular uploads
1134         to suites or policy queues.
1135
1136         You need to have called the C{check} method before calling this method.
1137         """
1138         # Uploads to NEW are special as we don't have overrides.
1139         assert len(self.reject_reasons) == 0
1140         assert self.changes.valid_signature
1141         assert self.final_suites is not None
1142
1143         source = self.changes.source
1144         binaries = self.changes.binaries
1145         byhand = self.changes.byhand_files
1146
1147         new_queue = self.transaction.session.query(PolicyQueue).filter_by(queue_name='new').one()
1148         if len(byhand) > 0:
1149             new_queue = self.transaction.session.query(PolicyQueue).filter_by(queue_name='byhand').one()
1150         new_suite = new_queue.suite
1151
1152         # we need a suite to guess components
1153         suites = list(self.final_suites)
1154         assert len(suites) == 1, "NEW uploads must be to a single suite"
1155         suite = suites[0]
1156
1157         def binary_component_func(binary):
1158             return self._binary_component(suite, binary, only_overrides=False)
1159
1160         # guess source component
1161         # XXX: should be moved into an extra method
1162         binary_component_names = set()
1163         for binary in binaries:
1164             component = binary_component_func(binary)
1165             binary_component_names.add(component.component_name)
1166         source_component_name = None
1167         for c in self.session.query(Component).order_by(Component.component_id):
1168             guess = c.component_name
1169             if guess in binary_component_names:
1170                 source_component_name = guess
1171                 break
1172         if source_component_name is None:
1173             raise Exception('Could not guess source component.')
1174         source_component = self.session.query(Component).filter_by(component_name=source_component_name).one()
1175         source_component_func = lambda source: source_component
1176
1177         db_changes = self._install_changes()
1178         (db_source, db_binaries) = self._install_to_suite(new_suite, source_component_func, binary_component_func, source_suites=True, extra_source_archives=[suite.archive])
1179         policy_upload = self._install_policy(new_queue, suite, db_changes, db_source, db_binaries)
1180
1181         for f in byhand:
1182             self._install_byhand(policy_upload, f)
1183
1184         self._do_bts_versiontracking()
1185
1186     def commit(self):
1187         """commit changes"""
1188         self.transaction.commit()
1189
1190     def rollback(self):
1191         """rollback changes"""
1192         self.transaction.rollback()
1193
1194     def __enter__(self):
1195         self.prepare()
1196         return self
1197
1198     def __exit__(self, type, value, traceback):
1199         if self.directory is not None:
1200             shutil.rmtree(self.directory)
1201             self.directory = None
1202         self.changes = None
1203         self.transaction.rollback()
1204         return None