4 Create all the Release files
6 @contact: Debian FTPMaster <ftpmaster@debian.org>
7 @copyright: 2011 Joerg Jaspert <joerg@debian.org>
8 @copyright: 2011 Mark Hymers <mhy@debian.org>
9 @license: GNU General Public License version 2 or later
13 # This program is free software; you can redistribute it and/or modify
14 # it under the terms of the GNU General Public License as published by
15 # the Free Software Foundation; either version 2 of the License, or
16 # (at your option) any later version.
18 # This program is distributed in the hope that it will be useful,
19 # but WITHOUT ANY WARRANTY; without even the implied warranty of
20 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 # GNU General Public License for more details.
23 # You should have received a copy of the GNU General Public License
24 # along with this program; if not, write to the Free Software
25 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
27 ################################################################################
29 # <mhy> I wish they wouldnt leave biscuits out, thats just tempting. Damnit.
31 ################################################################################
43 from tempfile import mkstemp, mkdtemp
45 from sqlalchemy.orm import object_session
47 from daklib import utils, daklog
48 from daklib.regexes import re_gensubrelease, re_includeinrelease
49 from daklib.dak_exceptions import *
50 from daklib.dbconn import *
51 from daklib.config import Config
52 from daklib.dakmultiprocessing import DakProcessPool, PROC_STATUS_SUCCESS
53 import daklib.daksubprocess
55 ################################################################################
56 Logger = None #: Our logging object
58 ################################################################################
60 def usage (exit_code=0):
61 """ Usage information"""
63 print """Usage: dak generate-releases [OPTIONS]
64 Generate the Release files
66 -a, --archive=ARCHIVE process suites in ARCHIVE
67 -s, --suite=SUITE(s) process this suite
68 Default: All suites not marked 'untouchable'
69 -f, --force Allow processing of untouchable suites
70 CAREFUL: Only to be used at (point) release time!
71 -h, --help show this help and exit
72 -q, --quiet Don't output progress
74 SUITE can be a space separated list, e.g.
75 --suite=unstable testing
79 ########################################################################
81 def sign_release_dir(suite, dirname):
84 if cnf.has_key("Dinstall::SigningKeyring"):
85 keyring = "--secret-keyring \"%s\"" % cnf["Dinstall::SigningKeyring"]
86 if cnf.has_key("Dinstall::SigningPubKeyring"):
87 keyring += " --keyring \"%s\"" % cnf["Dinstall::SigningPubKeyring"]
89 arguments = "--no-options --batch --no-tty --armour --personal-digest-preferences=SHA256"
91 relname = os.path.join(dirname, 'Release')
93 dest = os.path.join(dirname, 'Release.gpg')
94 if os.path.exists(dest):
97 inlinedest = os.path.join(dirname, 'InRelease')
98 if os.path.exists(inlinedest):
102 for keyid in suite.signingkeys or []:
103 defkeyid += "--local-user %s " % keyid
105 os.system("gpg %s %s %s --detach-sign <%s >>%s" %
106 (keyring, defkeyid, arguments, relname, dest))
107 os.system("gpg %s %s %s --clearsign <%s >>%s" %
108 (keyring, defkeyid, arguments, relname, inlinedest))
110 class XzFile(object):
111 def __init__(self, filename, mode='r'):
112 self.filename = filename
115 with open(self.filename, 'r') as stdin:
116 process = daklib.daksubprocess.Popen(cmd, stdin=stdin, stdout=subprocess.PIPE)
117 (stdout, stderr) = process.communicate()
121 class HashFunc(object):
122 def __init__(self, release_field, func, db_name):
123 self.release_field = release_field
125 self.db_name = db_name
128 HashFunc('MD5Sum', apt_pkg.md5sum, 'md5'),
129 HashFunc('SHA1', apt_pkg.sha1sum, 'sha1'),
130 HashFunc('SHA256', apt_pkg.sha256sum, 'sha256'),
134 class ReleaseWriter(object):
135 def __init__(self, suite):
138 def suite_path(self):
140 Absolute path to the suite-specific files.
143 suite_suffix = cnf.find("Dinstall::SuiteSuffix", "")
145 return os.path.join(self.suite.archive.path, 'dists',
146 self.suite.suite_name, suite_suffix)
148 def suite_release_path(self):
150 Absolute path where Release files are physically stored.
151 This should be a path that sorts after the dists/ directory.
153 # TODO: Eventually always create Release in `zzz-dists` to avoid
154 # special cases. However we don't want to move existing Release files
155 # for released suites.
156 # See `create_release_symlinks` below.
157 if not self.suite.byhash:
158 return self.suite_path()
161 suite_suffix = cnf.find("Dinstall::SuiteSuffix", "")
163 return os.path.join(self.suite.archive.path, 'zzz-dists',
164 self.suite.suite_name, suite_suffix)
166 def create_release_symlinks(self):
168 Create symlinks for Release files.
169 This creates the symlinks for Release files in the `suite_path`
170 to the actual files in `suite_release_path`.
172 # TODO: Eventually always create the links.
173 # See `suite_release_path` above.
174 if not self.suite.byhash:
177 relpath = os.path.relpath(self.suite_release_path(), self.suite_path())
178 for f in ("Release", "Release.gpg", "InRelease"):
179 source = os.path.join(relpath, f)
180 dest = os.path.join(self.suite_path(), f)
181 if not os.path.islink(dest):
183 elif os.readlink(dest) == source:
187 os.symlink(source, dest)
189 def create_output_directories(self):
190 for path in (self.suite_path(), self.suite_release_path()):
194 if e.errno != errno.EEXIST:
197 def generate_release_files(self):
199 Generate Release files for the given suite
202 @param suite: Suite name
206 session = object_session(suite)
208 architectures = get_suite_architectures(suite.suite_name, skipall=True, skipsrc=True, session=session)
210 # Attribs contains a tuple of field names and the database names to use to
212 attribs = ( ('Origin', 'origin'),
214 ('Suite', 'release_suite_output'),
215 ('Version', 'version'),
216 ('Codename', 'codename'),
217 ('Changelogs', 'changelog_url'),
220 # A "Sub" Release file has slightly different fields
221 subattribs = ( ('Archive', 'suite_name'),
222 ('Origin', 'origin'),
224 ('Version', 'version') )
226 # Boolean stuff. If we find it true in database, write out "yes" into the release file
227 boolattrs = ( ('NotAutomatic', 'notautomatic'),
228 ('ButAutomaticUpgrades', 'butautomaticupgrades'),
229 ('Acquire-By-Hash', 'byhash'),
234 suite_suffix = cnf.find("Dinstall::SuiteSuffix", "")
236 self.create_output_directories()
237 self.create_release_symlinks()
239 outfile = os.path.join(self.suite_release_path(), "Release")
240 out = open(outfile + ".new", "w")
242 for key, dbfield in attribs:
243 # Hack to skip NULL Version fields as we used to do this
244 # We should probably just always ignore anything which is None
245 if key in ("Version", "Changelogs") and getattr(suite, dbfield) is None:
248 out.write("%s: %s\n" % (key, getattr(suite, dbfield)))
250 out.write("Date: %s\n" % (time.strftime("%a, %d %b %Y %H:%M:%S UTC", time.gmtime(time.time()))))
253 validtime=float(suite.validtime)
254 out.write("Valid-Until: %s\n" % (time.strftime("%a, %d %b %Y %H:%M:%S UTC", time.gmtime(time.time()+validtime))))
256 for key, dbfield in boolattrs:
257 if getattr(suite, dbfield, False):
258 out.write("%s: yes\n" % (key))
260 out.write("Architectures: %s\n" % (" ".join([a.arch_string for a in architectures])))
262 components = [ c.component_name for c in suite.components ]
264 out.write("Components: %s\n" % (" ".join(components)))
266 # For exact compatibility with old g-r, write out Description here instead
267 # of with the rest of the DB fields above
268 if getattr(suite, 'description') is not None:
269 out.write("Description: %s\n" % suite.description)
271 for comp in components:
272 for dirpath, dirnames, filenames in os.walk(os.path.join(self.suite_path(), comp), topdown=True):
273 if not re_gensubrelease.match(dirpath):
276 subfile = os.path.join(dirpath, "Release")
277 subrel = open(subfile + '.new', "w")
279 for key, dbfield in subattribs:
280 if getattr(suite, dbfield) is not None:
281 subrel.write("%s: %s\n" % (key, getattr(suite, dbfield)))
283 for key, dbfield in boolattrs:
284 if getattr(suite, dbfield, False):
285 subrel.write("%s: yes\n" % (key))
287 subrel.write("Component: %s%s\n" % (suite_suffix, comp))
289 # Urgh, but until we have all the suite/component/arch stuff in the DB,
291 arch = os.path.split(dirpath)[-1]
292 if arch.startswith('binary-'):
295 subrel.write("Architecture: %s\n" % (arch))
298 os.rename(subfile + '.new', subfile)
300 # Now that we have done the groundwork, we want to get off and add the files with
301 # their checksums to the main Release file
304 os.chdir(self.suite_path())
306 hashes = [x for x in RELEASE_HASHES if x.db_name in suite.checksums]
312 for dirpath, dirnames, filenames in os.walk(".", followlinks=True, topdown=True):
313 for entry in filenames:
314 # Skip things we don't want to include
315 if not re_includeinrelease.match(entry):
318 if dirpath == '.' and entry in ["Release", "Release.gpg", "InRelease"]:
321 filename = os.path.join(dirpath.lstrip('./'), entry)
322 fileinfo[filename] = {}
323 contents = open(filename, 'r').read()
325 # If we find a file for which we have a compressed version and
326 # haven't yet seen the uncompressed one, store the possibility
328 if entry.endswith(".gz") and filename[:-3] not in uncompnotseen:
329 uncompnotseen[filename[:-3]] = (gzip.GzipFile, filename)
330 elif entry.endswith(".bz2") and filename[:-4] not in uncompnotseen:
331 uncompnotseen[filename[:-4]] = (bz2.BZ2File, filename)
332 elif entry.endswith(".xz") and filename[:-3] not in uncompnotseen:
333 uncompnotseen[filename[:-3]] = (XzFile, filename)
335 fileinfo[filename]['len'] = len(contents)
338 fileinfo[filename][hf.release_field] = hf.func(contents)
340 for filename, comp in uncompnotseen.items():
341 # If we've already seen the uncompressed file, we don't
342 # need to do anything again
343 if filename in fileinfo:
346 fileinfo[filename] = {}
348 # File handler is comp[0], filename of compressed file is comp[1]
349 contents = comp[0](comp[1], 'r').read()
351 fileinfo[filename]['len'] = len(contents)
354 fileinfo[filename][hf.release_field] = hf.func(contents)
357 for field in sorted(h.release_field for h in hashes):
358 out.write('%s:\n' % field)
359 for filename in sorted(fileinfo.keys()):
360 out.write(" %s %8d %s\n" % (fileinfo[filename][field], fileinfo[filename]['len'], filename))
363 os.rename(outfile + '.new', outfile)
367 UPDATE hashfile SET unreferenced = CURRENT_TIMESTAMP
368 WHERE suite_id = :id AND unreferenced IS NULL"""
369 session.execute(query, {'id': suite.suite_id})
371 for filename in fileinfo:
372 if not os.path.exists(filename):
373 # probably an uncompressed index we didn't generate
377 field = h.release_field
378 hashfile = os.path.join(os.path.dirname(filename), 'by-hash', field, fileinfo[filename][field])
379 query = "SELECT 1 FROM hashfile WHERE path = :p AND suite_id = :id"
382 {'p': hashfile, 'id': suite.suite_id})
385 UPDATE hashfile SET unreferenced = NULL
386 WHERE path = :p and suite_id = :id''',
387 {'p': hashfile, 'id': suite.suite_id})
390 INSERT INTO hashfile (path, suite_id)
392 {'p': hashfile, 'id': suite.suite_id})
395 os.makedirs(os.path.dirname(hashfile))
396 except OSError as exc:
397 if exc.errno != errno.EEXIST:
400 os.link(filename, hashfile)
401 except OSError as exc:
402 if exc.errno != errno.EEXIST:
407 sign_release_dir(suite, os.path.dirname(outfile))
419 for i in ["Help", "Suite", "Force", "Quiet"]:
420 if not cnf.has_key("Generate-Releases::Options::%s" % (i)):
421 cnf["Generate-Releases::Options::%s" % (i)] = ""
423 Arguments = [('h',"help","Generate-Releases::Options::Help"),
424 ('a','archive','Generate-Releases::Options::Archive','HasArg'),
425 ('s',"suite","Generate-Releases::Options::Suite"),
426 ('f',"force","Generate-Releases::Options::Force"),
427 ('q',"quiet","Generate-Releases::Options::Quiet"),
428 ('o','option','','ArbItem')]
430 suite_names = apt_pkg.parse_commandline(cnf.Cnf, Arguments, sys.argv)
431 Options = cnf.subtree("Generate-Releases::Options")
436 Logger = daklog.Logger('generate-releases')
437 pool = DakProcessPool()
439 session = DBConn().session()
443 for s in suite_names:
444 suite = get_suite(s.lower(), session)
448 print "cannot find suite %s" % s
449 Logger.log(['cannot find suite %s' % s])
451 query = session.query(Suite).filter(Suite.untouchable == False)
452 if 'Archive' in Options:
453 query = query.join(Suite.archive).filter(Archive.archive_name==Options['Archive'])
459 # Setup a multiprocessing Pool. As many workers as we have CPU cores.
460 if s.untouchable and not Options["Force"]:
461 print "Skipping %s (untouchable)" % s.suite_name
464 if not Options["Quiet"]:
465 print "Processing %s" % s.suite_name
466 Logger.log(['Processing release file for Suite: %s' % (s.suite_name)])
467 pool.apply_async(generate_helper, (s.suite_id, ))
469 # No more work will be added to our pool, close it and then wait for all to finish
473 retcode = pool.overall_status()
476 # TODO: CENTRAL FUNCTION FOR THIS / IMPROVE LOGGING
477 Logger.log(['Release file generation broken: %s' % (','.join([str(x[1]) for x in pool.results]))])
483 def generate_helper(suite_id):
485 This function is called in a new subprocess.
487 session = DBConn().session()
488 suite = Suite.get(suite_id, session)
490 # We allow the process handler to catch and deal with any exceptions
491 rw = ReleaseWriter(suite)
492 rw.generate_release_files()
494 return (PROC_STATUS_SUCCESS, 'Release file written for %s' % suite.suite_name)
496 #######################################################################################
498 if __name__ == '__main__':