-
Notifications
You must be signed in to change notification settings - Fork 200
/
Copy pathmetadata.py
302 lines (260 loc) · 11.6 KB
/
metadata.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
# -*- coding: utf-8 -*-
# Copyright 2007-2018 Red Hat, Inc. and others.
#
# This file is part of Bodhi.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
"""Create metadata files when mashing repositories."""
from datetime import datetime
import logging
import os
import shelve
import shutil
import tempfile
from kitchen.text.converters import to_bytes
import createrepo_c as cr
import six
from bodhi.server import util
from bodhi.server.buildsys import get_session
from bodhi.server.config import config
from bodhi.server.models import Build, UpdateStatus, UpdateRequest, UpdateSuggestion
__version__ = '2.0'
log = logging.getLogger(__name__)
def insert_in_repo(comp_type, repodata, filetype, extension, source):
"""
Inject a file into the repodata with the help of createrepo_c.
Args:
comp_type (int): createrepo_c compression type indication.
repodata (basestring): The path to the repo where the metadata will be inserted.
filetype (basestring): What type of metadata will be inserted by createrepo_c.
This does allow any string to be inserted (custom types). There are some
types which are used with dnf repos as primary, updateinfo, comps, filelist etc.
extension (basestring): The file extension (xml, sqlite).
source (basestring): A file path. File holds the dump of metadata until
copied to the repodata folder.
"""
log.info('Inserting %s.%s into %s', filetype, extension, repodata)
target_fname = os.path.join(repodata, '%s.%s' % (filetype, extension))
shutil.copyfile(source, target_fname)
repomd_xml = os.path.join(repodata, 'repomd.xml')
repomd = cr.Repomd(repomd_xml)
# create a new record for our repomd.xml
rec = cr.RepomdRecord(filetype, target_fname)
# compress our metadata file with the comp_type
rec_comp = rec.compress_and_fill(cr.SHA256, comp_type)
# add hash to the compresed metadata file
rec_comp.rename_file()
# set type of metadata
rec_comp.type = filetype
# insert metadata about our metadata in repomd.xml
repomd.set_record(rec_comp)
with open(repomd_xml, 'w') as repomd_file:
repomd_file.write(repomd.xml_dump())
os.unlink(target_fname)
def modifyrepo(comp_type, compose_path, filetype, extension, source):
"""
Inject a file into the repodata for each architecture with the help of createrepo_c.
Args:
compose_path (basestring): The path to the compose where the metadata will be inserted.
filetype (basestring): What type of metadata will be inserted by createrepo_c.
This does allow any string to be inserted (custom types). There are some
types which are used with dnf repos as primary, updateinfo, comps, filelist etc.
extension (basestring): The file extension (xml, sqlite).
source (basestring): A file path. File holds the dump of metadata until
copied to the repodata folder.
"""
repo_path = os.path.join(compose_path, 'compose', 'Everything')
for arch in os.listdir(repo_path):
if arch == 'source':
repodata = os.path.join(repo_path, arch, 'tree', 'repodata')
else:
repodata = os.path.join(repo_path, arch, 'os', 'repodata')
insert_in_repo(comp_type, repodata, filetype, extension, source)
class UpdateInfoMetadata(object):
"""
This class represents the updateinfo.xml yum metadata.
It is generated during push time by the bodhi masher based on koji tags
and is injected into the yum repodata using the `modifyrepo_c` tool,
which is included in the `createrepo_c` package.
"""
def __init__(self, release, request, db, mashdir, close_shelf=True):
"""
Initialize the UpdateInfoMetadata object.
Args:
release (bodhi.server.models.Release): The Release that is being mashed.
request (bodhi.server.models.UpdateRequest): The Request that is being mashed.
db (): A database session to be used for queries.
mashdir (basestring): A path to the mashdir.
close_shelf (bool): Whether to close the shelve, which is used to cache updateinfo
between mashes.
"""
self.request = request
if request is UpdateRequest.stable:
self.tag = release.stable_tag
else:
self.tag = release.testing_tag
self.db = db
self.updates = set()
self.builds = {}
self._from = config.get('bodhi_email')
if config.get('cache_dir'):
self.shelf = shelve.open(os.path.join(config.get('cache_dir'), '%s.shelve' % self.tag))
else:
# If we have no cache dir, let's at least cache in-memory.
self.shelf = {}
close_shelf = False
self._fetch_updates()
self.uinfo = cr.UpdateInfo()
self.comp_type = cr.XZ
if release.id_prefix == u'FEDORA-EPEL':
# FIXME: I'm not sure which versions of RHEL support xz metadata
# compression, so use the lowest common denominator for now.
self.comp_type = cr.BZ2
self.uinfo = cr.UpdateInfo()
for update in self.updates:
if not update.alias:
update.assign_alias()
self.add_update(update)
if close_shelf:
self.shelf.close()
def _fetch_updates(self):
"""Based on our given koji tag, populate a list of Update objects."""
log.debug("Fetching builds tagged with '%s'" % self.tag)
kojiBuilds = get_session().listTagged(self.tag, latest=True)
nonexistent = []
log.debug("%d builds found" % len(kojiBuilds))
for build in kojiBuilds:
self.builds[build['nvr']] = build
build_obj = self.db.query(Build).filter_by(nvr=six.text_type(build['nvr'])).first()
if build_obj:
if build_obj.update:
self.updates.add(build_obj.update)
else:
log.warning('%s does not have a corresponding update' % build['nvr'])
else:
nonexistent.append(build['nvr'])
if nonexistent:
log.warning("Couldn't find the following koji builds tagged as "
"%s in bodhi: %s" % (self.tag, nonexistent))
def get_rpms(self, koji, nvr):
"""
Retrieve the given RPM nvr from the cache if available, or from Koji if not available.
Args:
koji (koji.ClientSession): An initialized Koji client.
nvr (basestring): The nvr for which you wish to retrieve Koji data.
Returns:
list: A list of dictionaries describing all the subpackages that are part of the given
nvr.
"""
if str(nvr) in self.shelf:
return self.shelf[str(nvr)]
if nvr in self.builds:
buildid = self.builds[nvr]['id']
else:
buildid = koji.getBuild(nvr)['id']
rpms = koji.listBuildRPMs(buildid)
self.shelf[str(nvr)] = rpms
return rpms
def add_update(self, update):
"""
Generate the extended metadata for a given update, adding it to self.uinfo.
Args:
update (bodhi.server.models.Update): The Update to be added to self.uinfo.
"""
rec = cr.UpdateRecord()
rec.version = __version__
rec.fromstr = config.get('bodhi_email')
rec.status = update.status.value
rec.type = update.type.value
rec.id = to_bytes(update.alias)
rec.title = to_bytes(update.title)
rec.severity = util.severity_updateinfo_str(update.severity.value)
rec.summary = to_bytes('%s %s update' % (update.get_title(),
update.type.value))
rec.description = to_bytes(update.notes)
rec.release = to_bytes(update.release.long_name)
rec.rights = config.get('updateinfo_rights')
if update.date_pushed:
rec.issued_date = update.date_pushed
else:
# Sometimes we only set the date_pushed after it's pushed out, however,
# it seems that Satellite does not like update entries without issued_date.
# Since we know that we are pushing it now, and the next push will get the data
# correctly, let's just insert utcnow().
rec.issued_date = datetime.utcnow()
if update.date_modified:
rec.updated_date = update.date_modified
else:
rec.updated_date = datetime.utcnow()
col = cr.UpdateCollection()
col.name = to_bytes(update.release.long_name)
col.shortname = to_bytes(update.release.name)
koji = get_session()
for build in update.builds:
rpms = self.get_rpms(koji, build.nvr)
for rpm in rpms:
pkg = cr.UpdateCollectionPackage()
pkg.name = rpm['name']
pkg.version = rpm['version']
pkg.release = rpm['release']
if rpm['epoch'] is not None:
pkg.epoch = str(rpm['epoch'])
else:
pkg.epoch = '0'
pkg.arch = rpm['arch']
# TODO: how do we handle UpdateSuggestion.logout, etc?
pkg.reboot_suggested = update.suggest is UpdateSuggestion.reboot
filename = '%s.%s.rpm' % (rpm['nvr'], rpm['arch'])
pkg.filename = filename
# Build the URL
if rpm['arch'] == 'src':
arch = 'SRPMS'
elif rpm['arch'] in ('noarch', 'i686'):
arch = 'i386'
else:
arch = rpm['arch']
pkg.src = os.path.join(
config.get('file_url'),
update.status is UpdateStatus.testing and 'testing' or '',
str(update.release.version), arch, filename[0], filename)
col.append(pkg)
rec.append_collection(col)
# Create references for each bug
for bug in update.bugs:
ref = cr.UpdateReference()
ref.type = 'bugzilla'
ref.id = to_bytes(bug.bug_id)
ref.href = to_bytes(bug.url)
ref.title = to_bytes(bug.title)
rec.append_reference(ref)
# Create references for each CVE
for cve in update.cves:
ref = cr.UpdateReference()
ref.type = 'cve'
ref.id = to_bytes(cve.cve_id)
ref.href = to_bytes(cve.url)
rec.append_reference(ref)
self.uinfo.append(rec)
def insert_updateinfo(self, compose_path):
"""
Add the updateinfo.xml file to the repository.
Args:
compose_path (basestring): The path to the compose where the metadata will be inserted.
"""
fd, tmp_file_path = tempfile.mkstemp()
os.write(fd, self.uinfo.xml_dump().encode('utf-8'))
os.close(fd)
modifyrepo(self.comp_type, compose_path, 'updateinfo', 'xml', tmp_file_path)
os.unlink(tmp_file_path)