Fix race condition when creating async dir (#72069)

* Fix race condition when creating async dir

* Simplify exception wrapper

* Remove var used for testing
This commit is contained in:
Jordan Borean 2020-10-20 05:05:19 +10:00 committed by GitHub
parent 618d1a3871
commit c9fa1d0e7e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 22 additions and 8 deletions

View file

@ -0,0 +1,2 @@
bugfixes:
- async_wrapper - Fix race condition when ``~/.ansible_async`` folder tries to be created by multiple async tasks at the same time - https://github.com/ansible/ansible/issues/59306

View file

@ -8,6 +8,7 @@ from __future__ import absolute_import, division, print_function
__metaclass__ = type
import errno
import json
import shlex
import shutil
@ -123,6 +124,15 @@ def _get_interpreter(module_path):
module_fd.close()
def _make_temp_dir(path):
# TODO: Add checks for permissions on path.
try:
os.makedirs(path)
except OSError as e:
if e.errno != errno.EEXIST:
raise
def _run_module(wrapped_cmd, jid, job_path):
tmp_job_path = job_path + ".tmp"
@ -231,14 +241,16 @@ def main():
jobdir = os.path.expanduser(async_dir)
job_path = os.path.join(jobdir, jid)
if not os.path.exists(jobdir):
try:
os.makedirs(jobdir)
except Exception:
print(json.dumps({
"failed": 1,
"msg": "could not create: %s" % jobdir
}))
try:
_make_temp_dir(jobdir)
except Exception as e:
print(json.dumps({
"failed": 1,
"msg": "could not create: %s - %s" % (jobdir, to_text(e)),
"exception": to_text(traceback.format_exc()),
}))
sys.exit(1)
# immediately exit this process, leaving an orphaned process
# running which immediately forks a supervisory timing process