(set-version): Add doc/lispref/vol1.texi,vol2.texi.
[emacs.git] / lisp / url / url-auth.el
blobebd5c54ce14df278dd97f4ca2c9bb73a8b6caed2
1 ;;; url-auth.el --- Uniform Resource Locator authorization modules
3 ;; Copyright (C) 1996, 1997, 1998, 1999, 2004, 2005, 2006, 2007,
4 ;; 2008 Free Software Foundation, Inc.
6 ;; Keywords: comm, data, processes, hypermedia
8 ;; This file is part of GNU Emacs.
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 3 of the License, or
13 ;; (at your option) any later version.
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.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23 ;;; Code:
25 (require 'url-vars)
26 (require 'url-parse)
27 (autoload 'url-warn "url")
28 (autoload 'auth-source-user-or-password "auth-source")
30 (defsubst url-auth-user-prompt (url realm)
31 "String to usefully prompt for a username."
32 (concat "Username [for "
33 (or realm (url-truncate-url-for-viewing
34 (url-recreate-url url)
35 (- (window-width) 10 20)))
36 "]: "))
38 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
39 ;;; Basic authorization code
40 ;;; ------------------------
41 ;;; This implements the BASIC authorization type. See the online
42 ;;; documentation at
43 ;;; http://www.w3.org/hypertext/WWW/AccessAuthorization/Basic.html
44 ;;; for the complete documentation on this type.
45 ;;;
46 ;;; This is very insecure, but it works as a proof-of-concept
47 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
48 (defvar url-basic-auth-storage 'url-http-real-basic-auth-storage
49 "Where usernames and passwords are stored.
51 Must be a symbol pointing to another variable that will actually store
52 the information. The value of this variable is an assoc list of assoc
53 lists. The first assoc list is keyed by the server name. The cdr of
54 this is an assoc list based on the 'directory' specified by the url we
55 are looking up.")
57 (defun url-basic-auth (url &optional prompt overwrite realm args)
58 "Get the username/password for the specified URL.
59 If optional argument PROMPT is non-nil, ask for the username/password
60 to use for the url and its descendants. If optional third argument
61 OVERWRITE is non-nil, overwrite the old username/password pair if it
62 is found in the assoc list. If REALM is specified, use that as the realm
63 instead of the filename inheritance method."
64 (let* ((href (if (stringp url)
65 (url-generic-parse-url url)
66 url))
67 (server (url-host href))
68 (type (url-type href))
69 (port (url-port href))
70 (file (url-filename href))
71 (user (url-user href))
72 (pass (url-password href))
73 byserv retval data)
74 (setq server (format "%s:%d" server port)
75 file (cond
76 (realm realm)
77 ((string= "" file) "/")
78 ((string-match "/$" file) file)
79 (t (url-file-directory file)))
80 byserv (cdr-safe (assoc server
81 (symbol-value url-basic-auth-storage))))
82 (cond
83 ((and prompt (not byserv))
84 (setq user (or
85 (auth-source-user-or-password "login" server type)
86 (read-string (url-auth-user-prompt url realm)
87 (or user (user-real-login-name))))
88 pass (or
89 (auth-source-user-or-password "password" server type)
90 (read-passwd "Password: " nil (or pass ""))))
91 (set url-basic-auth-storage
92 (cons (list server
93 (cons file
94 (setq retval
95 (base64-encode-string
96 (format "%s:%s" user pass)))))
97 (symbol-value url-basic-auth-storage))))
98 (byserv
99 (setq retval (cdr-safe (assoc file byserv)))
100 (if (and (not retval)
101 (string-match "/" file))
102 (while (and byserv (not retval))
103 (setq data (car (car byserv)))
104 (if (or (not (string-match "/" data)) ; It's a realm - take it!
105 (and
106 (>= (length file) (length data))
107 (string= data (substring file 0 (length data)))))
108 (setq retval (cdr (car byserv))))
109 (setq byserv (cdr byserv))))
110 (if (or (and (not retval) prompt) overwrite)
111 (progn
112 (setq user (or
113 (auth-source-user-or-password "login" server type)
114 (read-string (url-auth-user-prompt url realm)
115 (user-real-login-name)))
116 pass (or
117 (auth-source-user-or-password "password" server type)
118 (read-passwd "Password: "))
119 retval (base64-encode-string (format "%s:%s" user pass))
120 byserv (assoc server (symbol-value url-basic-auth-storage)))
121 (setcdr byserv
122 (cons (cons file retval) (cdr byserv))))))
123 (t (setq retval nil)))
124 (if retval (setq retval (concat "Basic " retval)))
125 retval))
127 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
128 ;;; Digest authorization code
129 ;;; ------------------------
130 ;;; This implements the DIGEST authorization type. See the internet draft
131 ;;; ftp://ds.internic.net/internet-drafts/draft-ietf-http-digest-aa-01.txt
132 ;;; for the complete documentation on this type.
134 ;;; This is very secure
135 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
136 (defvar url-digest-auth-storage nil
137 "Where usernames and passwords are stored. Its value is an assoc list of
138 assoc lists. The first assoc list is keyed by the server name. The cdr of
139 this is an assoc list based on the 'directory' specified by the url we are
140 looking up.")
142 (defun url-digest-auth-create-key (username password realm method uri)
143 "Create a key for digest authentication method"
144 (let* ((info (if (stringp uri)
145 (url-generic-parse-url uri)
146 uri))
147 (a1 (md5 (concat username ":" realm ":" password)))
148 (a2 (md5 (concat method ":" (url-filename info)))))
149 (list a1 a2)))
151 (defun url-digest-auth (url &optional prompt overwrite realm args)
152 "Get the username/password for the specified URL.
153 If optional argument PROMPT is non-nil, ask for the username/password
154 to use for the url and its descendants. If optional third argument
155 OVERWRITE is non-nil, overwrite the old username/password pair if it
156 is found in the assoc list. If REALM is specified, use that as the realm
157 instead of hostname:portnum."
158 (if args
159 (let* ((href (if (stringp url)
160 (url-generic-parse-url url)
161 url))
162 (server (url-host href))
163 (type (url-type href))
164 (port (url-port href))
165 (file (url-filename href))
166 user pass byserv retval data)
167 (setq file (cond
168 (realm realm)
169 ((string-match "/$" file) file)
170 (t (url-file-directory file)))
171 server (format "%s:%d" server port)
172 byserv (cdr-safe (assoc server url-digest-auth-storage)))
173 (cond
174 ((and prompt (not byserv))
175 (setq user (or
176 (auth-source-user-or-password "login" server type)
177 (read-string (url-auth-user-prompt url realm)
178 (user-real-login-name)))
179 pass (or
180 (auth-source-user-or-password "password" server type)
181 (read-passwd "Password: "))
182 url-digest-auth-storage
183 (cons (list server
184 (cons file
185 (setq retval
186 (cons user
187 (url-digest-auth-create-key
188 user pass realm
189 (or url-request-method "GET")
190 url)))))
191 url-digest-auth-storage)))
192 (byserv
193 (setq retval (cdr-safe (assoc file byserv)))
194 (if (and (not retval) ; no exact match, check directories
195 (string-match "/" file)) ; not looking for a realm
196 (while (and byserv (not retval))
197 (setq data (car (car byserv)))
198 (if (or (not (string-match "/" data))
199 (and
200 (>= (length file) (length data))
201 (string= data (substring file 0 (length data)))))
202 (setq retval (cdr (car byserv))))
203 (setq byserv (cdr byserv))))
204 (if overwrite
205 (if (and (not retval) prompt)
206 (setq user (or
207 (auth-source-user-or-password "login" server type)
208 (read-string (url-auth-user-prompt url realm)
209 (user-real-login-name)))
210 pass (or
211 (auth-source-user-or-password "password" server type)
212 (read-passwd "Password: "))
213 retval (setq retval
214 (cons user
215 (url-digest-auth-create-key
216 user pass realm
217 (or url-request-method "GET")
218 url)))
219 byserv (assoc server url-digest-auth-storage))
220 (setcdr byserv
221 (cons (cons file retval) (cdr byserv))))))
222 (t (setq retval nil)))
223 (if retval
224 (if (cdr-safe (assoc "opaque" args))
225 (let ((nonce (or (cdr-safe (assoc "nonce" args)) "nonegiven"))
226 (opaque (cdr-safe (assoc "opaque" args))))
227 (format
228 (concat "Digest username=\"%s\", realm=\"%s\","
229 "nonce=\"%s\", uri=\"%s\","
230 "response=\"%s\", opaque=\"%s\"")
231 (nth 0 retval) realm nonce (url-filename href)
232 (md5 (concat (nth 1 retval) ":" nonce ":"
233 (nth 2 retval))) opaque))
234 (let ((nonce (or (cdr-safe (assoc "nonce" args)) "nonegiven")))
235 (format
236 (concat "Digest username=\"%s\", realm=\"%s\","
237 "nonce=\"%s\", uri=\"%s\","
238 "response=\"%s\"")
239 (nth 0 retval) realm nonce (url-filename href)
240 (md5 (concat (nth 1 retval) ":" nonce ":"
241 (nth 2 retval))))))))))
243 (defvar url-registered-auth-schemes nil
244 "A list of the registered authorization schemes and various and sundry
245 information associated with them.")
247 ;;;###autoload
248 (defun url-get-authentication (url realm type prompt &optional args)
249 "Return an authorization string suitable for use in the WWW-Authenticate
250 header in an HTTP/1.0 request.
252 URL is the url you are requesting authorization to. This can be either a
253 string representing the URL, or the parsed representation returned by
254 `url-generic-parse-url'
255 REALM is the realm at a specific site we are looking for. This should be a
256 string specifying the exact realm, or nil or the symbol 'any' to
257 specify that the filename portion of the URL should be used as the
258 realm
259 TYPE is the type of authentication to be returned. This is either a string
260 representing the type (basic, digest, etc), or nil or the symbol 'any'
261 to specify that any authentication is acceptable. If requesting 'any'
262 the strongest matching authentication will be returned. If this is
263 wrong, it's no big deal, the error from the server will specify exactly
264 what type of auth to use
265 PROMPT is boolean - specifies whether to ask the user for a username/password
266 if one cannot be found in the cache"
267 (if (not realm)
268 (setq realm (cdr-safe (assoc "realm" args))))
269 (if (stringp url)
270 (setq url (url-generic-parse-url url)))
271 (if (or (null type) (eq type 'any))
272 ;; Whooo doogies!
273 ;; Go through and get _all_ the authorization strings that could apply
274 ;; to this URL, store them along with the 'rating' we have in the list
275 ;; of schemes, then sort them so that the 'best' is at the front of the
276 ;; list, then get the car, then get the cdr.
277 ;; Zooom zooom zoooooom
278 (cdr-safe
279 (car-safe
280 (sort
281 (mapcar
282 (function
283 (lambda (scheme)
284 (if (fboundp (car (cdr scheme)))
285 (cons (cdr (cdr scheme))
286 (funcall (car (cdr scheme)) url nil nil realm))
287 (cons 0 nil))))
288 url-registered-auth-schemes)
289 (function
290 (lambda (x y)
291 (cond
292 ((null (cdr x)) nil)
293 ((and (cdr x) (null (cdr y))) t)
294 ((and (cdr x) (cdr y))
295 (>= (car x) (car y)))
296 (t nil)))))))
297 (if (symbolp type) (setq type (symbol-name type)))
298 (let* ((scheme (car-safe
299 (cdr-safe (assoc (downcase type)
300 url-registered-auth-schemes)))))
301 (if (and scheme (fboundp scheme))
302 (funcall scheme url prompt
303 (and prompt
304 (funcall scheme url nil nil realm args))
305 realm args)))))
307 ;;;###autoload
308 (defun url-register-auth-scheme (type &optional function rating)
309 "Register an HTTP authentication method.
311 TYPE is a string or symbol specifying the name of the method. This
312 should be the same thing you expect to get returned in an Authenticate
313 header in HTTP/1.0 - it will be downcased.
314 FUNCTION is the function to call to get the authorization information. This
315 defaults to `url-?-auth', where ? is TYPE
316 RATING a rating between 1 and 10 of the strength of the authentication.
317 This is used when asking for the best authentication for a specific
318 URL. The item with the highest rating is returned."
319 (let* ((type (cond
320 ((stringp type) (downcase type))
321 ((symbolp type) (downcase (symbol-name type)))
322 (t (error "Bad call to `url-register-auth-scheme'"))))
323 (function (or function (intern (concat "url-" type "-auth"))))
324 (rating (cond
325 ((null rating) 2)
326 ((stringp rating) (string-to-number rating))
327 (t rating)))
328 (node (assoc type url-registered-auth-schemes)))
329 (if (not (fboundp function))
330 (url-warn 'security
331 (format (concat
332 "Tried to register `%s' as an auth scheme"
333 ", but it is not a function!") function)))
335 (if node
336 (setcdr node (cons function rating))
337 (setq url-registered-auth-schemes
338 (cons (cons type (cons function rating))
339 url-registered-auth-schemes)))))
341 (defun url-auth-registered (scheme)
342 "Return non-nil if SCHEME is registered as an auth type."
343 (assoc scheme url-registered-auth-schemes))
345 (provide 'url-auth)
347 ;; arch-tag: 04058625-616d-44e4-9dbf-4b46b00b2a91
348 ;;; url-auth.el ends here