Commit 3e042ebb authored by Petar Maymounkov's avatar Petar Maymounkov Committed by Russ Cox

http: adapt Cookie code to follow IETF draft

R=rsc, bradfitzwork
CC=golang-dev
https://golang.org/cl/4235055
parent ad29ef95
...@@ -15,65 +15,28 @@ import ( ...@@ -15,65 +15,28 @@ import (
"time" "time"
) )
// A note on Version=0 vs. Version=1 cookies // This implementation is done according to IETF draft-ietf-httpstate-cookie-23, found at
// //
// The difference between Set-Cookie and Set-Cookie2 is hard to discern from the // http://tools.ietf.org/html/draft-ietf-httpstate-cookie-23
// RFCs as it is not stated explicitly. There seem to be three standards
// lingering on the web: Netscape, RFC 2109 (aka Version=0) and RFC 2965 (aka
// Version=1). It seems that Netscape and RFC 2109 are the same thing, hereafter
// Version=0 cookies.
//
// In general, Set-Cookie2 is a superset of Set-Cookie. It has a few new
// attributes like HttpOnly and Secure. To be meticulous, if a server intends
// to use these, it needs to send a Set-Cookie2. However, it is most likely
// most modern browsers will not complain seeing an HttpOnly attribute in a
// Set-Cookie header.
//
// Both RFC 2109 and RFC 2965 use Cookie in the same way - two send cookie
// values from clients to servers - and the allowable attributes seem to be the
// same.
//
// The Cookie2 header is used for a different purpose. If a client suspects that
// the server speaks Version=1 (RFC 2965) then along with the Cookie header
// lines, you can also send:
//
// Cookie2: $Version="1"
//
// in order to suggest to the server that you understand Version=1 cookies. At
// which point the server may continue responding with Set-Cookie2 headers.
// When a client sends the (above) Cookie2 header line, it must be prepated to
// understand incoming Set-Cookie2.
//
// This implementation of cookies supports neither Set-Cookie2 nor Cookie2
// headers. However, it parses Version=1 Cookies (along with Version=0) as well
// as Set-Cookie headers which utilize the full Set-Cookie2 syntax.
// TODO(petar): Explicitly forbid parsing of Set-Cookie attributes
// starting with '$', which have been used to hack into broken
// servers using the eventual Request headers containing those
// invalid attributes that may overwrite intended $Version, $Path,
// etc. attributes.
// TODO(petar): Read 'Set-Cookie2' headers and prioritize them over equivalent
// 'Set-Cookie' headers. 'Set-Cookie2' headers are still extremely rare.
// A Cookie represents an RFC 2965 HTTP cookie as sent in // A Cookie represents an HTTP cookie as sent in the Set-Cookie header of an
// the Set-Cookie header of an HTTP response or the Cookie header // HTTP response or the Cookie header of an HTTP request.
// of an HTTP request.
// The Set-Cookie2 and Cookie2 headers are unimplemented.
type Cookie struct { type Cookie struct {
Name string Name string
Value string Value string
Path string Path string
Domain string Domain string
Comment string
Version int
Expires time.Time Expires time.Time
RawExpires string RawExpires string
MaxAge int // Max age in seconds
Secure bool // MaxAge=0 means no 'Max-Age' attribute specified.
HttpOnly bool // MaxAge<0 means delete cookie now, equivalently 'Max-Age: 0'
Raw string // MaxAge>0 means Max-Age attribute present and given in seconds
Unparsed []string // Raw text of unparsed attribute-value pairs MaxAge int
Secure bool
HttpOnly bool
Raw string
Unparsed []string // Raw text of unparsed attribute-value pairs
} }
// readSetCookies parses all "Set-Cookie" values from // readSetCookies parses all "Set-Cookie" values from
...@@ -94,16 +57,19 @@ func readSetCookies(h Header) []*Cookie { ...@@ -94,16 +57,19 @@ func readSetCookies(h Header) []*Cookie {
continue continue
} }
name, value := parts[0][:j], parts[0][j+1:] name, value := parts[0][:j], parts[0][j+1:]
value, err := URLUnescape(value) if !isCookieNameValid(name) {
if err != nil { unparsedLines = append(unparsedLines, line)
continue
}
value, success := parseCookieValue(value)
if !success {
unparsedLines = append(unparsedLines, line) unparsedLines = append(unparsedLines, line)
continue continue
} }
c := &Cookie{ c := &Cookie{
Name: name, Name: name,
Value: value, Value: value,
MaxAge: -1, // Not specified Raw: line,
Raw: line,
} }
for i := 1; i < len(parts); i++ { for i := 1; i < len(parts); i++ {
parts[i] = strings.TrimSpace(parts[i]) parts[i] = strings.TrimSpace(parts[i])
...@@ -114,11 +80,11 @@ func readSetCookies(h Header) []*Cookie { ...@@ -114,11 +80,11 @@ func readSetCookies(h Header) []*Cookie {
attr, val := parts[i], "" attr, val := parts[i], ""
if j := strings.Index(attr, "="); j >= 0 { if j := strings.Index(attr, "="); j >= 0 {
attr, val = attr[:j], attr[j+1:] attr, val = attr[:j], attr[j+1:]
val, err = URLUnescape(val) }
if err != nil { val, success = parseCookieValue(val)
c.Unparsed = append(c.Unparsed, parts[i]) if !success {
continue c.Unparsed = append(c.Unparsed, parts[i])
} continue
} }
switch strings.ToLower(attr) { switch strings.ToLower(attr) {
case "secure": case "secure":
...@@ -127,19 +93,20 @@ func readSetCookies(h Header) []*Cookie { ...@@ -127,19 +93,20 @@ func readSetCookies(h Header) []*Cookie {
case "httponly": case "httponly":
c.HttpOnly = true c.HttpOnly = true
continue continue
case "comment":
c.Comment = val
continue
case "domain": case "domain":
c.Domain = val c.Domain = val
// TODO: Add domain parsing // TODO: Add domain parsing
continue continue
case "max-age": case "max-age":
secs, err := strconv.Atoi(val) secs, err := strconv.Atoi(val)
if err != nil || secs < 0 { if err != nil || secs < 0 || secs != 0 && val[0] == '0' {
break break
} }
c.MaxAge = secs if secs <= 0 {
c.MaxAge = -1
} else {
c.MaxAge = secs
}
continue continue
case "expires": case "expires":
c.RawExpires = val c.RawExpires = val
...@@ -154,13 +121,6 @@ func readSetCookies(h Header) []*Cookie { ...@@ -154,13 +121,6 @@ func readSetCookies(h Header) []*Cookie {
c.Path = val c.Path = val
// TODO: Add path parsing // TODO: Add path parsing
continue continue
case "version":
c.Version, err = strconv.Atoi(val)
if err != nil {
c.Version = 0
break
}
continue
} }
c.Unparsed = append(c.Unparsed, parts[i]) c.Unparsed = append(c.Unparsed, parts[i])
} }
...@@ -182,11 +142,7 @@ func writeSetCookies(w io.Writer, kk []*Cookie) os.Error { ...@@ -182,11 +142,7 @@ func writeSetCookies(w io.Writer, kk []*Cookie) os.Error {
var b bytes.Buffer var b bytes.Buffer
for _, c := range kk { for _, c := range kk {
b.Reset() b.Reset()
// TODO(petar): c.Value (below) should be unquoted if it is recognized as quoted fmt.Fprintf(&b, "%s=%s", c.Name, c.Value)
fmt.Fprintf(&b, "%s=%s", CanonicalHeaderKey(c.Name), c.Value)
if c.Version > 0 {
fmt.Fprintf(&b, "Version=%d; ", c.Version)
}
if len(c.Path) > 0 { if len(c.Path) > 0 {
fmt.Fprintf(&b, "; Path=%s", URLEscape(c.Path)) fmt.Fprintf(&b, "; Path=%s", URLEscape(c.Path))
} }
...@@ -196,8 +152,10 @@ func writeSetCookies(w io.Writer, kk []*Cookie) os.Error { ...@@ -196,8 +152,10 @@ func writeSetCookies(w io.Writer, kk []*Cookie) os.Error {
if len(c.Expires.Zone) > 0 { if len(c.Expires.Zone) > 0 {
fmt.Fprintf(&b, "; Expires=%s", c.Expires.Format(time.RFC1123)) fmt.Fprintf(&b, "; Expires=%s", c.Expires.Format(time.RFC1123))
} }
if c.MaxAge >= 0 { if c.MaxAge > 0 {
fmt.Fprintf(&b, "; Max-Age=%d", c.MaxAge) fmt.Fprintf(&b, "; Max-Age=%d", c.MaxAge)
} else if c.MaxAge < 0 {
fmt.Fprintf(&b, "; Max-Age=0")
} }
if c.HttpOnly { if c.HttpOnly {
fmt.Fprintf(&b, "; HttpOnly") fmt.Fprintf(&b, "; HttpOnly")
...@@ -205,9 +163,6 @@ func writeSetCookies(w io.Writer, kk []*Cookie) os.Error { ...@@ -205,9 +163,6 @@ func writeSetCookies(w io.Writer, kk []*Cookie) os.Error {
if c.Secure { if c.Secure {
fmt.Fprintf(&b, "; Secure") fmt.Fprintf(&b, "; Secure")
} }
if len(c.Comment) > 0 {
fmt.Fprintf(&b, "; Comment=%s", URLEscape(c.Comment))
}
lines = append(lines, "Set-Cookie: "+b.String()+"\r\n") lines = append(lines, "Set-Cookie: "+b.String()+"\r\n")
} }
sort.SortStrings(lines) sort.SortStrings(lines)
...@@ -235,63 +190,29 @@ func readCookies(h Header) []*Cookie { ...@@ -235,63 +190,29 @@ func readCookies(h Header) []*Cookie {
continue continue
} }
// Per-line attributes // Per-line attributes
var lineCookies = make(map[string]string) parsedPairs := 0
var version int
var path string
var domain string
var comment string
var httponly bool
for i := 0; i < len(parts); i++ { for i := 0; i < len(parts); i++ {
parts[i] = strings.TrimSpace(parts[i]) parts[i] = strings.TrimSpace(parts[i])
if len(parts[i]) == 0 { if len(parts[i]) == 0 {
continue continue
} }
attr, val := parts[i], "" attr, val := parts[i], ""
var err os.Error
if j := strings.Index(attr, "="); j >= 0 { if j := strings.Index(attr, "="); j >= 0 {
attr, val = attr[:j], attr[j+1:] attr, val = attr[:j], attr[j+1:]
val, err = URLUnescape(val)
if err != nil {
continue
}
} }
switch strings.ToLower(attr) { if !isCookieNameValid(attr) {
case "$httponly": continue
httponly = true }
case "$version": val, success := parseCookieValue(val)
version, err = strconv.Atoi(val) if !success {
if err != nil { continue
version = 0
continue
}
case "$domain":
domain = val
// TODO: Add domain parsing
case "$path":
path = val
// TODO: Add path parsing
case "$comment":
comment = val
default:
lineCookies[attr] = val
} }
cookies = append(cookies, &Cookie{Name: attr, Value: val})
parsedPairs++
} }
if len(lineCookies) == 0 { if parsedPairs == 0 {
unparsedLines = append(unparsedLines, line) unparsedLines = append(unparsedLines, line)
} }
for n, v := range lineCookies {
cookies = append(cookies, &Cookie{
Name: n,
Value: v,
Path: path,
Domain: domain,
Comment: comment,
Version: version,
HttpOnly: httponly,
MaxAge: -1,
Raw: line,
})
}
} }
h["Cookie"] = unparsedLines, len(unparsedLines) > 0 h["Cookie"] = unparsedLines, len(unparsedLines) > 0
return cookies return cookies
...@@ -303,28 +224,8 @@ func readCookies(h Header) []*Cookie { ...@@ -303,28 +224,8 @@ func readCookies(h Header) []*Cookie {
// line-length, so it seems safer to place cookies on separate lines. // line-length, so it seems safer to place cookies on separate lines.
func writeCookies(w io.Writer, kk []*Cookie) os.Error { func writeCookies(w io.Writer, kk []*Cookie) os.Error {
lines := make([]string, 0, len(kk)) lines := make([]string, 0, len(kk))
var b bytes.Buffer
for _, c := range kk { for _, c := range kk {
b.Reset() lines = append(lines, fmt.Sprintf("Cookie: %s=%s\r\n", c.Name, c.Value))
n := c.Name
if c.Version > 0 {
fmt.Fprintf(&b, "$Version=%d; ", c.Version)
}
// TODO(petar): c.Value (below) should be unquoted if it is recognized as quoted
fmt.Fprintf(&b, "%s=%s", CanonicalHeaderKey(n), c.Value)
if len(c.Path) > 0 {
fmt.Fprintf(&b, "; $Path=%s", URLEscape(c.Path))
}
if len(c.Domain) > 0 {
fmt.Fprintf(&b, "; $Domain=%s", URLEscape(c.Domain))
}
if c.HttpOnly {
fmt.Fprintf(&b, "; $HttpOnly")
}
if len(c.Comment) > 0 {
fmt.Fprintf(&b, "; $Comment=%s", URLEscape(c.Comment))
}
lines = append(lines, "Cookie: "+b.String()+"\r\n")
} }
sort.SortStrings(lines) sort.SortStrings(lines)
for _, l := range lines { for _, l := range lines {
...@@ -334,3 +235,38 @@ func writeCookies(w io.Writer, kk []*Cookie) os.Error { ...@@ -334,3 +235,38 @@ func writeCookies(w io.Writer, kk []*Cookie) os.Error {
} }
return nil return nil
} }
func unquoteCookieValue(v string) string {
if len(v) > 1 && v[0] == '"' && v[len(v)-1] == '"' {
return v[1 : len(v)-1]
}
return v
}
func isCookieByte(c byte) bool {
switch true {
case c == 0x21, 0x23 <= c && c <= 0x2b, 0x2d <= c && c <= 0x3a,
0x3c <= c && c <= 0x5b, 0x5d <= c && c <= 0x7e:
return true
}
return false
}
func parseCookieValue(raw string) (string, bool) {
raw = unquoteCookieValue(raw)
for i := 0; i < len(raw); i++ {
if !isCookieByte(raw[i]) {
return "", false
}
}
return raw, true
}
func isCookieNameValid(raw string) bool {
for _, c := range raw {
if !isToken(byte(c)) {
return false
}
}
return true
}
...@@ -17,7 +17,7 @@ var writeSetCookiesTests = []struct { ...@@ -17,7 +17,7 @@ var writeSetCookiesTests = []struct {
}{ }{
{ {
[]*Cookie{&Cookie{Name: "cookie-1", Value: "v$1", MaxAge: -1}}, []*Cookie{&Cookie{Name: "cookie-1", Value: "v$1", MaxAge: -1}},
"Set-Cookie: Cookie-1=v$1\r\n", "Set-Cookie: cookie-1=v$1\r\n",
}, },
} }
...@@ -39,7 +39,7 @@ var writeCookiesTests = []struct { ...@@ -39,7 +39,7 @@ var writeCookiesTests = []struct {
}{ }{
{ {
[]*Cookie{&Cookie{Name: "cookie-1", Value: "v$1", MaxAge: -1}}, []*Cookie{&Cookie{Name: "cookie-1", Value: "v$1", MaxAge: -1}},
"Cookie: Cookie-1=v$1\r\n", "Cookie: cookie-1=v$1\r\n",
}, },
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment