| """ |
| Helpers for loading resources, managing specs, constants, etc. |
| |
| Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. |
| SPDX-License-Identifier: MIT-0 |
| """ |
|
|
| from __future__ import annotations |
|
|
| import json |
| import logging |
| import warnings |
| from copy import deepcopy |
| from typing import Any |
|
|
| import networkx |
| import regex as re |
|
|
| LOGGER = logging.getLogger("cfnlint.graph") |
|
|
|
|
| class EdgeSetting: |
| color: str = "black" |
| labal: str = "" |
|
|
| def __init__(self, color: str, label: str) -> None: |
| self.color = color |
| self.label = label |
|
|
|
|
| class NodeSetting: |
| color: str = "black" |
| shape: str |
| node_type: str |
|
|
| def __init__(self, color: str, node_type: str, shape: str = "ellipse") -> None: |
| self.color = color |
| self.shape = shape |
| self.node_type = node_type |
|
|
|
|
| class GraphSettings: |
| ref: EdgeSetting |
| getatt: EdgeSetting |
| depends_on: EdgeSetting |
| resource: NodeSetting |
| parameter: NodeSetting |
| output: NodeSetting |
|
|
| def _pydot_string_convert(self, value: str | int) -> str | int: |
| if not isinstance(value, str): |
| return value |
| if ":" in value: |
| return f'"{value}"' |
|
|
| return value |
|
|
| def _pydot_list_convert(self, value: list[str | int]) -> str: |
| return json.dumps(json.dumps(value)) |
|
|
| def subgraph_view(self, graph) -> networkx.MultiDiGraph: |
| view = networkx.MultiDiGraph(name="template") |
| resources: list[str] = [ |
| n for n, v in graph.nodes.items() if v["type"] in ["Resource"] |
| ] |
|
|
| |
| for resource in resources: |
| node = graph.nodes[resource] |
| node["label"] = self._pydot_string_convert(node["label"]) |
| node["type"] = self._pydot_string_convert(node["type"]) |
| del node["resource_type"] |
| view.add_node(resource, **node) |
|
|
| for edge_1, edge_2, edge_data in graph.edges(data=True): |
| if edge_1 in resources and edge_2 in resources: |
| edge_data["source_paths"] = self._pydot_list_convert( |
| edge_data["source_paths"] |
| ) |
| view.add_edge( |
| edge_1, |
| edge_2, |
| **edge_data, |
| ) |
|
|
| view.graph.update(graph.graph) |
| return view |
|
|
|
|
| class DefaultGraphSettings(GraphSettings): |
| ref = EdgeSetting(color="black", label="Ref") |
| getatt = EdgeSetting(color="black", label="GetAtt") |
| depends_on = EdgeSetting(color="black", label="DependsOn") |
| resource = NodeSetting(color="black", node_type="Resource") |
| parameter = NodeSetting(color="black", node_type="Parameter", shape="box") |
| output = NodeSetting(color="black", node_type="Output", shape="box") |
|
|
|
|
| class Graph: |
| """Models a template as a directed graph of resources""" |
|
|
| settings: GraphSettings |
| __supported_types: list[str] = ["Resources", "Parameters", "Outputs"] |
|
|
| def __init__(self, cfn): |
| """Builds a graph where resources are nodes and edges are |
| explicit (DependsOn) or implicit (Fn::GetAtt, Fn::Sub, Ref) |
| relationships between resources |
| """ |
|
|
| self.settings = DefaultGraphSettings() |
|
|
| |
| self.graph = networkx.MultiDiGraph(name="template") |
|
|
| self._add_resources(cfn) |
| self._add_parameters(cfn) |
| self._add_outputs(cfn) |
| self._add_refs(cfn) |
| self._add_getatts(cfn) |
| self._add_subs(cfn) |
|
|
| def get_cycles(self, cfn): |
| """Return all resource pairs that have a cycle in them""" |
| result = [] |
| for starting_resource in cfn.template.get("Resources", {}): |
| try: |
| for edge in list(networkx.find_cycle(self.graph, starting_resource)): |
| if edge not in result: |
| result.append(edge) |
| except networkx.NetworkXNoCycle: |
| continue |
| return result |
|
|
| def _add_parameters(self, cfn: Any) -> None: |
| |
| for parameter_id, parameter_values in cfn.template.get( |
| "Parameters", {} |
| ).items(): |
| if not isinstance(parameter_values, dict): |
| continue |
| type_val = parameter_values.get("Type", "") |
| if not isinstance(type_val, str): |
| continue |
| graph_label = str.format(f'"{parameter_id}\\n<{type_val}>"') |
| self._add_node( |
| parameter_id, label=graph_label, settings=self.settings.parameter |
| ) |
|
|
| def _add_outputs(self, cfn: Any) -> None: |
| |
| outputs = cfn.template.get("Outputs", {}) |
| if not isinstance(outputs, dict): |
| return |
| for output_id in outputs.keys(): |
| graph_label = str.format(f'"{output_id}"') |
| self._add_node(output_id, settings=self.settings.output, label=graph_label) |
|
|
| def _add_resources(self, cfn: Any): |
| |
| for resourceId, resourceVals in cfn.template.get("Resources", {}).items(): |
| if not isinstance(resourceVals, dict): |
| continue |
| type_val = resourceVals.get("Type", "") |
| if not isinstance(type_val, str): |
| continue |
| graph_label = str.format(f"{resourceId}\\n<{type_val}>") |
| self._add_node( |
| resourceId, |
| settings=self.settings.resource, |
| label=graph_label, |
| resource_type=type_val, |
| ) |
| target_ids = resourceVals.get("DependsOn", []) |
| if isinstance(target_ids, (list, str)): |
| if isinstance(target_ids, (str)): |
| target_ids = [target_ids] |
| for target_id in target_ids: |
| if isinstance(target_id, str): |
| if self._is_resource(cfn, target_id): |
| self._add_edge( |
| resourceId, |
| target_id, |
| ["DependsOn"], |
| self.settings.depends_on, |
| ) |
|
|
| def _add_refs(self, cfn: Any) -> None: |
| |
| refs_paths = cfn.search_deep_keys("Ref") |
| for ref_path in refs_paths: |
| ref_type, source_id = ref_path[:2] |
| source_path = ref_path[2:-2] |
| target_id = ref_path[-1] |
| if ref_type not in self.__supported_types: |
| continue |
|
|
| if ref_type in ["Parameters", "Outputs"]: |
| source_id = f"{ref_type[:-1]}-{source_id}" |
|
|
| if isinstance(target_id, (str, int)) and ( |
| self._is_resource(cfn, target_id) |
| ): |
| self._add_edge(source_id, target_id, source_path, self.settings.ref) |
|
|
| def _add_getatts(self, cfn: Any) -> None: |
| |
| |
| |
| getatt_paths = cfn.search_deep_keys("Fn::GetAtt") |
| for getatt_path in getatt_paths: |
| ref_type, source_id = getatt_path[:2] |
| source_path = getatt_path[2:-2] |
| value = getatt_path[-1] |
| if ref_type not in self.__supported_types: |
| continue |
|
|
| if ref_type in ["Parameters", "Outputs"]: |
| source_id = f"{ref_type[:-1]}-{source_id}" |
|
|
| if ( |
| isinstance(value, list) |
| and len(value) == 2 |
| and (self._is_resource(cfn, value[0])) |
| ): |
| target_resource_id = value[0] |
| self._add_edge( |
| source_id, target_resource_id, source_path, self.settings.getatt |
| ) |
|
|
| if isinstance(value, (str, str)) and "." in value: |
| target_resource_id = value.split(".")[0] |
| if self._is_resource(cfn, target_resource_id): |
| self._add_edge( |
| source_id, target_resource_id, source_path, self.settings.getatt |
| ) |
|
|
| def _add_subs(self, cfn: Any) -> None: |
| |
| |
| sub_objs = cfn.search_deep_keys("Fn::Sub") |
| for sub_obj in sub_objs: |
| sub_parameters = [] |
| sub_parameter_values = {} |
| value = sub_obj[-1] |
| source_path = sub_obj[2:-2] |
| ref_type, source_id = sub_obj[:2] |
|
|
| if ref_type not in self.__supported_types: |
| continue |
|
|
| if ref_type in ["Parameters", "Outputs"]: |
| source_id = f"{ref_type[:-1]}-{source_id}" |
|
|
| if isinstance(value, list): |
| if not value: |
| continue |
| if len(value) == 2: |
| sub_parameter_values = value[1] |
| sub_parameters = self._find_parameter(value[0]) |
| elif isinstance(value, (str)): |
| sub_parameters = self._find_parameter(value) |
|
|
| for sub_parameter in sub_parameters: |
| if sub_parameter not in sub_parameter_values: |
| if "." in sub_parameter: |
| target_id = sub_parameter.split(".")[0] |
| if self._is_resource(cfn, target_id): |
| self._add_edge( |
| source_id, target_id, source_path, self.settings.getatt |
| ) |
| elif self._is_resource(cfn, sub_parameter): |
| self._add_edge( |
| source_id, sub_parameter, source_path, self.settings.ref |
| ) |
|
|
| def _add_node(self, node_id, settings, **attr): |
| if settings.node_type in ["Parameter", "Output"]: |
| node_id = f"{settings.node_type}-{node_id}" |
|
|
| attr.setdefault("color", settings.color) |
| attr.setdefault("shape", settings.shape) |
| attr.setdefault("type", settings.node_type) |
| self.graph.add_node(node_id, **attr) |
|
|
| def _add_edge(self, source_id, target_id, source_path, settings): |
| self.graph.add_edge( |
| source_id, |
| target_id, |
| source_paths=source_path, |
| label=settings.label, |
| color=settings.color, |
| ) |
|
|
| def _is_resource(self, cfn, identifier): |
| """Check if the identifier is that of a Resource""" |
| if not isinstance(identifier, str): |
| return {} |
| return cfn.template.get("Resources", {}).get(identifier, {}) |
|
|
| def _find_parameter(self, string): |
| """Search string for tokenized fields""" |
| regex = re.compile(r"\${([a-zA-Z0-9.]*)}") |
| if isinstance(string, str): |
| return regex.findall(string) |
|
|
| return [] |
|
|
| |
| def to_dot(self, path): |
| """Export the graph to a file with DOT format""" |
| graph = deepcopy(self.graph) |
| view = self.settings.subgraph_view(graph) |
| try: |
| networkx.drawing.nx_agraph.write_dot(view, path) |
| except ImportError: |
| try: |
| with warnings.catch_warnings(): |
| warnings.simplefilter("ignore", category=PendingDeprecationWarning) |
| warnings.simplefilter("ignore", category=DeprecationWarning) |
|
|
| networkx.drawing.nx_pydot.write_dot(view, path) |
| except ImportError as e: |
| raise e |
|
|