Rename `mime-article/add-pgp-keys' -> `mime-pgp-add-keys'.
[elisp/semi.git] / mime-pgp.el
1 ;;; mime-pgp.el --- mime-view internal methods for PGP.
2
3 ;; Copyright (C) 1995,1996,1997 MORIOKA Tomohiko
4
5 ;; Author: MORIOKA Tomohiko <morioka@jaist.ac.jp>
6 ;; Created: 1995/12/7
7 ;;      Renamed: 1997/2/27 from tm-pgp.el
8 ;; Version: $Id: mime-pgp.el,v 0.28 1997-11-20 13:24:20 morioka Exp $
9 ;; Keywords: PGP, security, MIME, multimedia, mail, news
10
11 ;; This file is part of SEMI (Secure Emacs MIME Interface).
12
13 ;; This program is free software; you can redistribute it and/or
14 ;; modify it under the terms of the GNU General Public License as
15 ;; published by the Free Software Foundation; either version 2, or (at
16 ;; your option) any later version.
17
18 ;; This program is distributed in the hope that it will be useful, but
19 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
21 ;; General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
27
28 ;;; Commentary:
29
30 ;;    This module is based on 2 drafts about PGP MIME integration:
31
32 ;;      - RFC 2015: "MIME Security with Pretty Good Privacy (PGP)"
33 ;;              by Michael Elkins <elkins@aero.org> (1996/6)
34 ;;
35 ;;      - draft-kazu-pgp-mime-00.txt: "PGP MIME Integration"
36 ;;              by Kazuhiko Yamamoto <kazu@is.aist-nara.ac.jp>
37 ;;                      (1995/10; expired)
38 ;;
39 ;;    These drafts may be contrary to each other.  You should decide
40 ;;  which you support.  (Maybe you should use PGP/MIME)
41
42 ;;; Code:
43
44 (require 'mime-play)
45
46
47 ;;; @ internal method for application/pgp
48 ;;;
49 ;;; It is based on draft-kazu-pgp-mime-00.txt
50
51 (defun mime-process-application/pgp (beg end cal)
52   (let* ((cnum (mime-article/point-content-number beg))
53          (p-win (or (get-buffer-window mime-view-buffer)
54                     (get-largest-window)))
55          (new-name (format "%s-%s" (buffer-name) cnum))
56          (the-buf (current-buffer))
57          (mother mime-view-buffer)
58          (mode major-mode)
59          text-decoder)
60     (set-buffer (get-buffer-create new-name))
61     (erase-buffer)
62     (insert-buffer-substring the-buf beg end)
63     (cond ((progn
64              (goto-char (point-min))
65              (re-search-forward "^-+BEGIN PGP SIGNED MESSAGE-+$" nil t)
66              )
67            (funcall (pgp-function 'verify))
68            (goto-char (point-min))
69            (delete-region
70             (point-min)
71             (and
72              (re-search-forward "^-+BEGIN PGP SIGNED MESSAGE-+\n\n")
73              (match-end 0))
74             )
75            (delete-region
76             (and (re-search-forward "^-+BEGIN PGP SIGNATURE-+")
77                  (match-beginning 0))
78             (point-max)
79             )
80            (goto-char (point-min))
81            (while (re-search-forward "^- -" nil t)
82              (replace-match "-")
83              )
84            (setq text-decoder
85                  (cdr (or (assq mode mime-text-decoder-alist)
86                           (assq t    mime-text-decoder-alist))))
87            )
88           ((progn
89              (goto-char (point-min))
90              (re-search-forward "^-+BEGIN PGP MESSAGE-+$" nil t)
91              )
92            (as-binary-process (funcall (pgp-function 'decrypt)))
93            (goto-char (point-min))
94            (delete-region (point-min)
95                           (and
96                            (search-forward "\n\n")
97                            (match-end 0)))
98            (setq text-decoder (function mime-text-decode-buffer))
99            ))
100     (setq major-mode 'mime-show-message-mode)
101     (setq mime-text-decoder text-decoder)
102     (save-window-excursion (mime-view-mode mother))
103     (set-window-buffer p-win mime-view-buffer)
104     ))
105
106 (set-atype 'mime-acting-condition
107            '((type . "application/pgp")
108              (method . mime-process-application/pgp)
109              ))
110
111 (set-atype 'mime-acting-condition
112            '((type . "text/x-pgp")
113              (method . mime-process-application/pgp)
114              ))
115
116
117 ;;; @ Internal method for application/pgp-signature
118 ;;;
119 ;;; It is based on RFC 2015.
120
121 (defvar mime-pgp-command "pgp"
122   "*Name of the PGP command.")
123
124 (defvar mime-pgp-default-language 'en
125   "*Symbol of language for pgp.
126 It should be ISO 639 2 letter language code such as en, ja, ...")
127
128 (defvar mime-pgp-good-signature-regexp-alist
129   '((en . "Good signature from user.*$"))
130   "Alist of language vs regexp to detect ``Good signature''.")
131
132 (defvar mime-pgp-key-expected-regexp-alist
133   '((en . "Key matching expected Key ID \\(\\S +\\) not found"))
134   "Alist of language vs regexp to detect ``Key expected''.")
135
136 (defun mime-pgp-check-signature (output-buffer orig-file)
137   (save-excursion
138     (set-buffer output-buffer)
139     (erase-buffer))
140   (let* ((lang (or mime-pgp-default-language 'en))
141          (status (call-process-region (point-min)(point-max)
142                                       mime-pgp-command
143                                       nil output-buffer nil
144                                       orig-file (format "+language=%s" lang)))
145          (regexp (cdr (assq lang mime-pgp-good-signature-regexp-alist))))
146     (if (= status 0)
147         (save-excursion
148           (set-buffer output-buffer)
149           (goto-char (point-min))
150           (message
151            (cond ((not (stringp regexp))
152                   "Please specify right regexp for specified language")
153                  ((re-search-forward regexp nil t)
154                   (buffer-substring (match-beginning 0) (match-end 0)))
155                  (t "Bad signature")))
156           ))))
157
158 (defun mime-pgp-check-application/pgp-signature (beg end cal)
159   "Internal method to check PGP/MIME signature."
160   (let* ((encoding (cdr (assq 'encoding cal)))
161          (cnum (mime-article/point-content-number beg))
162          (rcnum (reverse cnum))
163          (rmcnum (cdr rcnum))
164          (knum (car rcnum))
165          (onum (if (> knum 0)
166                    (1- knum)
167                  (1+ knum)))
168          (raw-buf (current-buffer))
169          (oinfo (mime-article/rcnum-to-cinfo (cons onum rmcnum)
170                                              mime-raw-content-info))
171          kbuf
172          (basename (expand-file-name "tm" mime-temp-directory))
173          (orig-file (make-temp-name basename))
174          (sig-file (concat orig-file ".sig"))
175          )
176     (save-excursion
177       (let ((p-min (mime-entity-info-point-min oinfo))
178             (p-max (mime-entity-info-point-max oinfo))
179             )
180         (set-buffer (get-buffer-create mime-temp-buffer-name))
181         (insert-buffer-substring raw-buf p-min p-max)
182         )
183       (goto-char (point-min))
184       (while (re-search-forward "\n" nil t)
185         (replace-match "\r\n")
186         )
187       (as-binary-output-file (write-region (point-min)(point-max) orig-file))
188       (kill-buffer (current-buffer))
189       )
190     (save-excursion (mime-show-echo-buffer))
191     (save-excursion
192       (let ((p-min (save-excursion
193                      (goto-char beg)
194                      (and (search-forward "\n\n")
195                           (match-end 0))
196                      )))
197         (set-buffer (setq kbuf (get-buffer-create mime-temp-buffer-name)))
198         (insert-buffer-substring raw-buf p-min end)
199         )
200       (mime-decode-region (point-min)(point-max) encoding)
201       (as-binary-output-file (write-region (point-min)(point-max) sig-file))
202       (or (mime-pgp-check-signature mime-echo-buffer-name orig-file)
203           (let (pgp-id)
204             (save-excursion
205               (set-buffer mime-echo-buffer-name)
206               (goto-char (point-min))
207               (let ((regexp (cdr (assq (or mime-pgp-default-language 'en)
208                                        mime-pgp-key-expected-regexp-alist))))
209                 (cond ((not (stringp regexp))
210                        (message
211                         "Please specify right regexp for specified language")
212                        )
213                       ((re-search-forward regexp nil t)
214                        (setq pgp-id
215                              (concat "0x" (buffer-substring-no-properties
216                                            (match-beginning 1)
217                                            (match-end 1))))
218                        ))))
219             (if (and pgp-id
220                      (y-or-n-p
221                       (format "Key %s not found; attempt to fetch? " pgp-id))
222                      )
223                 (progn
224                   (funcall (pgp-function 'fetch-key) (cons nil pgp-id))
225                   (mime-pgp-check-signature mime-echo-buffer-name orig-file)
226                   ))
227             ))
228       (let ((other-window-scroll-buffer mime-echo-buffer-name))
229         (scroll-other-window 8)
230         )
231       (kill-buffer kbuf)
232       (delete-file orig-file)
233       (delete-file sig-file)
234       )))
235
236 (set-atype 'mime-acting-condition
237            '((type . "application/pgp-signature")
238              (method . mime-pgp-check-application/pgp-signature)
239              ))
240
241
242 ;;; @ Internal method for application/pgp-encrypted
243 ;;;
244 ;;; It is based on RFC 2015.
245
246 (defun mime-pgp-decrypt-application/pgp-encrypted (beg end cal)
247   (let* ((cnum (mime-article/point-content-number beg))
248          (rcnum (reverse cnum))
249          (rmcnum (cdr rcnum))
250          (knum (car rcnum))
251          (onum (if (> knum 0)
252                    (1- knum)
253                  (1+ knum)))
254          (oinfo (mime-article/rcnum-to-cinfo (cons onum rmcnum)
255                                              mime-raw-content-info))
256          (obeg (mime-entity-info-point-min oinfo))
257          (oend (mime-entity-info-point-max oinfo))
258          )
259     (mime-process-application/pgp obeg oend cal)
260     ))
261
262 (set-atype 'mime-acting-condition
263            '((type . "application/pgp-encrypted")
264              (method . mime-pgp-decrypt-application/pgp-encrypted)
265              ))
266
267
268 ;;; @ Internal method for application/pgp-keys
269 ;;;
270 ;;; It is based on RFC 2015.
271
272 (defun mime-pgp-add-keys (beg end cal)
273   (let* ((cnum (mime-article/point-content-number beg))
274          (new-name (format "%s-%s" (buffer-name) cnum))
275          (encoding (cdr (assq 'encoding cal)))
276          str)
277     (setq str (buffer-substring beg end))
278     (switch-to-buffer new-name)
279     (setq buffer-read-only nil)
280     (erase-buffer)
281     (insert str)
282     (goto-char (point-min))
283     (if (re-search-forward "^\n" nil t)
284         (delete-region (point-min) (match-end 0))
285       )
286     (mime-decode-region (point-min)(point-max) encoding)
287     (funcall (pgp-function 'snarf-keys))
288     (kill-buffer (current-buffer))
289     ))
290
291 (set-atype 'mime-acting-condition
292            '((type . "application/pgp-keys")
293              (method . mime-pgp-add-keys)
294              ))
295
296          
297 ;;; @ end
298 ;;;
299
300 (provide 'mime-pgp)
301
302 (run-hooks 'mime-pgp-load-hook)
303
304 ;;; mime-pgp.el ends here