-
Notifications
You must be signed in to change notification settings - Fork 97
/
Copy pathdocker.py
321 lines (262 loc) · 11.1 KB
/
docker.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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
# SPDX-License-Identifier: Apache-2.0
#
# http://nexb.com and https://github.com/aboutcode-org/scancode.io
# The ScanCode.io software is licensed under the Apache License version 2.0.
# Data generated with ScanCode.io is provided as-is without warranties.
# ScanCode is a trademark of nexB Inc.
#
# You may not use this software except in compliance with the License.
# You may obtain a copy of the License at: http://apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software distributed
# under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
# CONDITIONS OF ANY KIND, either express or implied. See the License for the
# specific language governing permissions and limitations under the License.
#
# Data Generated with ScanCode.io is provided on an "AS IS" BASIS, WITHOUT WARRANTIES
# OR CONDITIONS OF ANY KIND, either express or implied. No content created from
# ScanCode.io should be considered or used as legal advice. Consult an Attorney
# for any legal advice.
#
# ScanCode.io is a free software code scanning tool from nexB Inc. and others.
# Visit https://github.com/aboutcode-org/scancode.io for support and download.
import logging
import posixpath
from collections import namedtuple
from pathlib import Path
from container_inspector.image import Image
from container_inspector.utils import extract_tar
from extractcode import EXTRACT_SUFFIX
from scanpipe import pipes
from scanpipe.pipes import flag
from scanpipe.pipes import rootfs
logger = logging.getLogger(__name__)
def get_tarballs_from_inputs(project):
"""
Return the tarballs from the `project` input/ work directory.
Supported file extensions: `.tar`, `.tar.gz`, `.tgz`.
"""
return [
tarball
for pattern in ("*.tar*", "*.tgz")
for tarball in project.inputs(pattern=pattern)
]
def extract_images_from_inputs(project):
"""
Collect all the tarballs from the `project` input/ work directory, extracts
each tarball to the tmp/ work directory and collects the images.
Return the `images` and an `errors` list of error messages that may have
happened during the extraction.
"""
target_path = project.tmp_path
images = []
errors = []
for tarball in get_tarballs_from_inputs(project):
extract_target = target_path / f"{tarball.name}{EXTRACT_SUFFIX}"
imgs, errs = extract_image_from_tarball(tarball, extract_target)
images.extend(imgs)
errors.extend(errs)
return images, errors
def extract_image_from_tarball(input_tarball, extract_target, verify=False):
"""
Extract images from an ``input_tarball`` to an ``extract_target`` directory
Path object and collects the extracted images.
Return the `images` and an `errors` list of error messages that may have
happened during the extraction.
"""
errors = extract_tar(
location=input_tarball,
target_dir=extract_target,
skip_symlinks=False,
as_events=False,
)
images = Image.get_images_from_dir(
extracted_location=str(extract_target),
verify=verify,
)
return images, errors
def extract_layers_from_images(project, images):
"""
Extract all layers from the provided `images` into the `project` codebase
work directory.
Return an `errors` list of error messages that may occur during the
extraction.
"""
return extract_layers_from_images_to_base_path(
base_path=project.codebase_path,
images=images,
)
def extract_layers_from_images_to_base_path(base_path, images):
"""
Extract all layers from the provided `images` into the `base_path` work
directory.
Return an `errors` list of error messages that may occur during the
extraction.
"""
errors = []
base_path = Path(base_path)
for image in images:
image_dirname = Path(image.extracted_location).name
target_path = base_path / image_dirname
for layer in image.layers:
extract_target = target_path / layer.layer_id
extract_errors = extract_tar(
location=layer.archive_location,
target_dir=extract_target,
skip_symlinks=False,
as_events=False,
)
errors.extend(extract_errors)
layer.extracted_location = str(extract_target)
return errors
def get_image_data(image, layer_path_segments=2):
"""
Return a mapping of image-related data given an `image`.
Keep only ``layer_path_segments`` trailing layer location segments (or keep
the locations unmodified if ``layer_path_segments`` is 0).
"""
exclude_from_img = ["extracted_location", "archive_location"]
image_data = {
key: value
for key, value in image.to_dict(layer_path_segments=layer_path_segments).items()
if key not in exclude_from_img
}
return image_data
def get_layer_tag(image_id, layer_id, layer_index, id_length=6):
"""
Return a "tag" crafted from the provided `image_id`, `layer_id`, and `layer_index`.
The purpose of this tag is to be short, clear and sortable.
For instance, given an image with an id:
785df58b6b3e120f59bce6cd10169a0c58b8837b24f382e27593e2eea011a0d8
and two layers from bottom to top as:
0690c89adf3e8c306d4ced085fc16d1d104dcfddd6dc637e141fa78be242a707
7a1d89d2653e8e4aa9011fd95034a4857109d6636f2ad32df470a196e5dd1585
we would get these two tags:
img-785df5-layer-01-0690c8
img-785df5-layer-02-7a1d89
"""
short_image_id = image_id[:id_length]
short_layer_id = layer_id[:id_length]
return f"img-{short_image_id}-layer-{layer_index:02}-{short_layer_id}"
def create_codebase_resources(project, image):
"""Create the CodebaseResource for an `image` in a `project`."""
for layer_index, layer in enumerate(image.layers, start=1):
layer_tag = get_layer_tag(image.image_id, layer.layer_id, layer_index)
for resource in layer.get_resources(with_dir=True):
pipes.make_codebase_resource(
project=project,
location=resource.location,
rootfs_path=resource.path,
tag=layer_tag,
)
def create_system_package(project, purl, package, layer, layer_tag):
"""Create system package and related resources."""
package_data = package.to_dict()
package_data["tag"] = layer_tag
created_package = pipes.update_or_create_package(project, package_data)
installed_files = []
if hasattr(package, "resources"):
installed_files = package.resources
# We have no files for this installed package, we cannot go further.
if not installed_files:
logger.info(f" No installed_files for: {purl}")
return
missing_resources = created_package.missing_resources[:]
modified_resources = created_package.modified_resources[:]
codebase_resources = project.codebaseresources.all()
for install_file in installed_files:
install_file_path = install_file.get_path(strip_root=True)
install_file_path = pipes.normalize_path(install_file_path)
layer_rootfs_path = posixpath.join(
layer.layer_id,
install_file_path.strip("/"),
)
logger.info(f" installed file rootfs_path: {install_file_path}")
logger.info(f" layer rootfs_path: {layer_rootfs_path}")
resource_qs = codebase_resources.filter(
path__endswith=layer_rootfs_path,
rootfs_path=install_file_path,
)
found_resource = False
for resource in resource_qs:
found_resource = True
if created_package not in resource.discovered_packages.all():
resource.discovered_packages.add(created_package)
resource.update(status=flag.SYSTEM_PACKAGE)
logger.info(f" added as system-package to: {purl}")
if rootfs.has_hash_diff(install_file, resource):
if install_file.path not in modified_resources:
modified_resources.append(install_file.path)
if not found_resource and install_file_path not in missing_resources:
missing_resources.append(install_file_path)
logger.info(f" installed file is missing: {install_file_path}")
created_package.update(
missing_resources=missing_resources,
modified_resources=modified_resources,
)
def scan_image_for_system_packages(project, image):
"""
Given a `project` and an `image` - this scans the `image` layer by layer for
installed system packages and creates a DiscoveredPackage for each.
Then for each installed DiscoveredPackage file, check if it exists
as a CodebaseResource. If exists, relate that CodebaseResource to its
DiscoveredPackage; otherwise, keep that as a missing file.
"""
if not image.distro:
raise rootfs.DistroNotFound("Distro not found.")
distro_id = image.distro.identifier
if distro_id not in rootfs.SUPPORTED_DISTROS:
raise rootfs.DistroNotSupported(f'Distro "{distro_id}" is not supported.')
layer_index_mapping = {
layer.layer_id: index for index, layer in enumerate(image.layers, start=1)
}
installed_packages = image.get_installed_packages(rootfs.package_getter)
for package_index, (purl, package, layer) in enumerate(installed_packages):
logger.info(f"Creating package #{package_index}: {purl}")
layer_index = layer_index_mapping.get(layer.layer_id)
layer_tag = get_layer_tag(image.image_id, layer.layer_id, layer_index)
create_system_package(project, purl, package, layer, layer_tag)
def flag_whiteout_codebase_resources(project):
"""
Tag overlayfs/AUFS whiteout special files CodebaseResource as "ignored-whiteout".
See https://github.com/opencontainers/image-spec/blob/master/layer.md#whiteouts
for details.
"""
whiteout_prefix = ".wh."
qs = project.codebaseresources.no_status()
qs.filter(name__startswith=whiteout_prefix).update(status=flag.IGNORED_WHITEOUT)
layer_fields = [
"layer_tag",
"created_by",
"layer_id",
"image_id",
"created",
"size",
"author",
"comment",
"archive_location",
]
Layer = namedtuple("Layer", layer_fields)
def get_layers_data(project):
"""Get list of structured layers data from project extra_data field."""
layers_data = []
images = project.extra_data.get("images", [])
if not isinstance(images, list):
return []
for image in images:
image_id = image.get("image_id")
for layer_index, layer in enumerate(image.get("layers", []), start=1):
layer_id = layer.get("layer_id")
layers_data.append(
Layer(
layer_tag=get_layer_tag(image_id, layer_id, layer_index),
created_by=layer.get("created_by"),
layer_id=layer_id,
image_id=image_id,
created=layer.get("created"),
size=layer.get("size"),
author=layer.get("author"),
comment=layer.get("comment"),
archive_location=layer.get("archive_location"),
)
)
return layers_data