Skip to content

Commit 1a744e5

Browse files
committed
Check for invalid utf-8 values in label values.
prometheus/prometheus#2822
1 parent 13ba4dd commit 1a744e5

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

expfmt/text_parse.go

+4
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,10 @@ func (p *TextParser) startLabelValue() stateFn {
315315
if p.readTokenAsLabelValue(); p.err != nil {
316316
return nil
317317
}
318+
if !model.LabelValue(p.currentToken.String()).IsValid() {
319+
p.parseError(fmt.Sprintf("invalid label value %q", p.currentToken.String()))
320+
return nil
321+
}
318322
p.currentLabelPair.Value = proto.String(p.currentToken.String())
319323
// Special treatment of summaries:
320324
// - Quantile labels are special, will result in dto.Quantile later.

expfmt/text_parse_test.go

+5
Original file line numberDiff line numberDiff line change
@@ -559,6 +559,11 @@ metric_bucket{le="bla"} 3.14
559559
`,
560560
err: "text format parsing error in line 3: expected float as value for 'le' label",
561561
},
562+
// 19: Invalid UTF-8 in label value.
563+
{
564+
in: "metric{l=\"\xbd\"} 3.14\n",
565+
err: "text format parsing error in line 1: invalid label value \"\\xbd\"",
566+
},
562567
}
563568

564569
for i, scenario := range scenarios {

0 commit comments

Comments
 (0)