2015-04-11 22:26:09 +00:00
|
|
|
"""
|
|
|
|
A flexible module for cookie parsing and manipulation.
|
|
|
|
|
2015-04-21 01:39:00 +00:00
|
|
|
This module differs from usual standards-compliant cookie modules in a number
|
|
|
|
of ways. We try to be as permissive as possible, and to retain even mal-formed
|
2015-04-13 22:02:10 +00:00
|
|
|
information. Duplicate cookies are preserved in parsing, and can be set in
|
|
|
|
formatting. We do attempt to escape and quote values where needed, but will not
|
|
|
|
reject data that violate the specs.
|
|
|
|
|
|
|
|
Parsing accepts the formats in RFC6265 and partially RFC2109 and RFC2965. We do
|
2015-04-21 01:39:00 +00:00
|
|
|
not parse the comma-separated variant of Set-Cookie that allows multiple
|
|
|
|
cookies to be set in a single header. Technically this should be feasible, but
|
|
|
|
it turns out that violations of RFC6265 that makes the parsing problem
|
|
|
|
indeterminate are much more common than genuine occurences of the multi-cookie
|
|
|
|
variants. Serialization follows RFC6265.
|
2015-04-11 22:26:09 +00:00
|
|
|
|
|
|
|
http://tools.ietf.org/html/rfc6265
|
|
|
|
http://tools.ietf.org/html/rfc2109
|
2015-04-13 22:02:10 +00:00
|
|
|
http://tools.ietf.org/html/rfc2965
|
2015-04-11 22:26:09 +00:00
|
|
|
"""
|
|
|
|
|
2015-04-13 22:02:10 +00:00
|
|
|
# TODO
|
|
|
|
# - Disallow LHS-only Cookie values
|
|
|
|
|
2015-04-11 22:26:09 +00:00
|
|
|
import re
|
|
|
|
|
|
|
|
import odict
|
|
|
|
|
|
|
|
|
|
|
|
def _read_until(s, start, term):
|
|
|
|
"""
|
|
|
|
Read until one of the characters in term is reached.
|
|
|
|
"""
|
|
|
|
if start == len(s):
|
2015-04-21 01:39:00 +00:00
|
|
|
return "", start + 1
|
2015-04-11 22:26:09 +00:00
|
|
|
for i in range(start, len(s)):
|
|
|
|
if s[i] in term:
|
|
|
|
return s[start:i], i
|
2015-04-21 01:39:00 +00:00
|
|
|
return s[start:i + 1], i + 1
|
2015-04-11 22:26:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
def _read_token(s, start):
|
|
|
|
"""
|
|
|
|
Read a token - the LHS of a token/value pair in a cookie.
|
|
|
|
"""
|
|
|
|
return _read_until(s, start, ";=")
|
|
|
|
|
|
|
|
|
|
|
|
def _read_quoted_string(s, start):
|
|
|
|
"""
|
|
|
|
start: offset to the first quote of the string to be read
|
|
|
|
|
|
|
|
A sort of loose super-set of the various quoted string specifications.
|
|
|
|
|
|
|
|
RFC6265 disallows backslashes or double quotes within quoted strings.
|
|
|
|
Prior RFCs use backslashes to escape. This leaves us free to apply
|
|
|
|
backslash escaping by default and be compatible with everything.
|
|
|
|
"""
|
|
|
|
escaping = False
|
|
|
|
ret = []
|
|
|
|
# Skip the first quote
|
2015-04-21 01:39:00 +00:00
|
|
|
for i in range(start + 1, len(s)):
|
2015-04-11 22:26:09 +00:00
|
|
|
if escaping:
|
|
|
|
ret.append(s[i])
|
|
|
|
escaping = False
|
|
|
|
elif s[i] == '"':
|
|
|
|
break
|
|
|
|
elif s[i] == "\\":
|
|
|
|
escaping = True
|
|
|
|
else:
|
|
|
|
ret.append(s[i])
|
2015-04-21 01:39:00 +00:00
|
|
|
return "".join(ret), i + 1
|
2015-04-11 22:26:09 +00:00
|
|
|
|
|
|
|
|
2015-04-13 22:02:10 +00:00
|
|
|
def _read_value(s, start, delims):
|
2015-04-11 22:26:09 +00:00
|
|
|
"""
|
|
|
|
Reads a value - the RHS of a token/value pair in a cookie.
|
2015-04-11 23:26:02 +00:00
|
|
|
|
|
|
|
special: If the value is special, commas are premitted. Else comma
|
|
|
|
terminates. This helps us support old and new style values.
|
2015-04-11 22:26:09 +00:00
|
|
|
"""
|
2015-04-11 23:26:02 +00:00
|
|
|
if start >= len(s):
|
|
|
|
return "", start
|
|
|
|
elif s[start] == '"':
|
2015-04-11 22:26:09 +00:00
|
|
|
return _read_quoted_string(s, start)
|
|
|
|
else:
|
2015-04-13 22:02:10 +00:00
|
|
|
return _read_until(s, start, delims)
|
2015-04-11 22:26:09 +00:00
|
|
|
|
|
|
|
|
2015-06-18 13:32:52 +00:00
|
|
|
def _read_pairs(s, off=0):
|
2015-04-11 22:26:09 +00:00
|
|
|
"""
|
|
|
|
Read pairs of lhs=rhs values.
|
2015-04-11 23:26:02 +00:00
|
|
|
|
2015-04-13 22:02:10 +00:00
|
|
|
off: start offset
|
2015-04-13 22:13:03 +00:00
|
|
|
specials: a lower-cased list of keys that may contain commas
|
2015-04-11 22:26:09 +00:00
|
|
|
"""
|
|
|
|
vals = []
|
2015-05-27 09:18:54 +00:00
|
|
|
while True:
|
2015-04-11 22:26:09 +00:00
|
|
|
lhs, off = _read_token(s, off)
|
2015-04-11 23:26:02 +00:00
|
|
|
lhs = lhs.lstrip()
|
2015-04-13 22:02:10 +00:00
|
|
|
if lhs:
|
|
|
|
rhs = None
|
|
|
|
if off < len(s):
|
|
|
|
if s[off] == "=":
|
2015-04-21 01:39:00 +00:00
|
|
|
rhs, off = _read_value(s, off + 1, ";")
|
2015-04-13 22:02:10 +00:00
|
|
|
vals.append([lhs, rhs])
|
2015-04-11 22:26:09 +00:00
|
|
|
off += 1
|
|
|
|
if not off < len(s):
|
|
|
|
break
|
|
|
|
return vals, off
|
|
|
|
|
|
|
|
|
2015-04-11 23:26:02 +00:00
|
|
|
def _has_special(s):
|
|
|
|
for i in s:
|
|
|
|
if i in '",;\\':
|
|
|
|
return True
|
|
|
|
o = ord(i)
|
|
|
|
if o < 0x21 or o > 0x7e:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2015-04-13 22:02:10 +00:00
|
|
|
ESCAPE = re.compile(r"([\"\\])")
|
|
|
|
|
|
|
|
|
2015-04-15 20:30:54 +00:00
|
|
|
def _format_pairs(lst, specials=(), sep="; "):
|
2015-04-11 23:26:02 +00:00
|
|
|
"""
|
|
|
|
specials: A lower-cased list of keys that will not be quoted.
|
|
|
|
"""
|
2015-04-11 22:26:09 +00:00
|
|
|
vals = []
|
|
|
|
for k, v in lst:
|
|
|
|
if v is None:
|
|
|
|
vals.append(k)
|
|
|
|
else:
|
2015-04-11 23:26:02 +00:00
|
|
|
if k.lower() not in specials and _has_special(v):
|
|
|
|
v = ESCAPE.sub(r"\\\1", v)
|
2015-05-27 09:18:54 +00:00
|
|
|
v = '"%s"' % v
|
|
|
|
vals.append("%s=%s" % (k, v))
|
2015-04-15 20:30:54 +00:00
|
|
|
return sep.join(vals)
|
2015-04-11 22:26:09 +00:00
|
|
|
|
|
|
|
|
2015-04-13 22:02:10 +00:00
|
|
|
def _format_set_cookie_pairs(lst):
|
|
|
|
return _format_pairs(
|
|
|
|
lst,
|
2015-05-27 09:18:54 +00:00
|
|
|
specials=("expires", "path")
|
2015-04-13 22:02:10 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def _parse_set_cookie_pairs(s):
|
2015-04-11 22:26:09 +00:00
|
|
|
"""
|
2015-04-13 22:02:10 +00:00
|
|
|
For Set-Cookie, we support multiple cookies as described in RFC2109.
|
|
|
|
This function therefore returns a list of lists.
|
2015-04-11 22:26:09 +00:00
|
|
|
"""
|
2015-06-18 13:32:52 +00:00
|
|
|
pairs, off_ = _read_pairs(s)
|
2015-04-13 22:02:10 +00:00
|
|
|
return pairs
|
2015-04-11 22:26:09 +00:00
|
|
|
|
|
|
|
|
2015-06-17 11:10:27 +00:00
|
|
|
def parse_set_cookie_header(line):
|
2015-04-11 22:26:09 +00:00
|
|
|
"""
|
2015-04-13 22:02:10 +00:00
|
|
|
Parse a Set-Cookie header value
|
|
|
|
|
|
|
|
Returns a (name, value, attrs) tuple, or None, where attrs is an
|
|
|
|
ODictCaseless set of attributes. No attempt is made to parse attribute
|
|
|
|
values - they are treated purely as strings.
|
2015-04-11 22:26:09 +00:00
|
|
|
"""
|
2015-06-17 11:10:27 +00:00
|
|
|
pairs = _parse_set_cookie_pairs(line)
|
2015-04-13 22:02:10 +00:00
|
|
|
if pairs:
|
|
|
|
return pairs[0][0], pairs[0][1], odict.ODictCaseless(pairs[1:])
|
|
|
|
|
|
|
|
|
|
|
|
def format_set_cookie_header(name, value, attrs):
|
|
|
|
"""
|
|
|
|
Formats a Set-Cookie header value.
|
|
|
|
"""
|
|
|
|
pairs = [[name, value]]
|
|
|
|
pairs.extend(attrs.lst)
|
|
|
|
return _format_set_cookie_pairs(pairs)
|
2015-04-11 22:26:09 +00:00
|
|
|
|
|
|
|
|
2015-06-17 11:10:27 +00:00
|
|
|
def parse_cookie_header(line):
|
2015-04-13 22:02:10 +00:00
|
|
|
"""
|
|
|
|
Parse a Cookie header value.
|
|
|
|
Returns a (possibly empty) ODict object.
|
|
|
|
"""
|
2015-06-18 13:32:52 +00:00
|
|
|
pairs, off_ = _read_pairs(line)
|
2015-04-13 22:02:10 +00:00
|
|
|
return odict.ODict(pairs)
|
2015-04-11 22:26:09 +00:00
|
|
|
|
|
|
|
|
2015-04-13 22:02:10 +00:00
|
|
|
def format_cookie_header(od):
|
|
|
|
"""
|
|
|
|
Formats a Cookie header value.
|
|
|
|
"""
|
|
|
|
return _format_pairs(od.lst)
|