Skip to content

Commit 6623230

Browse files
authored
Provide a method for explicitly checking label names for legacy validity. (#682)
This is needed in Prometheus for modes when legacy validation has been explicitly requested but UTF-8 is otherwise enabled. Signed-off-by: Owen Williams <[email protected]>
1 parent 19d0796 commit 6623230

File tree

1 file changed

+18
-9
lines changed

1 file changed

+18
-9
lines changed

model/labels.go

+18-9
Original file line numberDiff line numberDiff line change
@@ -97,26 +97,35 @@ var LabelNameRE = regexp.MustCompile("^[a-zA-Z_][a-zA-Z0-9_]*$")
9797
// therewith.
9898
type LabelName string
9999

100-
// IsValid returns true iff name matches the pattern of LabelNameRE for legacy
101-
// names, and iff it's valid UTF-8 if NameValidationScheme is set to
102-
// UTF8Validation. For the legacy matching, it does not use LabelNameRE for the
103-
// check but a much faster hardcoded implementation.
100+
// IsValid returns true iff the name matches the pattern of LabelNameRE when
101+
// NameValidationScheme is set to LegacyValidation, or valid UTF-8 if
102+
// NameValidationScheme is set to UTF8Validation.
104103
func (ln LabelName) IsValid() bool {
105104
if len(ln) == 0 {
106105
return false
107106
}
108107
switch NameValidationScheme {
109108
case LegacyValidation:
110-
for i, b := range ln {
111-
if !((b >= 'a' && b <= 'z') || (b >= 'A' && b <= 'Z') || b == '_' || (b >= '0' && b <= '9' && i > 0)) {
112-
return false
113-
}
114-
}
109+
return ln.IsValidLegacy()
115110
case UTF8Validation:
116111
return utf8.ValidString(string(ln))
117112
default:
118113
panic(fmt.Sprintf("Invalid name validation scheme requested: %d", NameValidationScheme))
119114
}
115+
}
116+
117+
// IsValidLegacy returns true iff name matches the pattern of LabelNameRE for
118+
// legacy names. It does not use LabelNameRE for the check but a much faster
119+
// hardcoded implementation.
120+
func (ln LabelName) IsValidLegacy() bool {
121+
if len(ln) == 0 {
122+
return false
123+
}
124+
for i, b := range ln {
125+
if !((b >= 'a' && b <= 'z') || (b >= 'A' && b <= 'Z') || b == '_' || (b >= '0' && b <= '9' && i > 0)) {
126+
return false
127+
}
128+
}
120129
return true
121130
}
122131

0 commit comments

Comments
 (0)