File tree 3 files changed +35
-2
lines changed
3 files changed +35
-2
lines changed Original file line number Diff line number Diff line change @@ -167,3 +167,17 @@ func tokenEqual(t1, t2 string) bool {
167
167
}
168
168
return true
169
169
}
170
+
171
+ // isLWS reports whether b is linear white space, according
172
+ // to http://www.w3.org/Protocols/rfc2616/rfc2616-sec2.html#sec2.2
173
+ // LWS = [CRLF] 1*( SP | HT )
174
+ func isLWS (b byte ) bool { return b == ' ' || b == '\t' }
175
+
176
+ // isCTL reports whether b is a control byte, according
177
+ // to http://www.w3.org/Protocols/rfc2616/rfc2616-sec2.html#sec2.2
178
+ // CTL = <any US-ASCII control character
179
+ // (octets 0 - 31) and DEL (127)>
180
+ func isCTL (b byte ) bool {
181
+ const del = 0x7f // a CTL
182
+ return b < ' ' || b == del
183
+ }
Original file line number Diff line number Diff line change @@ -1136,10 +1136,26 @@ func validHeaderName(v string) bool {
1136
1136
return strings .IndexFunc (v , isNotToken ) == - 1
1137
1137
}
1138
1138
1139
+ // validHeaderValue reports whether v is a valid "field-value" according to
1140
+ // http://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.2 :
1141
+ //
1142
+ // message-header = field-name ":" [ field-value ]
1143
+ // field-value = *( field-content | LWS )
1144
+ // field-content = <the OCTETs making up the field-value
1145
+ // and consisting of either *TEXT or combinations
1146
+ // of token, separators, and quoted-string>
1147
+ //
1148
+ // http://www.w3.org/Protocols/rfc2616/rfc2616-sec2.html#sec2.2 :
1149
+ //
1150
+ // TEXT = <any OCTET except CTLs,
1151
+ // but including LWS>
1152
+ // LWS = [CRLF] 1*( SP | HT )
1153
+ // CTL = <any US-ASCII control character
1154
+ // (octets 0 - 31) and DEL (127)>
1139
1155
func validHeaderValue (v string ) bool {
1140
1156
for i := 0 ; i < len (v ); i ++ {
1141
1157
b := v [i ]
1142
- if b < ' ' && b != '\t' {
1158
+ if isCTL ( b ) && ! isLWS ( b ) {
1143
1159
return false
1144
1160
}
1145
1161
}
Original file line number Diff line number Diff line change @@ -3798,7 +3798,10 @@ func TestServerValidatesHeaders(t *testing.T) {
3798
3798
{"foo\xff bar: foo\r \n " , 400 }, // binary in header
3799
3799
{"foo\x00 bar: foo\r \n " , 400 }, // binary in header
3800
3800
3801
- {"foo: foo\x00 foo\r \n " , 400 }, // CTL in value is bad
3801
+ {"foo: foo foo\r \n " , 200 }, // LWS space is okay
3802
+ {"foo: foo\t foo\r \n " , 200 }, // LWS tab is okay
3803
+ {"foo: foo\x00 foo\r \n " , 400 }, // CTL 0x00 in value is bad
3804
+ {"foo: foo\x7f foo\r \n " , 400 }, // CTL 0x7f in value is bad
3802
3805
{"foo: foo\xff foo\r \n " , 200 }, // non-ASCII high octets in value are fine
3803
3806
}
3804
3807
for _ , tt := range tests {
You can’t perform that action at this time.
0 commit comments