mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
iso_extract: Reimplement using 7zip (not requiring root) (#24937)
* Reimplement iso_extract using 7zip (not requiring root) So one of the drawbacks of the original implementation is that it required root for mounting/unmount the ISO image. This is now no longer needed as we use 7zip for extracting files from the ISO. * Fall back to using mount/umount if 7zip not found As discussed with others. Also improved integration tests.
This commit is contained in:
parent
9364fa202f
commit
25e67d804c
8 changed files with 307 additions and 60 deletions
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
# Copyright: (c) 2013, Jeroen Hoekx <jeroen.hoekx@dsquare.be>
|
# Copyright: (c) 2013, Jeroen Hoekx <jeroen.hoekx@dsquare.be>
|
||||||
# Copyright: (c) 2016, Matt Robinson <git@nerdoftheherd.com>
|
# Copyright: (c) 2016, Matt Robinson <git@nerdoftheherd.com>
|
||||||
|
# Copyright: (c) 2017, Dag Wieers <dag@wieers.com>
|
||||||
# Copyright: (c) 2017, Ansible Project
|
# Copyright: (c) 2017, Ansible Project
|
||||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
|
||||||
|
@ -13,36 +14,60 @@ ANSIBLE_METADATA = {'metadata_version': '1.0',
|
||||||
'status': ['preview'],
|
'status': ['preview'],
|
||||||
'supported_by': 'community'}
|
'supported_by': 'community'}
|
||||||
|
|
||||||
|
|
||||||
DOCUMENTATION = r'''
|
DOCUMENTATION = r'''
|
||||||
---
|
---
|
||||||
author:
|
author:
|
||||||
- Jeroen Hoekx (@jhoekx)
|
- Jeroen Hoekx (@jhoekx)
|
||||||
- Matt Robinson (@ribbons)
|
- Matt Robinson (@ribbons)
|
||||||
|
- Dag Wieers (@dagwieers)
|
||||||
module: iso_extract
|
module: iso_extract
|
||||||
short_description: Extract files from an ISO image.
|
short_description: Extract files from an ISO image
|
||||||
description:
|
description:
|
||||||
- This module mounts an iso image in a temporary directory and extracts
|
- This module has two possible ways of operation.
|
||||||
files from there to a given destination.
|
- If 7zip is installed on the system, this module extracts files from an ISO
|
||||||
version_added: "2.3"
|
into a temporary directory and copies files to a given destination,
|
||||||
|
if needed.
|
||||||
|
- If the user has mount-capabilities (CAP_SYS_ADMIN on Linux) this module
|
||||||
|
mounts the ISO image to a temporary location, and copies files to a given
|
||||||
|
destination, if needed.
|
||||||
|
version_added: '2.3'
|
||||||
|
requirements:
|
||||||
|
- Either 7z (from I(7zip) or I(p7zip) package)
|
||||||
|
- Or mount capabilities (root-access, or CAP_SYS_ADMIN capability on Linux)
|
||||||
options:
|
options:
|
||||||
image:
|
image:
|
||||||
description:
|
description:
|
||||||
- The ISO image to extract files from.
|
- The ISO image to extract files from.
|
||||||
required: true
|
required: yes
|
||||||
aliases: ['path', 'src']
|
aliases: [ path, src ]
|
||||||
dest:
|
dest:
|
||||||
description:
|
description:
|
||||||
- The destination directory to extract files to.
|
- The destination directory to extract files to.
|
||||||
required: true
|
required: yes
|
||||||
files:
|
files:
|
||||||
description:
|
description:
|
||||||
- A list of files to extract from the image.
|
- A list of files to extract from the image.
|
||||||
- Extracting directories does not work.
|
- Extracting directories does not work.
|
||||||
required: true
|
required: yes
|
||||||
|
force:
|
||||||
|
description:
|
||||||
|
- If C(yes), which will replace the remote file when contents are different than the source.
|
||||||
|
- If C(no), the file will only be extracted and copied if the destination does not already exist.
|
||||||
|
type: bool
|
||||||
|
default: 'yes'
|
||||||
|
aliases: [ thirsty ]
|
||||||
|
version_added: '2.4'
|
||||||
|
executable:
|
||||||
|
description:
|
||||||
|
- The path to the C(7z) executable to use for extracting files from the ISO.
|
||||||
|
default: '7z'
|
||||||
|
version_added: '2.4'
|
||||||
notes:
|
notes:
|
||||||
- Only the file hash (content) is taken into account for extracting files
|
- Only the file checksum (content) is taken into account when extracting files
|
||||||
from the ISO image.
|
from the ISO image. If C(force=no), only checks the presence of the file.
|
||||||
|
- In Ansible v2.3 this module was using C(mount) and C(umount) commands only,
|
||||||
|
requiring root access. This is no longer needed with the introduction of 7zip
|
||||||
|
for extraction.
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = r'''
|
EXAMPLES = r'''
|
||||||
|
@ -59,63 +84,132 @@ RETURN = r'''
|
||||||
#
|
#
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import os
|
import os.path
|
||||||
import shutil
|
import shutil
|
||||||
import tempfile
|
import tempfile
|
||||||
|
|
||||||
|
try: # python 3.3+
|
||||||
|
from shlex import quote
|
||||||
|
except ImportError: # older python
|
||||||
|
from pipes import quote
|
||||||
|
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
from ansible.module_utils.pycompat24 import get_exception
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec = dict(
|
argument_spec=dict(
|
||||||
image = dict(required=True, type='path', aliases=['path', 'src']),
|
image=dict(type='path', required=True, aliases=['path', 'src']),
|
||||||
dest = dict(required=True, type='path'),
|
dest=dict(type='path', required=True),
|
||||||
files = dict(required=True, type='list'),
|
files=dict(type='list', required=True),
|
||||||
|
force=dict(type='bool', default=True, aliases=['thirsty']),
|
||||||
|
executable=dict(type='path'), # No default on purpose
|
||||||
),
|
),
|
||||||
supports_check_mode = True,
|
supports_check_mode=True,
|
||||||
)
|
)
|
||||||
image = module.params['image']
|
image = module.params['image']
|
||||||
dest = module.params['dest']
|
dest = module.params['dest']
|
||||||
files = module.params['files']
|
files = module.params['files']
|
||||||
|
force = module.params['force']
|
||||||
|
executable = module.params['executable']
|
||||||
|
|
||||||
changed = False
|
result = dict(
|
||||||
|
changed=False,
|
||||||
|
dest=dest,
|
||||||
|
image=image,
|
||||||
|
)
|
||||||
|
|
||||||
|
# We want to know if the user provided it or not, so we set default here
|
||||||
|
if executable is None:
|
||||||
|
executable = '7z'
|
||||||
|
|
||||||
|
binary = module.get_bin_path(executable, None)
|
||||||
|
|
||||||
|
# When executable was provided and binary not found, warn user !
|
||||||
|
if module.params['executable'] is not None and not binary:
|
||||||
|
module.warn("Executable '%s' is not found on the system, trying to mount ISO instead." % executable)
|
||||||
|
|
||||||
if not os.path.exists(dest):
|
if not os.path.exists(dest):
|
||||||
module.fail_json(msg='Directory "%s" does not exist' % dest)
|
module.fail_json(msg="Directory '%s' does not exist" % dest)
|
||||||
|
|
||||||
if not os.path.exists(os.path.dirname(image)):
|
if not os.path.exists(os.path.dirname(image)):
|
||||||
module.fail_json(msg='ISO image "%s" does not exist' % image)
|
module.fail_json(msg="ISO image '%s' does not exist" % image)
|
||||||
|
|
||||||
|
result['files'] = []
|
||||||
|
extract_files = list(files)
|
||||||
|
|
||||||
|
if not force:
|
||||||
|
# Check if we have to process any files based on existence
|
||||||
|
for f in files:
|
||||||
|
dest_file = os.path.join(dest, os.path.basename(f))
|
||||||
|
if os.path.exists(dest_file):
|
||||||
|
result['files'].append(dict(
|
||||||
|
checksum=None,
|
||||||
|
dest=dest_file,
|
||||||
|
src=f,
|
||||||
|
))
|
||||||
|
extract_files.remove(f)
|
||||||
|
|
||||||
|
if not extract_files:
|
||||||
|
module.exit_json(**result)
|
||||||
|
|
||||||
tmp_dir = tempfile.mkdtemp()
|
tmp_dir = tempfile.mkdtemp()
|
||||||
rc, out, err = module.run_command('mount -o loop,ro "%s" "%s"' % (image, tmp_dir))
|
|
||||||
|
# Use 7zip when we have a binary, otherwise try to mount
|
||||||
|
if binary:
|
||||||
|
cmd = '%s x "%s" -o"%s" %s' % (binary, image, tmp_dir, ' '.join([quote(f) for f in extract_files]))
|
||||||
|
else:
|
||||||
|
cmd = 'mount -o loop,ro "%s" "%s"' % (image, tmp_dir)
|
||||||
|
|
||||||
|
rc, out, err = module.run_command(cmd)
|
||||||
if rc != 0:
|
if rc != 0:
|
||||||
os.rmdir(tmp_dir)
|
result.update(dict(
|
||||||
module.fail_json(msg='Failed to mount ISO image "%s"' % image)
|
cmd=cmd,
|
||||||
|
rc=rc,
|
||||||
|
stderr=err,
|
||||||
|
stdout=out,
|
||||||
|
))
|
||||||
|
shutil.rmtree(tmp_dir)
|
||||||
|
|
||||||
|
if binary:
|
||||||
|
module.fail_json(msg="Failed to extract from ISO image '%s' to '%s'" % (image, tmp_dir), **result)
|
||||||
|
else:
|
||||||
|
module.fail_json(msg="Failed to mount ISO image '%s' to '%s', and we could not find executable '%s'." % (image, tmp_dir, executable), **result)
|
||||||
|
|
||||||
e = None
|
|
||||||
try:
|
try:
|
||||||
for file in files:
|
for f in extract_files:
|
||||||
tmp_src = os.path.join(tmp_dir, file)
|
tmp_src = os.path.join(tmp_dir, f)
|
||||||
src_hash = module.sha1(tmp_src)
|
if not os.path.exists(tmp_src):
|
||||||
|
module.fail_json(msg="Failed to extract '%s' from ISO image" % f, **result)
|
||||||
|
|
||||||
dest_file = os.path.join(dest, os.path.basename(file))
|
src_checksum = module.sha1(tmp_src)
|
||||||
|
|
||||||
|
dest_file = os.path.join(dest, os.path.basename(f))
|
||||||
|
|
||||||
if os.path.exists(dest_file):
|
if os.path.exists(dest_file):
|
||||||
dest_hash = module.sha1(dest_file)
|
dest_checksum = module.sha1(dest_file)
|
||||||
else:
|
else:
|
||||||
dest_hash = None
|
dest_checksum = None
|
||||||
|
|
||||||
if src_hash != dest_hash:
|
result['files'].append(dict(
|
||||||
|
checksum=src_checksum,
|
||||||
|
dest=dest_file,
|
||||||
|
src=f,
|
||||||
|
))
|
||||||
|
|
||||||
|
if src_checksum != dest_checksum:
|
||||||
if not module.check_mode:
|
if not module.check_mode:
|
||||||
shutil.copy(tmp_src, dest_file)
|
shutil.copy(tmp_src, dest_file)
|
||||||
|
|
||||||
changed = True
|
result['changed'] = True
|
||||||
finally:
|
finally:
|
||||||
module.run_command('umount "%s"' % tmp_dir)
|
if not binary:
|
||||||
os.rmdir(tmp_dir)
|
module.run_command('umount "%s"' % tmp_dir)
|
||||||
|
|
||||||
|
shutil.rmtree(tmp_dir)
|
||||||
|
|
||||||
|
module.exit_json(**result)
|
||||||
|
|
||||||
module.exit_json(changed=changed)
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
|
@ -1,5 +1,2 @@
|
||||||
posix/ci/group1
|
posix/ci/group1
|
||||||
needs/privileged
|
|
||||||
needs/root
|
|
||||||
skip/freebsd
|
|
||||||
skip/osx
|
skip/osx
|
||||||
|
|
Binary file not shown.
74
test/integration/targets/iso_extract/tasks/7zip.yml
Normal file
74
test/integration/targets/iso_extract/tasks/7zip.yml
Normal file
|
@ -0,0 +1,74 @@
|
||||||
|
# Test code for the iso_extract module.
|
||||||
|
# (c) 2017, James Tanner <tanner.jc@gmail.com>
|
||||||
|
# (c) 2017, Dag Wieers <dag@wieers.com>
|
||||||
|
|
||||||
|
# This file is part of Ansible
|
||||||
|
#
|
||||||
|
# Ansible 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 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# Ansible 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 Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
- name: Gather facts
|
||||||
|
setup:
|
||||||
|
become: yes
|
||||||
|
|
||||||
|
- name: Add EPEL repository
|
||||||
|
yum_repository:
|
||||||
|
name: epel
|
||||||
|
description: EPEL yum repo
|
||||||
|
baseurl: https://download.fedoraproject.org/pub/epel/{{ ansible_distribution_major_version }}/{{ ansible_architecture }}/
|
||||||
|
state: present
|
||||||
|
when: ansible_distribution in ['CentOS']
|
||||||
|
|
||||||
|
- name: Install 7zip package if we are on Fedora or CentOS
|
||||||
|
yum:
|
||||||
|
name: p7zip-plugins
|
||||||
|
state: installed
|
||||||
|
update_cache: yes
|
||||||
|
become: yes
|
||||||
|
when: ansible_distribution in ['Fedora', 'CentOS']
|
||||||
|
|
||||||
|
- name: Install 7zip package if we are on OpenSUSE
|
||||||
|
zypper:
|
||||||
|
name: p7zip
|
||||||
|
state: installed
|
||||||
|
update_cache: yes
|
||||||
|
become: yes
|
||||||
|
when: ansible_distribution in ['openSUSE Leap']
|
||||||
|
|
||||||
|
- name: Install 7zip package if we are on Ubuntu
|
||||||
|
apt:
|
||||||
|
name: p7zip-full
|
||||||
|
state: installed
|
||||||
|
update_cache: yes
|
||||||
|
become: yes
|
||||||
|
when: ansible_distribution in ['Ubuntu']
|
||||||
|
|
||||||
|
# FIXME: The homebrew module no longer seems to work
|
||||||
|
# "Error: Running Homebrew as root is extremely dangerous."
|
||||||
|
- name: Install 7zip package if we are on MacOSX
|
||||||
|
# macports:
|
||||||
|
# name: p7zip
|
||||||
|
# state: installed
|
||||||
|
# update_cache: yes
|
||||||
|
homebrew:
|
||||||
|
name: p7zip
|
||||||
|
state: present
|
||||||
|
update_homebrew: yes
|
||||||
|
when: ansible_distribution in ['MacOSX']
|
||||||
|
|
||||||
|
- name: Install 7zip package if we are on FreeBSD
|
||||||
|
pkgng:
|
||||||
|
name: p7zip
|
||||||
|
state: present
|
||||||
|
become: yes
|
||||||
|
when: ansible_distribution in ['FreeBSD']
|
|
@ -1,5 +1,6 @@
|
||||||
# Test code for the iso_extract module.
|
# Test code for the iso_extract module.
|
||||||
# (c) 2017, James Tanner <tanner.jc@gmail.com>
|
# (c) 2017, James Tanner <tanner.jc@gmail.com>
|
||||||
|
# (c) 2017, Dag Wieers <dag@wieers.com>
|
||||||
|
|
||||||
# This file is part of Ansible
|
# This file is part of Ansible
|
||||||
#
|
#
|
||||||
|
@ -16,30 +17,27 @@
|
||||||
# You should have received a copy of the GNU General Public License
|
# You should have received a copy of the GNU General Public License
|
||||||
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
- set_fact: output_dir_test={{output_dir}}/test_command_raw
|
- set_fact:
|
||||||
|
output_dir_test: '{{ output_dir }}/test_iso_extract'
|
||||||
|
|
||||||
- name: make sure our testing sub-directory does not exist
|
- name: Install 7zip
|
||||||
file: path="{{ output_dir_test }}" state=absent
|
include_tasks: 7zip.yml
|
||||||
|
|
||||||
- name: create our testing sub-directory
|
- name: Prepare environment
|
||||||
file: path="{{ output_dir_test }}" state=directory
|
include_tasks: prepare.yml
|
||||||
|
|
||||||
##
|
- name: Test in normal mode
|
||||||
## iso_extract
|
include_tasks: tests.yml
|
||||||
##
|
vars:
|
||||||
|
in_check_mode: no
|
||||||
|
|
||||||
- name: copy the iso to the test dir
|
- name: Prepare environment
|
||||||
copy:
|
include_tasks: prepare.yml
|
||||||
src: test.iso
|
|
||||||
dest: "{{ output_dir_test }}"
|
|
||||||
|
|
||||||
- name: extract the iso
|
- name: Test in check-mode
|
||||||
iso_extract:
|
include_tasks: tests.yml
|
||||||
image: "{{ output_dir_test }}/test.iso"
|
vars:
|
||||||
dest: "{{ output_dir_test }}"
|
in_check_mode: yes
|
||||||
files:
|
check_mode: yes
|
||||||
- 1.txt
|
|
||||||
- 2.txt
|
|
||||||
register: iso_extract_test0
|
|
||||||
|
|
||||||
# FIXME - fill this in after figuring out how to allow mounts
|
# FIXME - fill this in after figuring out how to allow mounts
|
||||||
|
|
33
test/integration/targets/iso_extract/tasks/prepare.yml
Normal file
33
test/integration/targets/iso_extract/tasks/prepare.yml
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
# Test code for the iso_extract module.
|
||||||
|
# (c) 2017, James Tanner <tanner.jc@gmail.com>
|
||||||
|
# (c) 2017, Dag Wieers <dag@wieers.com>
|
||||||
|
|
||||||
|
# This file is part of Ansible
|
||||||
|
#
|
||||||
|
# Ansible 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 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# Ansible 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 Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
- name: Make sure our testing sub-directory does not exist
|
||||||
|
file:
|
||||||
|
path: '{{ output_dir_test }}'
|
||||||
|
state: absent
|
||||||
|
|
||||||
|
- name: Create our testing sub-directory
|
||||||
|
file:
|
||||||
|
path: '{{ output_dir_test }}'
|
||||||
|
state: directory
|
||||||
|
|
||||||
|
- name: copy the iso to the test dir
|
||||||
|
copy:
|
||||||
|
src: test.iso
|
||||||
|
dest: '{{ output_dir_test }}'
|
52
test/integration/targets/iso_extract/tasks/tests.yml
Normal file
52
test/integration/targets/iso_extract/tasks/tests.yml
Normal file
|
@ -0,0 +1,52 @@
|
||||||
|
# Test code for the iso_extract module.
|
||||||
|
# (c) 2017, James Tanner <tanner.jc@gmail.com>
|
||||||
|
# (c) 2017, Dag Wieers <dag@wieers.com>
|
||||||
|
|
||||||
|
# This file is part of Ansible
|
||||||
|
#
|
||||||
|
# Ansible 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 3 of the License, or
|
||||||
|
# (at your option) any later version.
|
||||||
|
#
|
||||||
|
# Ansible 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 Ansible. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
- name: Extract the iso
|
||||||
|
iso_extract:
|
||||||
|
image: '{{ output_dir_test }}/test.iso'
|
||||||
|
dest: '{{ output_dir_test }}'
|
||||||
|
files:
|
||||||
|
- 1.txt
|
||||||
|
- 2.txt
|
||||||
|
register: iso_extract_test0
|
||||||
|
|
||||||
|
- assert:
|
||||||
|
that:
|
||||||
|
- iso_extract_test0|changed == true
|
||||||
|
|
||||||
|
- name: Extract the iso again
|
||||||
|
iso_extract:
|
||||||
|
image: '{{ output_dir_test }}/test.iso'
|
||||||
|
dest: '{{ output_dir_test }}'
|
||||||
|
files:
|
||||||
|
- 1.txt
|
||||||
|
- 2.txt
|
||||||
|
register: iso_extract_test0_again
|
||||||
|
|
||||||
|
- name: Test iso_extract_test0_again (normal mode)
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- iso_extract_test0_again|changed == false
|
||||||
|
when: not in_check_mode
|
||||||
|
|
||||||
|
- name: Test iso_extract_test0_again (check-mode)
|
||||||
|
assert:
|
||||||
|
that:
|
||||||
|
- iso_extract_test0_again|changed == true
|
||||||
|
when: in_check_mode
|
|
@ -217,7 +217,6 @@ lib/ansible/modules/files/archive.py
|
||||||
lib/ansible/modules/files/assemble.py
|
lib/ansible/modules/files/assemble.py
|
||||||
lib/ansible/modules/files/blockinfile.py
|
lib/ansible/modules/files/blockinfile.py
|
||||||
lib/ansible/modules/files/ini_file.py
|
lib/ansible/modules/files/ini_file.py
|
||||||
lib/ansible/modules/files/iso_extract.py
|
|
||||||
lib/ansible/modules/files/replace.py
|
lib/ansible/modules/files/replace.py
|
||||||
lib/ansible/modules/files/synchronize.py
|
lib/ansible/modules/files/synchronize.py
|
||||||
lib/ansible/modules/files/tempfile.py
|
lib/ansible/modules/files/tempfile.py
|
||||||
|
|
Loading…
Reference in a new issue