Revision: miles@gnu.org--gnu-2005/gnus--devo--0--patch-47
[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: add ldap support (xemacs ldap api?)
139   ;; todo: try dns/ldap automatically first, before prompting user
140   (let (certs done)
141     (while (not done)
142       (ecase (read (gnus-completing-read-with-default
143                     "ldap" "Fetch certificate from"
144                     '(("dns") ("ldap") ("file")) nil t))
145         (dns (setq certs (append certs
146                                  (mml-smime-get-dns-cert))))
147         (ldap (setq certs (append certs
148                                   (mml-smime-get-ldap-cert))))
149         (file (setq certs (append certs
150                                   (mml-smime-get-file-cert)))))
151       (setq done (not (y-or-n-p "Add more recipients? "))))
152     certs))
153
154 (defun mml-smime-verify (handle ctl)
155   (with-temp-buffer
156     (insert-buffer-substring (mm-handle-multipart-original-buffer ctl))
157     (goto-char (point-min))
158     (insert (format "Content-Type: %s; " (mm-handle-media-type ctl)))
159     (insert (format "protocol=\"%s\"; "
160                     (mm-handle-multipart-ctl-parameter ctl 'protocol)))
161     (insert (format "micalg=\"%s\"; "
162                     (mm-handle-multipart-ctl-parameter ctl 'micalg)))
163     (insert (format "boundary=\"%s\"\n\n"
164                     (mm-handle-multipart-ctl-parameter ctl 'boundary)))
165     (when (get-buffer smime-details-buffer)
166       (kill-buffer smime-details-buffer))
167     (let ((buf (current-buffer))
168           (good-signature (smime-noverify-buffer))
169           (good-certificate (and (or smime-CA-file smime-CA-directory)
170                                  (smime-verify-buffer)))
171           addresses openssl-output)
172       (setq openssl-output (with-current-buffer smime-details-buffer
173                              (buffer-string)))
174       (if (not good-signature)
175           (progn
176             ;; we couldn't verify message, fail with openssl output as message
177             (mm-set-handle-multipart-parameter
178              mm-security-handle 'gnus-info "Failed")
179             (mm-set-handle-multipart-parameter
180              mm-security-handle 'gnus-details
181              (concat "OpenSSL failed to verify message integrity:\n"
182                      "-------------------------------------------\n"
183                      openssl-output)))
184         ;; verify mail addresses in mail against those in certificate
185         (when (and (smime-pkcs7-region (point-min) (point-max))
186                    (smime-pkcs7-certificates-region (point-min) (point-max)))
187           (with-temp-buffer
188             (insert-buffer-substring buf)
189             (goto-char (point-min))
190             (while (re-search-forward "-----END CERTIFICATE-----" nil t)
191               (when (smime-pkcs7-email-region (point-min) (point))
192                 (setq addresses (append (smime-buffer-as-string-region
193                                          (point-min) (point)) addresses)))
194               (delete-region (point-min) (point)))
195             (setq addresses (mapcar 'downcase addresses))))
196         (if (not (member (downcase (or (mm-handle-multipart-from ctl) "")) addresses))
197             (mm-set-handle-multipart-parameter
198              mm-security-handle 'gnus-info "Sender address forged")
199           (if good-certificate
200               (mm-set-handle-multipart-parameter
201                mm-security-handle 'gnus-info "Ok (sender authenticated)")
202             (mm-set-handle-multipart-parameter
203              mm-security-handle 'gnus-info "Ok (sender not trusted)")))
204         (mm-set-handle-multipart-parameter
205          mm-security-handle 'gnus-details
206          (concat "Sender claimed to be: " (mm-handle-multipart-from ctl) "\n"
207                  (if addresses
208                      (concat "Addresses in certificate: "
209                              (mapconcat 'identity addresses ", "))
210                    "No addresses found in certificate. (Requires OpenSSL 0.9.6 or later.)")
211                  "\n" "\n"
212                  "OpenSSL output:\n"
213                  "---------------\n" openssl-output "\n"
214                  "Certificate(s) inside S/MIME signature:\n"
215                  "---------------------------------------\n"
216                  (buffer-string) "\n")))))
217   handle)
218
219 (defun mml-smime-verify-test (handle ctl)
220   smime-openssl-program)
221
222 (provide 'mml-smime)
223
224 ;;; arch-tag: f1bf94d4-f2cd-4c6f-b059-ad69492817e2
225 ;;; mml-smime.el ends here