summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorMartin Krizek <martin.krizek@gmail.com>2022-04-28 23:16:36 +0200
committerGitHub <noreply@github.com>2022-04-28 16:16:36 -0500
commit89e6dcda26fbe96573c266014f895ff69245a48f (patch)
treec9f1e1ecf2579cf2239dba8543eb1dd70f8cc729 /lib
parent8f1c25d1543df4c0751e5ec64ba980354e1ba986 (diff)
downloadansible-89e6dcda26fbe96573c266014f895ff69245a48f.tar.gz
Prevent losing unsafe from lookups (#77609) (#77650)
* Prevent losing unsafe from lookups This patch fixes a bug which under certain conditions results in data returned from lookups not being marked as unsafe. Each time Templar.do_template is invoked a new AnsibleContext is created and stored effectively at two places: 1) as an instance variable in templar_obj.cur_context 2) as a local variable called new_context in do_template method of Templar Due to custom functionality in Ansible's Context that allows for nested templating it is possible that during resolving variable's value template/do_template method is called recursively again, again creating a new context. At that point the problem manifests itself because as mentioned in 1) above the context is overwriten on the templar object which means that any subsequent calls to _lookup will use the new context to mark it as unsafe which is now different to the local new_context which is used for testing for unsafe property. The solution to the problem appears to be to restore the original context inside do_template and also to eliminate the local variable new_context to prevent problems in the future. It appears that we don't have a better way of storing the context other than as some form of global variable and so this appears to be the "best" solution possible at this point. Hopefully data tagging will be the solution here. For more examples see unit and integration tests included in this patch. Fixes #77535 (cherry picked from commit 3980eb8c09d170a861351f8aff4a1aa1a8cbb626)
Diffstat (limited to 'lib')
-rw-r--r--lib/ansible/template/__init__.py12
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/ansible/template/__init__.py b/lib/ansible/template/__init__.py
index e605a7f6e9..c1a48b05c0 100644
--- a/lib/ansible/template/__init__.py
+++ b/lib/ansible/template/__init__.py
@@ -1077,8 +1077,12 @@ class Templar:
jvars = AnsibleJ2Vars(self, t.globals)
- self.cur_context = new_context = t.new_context(jvars, shared=True)
- rf = t.root_render_func(new_context)
+ # In case this is a recursive call to do_template we need to
+ # save/restore cur_context to prevent overriding __UNSAFE__.
+ cached_context = self.cur_context
+
+ self.cur_context = t.new_context(jvars, shared=True)
+ rf = t.root_render_func(self.cur_context)
try:
if not self.jinja2_native and not convert_data:
@@ -1086,7 +1090,7 @@ class Templar:
else:
res = self.environment.concat(rf)
- unsafe = getattr(new_context, 'unsafe', False)
+ unsafe = getattr(self.cur_context, 'unsafe', False)
if unsafe:
res = wrap_var(res)
except TypeError as te:
@@ -1097,6 +1101,8 @@ class Templar:
else:
display.debug("failing because of a type error, template data is: %s" % to_text(data))
raise AnsibleError("Unexpected templating type error occurred on (%s): %s" % (to_native(data), to_native(te)))
+ finally:
+ self.cur_context = cached_context
if isinstance(res, string_types) and preserve_trailing_newlines:
# The low level calls above do not preserve the newline