Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docker/base/curlrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
--fail
--location
--retry 5
--retry-all-errors
--silent
--show-error
--write-out "curl (%{url_effective}): response: %{http_code}, time: %{time_total}, size: %{size_download}\n"
2 changes: 1 addition & 1 deletion kolla/image/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ def update_buildargs(self):
def builder(self, image):

def _test_malicious_tarball(archive, path):
tar_file = tarfile.open(archive, 'r|gz')
tar_file = tarfile.open(archive, 'r|*')
for n in tar_file.getnames():
if not os.path.abspath(os.path.join(path, n)).startswith(path):
tar_file.close()
Expand Down
72 changes: 72 additions & 0 deletions kolla/tests/test_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,9 +305,81 @@ def test_process_source(self, mock_get, mock_client,
else:
self.assertIsNotNone(get_result)

@mock.patch.dict(os.environ, clear=True)
@mock.patch('docker.APIClient')
def test_local_directory(self, mock_client):
tmpdir = tempfile.mkdtemp()
file_name = 'test.txt'
file_path = os.path.join(tmpdir, file_name)
saved_umask = os.umask(0o077)

try:
with open(file_path, 'w') as f:
f.write('Hello')

self.dc = mock_client
self.image.plugins = [{
'name': 'fake-image-base-plugin-test',
'type': 'local',
'enabled': True,
'source': tmpdir}
]
push_queue = mock.Mock()
builder = build.BuildTask(self.conf, self.image, push_queue)
builder.run()
self.assertTrue(builder.success)

except IOError:
print('IOError')
else:
os.remove(file_path)
finally:
os.umask(saved_umask)
os.rmdir(tmpdir)

@mock.patch.dict(os.environ, clear=True)
@mock.patch('docker.APIClient')
def test_malicious_tar(self, mock_client):
tmpdir = tempfile.mkdtemp()
file_name = 'test.txt'
archive_name = 'my_archive.tar'
file_path = os.path.join(tmpdir, file_name)
archive_path = os.path.join(tmpdir, archive_name)
# Ensure the file is read/write by the creator only
saved_umask = os.umask(0o077)

try:
with open(file_path, 'w') as f:
f.write('Hello')

with tarfile.open(archive_path, 'w') as tar:
tar.add(file_path, arcname='../test.txt')

self.dc = mock_client
self.image.plugins = [{
'name': 'fake-image-base-plugin-test',
'type': 'local',
'enabled': True,
'source': archive_path}
]

push_queue = mock.Mock()
builder = build.BuildTask(self.conf, self.image, push_queue)
builder.run()
self.assertFalse(builder.success)

except IOError:
print('IOError')
else:
os.remove(file_path)
os.remove(archive_path)
finally:
os.umask(saved_umask)
os.rmdir(tmpdir)

@mock.patch.dict(os.environ, clear=True)
@mock.patch('docker.APIClient')
def test_malicious_tar_gz(self, mock_client):
tmpdir = tempfile.mkdtemp()
file_name = 'test.txt'
archive_name = 'my_archive.tar.gz'
Expand Down