2005-02-22 Arne Jørgensen <arne@arnested.dk>
[gnus] / lisp / mml-smime.el
1 ;;; mml-smime.el --- S/MIME support for MML
2 ;; Copyright (c) 2000, 2001, 2003, 2005 Free Software Foundation, Inc.
3
4 ;; Author: Simon Josefsson <simon@josefsson.org>
5 ;; Keywords: Gnus, MIME, S/MIME, MML
6
7 ;; This file is part of GNU Emacs.
8
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
11 ;; by the Free Software Foundation; either version 2, or (at your
12 ;; option) any later version.
13
14 ;; GNU Emacs is distributed in the hope that it will be useful, but
15 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17 ;; General Public License for more details.
18
19 ;; You should have received a copy of the GNU General Public License
20 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22 ;; Boston, MA 02111-1307, USA.
23
24 ;;; Commentary:
25
26 ;;; Code:
27
28 (eval-when-compile (require 'cl))
29
30 (require 'smime)
31 (require 'mm-decode)
32 (autoload 'message-narrow-to-headers "message")
33 (autoload 'message-fetch-field "message")
34
35 (defun mml-smime-sign (cont)
36   (when (null smime-keys)
37     (customize-variable 'smime-keys)
38     (error "No S/MIME keys configured, use customize to add your key"))
39   (smime-sign-buffer (cdr (assq 'keyfile cont)))
40   (goto-char (point-min))
41   (while (search-forward "\r\n" nil t)
42     (replace-match "\n" t t))
43   (goto-char (point-max)))
44
45 (defun mml-smime-encrypt (cont)
46   (let (certnames certfiles tmp file tmpfiles)
47     ;; xxx tmp files are always an security issue
48     (while (setq tmp (pop cont))
49       (if (and (consp tmp) (eq (car tmp) 'certfile))
50           (push (cdr tmp) certnames)))
51     (while (setq tmp (pop certnames))
52       (if (not (and (not (file-exists-p tmp))
53                     (get-buffer tmp)))
54           (push tmp certfiles)
55         (setq file (mm-make-temp-file (expand-file-name "mml." 
56                                                         mm-tmp-directory)))
57         (with-current-buffer tmp
58           (write-region (point-min) (point-max) file))
59         (push file certfiles)
60         (push file tmpfiles)))
61     (if (smime-encrypt-buffer certfiles)
62         (progn
63           (while (setq tmp (pop tmpfiles))
64             (delete-file tmp))
65           t)
66       (while (setq tmp (pop tmpfiles))
67         (delete-file tmp))
68       nil))
69   (goto-char (point-max)))
70
71 (defun mml-smime-sign-query ()
72   ;; query information (what certificate) from user when MML tag is
73   ;; added, for use later by the signing process
74   (when (null smime-keys)
75     (customize-variable 'smime-keys)
76     (error "No S/MIME keys configured, use customize to add your key"))
77   (list 'keyfile
78         (if (= (length smime-keys) 1)
79             (cadar smime-keys)
80           (or (let ((from (cadr (funcall gnus-extract-address-components
81                                          (or (save-excursion
82                                                (save-restriction
83                                                  (message-narrow-to-headers)
84                                                  (message-fetch-field "from")))
85                                              "")))))
86                 (and from (smime-get-key-by-email from)))
87               (smime-get-key-by-email
88                (completing-read "Sign this part with what signature? "
89                                 smime-keys nil nil
90                                 (and (listp (car-safe smime-keys))
91                                      (caar smime-keys))))))))
92
93 (defun mml-smime-get-file-cert ()
94   (ignore-errors
95     (list 'certfile (read-file-name
96                      "File with recipient's S/MIME certificate: "
97                      smime-certificate-directory nil t ""))))
98
99 (defun mml-smime-get-dns-cert ()
100   ;; todo: deal with comma separated multiple recipients
101   (let (result who bad cert)
102     (condition-case ()
103         (while (not result)
104           (setq who (read-from-minibuffer
105                      (format "%sLookup certificate for: " (or bad ""))
106                      (cadr (funcall gnus-extract-address-components
107                                     (or (save-excursion
108                                           (save-restriction
109                                             (message-narrow-to-headers)
110                                             (message-fetch-field "to")))
111                                         "")))))
112           (if (setq cert (smime-cert-by-dns who))
113               (setq result (list 'certfile (buffer-name cert)))
114             (setq bad (format "`%s' not found. " who))))
115       (quit))
116     result))
117
118 (defun mml-smime-get-ldap-cert ()
119   ;; todo: deal with comma separated multiple recipients
120   (let (result who bad cert)
121     (condition-case ()
122         (while (not result)
123           (setq who (read-from-minibuffer
124                      (format "%sLookup certificate for: " (or bad ""))
125                      (cadr (funcall gnus-extract-address-components
126                                     (or (save-excursion
127                                           (save-restriction
128                                             (message-narrow-to-headers)
129                                             (message-fetch-field "to")))
130                                         "")))))
131           (if (setq cert (smime-cert-by-ldap who))
132               (setq result (list 'certfile (buffer-name cert)))
133             (setq bad (format "`%s' not found. " who))))
134       (quit))
135     result))
136
137 (defun mml-smime-encrypt-query ()
138   ;; todo: try dns/ldap automatically first, before prompting user
139   (let (certs done)
140     (while (not done)
141       (ecase (read (gnus-completing-read-with-default
142                     "ldap" "Fetch certificate from"
143                     '(("dns") ("ldap") ("file")) nil t))
144         (dns (setq certs (append certs
145                                  (mml-smime-get-dns-cert))))
146         (ldap (setq certs (append certs
147                                   (mml-smime-get-ldap-cert))))
148         (file (setq certs (append certs
149                                   (mml-smime-get-file-cert)))))
150       (setq done (not (y-or-n-p "Add more recipients? "))))
151     certs))
152
153 (defun mml-smime-verify (handle ctl)
154   (with-temp-buffer
155     (insert-buffer-substring (mm-handle-multipart-original-buffer ctl))
156     (goto-char (point-min))
157     (insert (format "Content-Type: %s; " (mm-handle-media-type ctl)))
158     (insert (format "protocol=\"%s\"; "
159                     (mm-handle-multipart-ctl-parameter ctl 'protocol)))
160     (insert (format "micalg=\"%s\"; "
161                     (mm-handle-multipart-ctl-parameter ctl 'micalg)))
162     (insert (format "boundary=\"%s\"\n\n"
163                     (mm-handle-multipart-ctl-parameter ctl 'boundary)))
164     (when (get-buffer smime-details-buffer)
165       (kill-buffer smime-details-buffer))
166     (let ((buf (current-buffer))
167           (good-signature (smime-noverify-buffer))
168           (good-certificate (and (or smime-CA-file smime-CA-directory)
169                                  (smime-verify-buffer)))
170           addresses openssl-output)
171       (setq openssl-output (with-current-buffer smime-details-buffer
172                              (buffer-string)))
173       (if (not good-signature)
174           (progn
175             ;; we couldn't verify message, fail with openssl output as message
176             (mm-set-handle-multipart-parameter
177              mm-security-handle 'gnus-info "Failed")
178             (mm-set-handle-multipart-parameter
179              mm-security-handle 'gnus-details
180              (concat "OpenSSL failed to verify message integrity:\n"
181                      "-------------------------------------------\n"
182                      openssl-output)))
183         ;; verify mail addresses in mail against those in certificate
184         (when (and (smime-pkcs7-region (point-min) (point-max))
185                    (smime-pkcs7-certificates-region (point-min) (point-max)))
186           (with-temp-buffer
187             (insert-buffer-substring buf)
188             (goto-char (point-min))
189             (while (re-search-forward "-----END CERTIFICATE-----" nil t)
190               (when (smime-pkcs7-email-region (point-min) (point))
191                 (setq addresses (append (smime-buffer-as-string-region
192                                          (point-min) (point)) addresses)))
193               (delete-region (point-min) (point)))
194             (setq addresses (mapcar 'downcase addresses))))
195         (if (not (member (downcase (or (mm-handle-multipart-from ctl) "")) addresses))
196             (mm-set-handle-multipart-parameter
197              mm-security-handle 'gnus-info "Sender address forged")
198           (if good-certificate
199               (mm-set-handle-multipart-parameter
200                mm-security-handle 'gnus-info "Ok (sender authenticated)")
201             (mm-set-handle-multipart-parameter
202              mm-security-handle 'gnus-info "Ok (sender not trusted)")))
203         (mm-set-handle-multipart-parameter
204          mm-security-handle 'gnus-details
205          (concat "Sender claimed to be: " (mm-handle-multipart-from ctl) "\n"
206                  (if addresses
207                      (concat "Addresses in certificate: "
208                              (mapconcat 'identity addresses ", "))
209                    "No addresses found in certificate. (Requires OpenSSL 0.9.6 or later.)")
210                  "\n" "\n"
211                  "OpenSSL output:\n"
212                  "---------------\n" openssl-output "\n"
213                  "Certificate(s) inside S/MIME signature:\n"
214                  "---------------------------------------\n"
215                  (buffer-string) "\n")))))
216   handle)
217
218 (defun mml-smime-verify-test (handle ctl)
219   smime-openssl-program)
220
221 (provide 'mml-smime)
222
223 ;;; arch-tag: f1bf94d4-f2cd-4c6f-b059-ad69492817e2
224 ;;; mml-smime.el ends here