e82214a27c66fb5d1c11dba1156a3b90ad39c56c
[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.14 1997-03-18 09:47:36 morioka Exp $
9 ;; Keywords: PGP, security, MIME, multimedia, mail, news
10
11 ;; This file is part of SEMI (SEMI is Emacs MIME Interfaces).
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-article/view-application/pgp (beg end cal)
52   (let* ((cnum (mime-article/point-content-number beg))
53          (p-win (or (get-buffer-window mime::article/preview-buffer)
54                     (get-largest-window)))
55          (new-name (format "%s-%s" (buffer-name) cnum))
56          (the-buf (current-buffer))
57          (mother mime::article/preview-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::article/preview-buffer)
104     ))
105
106 (set-atype 'mime/content-decoding-condition
107            '((type . "application/pgp")
108              (method . mime-article/view-application/pgp)
109              ))
110
111 (set-atype 'mime/content-decoding-condition
112            '((type . "text/x-pgp")
113              (method . mime-article/view-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::article/call-pgp-to-check-signature (output-buffer orig-file)
137   (save-excursion
138     (set-buffer output-buffer)
139     (erase-buffer)
140     )
141   (let* ((lang (or mime-pgp-default-language 'en))
142          (status (call-process-region (point-min)(point-max)
143                                       mime-pgp-command
144                                       nil output-buffer nil
145                                       orig-file (format "+language=%s" lang)))
146          (regexp (cdr (assq lang mime-pgp-good-signature-regexp-alist)))
147          )
148     (if (= status 0)
149         (save-excursion
150           (set-buffer output-buffer)
151           (goto-char (point-min))
152           (message
153            (cond ((not (stringp regexp))
154                   "Please specify right regexp for specified language")
155                  ((re-search-forward regexp nil t)
156                   (buffer-substring (match-beginning 0) (match-end 0))
157                   )
158                  (t
159                   "Bad signature")))
160           ))))
161
162 (defun mime-article/check-pgp-signature (beg end cal)
163   (let* ((encoding (cdr (assq 'encoding cal)))
164          (cnum (mime-article/point-content-number beg))
165          (rcnum (reverse cnum))
166          (rmcnum (cdr rcnum))
167          (knum (car rcnum))
168          (onum (if (> knum 0)
169                    (1- knum)
170                  (1+ knum)))
171          (oinfo (mime-article/rcnum-to-cinfo (cons onum rmcnum)
172                                              mime::article/content-info))
173          str kbuf
174          (basename (expand-file-name "tm" mime-temp-directory))
175          (orig-file (make-temp-name basename))
176          (sig-file (concat orig-file ".sig"))
177          )
178     (save-excursion
179       (setq str (buffer-substring
180                  (mime::content-info/point-min oinfo)
181                  (mime::content-info/point-max oinfo)
182                  ))
183       (set-buffer (get-buffer-create mime/temp-buffer-name))
184       (insert str)
185       (goto-char (point-min))
186       (while (re-search-forward "\n" nil t)
187         (replace-match "\r\n")
188         )
189       (as-binary-output-file (write-file orig-file))
190       (kill-buffer (current-buffer))
191       )
192     (save-excursion
193       (mime-article/show-output-buffer)
194       )
195     (save-excursion
196       (setq str (buffer-substring
197                  (save-excursion
198                    (goto-char beg)
199                    (and (search-forward "\n\n")
200                         (match-end 0)))
201                  end))
202       (set-buffer (setq kbuf (get-buffer-create mime/temp-buffer-name)))
203       (insert str)
204       (mime-decode-region (point-min)(point-max) encoding)
205       (as-binary-output-file (write-file sig-file))
206       (or (mime::article/call-pgp-to-check-signature
207            mime/output-buffer-name orig-file)
208           (let (pgp-id)
209             (save-excursion
210               (set-buffer mime/output-buffer-name)
211               (goto-char (point-min))
212               (let ((regexp (cdr (assq (or mime-pgp-default-language 'en)
213                                        mime-pgp-key-expected-regexp-alist))))
214                 (cond ((not (stringp regexp))
215                        (message
216                         "Please specify right regexp for specified language")
217                        )
218                       ((re-search-forward regexp nil t)
219                        (setq pgp-id
220                              (concat "0x" (buffer-substring-no-properties
221                                            (match-beginning 1)
222                                            (match-end 1))))
223                        ))))
224             (if (and pgp-id
225                      (y-or-n-p
226                       (format "Key %s not found; attempt to fetch? " pgp-id))
227                      )
228                 (progn
229                   (funcall (pgp-function 'fetch-key) (cons nil pgp-id))
230                   (mime::article/call-pgp-to-check-signature
231                    mime/output-buffer-name orig-file)
232                   ))
233             ))
234       (let ((other-window-scroll-buffer mime/output-buffer-name))
235         (scroll-other-window 8)
236         )
237       (kill-buffer kbuf)
238       (delete-file orig-file)
239       (delete-file sig-file)
240       )))
241
242 (set-atype 'mime/content-decoding-condition
243            '((type . "application/pgp-signature")
244              (method . mime-article/check-pgp-signature)
245              ))
246
247
248 ;;; @ Internal method for application/pgp-encrypted
249 ;;;
250 ;;; It is based on RFC 2015.
251
252 (defun mime-article/decrypt-pgp (beg end cal)
253   (let* ((cnum (mime-article/point-content-number beg))
254          (rcnum (reverse cnum))
255          (rmcnum (cdr rcnum))
256          (knum (car rcnum))
257          (onum (if (> knum 0)
258                    (1- knum)
259                  (1+ knum)))
260          (oinfo (mime-article/rcnum-to-cinfo (cons onum rmcnum)
261                                              mime::article/content-info))
262          (obeg (mime::content-info/point-min oinfo))
263          (oend (mime::content-info/point-max oinfo))
264          )
265     (mime-article/view-application/pgp obeg oend cal)
266     ))
267
268 (set-atype 'mime/content-decoding-condition
269            '((type . "application/pgp-encrypted")
270              (method . mime-article/decrypt-pgp)
271              ))
272
273
274 ;;; @ Internal method for application/pgp-keys
275 ;;;
276 ;;; It is based on RFC 2015.
277
278 (defun mime-article/add-pgp-keys (beg end cal)
279   (let* ((cnum (mime-article/point-content-number beg))
280          (new-name (format "%s-%s" (buffer-name) cnum))
281          (encoding (cdr (assq 'encoding cal)))
282          str)
283     (setq str (buffer-substring beg end))
284     (switch-to-buffer new-name)
285     (setq buffer-read-only nil)
286     (erase-buffer)
287     (insert str)
288     (goto-char (point-min))
289     (if (re-search-forward "^\n" nil t)
290         (delete-region (point-min) (match-end 0))
291       )
292     (mime-decode-region (point-min)(point-max) encoding)
293     (funcall (pgp-function 'snarf-keys))
294     (kill-buffer (current-buffer))
295     ))
296
297 (set-atype 'mime/content-decoding-condition
298            '((type . "application/pgp-keys")
299              (method . mime-article/add-pgp-keys)
300              ))
301
302          
303 ;;; @ end
304 ;;;
305
306 (provide 'mime-pgp)
307
308 (run-hooks 'mime-pgp-load-hook)
309
310 ;;; mime-pgp.el ends here