]> code.delx.au - gnu-emacs-elpa/blob - packages/url-http-ntlm/url-http-ntlm.el
url-http-ntlm: Override url-http-parse-headers redirect handling
[gnu-emacs-elpa] / packages / url-http-ntlm / url-http-ntlm.el
1 ;;; url-http-ntlm.el --- NTLM authentication for the url library
2
3 ;; Copyright (C) 2008, 2015 Free Software Foundation, Inc.
4
5 ;; Author: Tom Schutzer-Weissmann <tom.weissmann@gmail.com>
6 ;; Maintainer: Thomas Fitzsimmons <fitzsim@fitzsim.org>
7 ;; Keywords: comm, data, processes, hypermedia
8
9 ;; This program 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.
13
14 ;; This program 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.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
21
22 ;;; Commentary:
23 ;;
24 ;; This package provides a NTLM handler for the URL package.
25 ;; It supports one username and password per server.
26 ;;
27 ;; Installation:
28 ;;
29 ;; M-x package-install RET url-http-ntlm RET
30 ;;
31 ;; Acknowledgements:
32 ;;
33 ;; Taro Kawagishi <tarok@transpulse.org> wrote ntlm.el and md4.el,
34 ;; which are parts of FLIM (Faithful Library about Internet Message).
35 ;;
36 ;; http://stuff.mit.edu/afs/sipb/contrib/emacs/packages/flim-1.14.7/ntlm.el
37 ;; http://stuff.mit.edu/afs/sipb/contrib/emacs/packages/flim-1.14.7/md4.el
38
39 ;;; Code:
40 (require 'url-auth)
41 (require 'url-http)
42 (require 'mail-parse)
43 (require 'cl-lib)
44 (require 'ntlm)
45
46 ;; Remove authorization after redirect.
47 (when (and (boundp 'emacs-major-version)
48 (< emacs-major-version 25))
49 (require (intern (format "url-http-ntlm-parse-headers-%d.%d"
50 emacs-major-version
51 emacs-minor-version))))
52
53 \f
54 ;;; Private variables.
55 (defvar url-http-ntlm--auth-storage nil
56 "Authentication storage.
57 An alist that maps a server name to a pair of \(<username> <ntlm
58 hashes>\).
59
60 The hashes are built using `ntlm-get-password-hashes'.
61 The username can contain the domain name, in the form \"user@domain\".
62
63 Note that for any server, only one user and password is ever stored.")
64
65 (defvar url-http-ntlm--last-args nil
66 "Stores the last `url-http-ntlm--get-stage' arguments and return value.
67 This is used to detect multiple calls.")
68 (make-variable-buffer-local 'url-http-ntlm--last-args)
69
70 \f
71 ;;; Private functions.
72 (defun url-http-ntlm--ensure-keepalive ()
73 "Report an error if `url-http-attempt-keepalives' is not set."
74 (cl-assert url-http-attempt-keepalives
75 nil
76 (concat "NTLM authentication won't work unless"
77 " `url-http-attempt-keepalives' is set!")))
78
79 (defun url-http-ntlm--clean-headers ()
80 "Remove Authorization element from `url-http-extra-headers' alist."
81 (setq url-http-extra-headers
82 (url-http-ntlm--rmssoc "Authorization" url-http-extra-headers)))
83
84 (defun url-http-ntlm--get-stage (args)
85 "Determine what stage of the NTLM handshake we are at.
86 PROMPT and ARGS come from `url-ntlm-auth''s caller,
87 `url-get-authentication'. Their meaning depends on the current
88 implementation - this function is well and truly coupled.
89
90 url-get-authentication' calls `url-ntlm-auth' once when checking
91 what authentication schemes are supported (PROMPT and ARGS are
92 nil), and then twice for every stage of the handshake: the first
93 time PROMPT is nil, the second, t; ARGS contains the server
94 response's \"WWW-Authenticate\" header, munged by
95 `url-parse-args'."
96 (let* ((response-rxp "^NTLM TlRMTVNTUAADAAA")
97 (challenge-rxp "^TLRMTVNTUAACAAA")
98 (auth-header (assoc "Authorization" url-http-extra-headers))
99 (case-fold-search t)
100 stage)
101 (if (eq args (car url-http-ntlm--last-args))
102 ;; multiple calls, return the same argument we returned last time
103 (cdr url-http-ntlm--last-args)
104 (let ((stage
105 (cond ((and auth-header (string-match response-rxp
106 (cdr auth-header)))
107 :error)
108 ((and (= (length args) 2)
109 (cl-destructuring-bind (challenge ntlm) args
110 (and (string-equal "ntlm" (car ntlm))
111 (string-match challenge-rxp
112 (car challenge)))))
113 :response)
114 (t
115 :request))))
116 (url-http-ntlm--clean-headers)
117 (setq url-http-ntlm--last-args (cons args stage))
118 stage))))
119
120 (defun url-http-ntlm--authorisation (url &optional clear)
121 "Get or clear NTLM authentication details for URL.
122 If CLEAR is non-nil, clear any saved credentials for server.
123 Otherwise, return the credentials, prompting the user if
124 necessary.
125
126 If URL contains a username and a password, they are used and
127 stored credentials are not affected.
128
129 Note that for any server, only one user and password is ever
130 stored."
131 (let* ((href (if (stringp url)
132 (url-generic-parse-url url)
133 url))
134 (server (url-host href))
135 (user (url-user href))
136 (pass (url-password href))
137 (stored (assoc server url-http-ntlm--auth-storage))
138 (both (and user pass)))
139 (if clear
140 ;; clear
141 (unless both
142 (setq url-http-ntlm--auth-storage
143 (url-http-ntlm--rmssoc server url-http-ntlm--auth-storage))
144 nil)
145 ;; get
146 (if (or both
147 (and stored user (not (equal user (cl-second stored))))
148 (not stored))
149 (let* ((user* (if both
150 user
151 (read-string (url-auth-user-prompt url realm)
152 (or user (user-real-login-name)))))
153 (pass* (if both
154 pass
155 (read-passwd "Password: ")))
156 (entry `(,server . (,user*
157 ,(ntlm-get-password-hashes pass*)))))
158 (unless both
159 (setq url-http-ntlm--auth-storage
160 (cons entry
161 (url-http-ntlm--rmssoc server
162 url-http-ntlm--auth-storage))))
163 entry)
164 stored))))
165
166 (defun url-http-ntlm--get-challenge ()
167 "Return the NTLM Type-2 message in the WWW-Authenticate header, if present."
168 (save-restriction
169 (mail-narrow-to-head)
170 (let ((www-authenticate (mail-fetch-field "www-authenticate")))
171 (when (string-match "NTLM\\s-+\\(\\S-+\\)"
172 www-authenticate)
173 (base64-decode-string (match-string 1 www-authenticate))))))
174
175 (defun url-http-ntlm--rmssoc (key alist)
176 "Remove all elements whose `car' match KEY from ALIST."
177 (cl-remove key alist :key 'car :test 'equal))
178
179 (defun url-http-ntlm--string (data)
180 "Return DATA encoded as an NTLM string."
181 (concat "NTLM " (base64-encode-string data :nobreak)))
182
183 \f
184 ;;; Public function called by `url-get-authentication'.
185 (defun url-ntlm-auth (url &optional prompt overwrite realm args)
186 "Return an NTLM HTTP authorization header.
187 Get the contents of the Authorization header for a HTTP response
188 using NTLM authentication, to access URL. Because NTLM is a
189 two-step process, this function expects to be called twice, first
190 to generate the NTLM type 1 message (request), then to respond to
191 the server's type 2 message (challenge) with a suitable response.
192
193 PROMPT, OVERWRITE, and REALM are ignored.
194
195 ARGS is expected to contain the WWW-Authentication header from
196 the server's last response. These are used by
197 `url-http-get-stage' to determine what stage we are at."
198 (url-http-ntlm--ensure-keepalive)
199 (let ((stage (url-http-ntlm--get-stage args)))
200 (cl-case stage
201 ;; NTLM Type 1 message: the request
202 (:request
203 (cl-destructuring-bind (&optional server user hash)
204 (url-http-ntlm--authorisation url)
205 (when server
206 (url-http-ntlm--string
207 (ntlm-build-auth-request user server)))))
208 ;; NTLM Type 3 message: the response
209 (:response
210 (let ((challenge (url-http-ntlm--get-challenge)))
211 (cl-destructuring-bind (server user hash)
212 (url-http-ntlm--authorisation url)
213 (url-http-ntlm--string
214 (ntlm-build-auth-response challenge
215 user
216 hash)))))
217 (:error
218 (url-http-ntlm--authorisation url :clear)))))
219
220 \f
221 ;;; Register `url-ntlm-auth' HTTP authentication method.
222 (url-register-auth-scheme "ntlm" nil 8)
223
224 (provide 'url-http-ntlm)
225
226 ;;; url-http-ntlm.el ends here