Merged in changes from CVS trunk
[bpt/emacs.git] / lisp / url / url-cookie.el
1 ;;; url-cookie.el --- Netscape Cookie support
2
3 ;; Copyright (c) 1996 - 1999,2004 Free Software Foundation, Inc.
4 ;; Copyright (c) 1996 by William M. Perry <wmperry@cs.indiana.edu>
5
6 ;; Keywords: comm, data, processes, hypermedia
7
8 ;; This file is part of GNU Emacs.
9 ;;
10 ;; GNU Emacs is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation; either version 2, or (at your option)
13 ;; any later version.
14 ;;
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
19 ;;
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23 ;; Boston, MA 02111-1307, USA.
24
25 ;;; Commentary:
26
27 ;;; Code:
28
29 (require 'timezone)
30 (require 'url-util)
31 (require 'url-parse)
32 (eval-when-compile (require 'cl))
33
34 ;; See http://home.netscape.com/newsref/std/cookie_spec.html for the
35 ;; 'open standard' defining this crap.
36 ;;
37 ;; A cookie is stored internally as a vector of 7 slots
38 ;; [ 'cookie name value expires path domain secure ]
39
40 (defsubst url-cookie-name (cookie) (aref cookie 1))
41 (defsubst url-cookie-value (cookie) (aref cookie 2))
42 (defsubst url-cookie-expires (cookie) (aref cookie 3))
43 (defsubst url-cookie-path (cookie) (aref cookie 4))
44 (defsubst url-cookie-domain (cookie) (aref cookie 5))
45 (defsubst url-cookie-secure (cookie) (aref cookie 6))
46
47 (defsubst url-cookie-set-name (cookie val) (aset cookie 1 val))
48 (defsubst url-cookie-set-value (cookie val) (aset cookie 2 val))
49 (defsubst url-cookie-set-expires (cookie val) (aset cookie 3 val))
50 (defsubst url-cookie-set-path (cookie val) (aset cookie 4 val))
51 (defsubst url-cookie-set-domain (cookie val) (aset cookie 5 val))
52 (defsubst url-cookie-set-secure (cookie val) (aset cookie 6 val))
53 (defsubst url-cookie-retrieve-arg (key args) (nth 1 (memq key args)))
54
55 (defsubst url-cookie-create (&rest args)
56 (let ((retval (make-vector 7 nil)))
57 (aset retval 0 'cookie)
58 (url-cookie-set-name retval (url-cookie-retrieve-arg :name args))
59 (url-cookie-set-value retval (url-cookie-retrieve-arg :value args))
60 (url-cookie-set-expires retval (url-cookie-retrieve-arg :expires args))
61 (url-cookie-set-path retval (url-cookie-retrieve-arg :path args))
62 (url-cookie-set-domain retval (url-cookie-retrieve-arg :domain args))
63 (url-cookie-set-secure retval (url-cookie-retrieve-arg :secure args))
64 retval))
65
66 (defun url-cookie-p (obj)
67 (and (vectorp obj) (= (length obj) 7) (eq (aref obj 0) 'cookie)))
68
69 (defgroup url-cookie nil
70 "URL cookies"
71 :prefix "url-"
72 :prefix "url-cookie-"
73 :group 'url)
74
75 (defvar url-cookie-storage nil "Where cookies are stored.")
76 (defvar url-cookie-secure-storage nil "Where secure cookies are stored.")
77 (defcustom url-cookie-file nil "*Where cookies are stored on disk."
78 :type '(choice (const :tag "Default" :value nil) file)
79 :group 'url-file
80 :group 'url-cookie)
81
82 (defcustom url-cookie-confirmation nil
83 "*If non-nil, confirmation by the user is required to accept HTTP cookies."
84 :type 'boolean
85 :group 'url-cookie)
86
87 (defcustom url-cookie-multiple-line nil
88 "*If nil, HTTP requests put all cookies for the server on one line.
89 Some web servers, such as http://www.hotmail.com/, only accept cookies
90 when they are on one line. This is broken behaviour, but just try
91 telling Microsoft that.")
92
93 (defvar url-cookies-changed-since-last-save nil
94 "Whether the cookies list has changed since the last save operation.")
95
96 ;;;###autoload
97 (defun url-cookie-parse-file (&optional fname)
98 (setq fname (or fname url-cookie-file))
99 (condition-case ()
100 (load fname nil t)
101 (error (message "Could not load cookie file %s" fname))))
102
103 (defun url-cookie-clean-up (&optional secure)
104 (let* (
105 (var (if secure 'url-cookie-secure-storage 'url-cookie-storage))
106 (val (symbol-value var))
107 (cur nil)
108 (new nil)
109 (cookies nil)
110 (cur-cookie nil)
111 (new-cookies nil)
112 )
113 (while val
114 (setq cur (car val)
115 val (cdr val)
116 new-cookies nil
117 cookies (cdr cur))
118 (while cookies
119 (setq cur-cookie (car cookies)
120 cookies (cdr cookies))
121 (if (or (not (url-cookie-p cur-cookie))
122 (url-cookie-expired-p cur-cookie)
123 (null (url-cookie-expires cur-cookie)))
124 nil
125 (setq new-cookies (cons cur-cookie new-cookies))))
126 (if (not new-cookies)
127 nil
128 (setcdr cur new-cookies)
129 (setq new (cons cur new))))
130 (set var new)))
131
132 ;;;###autoload
133 (defun url-cookie-write-file (&optional fname)
134 (setq fname (or fname url-cookie-file))
135 (cond
136 ((not url-cookies-changed-since-last-save) nil)
137 ((not (file-writable-p fname))
138 (message "Cookies file %s (see variable `url-cookie-file') is unwritable." fname))
139 (t
140 (url-cookie-clean-up)
141 (url-cookie-clean-up t)
142 (save-excursion
143 (set-buffer (get-buffer-create " *cookies*"))
144 (erase-buffer)
145 (fundamental-mode)
146 (insert ";; Emacs-W3 HTTP cookies file\n"
147 ";; Automatically generated file!!! DO NOT EDIT!!!\n\n"
148 "(setq url-cookie-storage\n '")
149 (pp url-cookie-storage (current-buffer))
150 (insert ")\n(setq url-cookie-secure-storage\n '")
151 (pp url-cookie-secure-storage (current-buffer))
152 (insert ")\n")
153 (write-file fname)
154 (kill-buffer (current-buffer))))))
155
156 (defun url-cookie-store (name value &optional expires domain path secure)
157 "Store a netscape-style cookie."
158 (let* ((storage (if secure url-cookie-secure-storage url-cookie-storage))
159 (tmp storage)
160 (cur nil)
161 (found-domain nil))
162
163 ;; First, look for a matching domain
164 (setq found-domain (assoc domain storage))
165
166 (if found-domain
167 ;; Need to either stick the new cookie in existing domain storage
168 ;; or possibly replace an existing cookie if the names match.
169 (progn
170 (setq storage (cdr found-domain)
171 tmp nil)
172 (while storage
173 (setq cur (car storage)
174 storage (cdr storage))
175 (if (and (equal path (url-cookie-path cur))
176 (equal name (url-cookie-name cur)))
177 (progn
178 (url-cookie-set-expires cur expires)
179 (url-cookie-set-value cur value)
180 (setq tmp t))))
181 (if (not tmp)
182 ;; New cookie
183 (setcdr found-domain (cons
184 (url-cookie-create :name name
185 :value value
186 :expires expires
187 :domain domain
188 :path path
189 :secure secure)
190 (cdr found-domain)))))
191 ;; Need to add a new top-level domain
192 (setq tmp (url-cookie-create :name name
193 :value value
194 :expires expires
195 :domain domain
196 :path path
197 :secure secure))
198 (cond
199 (storage
200 (setcdr storage (cons (list domain tmp) (cdr storage))))
201 (secure
202 (setq url-cookie-secure-storage (list (list domain tmp))))
203 (t
204 (setq url-cookie-storage (list (list domain tmp))))))))
205
206 (defun url-cookie-expired-p (cookie)
207 (let* (
208 (exp (url-cookie-expires cookie))
209 (cur-date (and exp (timezone-parse-date (current-time-string))))
210 (exp-date (and exp (timezone-parse-date exp)))
211 (cur-greg (and cur-date (timezone-absolute-from-gregorian
212 (string-to-int (aref cur-date 1))
213 (string-to-int (aref cur-date 2))
214 (string-to-int (aref cur-date 0)))))
215 (exp-greg (and exp (timezone-absolute-from-gregorian
216 (string-to-int (aref exp-date 1))
217 (string-to-int (aref exp-date 2))
218 (string-to-int (aref exp-date 0)))))
219 (diff-in-days (and exp (- cur-greg exp-greg)))
220 )
221 (cond
222 ((not exp) nil) ; No expiry == expires at browser quit
223 ((< diff-in-days 0) nil) ; Expires sometime after today
224 ((> diff-in-days 0) t) ; Expired before today
225 (t ; Expires sometime today, check times
226 (let* ((cur-time (timezone-parse-time (aref cur-date 3)))
227 (exp-time (timezone-parse-time (aref exp-date 3)))
228 (cur-norm (+ (* 360 (string-to-int (aref cur-time 2)))
229 (* 60 (string-to-int (aref cur-time 1)))
230 (* 1 (string-to-int (aref cur-time 0)))))
231 (exp-norm (+ (* 360 (string-to-int (aref exp-time 2)))
232 (* 60 (string-to-int (aref exp-time 1)))
233 (* 1 (string-to-int (aref exp-time 0))))))
234 (> (- cur-norm exp-norm) 1))))))
235
236 ;;;###autoload
237 (defun url-cookie-retrieve (host path &optional secure)
238 "Retrieve all the netscape-style cookies for a specified HOST and PATH."
239 (let ((storage (if secure
240 (append url-cookie-secure-storage url-cookie-storage)
241 url-cookie-storage))
242 (case-fold-search t)
243 (cookies nil)
244 (cur nil)
245 (retval nil)
246 (path-regexp nil))
247 (while storage
248 (setq cur (car storage)
249 storage (cdr storage)
250 cookies (cdr cur))
251 (if (and (car cur)
252 (string-match (concat "^.*" (regexp-quote (car cur)) "$") host))
253 ;; The domains match - a possible hit!
254 (while cookies
255 (setq cur (car cookies)
256 cookies (cdr cookies)
257 path-regexp (concat "^" (regexp-quote
258 (url-cookie-path cur))))
259 (if (and (string-match path-regexp path)
260 (not (url-cookie-expired-p cur)))
261 (setq retval (cons cur retval))))))
262 retval))
263
264 ;;;###autolaod
265 (defun url-cookie-generate-header-lines (host path secure)
266 (let* ((cookies (url-cookie-retrieve host path secure))
267 (retval nil)
268 (cur nil)
269 (chunk nil))
270 ;; Have to sort this for sending most specific cookies first
271 (setq cookies (and cookies
272 (sort cookies
273 (function
274 (lambda (x y)
275 (> (length (url-cookie-path x))
276 (length (url-cookie-path y))))))))
277 (while cookies
278 (setq cur (car cookies)
279 cookies (cdr cookies)
280 chunk (format "%s=%s" (url-cookie-name cur) (url-cookie-value cur))
281 retval (if (and url-cookie-multiple-line
282 (< 80 (+ (length retval) (length chunk) 4)))
283 (concat retval "\r\nCookie: " chunk)
284 (if retval
285 (concat retval "; " chunk)
286 (concat "Cookie: " chunk)))))
287 (if retval
288 (concat retval "\r\n")
289 "")))
290
291 (defvar url-cookie-two-dot-domains
292 (concat "\\.\\("
293 (mapconcat 'identity (list "com" "edu" "net" "org" "gov" "mil" "int")
294 "\\|")
295 "\\)$")
296 "A regexp of top level domains that only require two matching
297 '.'s in the domain name in order to set a cookie.")
298
299 (defcustom url-cookie-trusted-urls nil
300 "*A list of regular expressions matching URLs to always accept cookies from."
301 :type '(repeat regexp)
302 :group 'url-cookie)
303
304 (defcustom url-cookie-untrusted-urls nil
305 "*A list of regular expressions matching URLs to never accept cookies from."
306 :type '(repeat regexp)
307 :group 'url-cookie)
308
309 (defun url-cookie-host-can-set-p (host domain)
310 (let ((numdots 0)
311 (tmp domain)
312 (last nil)
313 (case-fold-search t)
314 (mindots 3))
315 (while (setq last (string-match "\\." domain last))
316 (setq numdots (1+ numdots)
317 last (1+ last)))
318 (if (string-match url-cookie-two-dot-domains domain)
319 (setq mindots 2))
320 (cond
321 ((string= host domain) ; Apparently netscape lets you do this
322 t)
323 ((>= numdots mindots) ; We have enough dots in domain name
324 ;; Need to check and make sure the host is actually _in_ the
325 ;; domain it wants to set a cookie for though.
326 (string-match (concat (regexp-quote domain) "$") host))
327 (t
328 nil))))
329
330 ;;;###autoload
331 (defun url-cookie-handle-set-cookie (str)
332 (setq url-cookies-changed-since-last-save t)
333 (let* ((args (url-parse-args str t))
334 (case-fold-search t)
335 (secure (and (assoc-string "secure" args t) t))
336 (domain (or (cdr-safe (assoc-string "domain" args t))
337 (url-host url-current-object)))
338 (current-url (url-view-url t))
339 (trusted url-cookie-trusted-urls)
340 (untrusted url-cookie-untrusted-urls)
341 (expires (cdr-safe (assoc-string "expires" args t)))
342 (path (or (cdr-safe (assoc-string "path" args t))
343 (file-name-directory
344 (url-filename url-current-object))))
345 (rest nil))
346 (while args
347 (if (not (member (downcase (car (car args)))
348 '("secure" "domain" "expires" "path")))
349 (setq rest (cons (car args) rest)))
350 (setq args (cdr args)))
351
352 ;; Sometimes we get dates that the timezone package cannot handle very
353 ;; gracefully - take care of this here, instead of in url-cookie-expired-p
354 ;; to speed things up.
355 (if (and expires
356 (string-match
357 (concat "^[^,]+, +\\(..\\)-\\(...\\)-\\(..\\) +"
358 "\\(..:..:..\\) +\\[*\\([^\]]+\\)\\]*$")
359 expires))
360 (setq expires (concat (match-string 1 expires) " "
361 (match-string 2 expires) " "
362 (match-string 3 expires) " "
363 (match-string 4 expires) " ["
364 (match-string 5 expires) "]")))
365
366 ;; This one is for older Emacs/XEmacs variants that don't
367 ;; understand this format without tenths of a second in it.
368 ;; Wednesday, 30-Dec-2037 16:00:00 GMT
369 ;; - vs -
370 ;; Wednesday, 30-Dec-2037 16:00:00.00 GMT
371 (if (and expires
372 (string-match
373 "\\([0-9]+\\)-\\([A-Za-z]+\\)-\\([0-9]+\\)[ \t]+\\([0-9]+:[0-9]+:[0-9]+\\)\\(\\.[0-9]+\\)*[ \t]+\\([-+a-zA-Z0-9]+\\)"
374 expires))
375 (setq expires (concat (match-string 1 expires) "-" ; day
376 (match-string 2 expires) "-" ; month
377 (match-string 3 expires) " " ; year
378 (match-string 4 expires) ".00 " ; hour:minutes:seconds
379 (match-string 6 expires)))) ":" ; timezone
380
381 (while (consp trusted)
382 (if (string-match (car trusted) current-url)
383 (setq trusted (- (match-end 0) (match-beginning 0)))
384 (pop trusted)))
385 (while (consp untrusted)
386 (if (string-match (car untrusted) current-url)
387 (setq untrusted (- (match-end 0) (match-beginning 0)))
388 (pop untrusted)))
389 (if (and trusted untrusted)
390 ;; Choose the more specific match
391 (if (> trusted untrusted)
392 (setq untrusted nil)
393 (setq trusted nil)))
394 (cond
395 (untrusted
396 ;; The site was explicity marked as untrusted by the user
397 nil)
398 ((or (eq url-privacy-level 'paranoid)
399 (and (listp url-privacy-level) (memq 'cookies url-privacy-level)))
400 ;; user never wants cookies
401 nil)
402 ((and url-cookie-confirmation
403 (not trusted)
404 (save-window-excursion
405 (with-output-to-temp-buffer "*Cookie Warning*"
406 (mapcar
407 (function
408 (lambda (x)
409 (princ (format "%s - %s" (car x) (cdr x))))) rest))
410 (prog1
411 (not (funcall url-confirmation-func
412 (format "Allow %s to set these cookies? "
413 (url-host url-current-object))))
414 (if (get-buffer "*Cookie Warning*")
415 (kill-buffer "*Cookie Warning*")))))
416 ;; user wants to be asked, and declined.
417 nil)
418 ((url-cookie-host-can-set-p (url-host url-current-object) domain)
419 ;; Cookie is accepted by the user, and passes our security checks
420 (let ((cur nil))
421 (while rest
422 (setq cur (pop rest))
423 (url-cookie-store (car cur) (cdr cur)
424 expires domain path secure))))
425 (t
426 (message "%s tried to set a cookie for domain %s - rejected."
427 (url-host url-current-object) domain)))))
428
429 (defvar url-cookie-timer nil)
430
431 (defcustom url-cookie-save-interval 3600
432 "*The number of seconds between automatic saves of cookies.
433 Default is 1 hour. Note that if you change this variable outside of
434 the `customize' interface after `url-do-setup' has been run, you need
435 to run the `url-cookie-setup-save-timer' function manually."
436 :set (function (lambda (var val)
437 (set-default var val)
438 (and (featurep 'url)
439 (fboundp 'url-cookie-setup-save-timer)
440 (url-cookie-setup-save-timer))))
441 :type 'integer
442 :group 'url)
443
444 ;;;###autoload
445 (defun url-cookie-setup-save-timer ()
446 "Reset the cookie saver timer."
447 (interactive)
448 (ignore-errors
449 (cond ((fboundp 'cancel-timer) (cancel-timer url-cookie-timer))
450 ((fboundp 'delete-itimer) (delete-itimer url-cookie-timer))))
451 (setq url-cookie-timer nil)
452 (if url-cookie-save-interval
453 (setq url-cookie-timer
454 (cond
455 ((fboundp 'run-at-time)
456 (run-at-time url-cookie-save-interval
457 url-cookie-save-interval
458 'url-cookie-write-file))
459 ((fboundp 'start-itimer)
460 (start-itimer "url-cookie-saver" 'url-cookie-write-file
461 url-cookie-save-interval
462 url-cookie-save-interval))))))
463
464 (provide 'url-cookie)
465
466 ;; arch-tag: 2568751b-6452-4398-aa2d-303edadb54d7
467 ;;; url-cookie.el ends here