mirror of
https://github.com/ansible/awx.git
synced 2026-03-06 19:21:06 -03:30
fix iso when private_data_dir is more than 1 subdir
* ISO job runs will now correctly mirror the control node private_data_dir structure even when/if the private_data_dir is multiple directories deep. * The filesystem jail for bubblewrap now lives in /tmp/bwrap_<job_id>_xxx along side private_data_dir /tmp/bwrap_<job_id>_xxx/awx_<job_id>>_xxx This allows for the cleanup job to remove all dirs for a job. * Modified cleanup job to work with new /tmp/bwrap_<job_id>_xxx schema
This commit is contained in:
committed by
Ryan Petrello
parent
de4d73d656
commit
20e77c0092
@@ -169,7 +169,7 @@ class IsolatedManager(object):
|
|||||||
|
|
||||||
extravars = {
|
extravars = {
|
||||||
'src': self.private_data_dir,
|
'src': self.private_data_dir,
|
||||||
'dest': settings.AWX_PROOT_BASE_PATH,
|
'dest': os.path.split(self.private_data_dir)[0],
|
||||||
'ident': self.ident,
|
'ident': self.ident,
|
||||||
'job_id': self.instance.id,
|
'job_id': self.instance.id,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -998,14 +998,7 @@ class BaseTask(object):
|
|||||||
show_paths = self.proot_show_paths + local_paths + \
|
show_paths = self.proot_show_paths + local_paths + \
|
||||||
settings.AWX_PROOT_SHOW_PATHS
|
settings.AWX_PROOT_SHOW_PATHS
|
||||||
|
|
||||||
pi_path = settings.AWX_PROOT_BASE_PATH
|
pi_path = os.path.split(private_data_dir)[0]
|
||||||
if not self.instance.is_isolated() and not self.instance.is_containerized:
|
|
||||||
pi_path = tempfile.mkdtemp(
|
|
||||||
prefix='ansible_runner_pi_',
|
|
||||||
dir=settings.AWX_PROOT_BASE_PATH
|
|
||||||
)
|
|
||||||
os.chmod(pi_path, stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR)
|
|
||||||
self.cleanup_paths.append(pi_path)
|
|
||||||
|
|
||||||
process_isolation_params = {
|
process_isolation_params = {
|
||||||
'process_isolation': True,
|
'process_isolation': True,
|
||||||
|
|||||||
@@ -552,8 +552,8 @@ class TestGenericRun():
|
|||||||
task.should_use_proot = lambda instance: True
|
task.should_use_proot = lambda instance: True
|
||||||
task.instance = job
|
task.instance = job
|
||||||
|
|
||||||
private_data_dir = '/foo'
|
private_data_dir = os.path.join(settings.AWX_PROOT_BASE_PATH, 'foo')
|
||||||
cwd = '/bar'
|
cwd = '/the/bar'
|
||||||
|
|
||||||
settings.AWX_PROOT_HIDE_PATHS = ['/AWX_PROOT_HIDE_PATHS1', '/AWX_PROOT_HIDE_PATHS2']
|
settings.AWX_PROOT_HIDE_PATHS = ['/AWX_PROOT_HIDE_PATHS1', '/AWX_PROOT_HIDE_PATHS2']
|
||||||
settings.ANSIBLE_VENV_PATH = '/ANSIBLE_VENV_PATH'
|
settings.ANSIBLE_VENV_PATH = '/ANSIBLE_VENV_PATH'
|
||||||
@@ -578,7 +578,7 @@ class TestGenericRun():
|
|||||||
'/AWX_PROOT_HIDE_PATHS1',
|
'/AWX_PROOT_HIDE_PATHS1',
|
||||||
'/AWX_PROOT_HIDE_PATHS2']:
|
'/AWX_PROOT_HIDE_PATHS2']:
|
||||||
assert p in process_isolation_params['process_isolation_hide_paths']
|
assert p in process_isolation_params['process_isolation_hide_paths']
|
||||||
assert 9 == len(process_isolation_params['process_isolation_hide_paths'])
|
assert 11 == len(process_isolation_params['process_isolation_hide_paths'])
|
||||||
assert '/ANSIBLE_VENV_PATH' in process_isolation_params['process_isolation_ro_paths']
|
assert '/ANSIBLE_VENV_PATH' in process_isolation_params['process_isolation_ro_paths']
|
||||||
assert '/AWX_VENV_PATH' in process_isolation_params['process_isolation_ro_paths']
|
assert '/AWX_VENV_PATH' in process_isolation_params['process_isolation_ro_paths']
|
||||||
assert 2 == len(process_isolation_params['process_isolation_ro_paths'])
|
assert 2 == len(process_isolation_params['process_isolation_ro_paths'])
|
||||||
|
|||||||
@@ -19,7 +19,6 @@ from ansible.module_utils.basic import AnsibleModule
|
|||||||
|
|
||||||
import glob
|
import glob
|
||||||
import os
|
import os
|
||||||
import re
|
|
||||||
import shutil
|
import shutil
|
||||||
import datetime
|
import datetime
|
||||||
import subprocess
|
import subprocess
|
||||||
@@ -38,32 +37,35 @@ def main():
|
|||||||
# this datetime, then it will be deleted because its job has finished
|
# this datetime, then it will be deleted because its job has finished
|
||||||
job_cutoff = datetime.datetime.now() - datetime.timedelta(hours=1)
|
job_cutoff = datetime.datetime.now() - datetime.timedelta(hours=1)
|
||||||
|
|
||||||
for search_pattern in [
|
BASE_DIR = '/tmp'
|
||||||
'/tmp/awx_[0-9]*_*', '/tmp/ansible_runner_pi_*',
|
|
||||||
]:
|
|
||||||
for path in glob.iglob(search_pattern):
|
|
||||||
st = os.stat(path)
|
|
||||||
modtime = datetime.datetime.fromtimestamp(st.st_mtime)
|
|
||||||
|
|
||||||
if modtime > job_cutoff:
|
bwrap_pattern = 'bwrap_[0-9]*_*'
|
||||||
continue
|
private_data_dir_pattern = 'awx_[0-9]*_*'
|
||||||
elif modtime > folder_cutoff:
|
|
||||||
|
bwrap_path_pattern = os.path.join(BASE_DIR, bwrap_pattern)
|
||||||
|
|
||||||
|
for bwrap_path in glob.iglob(bwrap_path_pattern):
|
||||||
|
st = os.stat(bwrap_path)
|
||||||
|
modtime = datetime.datetime.fromtimestamp(st.st_mtime)
|
||||||
|
|
||||||
|
if modtime > job_cutoff:
|
||||||
|
continue
|
||||||
|
elif modtime > folder_cutoff:
|
||||||
|
private_data_dir_path_pattern = os.path.join(BASE_DIR, bwrap_path, private_data_dir_pattern)
|
||||||
|
private_data_dir_path = next(glob.iglob(private_data_dir_path_pattern), None)
|
||||||
|
if private_data_dir_path:
|
||||||
try:
|
try:
|
||||||
re_match = re.match(r'\/tmp\/awx_\d+_.+', path)
|
if subprocess.check_call(['ansible-runner', 'is-alive', private_data_dir_path]) == 0:
|
||||||
if re_match is not None:
|
continue
|
||||||
try:
|
except subprocess.CalledProcessError:
|
||||||
if subprocess.check_call(['ansible-runner', 'is-alive', path]) == 0:
|
# the job isn't running anymore, clean up this path
|
||||||
continue
|
module.debug('Deleting path {} its job has completed.'.format(bwrap_path))
|
||||||
except subprocess.CalledProcessError:
|
module.debug('Deleting path {} due to private_data_dir not being found.'.format(bwrap_path))
|
||||||
# the job isn't running anymore, clean up this path
|
else:
|
||||||
module.debug('Deleting path {} its job has completed.'.format(path))
|
module.debug('Deleting path {} because modification date is too old.'.format(bwrap_path))
|
||||||
except (ValueError, IndexError):
|
changed = True
|
||||||
continue
|
paths_removed.add(bwrap_path)
|
||||||
else:
|
shutil.rmtree(bwrap_path)
|
||||||
module.debug('Deleting path {} because modification date is too old.'.format(path))
|
|
||||||
changed = True
|
|
||||||
paths_removed.add(path)
|
|
||||||
shutil.rmtree(path)
|
|
||||||
|
|
||||||
module.exit_json(changed=changed, paths_removed=list(paths_removed))
|
module.exit_json(changed=changed, paths_removed=list(paths_removed))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user