1 ;;; url-cookie.el --- URL cookie support
3 ;; Copyright (C) 1996-1999, 2004-2012 Free Software Foundation, Inc.
5 ;; Keywords: comm, data, processes, hypermedia
7 ;; This file is part of GNU Emacs.
9 ;; GNU Emacs is free software: you can redistribute it and/or modify
10 ;; it under the terms of the GNU General Public License as published by
11 ;; the Free Software Foundation, either version 3 of the License, or
12 ;; (at your option) any later version.
14 ;; GNU Emacs is distributed in the hope that it will be useful,
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;; GNU General Public License for more details.
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
29 (eval-when-compile (require 'cl
)) ; defstruct
31 (defgroup url-cookie nil
37 ;; A cookie is stored internally as a vector of 7 slots
38 ;; [ url-cookie NAME VALUE EXPIRES LOCALPART DOMAIN SECURE ]
40 (defstruct (url-cookie
41 (:constructor url-cookie-create
)
45 name value expires localpart domain secure
)
47 (defvar url-cookie-storage nil
"Where cookies are stored.")
48 (defvar url-cookie-secure-storage nil
"Where secure cookies are stored.")
49 (defcustom url-cookie-file nil
50 "File where cookies are stored on disk."
51 :type
'(choice (const :tag
"Default" :value nil
) file
)
55 (defcustom url-cookie-confirmation nil
56 "If non-nil, confirmation by the user is required to accept HTTP cookies."
60 (defcustom url-cookie-multiple-line nil
61 "If nil, HTTP requests put all cookies for the server on one line.
62 Some web servers, such as http://www.hotmail.com/, only accept cookies
63 when they are on one line. This is broken behavior, but just try
64 telling Microsoft that."
68 (defvar url-cookies-changed-since-last-save nil
69 "Whether the cookies list has changed since the last save operation.")
71 (defun url-cookie-parse-file (&optional fname
)
72 "Load FNAME, default `url-cookie-file'."
73 ;; It's completely normal for the cookies file not to exist yet.
74 (load (or fname url-cookie-file
) t t
))
76 (defun url-cookie-clean-up (&optional secure
)
77 (let ((var (if secure
'url-cookie-secure-storage
'url-cookie-storage
))
79 (dolist (cur (symbol-value var
))
80 (setq new-cookies nil
)
81 (dolist (cur-cookie (cdr cur
))
82 (or (not (url-cookie-p cur-cookie
))
83 (url-cookie-expired-p cur-cookie
)
84 (null (url-cookie-expires cur-cookie
))
85 (setq new-cookies
(cons cur-cookie new-cookies
))))
87 (setcdr cur new-cookies
)
88 (setq new
(cons cur new
))))
91 (defun url-cookie-write-file (&optional fname
)
92 (when url-cookies-changed-since-last-save
93 (or fname
(setq fname
(expand-file-name url-cookie-file
)))
94 (if (condition-case nil
96 (url-make-private-file fname
)
99 (message "Error accessing cookie file `%s'" fname
)
100 (url-cookie-clean-up)
101 (url-cookie-clean-up t
)
103 (insert ";; Emacs-W3 HTTP cookies file\n"
104 ";; Automatically generated file!!! DO NOT EDIT!!!\n\n"
105 "(setq url-cookie-storage\n '")
106 (pp url-cookie-storage
(current-buffer))
107 (insert ")\n(setq url-cookie-secure-storage\n '")
108 (pp url-cookie-secure-storage
(current-buffer))
110 (insert "\f\n;; Local Variables:\n"
111 ";; version-control: never\n"
112 ";; no-byte-compile: t\n"
114 (set (make-local-variable 'version-control
) 'never
)
116 (setq url-cookies-changed-since-last-save nil
))))
118 (defun url-cookie-store (name value
&optional expires domain localpart secure
)
120 (let ((storage (if secure url-cookie-secure-storage url-cookie-storage
))
122 ;; First, look for a matching domain.
123 (if (setq found-domain
(assoc domain storage
))
124 ;; Need to either stick the new cookie in existing domain storage
125 ;; or possibly replace an existing cookie if the names match.
126 (unless (dolist (cur (setq storage
(cdr found-domain
)) tmp
)
127 (and (equal localpart
(url-cookie-localpart cur
))
128 (equal name
(url-cookie-name cur
))
130 (setf (url-cookie-expires cur
) expires
)
131 (setf (url-cookie-value cur
) value
)
134 (setcdr found-domain
(cons
135 (url-cookie-create :name name
141 (cdr found-domain
))))
142 ;; Need to add a new top-level domain.
143 (setq tmp
(url-cookie-create :name name
150 (setcdr storage
(cons (list domain tmp
) (cdr storage
))))
152 (setq url-cookie-secure-storage
(list (list domain tmp
))))
154 (setq url-cookie-storage
(list (list domain tmp
))))))))
156 (defun url-cookie-expired-p (cookie)
157 "Return non-nil if COOKIE is expired."
158 (let ((exp (url-cookie-expires cookie
)))
159 (and (> (length exp
) 0)
160 (> (float-time) (float-time (date-to-time exp
))))))
162 (defun url-cookie-retrieve (host &optional localpart secure
)
163 "Retrieve all cookies for a specified HOST and LOCALPART."
164 (let ((storage (if secure
165 (append url-cookie-secure-storage url-cookie-storage
)
168 cookies retval localpart-match
)
169 (dolist (cur storage
)
170 (setq cookies
(cdr cur
))
175 ;; Remove the dot from wildcard domains
177 (if (eq ?.
(aref (car cur
) 0))
178 (substring (car cur
) 1)
181 ;; The domains match - a possible hit!
182 (dolist (cur cookies
)
183 (and (if (and (stringp
184 (setq localpart-match
(url-cookie-localpart cur
)))
186 (string-match (concat "^" (regexp-quote localpart-match
))
188 (equal localpart localpart-match
))
189 (not (url-cookie-expired-p cur
))
190 (setq retval
(cons cur retval
))))))
193 (defun url-cookie-generate-header-lines (host localpart secure
)
194 (let ((cookies (url-cookie-retrieve host localpart secure
))
196 ;; Have to sort this for sending most specific cookies first.
197 (setq cookies
(and cookies
200 (> (length (url-cookie-localpart x
))
201 (length (url-cookie-localpart y
)))))))
202 (dolist (cur cookies
)
203 (setq chunk
(format "%s=%s" (url-cookie-name cur
) (url-cookie-value cur
))
204 retval
(if (and url-cookie-multiple-line
205 (< 80 (+ (length retval
) (length chunk
) 4)))
206 (concat retval
"\r\nCookie: " chunk
)
208 (concat retval
"; " chunk
)
209 (concat "Cookie: " chunk
)))))
211 (concat retval
"\r\n")
214 (defvar url-cookie-two-dot-domains
216 (mapconcat 'identity
(list "com" "edu" "net" "org" "gov" "mil" "int")
219 "A regexp of top level domains that only require two matching
220 '.'s in the domain name in order to set a cookie.")
222 (defcustom url-cookie-trusted-urls nil
223 "A list of regular expressions matching URLs to always accept cookies from."
224 :type
'(repeat regexp
)
227 (defcustom url-cookie-untrusted-urls nil
228 "A list of regular expressions matching URLs to never accept cookies from."
229 :type
'(repeat regexp
)
232 (defun url-cookie-host-can-set-p (host domain
)
237 (while (setq last
(string-match "\\." domain last
))
238 (setq numdots
(1+ numdots
)
240 (if (string-match url-cookie-two-dot-domains domain
)
243 ((string= host domain
) ; Apparently netscape lets you do this
245 ((>= numdots mindots
) ; We have enough dots in domain name
246 ;; Need to check and make sure the host is actually _in_ the
247 ;; domain it wants to set a cookie for though.
248 (string-match (concat (regexp-quote
249 ;; Remove the dot from wildcard domains
251 (if (eq ?.
(aref domain
0))
258 (defun url-cookie-handle-set-cookie (str)
259 (setq url-cookies-changed-since-last-save t
)
260 (let* ((args (url-parse-args str t
))
262 (secure (and (assoc-string "secure" args t
) t
))
263 (domain (or (cdr-safe (assoc-string "domain" args t
))
264 (url-host url-current-object
)))
265 (current-url (url-view-url t
))
266 (trusted url-cookie-trusted-urls
)
267 (untrusted url-cookie-untrusted-urls
)
268 (expires (cdr-safe (assoc-string "expires" args t
)))
269 (localpart (or (cdr-safe (assoc-string "path" args t
))
271 (url-filename url-current-object
))))
274 (or (member (downcase (car this
)) '("secure" "domain" "expires" "path"))
275 (setq rest
(cons this rest
))))
277 ;; Sometimes we get dates that the timezone package cannot handle very
278 ;; gracefully - take care of this here, instead of in url-cookie-expired-p
279 ;; to speed things up.
282 (concat "^[^,]+, +\\(..\\)-\\(...\\)-\\(..\\) +"
283 "\\(..:..:..\\) +\\[*\\([^\]]+\\)\\]*$")
285 (setq expires
(concat (match-string 1 expires
) " "
286 (match-string 2 expires
) " "
287 (match-string 3 expires
) " "
288 (match-string 4 expires
) " ["
289 (match-string 5 expires
) "]")))
291 ;; This one is for older Emacs/XEmacs variants that don't
292 ;; understand this format without tenths of a second in it.
293 ;; Wednesday, 30-Dec-2037 16:00:00 GMT
295 ;; Wednesday, 30-Dec-2037 16:00:00.00 GMT
298 "\\([0-9]+\\)-\\([A-Za-z]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+:[0-9]+\\)\\(\\.[0-9]+\\)*[ \t]+\\([-+a-zA-Z0-9]+\\)"
300 (setq expires
(concat (match-string 1 expires
) "-" ; day
301 (match-string 2 expires
) "-" ; month
302 (match-string 3 expires
) " " ; year
303 (match-string 4 expires
) ".00 " ; hour:minutes:seconds
304 (match-string 6 expires
)))) ":" ; timezone
306 (while (consp trusted
)
307 (if (string-match (car trusted
) current-url
)
308 (setq trusted
(- (match-end 0) (match-beginning 0)))
310 (while (consp untrusted
)
311 (if (string-match (car untrusted
) current-url
)
312 (setq untrusted
(- (match-end 0) (match-beginning 0)))
314 (and trusted untrusted
315 ;; Choose the more specific match.
316 (set (if (> trusted untrusted
) 'untrusted
'trusted
) nil
))
319 ;; The site was explicitly marked as untrusted by the user.
321 ((or (eq url-privacy-level
'paranoid
)
322 (and (listp url-privacy-level
) (memq 'cookies url-privacy-level
)))
323 ;; User never wants cookies.
325 ((and url-cookie-confirmation
327 (save-window-excursion
328 (with-output-to-temp-buffer "*Cookie Warning*"
330 (princ (format "%s - %s" (car x
) (cdr x
)))))
332 (not (funcall url-confirmation-func
333 (format "Allow %s to set these cookies? "
334 (url-host url-current-object
))))
335 (if (get-buffer "*Cookie Warning*")
336 (kill-buffer "*Cookie Warning*")))))
337 ;; User wants to be asked, and declined.
339 ((url-cookie-host-can-set-p (url-host url-current-object
) domain
)
340 ;; Cookie is accepted by the user, and passes our security checks.
342 (url-cookie-store (car cur
) (cdr cur
) expires domain localpart secure
)))
344 (url-lazy-message "%s tried to set a cookie for domain %s - rejected."
345 (url-host url-current-object
) domain
)))))
347 (defvar url-cookie-timer nil
)
349 (defcustom url-cookie-save-interval
3600
350 "The number of seconds between automatic saves of cookies.
351 Default is 1 hour. Note that if you change this variable outside of
352 the `customize' interface after `url-do-setup' has been run, you need
353 to run the `url-cookie-setup-save-timer' function manually."
354 :set
#'(lambda (var val
)
355 (set-default var val
)
356 (if (bound-and-true-p url-setup-done
)
357 (url-cookie-setup-save-timer)))
361 (defun url-cookie-setup-save-timer ()
362 "Reset the cookie saver timer."
364 (ignore-errors (cancel-timer url-cookie-timer
))
365 (setq url-cookie-timer nil
)
366 (if url-cookie-save-interval
367 (setq url-cookie-timer
(run-at-time url-cookie-save-interval
368 url-cookie-save-interval
369 #'url-cookie-write-file
))))
371 (provide 'url-cookie
)
373 ;;; url-cookie.el ends here