""" Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. """ import fileinput import logging import sys import six from yaml.composer import Composer from yaml.reader import Reader from yaml.scanner import Scanner from yaml.resolver import Resolver from yaml import ScalarNode from yaml import SequenceNode from yaml import MappingNode from yaml.constructor import SafeConstructor from yaml.constructor import ConstructorError import cfnlint from cfnlint.decode.node import str_node, dict_node, list_node try: from yaml.cyaml import CParser as Parser # pylint: disable=ungrouped-imports cyaml = True except ImportError: from yaml.parser import Parser # pylint: disable=ungrouped-imports cyaml = False UNCONVERTED_SUFFIXES = ['Ref', 'Condition'] FN_PREFIX = 'Fn::' LOGGER = logging.getLogger(__name__) class CfnParseError(ConstructorError): """ Error thrown when the template contains Cfn Error """ def __init__(self, filename, message, line_number, column_number, key=' '): # Call the base class constructor with the parameters it needs super(CfnParseError, self).__init__(message) # Now for your custom code... self.filename = filename self.line_number = line_number self.column_number = column_number self.message = message self.match = cfnlint.Match( line_number + 1, column_number + 1, line_number + 1, column_number + 1 + len(key), filename, cfnlint.ParseError(), message=message) class NodeConstructor(SafeConstructor): """ Node Constructors for loading different types in Yaml """ def __init__(self, filename): # Call the base class constructor super(NodeConstructor, self).__init__() self.filename = filename # To support lazy loading, the original constructors first yield # an empty object, then fill them in when iterated. Due to # laziness we omit this behaviour (and will only do "deep # construction") by first exhausting iterators, then yielding # copies. def construct_yaml_map(self, node): # Check for duplicate keys on the current level, this is not desirable # because a dict does not support this. It overwrites it with the last # occurance, which can give unexpected results mapping = {} for key_node, value_node in node.value: key = self.construct_object(key_node, False) value = self.construct_object(value_node, False) if key in mapping: raise CfnParseError( self.filename, 'Duplicate resource found "{}" (line {})'.format(key, key_node.start_mark.line + 1), key_node.start_mark.line, key_node.start_mark.column, key) mapping[key] = value obj, = SafeConstructor.construct_yaml_map(self, node) return dict_node(obj, node.start_mark, node.end_mark) def construct_yaml_str(self, node): obj = SafeConstructor.construct_yaml_str(self, node) assert isinstance(obj, (six.string_types)) return str_node(obj, node.start_mark, node.end_mark) def construct_yaml_seq(self, node): obj, = SafeConstructor.construct_yaml_seq(self, node) assert isinstance(obj, list) return list_node(obj, node.start_mark, node.end_mark) def construct_yaml_null_error(self, node): """Throw a null error""" raise CfnParseError( self.filename, 'Null value at line {0} column {1}'.format(node.start_mark.line + 1, node.start_mark.column + 1), node.start_mark.line, node.start_mark.column, ' ') NodeConstructor.add_constructor( u'tag:yaml.org,2002:map', NodeConstructor.construct_yaml_map) NodeConstructor.add_constructor( u'tag:yaml.org,2002:str', NodeConstructor.construct_yaml_str) NodeConstructor.add_constructor( u'tag:yaml.org,2002:seq', NodeConstructor.construct_yaml_seq) NodeConstructor.add_constructor( u'tag:yaml.org,2002:null', NodeConstructor.construct_yaml_null_error) class MarkedLoader(Reader, Scanner, Parser, Composer, NodeConstructor, Resolver): """ Class for marked loading YAML """ # pylint: disable=non-parent-init-called,super-init-not-called def __init__(self, stream, filename): Reader.__init__(self, stream) Scanner.__init__(self) if cyaml: Parser.__init__(self, stream) else: Parser.__init__(self) Composer.__init__(self) SafeConstructor.__init__(self) Resolver.__init__(self) NodeConstructor.__init__(self, filename) def multi_constructor(loader, tag_suffix, node): """ Deal with !Ref style function format """ if tag_suffix not in UNCONVERTED_SUFFIXES: tag_suffix = '{}{}'.format(FN_PREFIX, tag_suffix) constructor = None if tag_suffix == 'Fn::GetAtt': constructor = construct_getatt elif isinstance(node, ScalarNode): constructor = loader.construct_scalar elif isinstance(node, SequenceNode): constructor = loader.construct_sequence elif isinstance(node, MappingNode): constructor = loader.construct_mapping else: raise 'Bad tag: !{}'.format(tag_suffix) return dict_node({tag_suffix: constructor(node)}, node.start_mark, node.end_mark) def construct_getatt(node): """ Reconstruct !GetAtt into a list """ if isinstance(node.value, (six.string_types)): return list_node(node.value.split('.'), node.start_mark, node.end_mark) if isinstance(node.value, list): return list_node([s.value for s in node.value], node.start_mark, node.end_mark) raise ValueError('Unexpected node type: {}'.format(type(node.value))) def loads(yaml_string, fname=None): """ Load the given YAML string """ loader = MarkedLoader(yaml_string, fname) loader.add_multi_constructor('!', multi_constructor) template = loader.get_single_data() # Convert an empty file to an empty dict if template is None: template = {} return template def load(filename): """ Load the given YAML file """ content = '' if not sys.stdin.isatty(): for line in fileinput.input(files=filename): content = content + line else: with open(filename) as fp: content = fp.read() return loads(content, filename)