lisp/obsolete/*tls.el: Note when obsolescence was decided
[emacs.git] / lisp / obsolete / starttls.el
blob0dc2663870a96988b3c6fe9b7c861b39750c15ef
1 ;;; starttls.el --- STARTTLS functions
3 ;; Copyright (C) 1999-2018 Free Software Foundation, Inc.
5 ;; Author: Daiki Ueno <ueno@unixuser.org>
6 ;; Author: Simon Josefsson <simon@josefsson.org>
7 ;; Created: 1999/11/20
8 ;; Keywords: TLS, SSL, OpenSSL, GnuTLS, mail, news
9 ;; Obsolete-since: 27.1
11 ;; This file is part of GNU Emacs.
13 ;; GNU Emacs is free software: you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
26 ;;; Commentary:
28 ;; This module defines some utility functions for STARTTLS profiles.
30 ;; [RFC 2595] "Using TLS with IMAP, POP3 and ACAP"
31 ;; by Chris Newman <chris.newman@innosoft.com> (1999/06)
33 ;; This file now contains a combination of the two previous
34 ;; implementations both called "starttls.el". The first one is Daiki
35 ;; Ueno's starttls.el which uses his own "starttls" command line tool,
36 ;; and the second one is Simon Josefsson's starttls.el which uses
37 ;; "gnutls-cli" from GnuTLS.
39 ;; If "starttls" is available, it is preferred by the code over
40 ;; "gnutls-cli", for backwards compatibility. Use
41 ;; `starttls-use-gnutls' to toggle between implementations if you have
42 ;; both tools installed. It is recommended to use GnuTLS, though, as
43 ;; it performs more verification of the certificates.
45 ;; The GnuTLS support requires GnuTLS 0.9.90 (released 2003-10-08) or
46 ;; later, from <https://www.gnu.org/software/gnutls/>, or "starttls"
47 ;; from <ftp://ftp.opaopa.org/pub/elisp/>.
49 ;; Usage is similar to `open-network-stream'. For example:
51 ;; (when (setq tmp (starttls-open-stream
52 ;; "test" (current-buffer) "yxa.extundo.com" 25))
53 ;; (accept-process-output tmp 15)
54 ;; (process-send-string tmp "STARTTLS\n")
55 ;; (accept-process-output tmp 15)
56 ;; (message "STARTTLS output:\n%s" (starttls-negotiate tmp))
57 ;; (process-send-string tmp "EHLO foo\n"))
59 ;; An example run yields the following output:
61 ;; 220 yxa.extundo.com ESMTP Sendmail 8.12.11/8.12.11/Debian-3; Wed, 26 May 2004 19:12:29 +0200; (No UCE/UBE) logging access from: c494102a.s-bi.bostream.se(OK)-c494102a.s-bi.bostream.se [217.215.27.65]
62 ;; 220 2.0.0 Ready to start TLS
63 ;; 250-yxa.extundo.com Hello c494102a.s-bi.bostream.se [217.215.27.65], pleased to meet you
64 ;; 250-ENHANCEDSTATUSCODES
65 ;; 250-PIPELINING
66 ;; 250-EXPN
67 ;; 250-VERB
68 ;; 250-8BITMIME
69 ;; 250-SIZE
70 ;; 250-DSN
71 ;; 250-ETRN
72 ;; 250-AUTH DIGEST-MD5 CRAM-MD5 PLAIN LOGIN
73 ;; 250-DELIVERBY
74 ;; 250 HELP
75 ;; nil
77 ;; With the message buffer containing:
79 ;; STARTTLS output:
80 ;; *** Starting TLS handshake
81 ;; - Server's trusted authorities:
82 ;; [0]: C=SE,ST=Stockholm,L=Stockholm,O=YXA,OU=CA,CN=yxa.extundo.com,EMAIL=staff@yxa.extundo.com
83 ;; - Certificate type: X.509
84 ;; - Got a certificate list of 2 certificates.
86 ;; - Certificate[0] info:
87 ;; # The hostname in the certificate matches 'yxa.extundo.com'.
88 ;; # valid since: Wed May 26 12:16:00 CEST 2004
89 ;; # expires at: Wed Jul 26 12:16:00 CEST 2023
90 ;; # serial number: 04
91 ;; # fingerprint: 7c 04 4b c1 fa 26 9b 5d 90 22 52 3c 65 3d 85 3a
92 ;; # version: #1
93 ;; # public key algorithm: RSA
94 ;; # Modulus: 1024 bits
95 ;; # Subject's DN: C=SE,ST=Stockholm,L=Stockholm,O=YXA,OU=Mail server,CN=yxa.extundo.com,EMAIL=staff@yxa.extundo.com
96 ;; # Issuer's DN: C=SE,ST=Stockholm,L=Stockholm,O=YXA,OU=CA,CN=yxa.extundo.com,EMAIL=staff@yxa.extundo.com
98 ;; - Certificate[1] info:
99 ;; # valid since: Sun May 23 11:35:00 CEST 2004
100 ;; # expires at: Sun Jul 23 11:35:00 CEST 2023
101 ;; # serial number: 00
102 ;; # fingerprint: fc 76 d8 63 1a c9 0b 3b fa 40 fe ed 47 7a 58 ae
103 ;; # version: #3
104 ;; # public key algorithm: RSA
105 ;; # Modulus: 1024 bits
106 ;; # Subject's DN: C=SE,ST=Stockholm,L=Stockholm,O=YXA,OU=CA,CN=yxa.extundo.com,EMAIL=staff@yxa.extundo.com
107 ;; # Issuer's DN: C=SE,ST=Stockholm,L=Stockholm,O=YXA,OU=CA,CN=yxa.extundo.com,EMAIL=staff@yxa.extundo.com
109 ;; - Peer's certificate issuer is unknown
110 ;; - Peer's certificate is NOT trusted
111 ;; - Version: TLS 1.0
112 ;; - Key Exchange: RSA
113 ;; - Cipher: ARCFOUR 128
114 ;; - MAC: SHA
115 ;; - Compression: NULL
117 ;;; Code:
119 (defgroup starttls nil
120 "Support for `Transport Layer Security' protocol."
121 :version "21.1"
122 :group 'mail)
124 (defcustom starttls-gnutls-program "gnutls-cli"
125 "Name of GnuTLS command line tool.
126 This program is used when GnuTLS is used, i.e. when
127 `starttls-use-gnutls' is non-nil."
128 :version "22.1"
129 :type 'string
130 :group 'starttls)
132 (defcustom starttls-program "starttls"
133 "The program to run in a subprocess to open an TLSv1 connection.
134 This program is used when the `starttls' command is used,
135 i.e. when `starttls-use-gnutls' is nil."
136 :type 'string
137 :group 'starttls)
139 (defcustom starttls-use-gnutls (not (executable-find starttls-program))
140 "Whether to use GnuTLS instead of the `starttls' command."
141 :version "22.1"
142 :type 'boolean
143 :group 'starttls)
145 (defcustom starttls-extra-args nil
146 "Extra arguments to `starttls-program'.
147 These apply when the `starttls' command is used, i.e. when
148 `starttls-use-gnutls' is nil."
149 :type '(repeat string)
150 :group 'starttls)
152 (defcustom starttls-extra-arguments nil
153 "Extra arguments to `starttls-gnutls-program'.
154 These apply when GnuTLS is used, i.e. when `starttls-use-gnutls' is non-nil.
156 For example, non-TLS compliant servers may require
157 \(\"--protocols\" \"ssl3\"). Invoke \"gnutls-cli --help\" to
158 find out which parameters are available."
159 :version "22.1"
160 :type '(repeat string)
161 :group 'starttls)
163 (defcustom starttls-process-connection-type nil
164 "Value for `process-connection-type' to use when starting STARTTLS process."
165 :version "22.1"
166 :type 'boolean
167 :group 'starttls)
169 (defcustom starttls-connect "- Simple Client Mode:\n\n"
170 "Regular expression indicating successful connection.
171 The default is what GnuTLS's \"gnutls-cli\" outputs."
172 ;; GnuTLS cli.c:main() prints this string when it is starting to run
173 ;; in the application read/write phase. If the logic, or the string
174 ;; itself, is modified, this must be updated.
175 :version "22.1"
176 :type 'regexp
177 :group 'starttls)
179 (defcustom starttls-failure "\\*\\*\\* Handshake has failed"
180 "Regular expression indicating failed TLS handshake.
181 The default is what GnuTLS's \"gnutls-cli\" outputs."
182 ;; GnuTLS cli.c:do_handshake() prints this string on failure. If the
183 ;; logic, or the string itself, is modified, this must be updated.
184 :version "22.1"
185 :type 'regexp
186 :group 'starttls)
188 (defcustom starttls-success "- Compression: "
189 "Regular expression indicating completed TLS handshakes.
190 The default is what GnuTLS's \"gnutls-cli\" outputs."
191 ;; GnuTLS cli.c:do_handshake() calls, on success,
192 ;; common.c:print_info(), that unconditionally print this string
193 ;; last. If that logic, or the string itself, is modified, this
194 ;; must be updated.
195 :version "22.1"
196 :type 'regexp
197 :group 'starttls)
199 (defun starttls-negotiate-gnutls (process)
200 "Negotiate TLS on PROCESS opened by `open-starttls-stream'.
201 This should typically only be done once. It typically returns a
202 multi-line informational message with information about the
203 handshake, or nil on failure."
204 (let (buffer info old-max done-ok done-bad)
205 (if (null (setq buffer (process-buffer process)))
206 ;; XXX How to remove/extract the TLS negotiation junk?
207 (signal-process (process-id process) 'SIGALRM)
208 (with-current-buffer buffer
209 (save-excursion
210 (setq old-max (goto-char (point-max)))
211 (signal-process (process-id process) 'SIGALRM)
212 (while (and (processp process)
213 (eq (process-status process) 'run)
214 (save-excursion
215 (goto-char old-max)
216 (not (or (setq done-ok (re-search-forward
217 starttls-success nil t))
218 (setq done-bad (re-search-forward
219 starttls-failure nil t))))))
220 (accept-process-output process 1 100)
221 (sit-for 0.1))
222 (setq info (buffer-substring-no-properties old-max (point-max)))
223 (delete-region old-max (point-max))
224 (if (or (and done-ok (not done-bad))
225 ;; Prevent mitm that fake success msg after failure msg.
226 (and done-ok done-bad (< done-ok done-bad)))
227 info
228 (message "STARTTLS negotiation failed: %s" info)
229 nil))))))
231 (defun starttls-negotiate (process)
232 (if starttls-use-gnutls
233 (starttls-negotiate-gnutls process)
234 (signal-process (process-id process) 'SIGALRM)))
236 (defun starttls-open-stream-gnutls (name buffer host port)
237 (message "Opening STARTTLS connection to `%s:%s'..." host port)
238 (let* (done
239 (old-max (with-current-buffer buffer (point-max)))
240 (process-connection-type starttls-process-connection-type)
241 (process (apply #'start-process name buffer
242 starttls-gnutls-program "-s" host
243 "-p" (if (integerp port)
244 (int-to-string port)
245 port)
246 starttls-extra-arguments)))
247 (set-process-query-on-exit-flag process nil)
248 (while (and (processp process)
249 (eq (process-status process) 'run)
250 (with-current-buffer buffer
251 (goto-char old-max)
252 (not (setq done (re-search-forward
253 starttls-connect nil t)))))
254 (accept-process-output process 0 100)
255 (sit-for 0.1))
256 (if done
257 (with-current-buffer buffer
258 (delete-region old-max done))
259 (delete-process process)
260 (setq process nil))
261 (message "Opening STARTTLS connection to `%s:%s'...%s"
262 host port (if done "done" "failed"))
263 process))
265 ;;;###autoload
266 (defun starttls-open-stream (name buffer host port)
267 "Open a TLS connection for a port to a host.
268 Returns a subprocess object to represent the connection.
269 Input and output work as for subprocesses; `delete-process' closes it.
270 Args are NAME BUFFER HOST PORT.
271 NAME is name for process. It is modified if necessary to make it unique.
272 BUFFER is the buffer (or `buffer-name') to associate with the process.
273 Process output goes at end of that buffer, unless you specify
274 a filter function to handle the output.
275 BUFFER may be also nil, meaning that this process is not associated
276 with any buffer
277 Third arg is name of the host to connect to, or its IP address.
278 Fourth arg PORT is an integer specifying a port to connect to.
279 If `starttls-use-gnutls' is nil, this may also be a service name, but
280 GnuTLS requires a port number."
281 (if starttls-use-gnutls
282 (starttls-open-stream-gnutls name buffer host port)
283 (message "Opening STARTTLS connection to `%s:%s'" host (format "%s" port))
284 (let* ((process-connection-type starttls-process-connection-type)
285 (process (apply #'start-process
286 name buffer starttls-program
287 host (format "%s" port)
288 starttls-extra-args)))
289 (set-process-query-on-exit-flag process nil)
290 process)))
292 (defun starttls-available-p ()
293 "Say whether the STARTTLS programs are available."
294 (and (not (memq system-type '(windows-nt ms-dos)))
295 (executable-find (if starttls-use-gnutls
296 starttls-gnutls-program
297 starttls-program))))
299 (defalias 'starttls-any-program-available 'starttls-available-p)
300 (make-obsolete 'starttls-any-program-available 'starttls-available-p
301 "2011-08-02")
303 (provide 'starttls)
305 ;;; starttls.el ends here