summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOwen W. Taylor <otaylor@fishsoup.net>2009-10-17 11:30:28 -0400
committerOwen W. Taylor <otaylor@fishsoup.net>2009-10-17 11:39:42 -0400
commit321d428cfc66c1c627864de0eaf36ffbe15247c5 (patch)
treee3dc570d0bd125295a4ffe6e47a43461fa9cb495
parent9db86501b9ecd3a28dc5441fd5b59476d14f5c4b (diff)
downloadgit-bz-321d428cfc66c1c627864de0eaf36ffbe15247c5.tar.gz
Handle Chromium cookie expiry properly
Expiry times are in microseconds since the epoch (with the epoch depending on the exact version of Chromium.) We weren't handling this at all and just considering all cookies non-expired because of the seconds vs. microseconds difference.
-rwxr-xr-xgit-bz21
1 files changed, 16 insertions, 5 deletions
diff --git a/git-bz b/git-bz
index d109f3b..b37f1b0 100755
--- a/git-bz
+++ b/git-bz
@@ -405,7 +405,7 @@ class BugHandle:
class CookieError(Exception):
pass
-def do_get_cookies_from_sqlite(host, cookies_sqlite, browser, query):
+def do_get_cookies_from_sqlite(host, cookies_sqlite, browser, query, chromium_time):
result = {}
# We use a timeout of 0 since we expect to hit the browser holding
# the lock often and we need to fall back to making a copy without a delay
@@ -418,6 +418,14 @@ def do_get_cookies_from_sqlite(host, cookies_sqlite, browser, query):
now = time.time()
for name,value,path,expiry in cursor.fetchall():
# Excessive caution: toss out values that need to be quoted in a cookie header
+ expiry = float(expiry)
+ if chromium_time:
+ # Time stored in microseconds since epoch
+ expiry /= 1000000.
+ # Old chromium versions used to use the Unix epoch, but newer versions
+ # use the Windows epoch of January 1, 1601. Convert the latter to Unix epoch
+ if expiry > 11644473600:
+ expiry -= 11644473600
if float(expiry) > now and not re.search(r'[()<>@,;:\\"/\[\]?={} \t]', value):
result[name] = value
@@ -438,13 +446,15 @@ def get_cookies_from_sqlite_with_copy(host, cookies_sqlite, browser, *args, **kw
finally:
os.remove(db_copy)
-def get_cookies_from_sqlite(host, cookies_sqlite, browser, query):
+def get_cookies_from_sqlite(host, cookies_sqlite, browser, query, chromium_time=False):
try:
- result = do_get_cookies_from_sqlite(host, cookies_sqlite, browser, query)
+ result = do_get_cookies_from_sqlite(host, cookies_sqlite, browser, query,
+ chromium_time=chromium_time)
except sqlite.OperationalError, e:
if "database is locked" in str(e):
# Try making a temporary copy
- result = get_cookies_from_sqlite_with_copy(host, cookies_sqlite, browser, query)
+ result = get_cookies_from_sqlite_with_copy(host, cookies_sqlite, browser, query,
+ chromium_time=chromium_time)
else:
raise
@@ -495,7 +505,8 @@ def get_bugzilla_cookies_chromium(host):
if not os.path.exists(cookies_sqlite):
raise CookieError("%s doesn't exist" % cookies_sqlite)
return get_cookies_from_sqlite(host, cookies_sqlite, "Chromium",
- "select name,value,path,expires_utc from cookies where host_key = :host")
+ "select name,value,path,expires_utc from cookies where host_key = :host",
+ chromium_time=True)
browsers = { 'firefox3': get_bugzilla_cookies_ff3,
'epiphany': get_bugzilla_cookies_epy,