Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
python3 /
dist-packages /
cloudinit /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2021-12-04 13:17
analyze
[ DIR ]
drwxr-xr-x
2021-12-04 13:17
cmd
[ DIR ]
drwxr-xr-x
2021-12-04 13:17
config
[ DIR ]
drwxr-xr-x
2021-12-04 13:17
distros
[ DIR ]
drwxr-xr-x
2021-12-04 13:17
filters
[ DIR ]
drwxr-xr-x
2021-12-04 13:17
handlers
[ DIR ]
drwxr-xr-x
2021-12-04 13:17
mergers
[ DIR ]
drwxr-xr-x
2021-12-04 13:17
net
[ DIR ]
drwxr-xr-x
2021-12-04 13:17
reporting
[ DIR ]
drwxr-xr-x
2021-12-04 13:17
sources
[ DIR ]
drwxr-xr-x
2021-12-04 13:17
__init__.py
0
B
-rw-r--r--
2021-03-19 15:37
apport.py
4.08
KB
-rw-r--r--
2021-03-19 15:37
atomic_helper.py
1.33
KB
-rw-r--r--
2021-03-19 15:37
cloud.py
3.15
KB
-rw-r--r--
2021-03-19 15:37
cs_utils.py
3
KB
-rw-r--r--
2021-03-19 15:37
dhclient_hook.py
2.48
KB
-rw-r--r--
2021-03-19 15:37
dmi.py
5.63
KB
-rw-r--r--
2021-03-19 15:37
ec2_utils.py
8.75
KB
-rw-r--r--
2021-03-19 15:37
event.py
450
B
-rw-r--r--
2021-03-19 15:37
features.py
2.03
KB
-rw-r--r--
2021-03-19 15:37
gpg.py
3.35
KB
-rw-r--r--
2021-03-19 15:37
helpers.py
15.71
KB
-rw-r--r--
2021-04-21 00:05
importer.py
1.38
KB
-rw-r--r--
2021-03-19 15:37
log.py
4.33
KB
-rw-r--r--
2021-03-19 15:37
netinfo.py
18.12
KB
-rw-r--r--
2021-03-19 15:37
patcher.py
1.23
KB
-rw-r--r--
2021-03-19 15:37
persistence.py
2.54
KB
-rw-r--r--
2021-03-19 15:37
registry.py
1.01
KB
-rw-r--r--
2021-03-19 15:37
safeyaml.py
1.19
KB
-rw-r--r--
2021-03-19 15:37
serial.py
1.15
KB
-rw-r--r--
2021-03-19 15:37
settings.py
1.89
KB
-rw-r--r--
2021-03-19 15:37
signal_handler.py
1.8
KB
-rw-r--r--
2021-03-19 15:37
simpletable.py
1.85
KB
-rw-r--r--
2021-03-19 15:37
ssh_util.py
13.37
KB
-rw-r--r--
2021-03-19 15:37
stages.py
38.54
KB
-rw-r--r--
2021-03-19 15:37
subp.py
13.06
KB
-rw-r--r--
2021-03-19 15:37
temp_utils.py
2.87
KB
-rw-r--r--
2021-03-19 15:37
templater.py
6.4
KB
-rw-r--r--
2021-03-19 15:37
type_utils.py
726
B
-rw-r--r--
2021-03-19 15:37
url_helper.py
21.74
KB
-rw-r--r--
2021-03-19 15:37
user_data.py
14.3
KB
-rw-r--r--
2021-03-19 15:37
util.py
78.86
KB
-rw-r--r--
2021-03-19 15:37
version.py
599
B
-rw-r--r--
2021-04-21 00:06
warnings.py
3.83
KB
-rw-r--r--
2021-03-19 15:37
Save
Rename
# Copyright (C) 2012 Canonical Ltd. # Copyright (C) 2012 Hewlett-Packard Development Company, L.P. # Copyright (C) 2012 Yahoo! Inc. # Copyright (C) 2016 Amazon.com, Inc. or its affiliates. # # Author: Scott Moser <scott.moser@canonical.com> # Author: Juerg Haefliger <juerg.haefliger@hp.com> # Author: Joshua Harlow <harlowja@yahoo-inc.com> # Author: Andrew Jorgensen <ajorgens@amazon.com> # # This file is part of cloud-init. See LICENSE file for license information. import collections import re try: from Cheetah.Template import Template as CTemplate CHEETAH_AVAILABLE = True except (ImportError, AttributeError): CHEETAH_AVAILABLE = False try: from jinja2 import Template as JTemplate from jinja2 import DebugUndefined as JUndefined JINJA_AVAILABLE = True except (ImportError, AttributeError): JINJA_AVAILABLE = False JUndefined = object from cloudinit import log as logging from cloudinit import type_utils as tu from cloudinit import util LOG = logging.getLogger(__name__) TYPE_MATCHER = re.compile(r"##\s*template:(.*)", re.I) BASIC_MATCHER = re.compile(r'\$\{([A-Za-z0-9_.]+)\}|\$([A-Za-z0-9_.]+)') MISSING_JINJA_PREFIX = u'CI_MISSING_JINJA_VAR/' class UndefinedJinjaVariable(JUndefined): """Class used to represent any undefined jinja template variable.""" def __str__(self): return u'%s%s' % (MISSING_JINJA_PREFIX, self._undefined_name) def __sub__(self, other): other = str(other).replace(MISSING_JINJA_PREFIX, '') raise TypeError( 'Undefined jinja variable: "{this}-{other}". Jinja tried' ' subtraction. Perhaps you meant "{this}_{other}"?'.format( this=self._undefined_name, other=other)) def basic_render(content, params): """This does simple replacement of bash variable like templates. It identifies patterns like ${a} or $a and can also identify patterns like ${a.b} or $a.b which will look for a key 'b' in the dictionary rooted by key 'a'. """ def replacer(match): # Only 1 of the 2 groups will actually have a valid entry. name = match.group(1) if name is None: name = match.group(2) if name is None: raise RuntimeError("Match encountered but no valid group present") path = collections.deque(name.split(".")) selected_params = params while len(path) > 1: key = path.popleft() if not isinstance(selected_params, dict): raise TypeError("Can not traverse into" " non-dictionary '%s' of type %s while" " looking for subkey '%s'" % (selected_params, tu.obj_name(selected_params), key)) selected_params = selected_params[key] key = path.popleft() if not isinstance(selected_params, dict): raise TypeError("Can not extract key '%s' from non-dictionary" " '%s' of type %s" % (key, selected_params, tu.obj_name(selected_params))) return str(selected_params[key]) return BASIC_MATCHER.sub(replacer, content) def detect_template(text): def cheetah_render(content, params): return CTemplate(content, searchList=[params]).respond() def jinja_render(content, params): # keep_trailing_newline is in jinja2 2.7+, not 2.6 add = "\n" if content.endswith("\n") else "" return JTemplate(content, undefined=UndefinedJinjaVariable, trim_blocks=True).render(**params) + add if text.find("\n") != -1: ident, rest = text.split("\n", 1) else: ident = text rest = '' type_match = TYPE_MATCHER.match(ident) if not type_match: if CHEETAH_AVAILABLE: LOG.debug("Using Cheetah as the renderer for unknown template.") return ('cheetah', cheetah_render, text) else: return ('basic', basic_render, text) else: template_type = type_match.group(1).lower().strip() if template_type not in ('jinja', 'cheetah', 'basic'): raise ValueError("Unknown template rendering type '%s' requested" % template_type) if template_type == 'jinja' and not JINJA_AVAILABLE: LOG.warning("Jinja not available as the selected renderer for" " desired template, reverting to the basic renderer.") return ('basic', basic_render, rest) elif template_type == 'jinja' and JINJA_AVAILABLE: return ('jinja', jinja_render, rest) if template_type == 'cheetah' and not CHEETAH_AVAILABLE: LOG.warning("Cheetah not available as the selected renderer for" " desired template, reverting to the basic renderer.") return ('basic', basic_render, rest) elif template_type == 'cheetah' and CHEETAH_AVAILABLE: return ('cheetah', cheetah_render, rest) # Only thing left over is the basic renderer (it is always available). return ('basic', basic_render, rest) def render_from_file(fn, params): if not params: params = {} # jinja in python2 uses unicode internally. All py2 str will be decoded. # If it is given a str that has non-ascii then it will raise a # UnicodeDecodeError. So we explicitly convert to unicode type here. template_type, renderer, content = detect_template( util.load_file(fn, decode=False).decode('utf-8')) LOG.debug("Rendering content of '%s' using renderer %s", fn, template_type) return renderer(content, params) def render_to_file(fn, outfn, params, mode=0o644): contents = render_from_file(fn, params) util.write_file(outfn, contents, mode=mode) def render_string_to_file(content, outfn, params, mode=0o644): """Render string (or py2 unicode) to file. Warning: py2 str with non-ascii chars will cause UnicodeDecodeError.""" contents = render_string(content, params) util.write_file(outfn, contents, mode=mode) def render_string(content, params): """Render string (or py2 unicode). Warning: py2 str with non-ascii chars will cause UnicodeDecodeError.""" if not params: params = {} _template_type, renderer, content = detect_template(content) return renderer(content, params) # vi: ts=4 expandtab