1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
|
# Copyright 2023 Red Hat, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import re
from observabilityclient.utils.metric_utils import format_labels
class PromQLRbac(object):
def __init__(self, prom_api_client, project_id, project_label='project'):
self.client = prom_api_client
# NOTE(jwysogla): Since Prometheus 3, metric and label names can
# utilize all unicode characters. But the syntax is a little different
# and some parts of the queries need to be quoted or escaped. The
# rest of this module doesn't support that right now, so use a
# Prometheus 2 regex and raise an exception when it doesn't match.
# See https://prometheus.io/docs/concepts/data_model/
label_name_regex = "[a-zA-Z_][a-zA-Z0-9_]*"
if not re.fullmatch(label_name_regex, project_label):
raise ValueError(
f"Project label {project_label} doesn't match the "
f"label name regex: {label_name_regex}"
)
self.labels = {
project_label: project_id
}
def _find_label_value_end(self, query, start, quote_char):
end = start
while (end == start or
query[end - 1] == '\\'):
# Looking for first unescaped quotes
end = query.find(quote_char, end + 1)
# returns the quote position or -1
return end
def _find_match_operator(self, query, start):
eq_sign_pos = query.find('=', start)
tilde_pos = query.find('~', start)
if eq_sign_pos == -1:
return tilde_pos
if tilde_pos == -1:
return eq_sign_pos
return min(eq_sign_pos, tilde_pos)
def _find_label_pair_end(self, query, start):
match_operator_pos = self._find_match_operator(query, start)
quote_char = "'"
quote_start_pos = query.find(quote_char, match_operator_pos)
if quote_start_pos == -1:
quote_char = '"'
quote_start_pos = query.find(quote_char, match_operator_pos)
end = self._find_label_value_end(query, quote_start_pos, quote_char)
# returns the pair end or -1
return end
def _find_label_section_end(self, query, start):
if query[start:].startswith('{}'):
# We have an empty label section, without any
# label pair
return start + 1
nearest_curly_brace_pos = None
while nearest_curly_brace_pos != -1:
pair_end = self._find_label_pair_end(query, start)
nearest_curly_brace_pos = query.find("}", pair_end)
nearest_match_operator_pos = self._find_match_operator(query,
pair_end)
if (nearest_curly_brace_pos < nearest_match_operator_pos or
nearest_match_operator_pos == -1):
# If we have "}" before the nearest "=" or "~",
# then we must be at the end of the label section
# and the "=" or "~" is a part of the next section.
return nearest_curly_brace_pos
start = pair_end
# TODO(tkajinam): We should probably raise an exception here because
# this indicates illegal format without closing } .
return -1
def _insert_labels(self, query, location, comma=False, braces=False):
comma_str = ", " if comma else ""
formatted_labels = format_labels(self.labels)
labels_str = f"{{{formatted_labels}}}" if braces else formatted_labels
return (f"{query[:location]}{comma_str}"
f"{labels_str}"
f"{query[location:]}")
def modify_query(self, query, metric_names=None):
"""Add rbac labels to a query.
:param query: The query to modify
:type query: str
:param metric_names: List of metric names currently stored in
prometheus. For correct function of the query
modification, it's important for the list to be
accurate and to include all metrics across all
tenants. This parameter can be unspecified or
None, in which case the list will be retrieved
from Prometheus by sending an API request to it.
It's advised to provide the metric list when
doing a query modification in a loop for
performance purposes.
:type metric_names: list
"""
if metric_names is None:
metric_names = self.client.label_values("__name__")
# We need to detect the locations of metric names
# inside the query
# NOTE the locations are the locations within the original query
name_end_locations = []
for name in metric_names:
# Regex for a metric name is: [a-zA-Z_:][a-zA-Z0-9_:]*
# We need to make sure, that "name" isn't just a part
# of a longer word, so we try to expand it by "name_regex"
name_regex = "[a-zA-Z_:]?[a-zA-Z0-9_:]*" + name + "[a-zA-Z0-9_:]*"
potential_names = re.finditer(name_regex, query)
for potential_name in potential_names:
if potential_name.group(0) == name:
name_end_locations.append(potential_name.end())
name_end_locations = sorted(name_end_locations, reverse=True)
if len(name_end_locations) == 0:
name_end_locations = [0]
for name_end_location in name_end_locations:
if (name_end_location < len(query) and
query[name_end_location] == "{"):
# There is already a label section
labels_end = self._find_label_section_end(
query,
name_end_location
)
if labels_end == name_end_location + 1:
query = self._insert_labels(
query,
labels_end,
comma=False,
braces=False
)
else:
query = self._insert_labels(
query,
labels_end,
comma=True,
braces=False
)
else:
query = self._insert_labels(
query,
name_end_location,
comma=False,
braces=True
)
return query
def append_rbac_labels(self, query):
"""Append rbac labels to queries.
It's a simplified and faster version of modify_query(). This just
appends the labels at the end of the query string. For proper handling
of complex queries, where metric names might occure elsewhere than
just at the end, please use the modify_query() function.
:param query: The query to append to
:type query: str
"""
if any(c in query for c in "{}"):
return self.modify_query(query)
else:
return f"{query}{{{format_labels(self.labels)}}}"
|