fix & update.
[elisp/semi.git] / pgg.el
1 ;;; pgg.el --- glue for the various PGP implementations.
2
3 ;; Copyright (C) 1999 Daiki Ueno
4
5 ;; Author: Daiki Ueno <ueno@ueda.info.waseda.ac.jp>
6 ;; Created: 1999/10/28
7 ;; Keywords: PGP
8
9 ;; This file is part of SEMI (Secure Emacs MIME Interface).
10
11 ;; This program is free software; you can redistribute it and/or
12 ;; modify it under the terms of the GNU General Public License as
13 ;; published by the Free Software Foundation; either version 2, or (at
14 ;; your option) any later version.
15
16 ;; This program is distributed in the hope that it will be useful, but
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19 ;; General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING.  If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26
27 ;;; Commentary:
28 ;; 
29
30 ;;; Code:
31
32 (require 'calist)
33
34 (eval-and-compile (require 'luna))
35
36 (require 'pgg-def)
37 (require 'pgg-parse)
38
39 (eval-when-compile
40   (ignore-errors
41     (require 'w3)
42     (require 'url)))
43
44 (in-calist-package 'pgg)
45
46 (defun pgg-field-match-method-with-containment
47   (calist field-type field-value)
48   (let ((s-field (assq field-type calist)))
49     (cond ((null s-field)
50            (cons (cons field-type field-value) calist)
51            )
52           ((memq (cdr s-field) field-value)
53            calist))))
54
55 (define-calist-field-match-method 'signature-version
56   #'pgg-field-match-method-with-containment)
57
58 (define-calist-field-match-method 'symmetric-key-algorithm
59   #'pgg-field-match-method-with-containment)
60
61 (define-calist-field-match-method 'public-key-algorithm
62   #'pgg-field-match-method-with-containment)
63
64 (define-calist-field-match-method 'hash-algorithm
65   #'pgg-field-match-method-with-containment)
66
67 (defvar pgg-verify-condition nil
68   "Condition-tree about which PGP implementation is used for verifying.")
69
70 (defvar pgg-decrypt-condition nil
71   "Condition-tree about which PGP implementation is used for decrypting.")
72
73 (ctree-set-calist-strictly
74  'pgg-verify-condition
75  '((signature-version 3)(public-key-algorithm RSA)(hash-algorithm MD5)
76    (scheme . pgp)))
77
78 (ctree-set-calist-strictly
79  'pgg-decrypt-condition
80  '((public-key-algorithm RSA)(symmetric-key-algorithm IDEA)
81    (scheme . pgp)))
82
83 (ctree-set-calist-strictly
84  'pgg-verify-condition
85  '((signature-version 3 4)
86    (public-key-algorithm RSA ELG DSA)
87    (hash-algorithm MD5 SHA1 RIPEMD160)
88    (scheme . pgp5)))
89
90 (ctree-set-calist-strictly
91  'pgg-decrypt-condition
92  '((public-key-algorithm RSA ELG DSA)
93    (symmetric-key-algorithm 3DES CAST5 IDEA)
94    (scheme . pgp5)))
95
96 (ctree-set-calist-strictly
97  'pgg-verify-condition
98  '((signature-version 3 4)
99    (public-key-algorithm ELG-E DSA ELG)
100    (hash-algorithm MD5 SHA1 RIPEMD160)
101    (scheme . gpg)))
102
103 (ctree-set-calist-strictly
104  'pgg-decrypt-condition
105  '((public-key-algorithm ELG-E DSA ELG)
106    (symmetric-key-algorithm 3DES CAST5 BLOWFISH TWOFISH)
107    (scheme . gpg)))
108
109 ;;; @ definition of the implementation scheme
110 ;;;
111
112 (eval-and-compile
113   (luna-define-class pgg-scheme ())
114
115   (luna-define-internal-accessors 'pgg-scheme)
116   )
117
118 (luna-define-generic lookup-key-string (scheme string &optional type)
119   "Search keys associated with STRING")
120
121 (luna-define-generic encrypt-region (scheme start end recipients)
122   "Encrypt the current region between START and END.")
123
124 (luna-define-generic decrypt-region (scheme start end)
125   "Decrypt the current region between START and END.")
126
127 (luna-define-generic sign-region (scheme start end &optional cleartext)
128   "Make detached signature from text between START and END.")
129
130 (luna-define-generic verify-region (scheme start end &optional signature)
131   "Verify region between START and END
132 as the detached signature SIGNATURE.")
133
134 (luna-define-generic insert-key (scheme)
135   "Insert public key at point.")
136
137 (luna-define-generic snarf-keys-region (scheme start end)
138   "Add all public keys in region between START
139 and END to the keyring.")
140
141 ;;; @ utility functions
142 ;;;
143
144 (defvar pgg-fetch-key-function (function pgg-fetch-key-with-w3))
145
146 (defmacro pgg-make-scheme (scheme)
147   `(progn
148      (require (intern (format "pgg-%s" ,scheme)))
149      (funcall (intern (format "pgg-make-scheme-%s"
150                               ,scheme)))))
151
152 (put 'pgg-save-coding-system 'lisp-indent-function 2)
153
154 (defmacro pgg-save-coding-system (start end &rest body)
155   `(if (interactive-p)
156        (let ((buffer (current-buffer)))
157          (with-temp-buffer
158            (let (buffer-undo-list)
159              (set-buffer-multibyte nil)
160              (insert-buffer-substring buffer ,start ,end)
161              (encode-coding-region (point-min)(point-max)
162                                    buffer-file-coding-system)
163              (prog1 (save-excursion ,@body)
164                (push nil buffer-undo-list)
165                (ignore-errors (undo)))
166              )))
167      (save-restriction
168        (narrow-to-region ,start ,end)
169        ,@body)))
170
171 (defun pgg-temp-buffer-show-function (buffer)
172   (if (one-window-p (selected-window))
173       (let ((window (split-window-vertically
174                      (- (window-height) 
175                         (/ (window-height) 5)))))
176         (set-window-buffer window buffer))
177     (display-buffer buffer)))
178
179 (defun pgg-display-output-buffer (start end status)
180   (if status
181       (progn
182         (delete-region start end)
183         (insert-buffer-substring pgg-output-buffer)
184         (decode-coding-region start (point) buffer-file-coding-system)
185         )
186     (let ((temp-buffer-show-function 
187            (function pgg-temp-buffer-show-function)))
188       (with-output-to-temp-buffer pgg-echo-buffer
189         (set-buffer standard-output)
190         (insert-buffer-substring pgg-errors-buffer)))
191     ))
192
193 (defvar pgg-passphrase-cache-expiry 16)
194 (defvar pgg-passphrase-cache (make-vector 7 0))
195
196 (defvar pgg-read-passphrase nil)
197 (defun pgg-read-passphrase (prompt &optional key)
198   (if (not pgg-read-passphrase)
199       (if (functionp 'read-passwd)
200           (setq pgg-read-passphrase 'read-passwd)
201         (if (load "passwd" t)
202             (setq pgg-read-passphrase 'read-passwd)
203           (autoload 'ange-ftp-read-passwd "ange-ftp")
204           (setq pgg-read-passphrase 'ange-ftp-read-passwd))))
205   (or (and key (setq key (pgg-truncate-key-identifier key))
206            (symbol-value (intern-soft key pgg-passphrase-cache)))
207       (funcall pgg-read-passphrase prompt)))
208
209 (defun pgg-add-passphrase-cache (key passphrase)
210   (setq key (pgg-truncate-key-identifier key))
211   (set (intern key pgg-passphrase-cache)
212        passphrase)
213   (run-at-time pgg-passphrase-cache-expiry nil
214                #'pgg-remove-passphrase-cache
215                key))
216
217 (defun pgg-remove-passphrase-cache (key)
218   (unintern key pgg-passphrase-cache))
219
220 (defmacro pgg-convert-lbt-region (start end lbt)
221   `(let ((pgg-conversion-end (set-marker (make-marker) ,end)))
222      (goto-char ,start)
223      (case ,lbt
224        (CRLF
225         (while (progn
226                  (end-of-line)
227                  (> (marker-position pgg-conversion-end) (point)))
228           (insert "\r")
229           (forward-line 1)))
230        (LF
231         (while (re-search-forward "\r$" pgg-conversion-end t)
232           (replace-match ""))))
233      ))
234
235 (put 'pgg-as-lbt 'lisp-indent-function 3)
236
237 (defmacro pgg-as-lbt (start end lbt &rest body)
238   `(let ((inhibit-read-only t)
239          buffer-read-only
240          buffer-undo-list)
241      (pgg-convert-lbt-region ,start ,end ,lbt)
242      (let ((,end (point)))
243        ,@body)
244      (push nil buffer-undo-list)
245      (ignore-errors (undo))))
246
247 (put 'pgg-process-when-success 'lisp-indent-function 0)
248
249 (defmacro pgg-process-when-success (&rest body)
250   `(with-current-buffer pgg-output-buffer
251      (if (zerop (buffer-size)) nil ,@body t)))
252
253
254 ;;; @ interface functions
255 ;;;
256
257 ;;;###autoload
258 (defun pgg-encrypt-region (start end rcpts)
259   "Encrypt the current region between START and END for RCPTS."
260   (interactive
261    (list (region-beginning)(region-end)
262          (split-string (read-string "Recipients: ") "[ \t,]+")))
263   (let* ((entity (pgg-make-scheme pgg-default-scheme))
264          (status (pgg-save-coding-system start end
265                    (luna-send entity 'encrypt-region entity
266                               (point-min)(point-max) rcpts))))
267     (when (interactive-p)
268       (pgg-display-output-buffer start end status))
269     status))
270
271 ;;;###autoload
272 (defun pgg-decrypt-region (start end)
273   "Decrypt the current region between START and END."
274   (interactive "r")
275   (let* ((packet (cdr (assq 1 (pgg-parse-armor-region start end))))
276          (scheme
277           (or pgg-scheme
278               (cdr (assq 'scheme
279                          (progn
280                            (in-calist-package 'pgg)
281                            (ctree-match-calist pgg-decrypt-condition
282                                                packet))))
283               pgg-default-scheme))
284          (entity (pgg-make-scheme scheme))
285          (status (pgg-save-coding-system start end
286                    (luna-send entity 'decrypt-region entity 
287                               (point-min)(point-max)))))
288     (when (interactive-p)
289       (pgg-display-output-buffer start end status))
290     status))
291
292 ;;;###autoload
293 (defun pgg-sign-region (start end &optional cleartext)
294   "Make the signature from text between START and END.
295 If the optional 3rd argument CLEARTEXT is non-nil, it does not create
296 a detached signature."
297   (interactive "r")
298   (let* ((entity (pgg-make-scheme pgg-default-scheme))
299          (status (pgg-save-coding-system start end
300                    (luna-send entity 'sign-region entity
301                               (point-min)(point-max)
302                               (or (interactive-p) cleartext)))))
303     (when (interactive-p)
304       (pgg-display-output-buffer start end status))
305     status))
306
307 ;;;###autoload
308 (defun pgg-verify-region (start end &optional signature fetch)
309   "Verify the current region between START and END.
310 If the optional 3rd argument SIGNATURE is non-nil, it is treated as
311 the detached signature of the current region.
312
313 If the optional 4th argument FETCH is non-nil, we attempt to fetch the
314 signer's public key from `pgg-default-keyserver-address'."
315   (interactive "r")
316   (let* ((packet
317           (if (null signature) nil
318             (with-temp-buffer
319               (buffer-disable-undo)
320               (set-buffer-multibyte nil)
321               (insert-file-contents signature)
322               (cdr (assq 2 (pgg-decode-armor-region (point-min)(point-max))))
323               )))
324          (scheme
325           (or pgg-scheme
326               (cdr (assq 'scheme
327                          (progn
328                            (in-calist-package 'pgg)
329                            (ctree-match-calist pgg-verify-condition
330                                                packet))))
331               pgg-default-scheme))
332          (entity (pgg-make-scheme scheme))
333          (key (cdr (assq 'key-identifier packet)))
334          status keyserver)
335     (and (stringp key)
336          (setq key (concat "0x" (pgg-truncate-key-identifier key)))
337          (null (let ((pgg-scheme scheme))
338                  (pgg-lookup-key-string key)))
339          (or fetch (interactive-p))
340          (y-or-n-p (format "Key %s not found; attempt to fetch? " key))
341          (setq keyserver
342                (or (cdr (assq 'preferred-key-server packet))
343                    pgg-default-keyserver-address))
344          (pgg-fetch-key keyserver key))
345     (setq status (pgg-save-coding-system start end
346                    (luna-send entity 'verify-region entity 
347                               (point-min)(point-max) signature)))
348     (when (interactive-p)
349       (with-output-to-temp-buffer pgg-echo-buffer
350         (set-buffer standard-output)
351         (insert-buffer-substring (if status pgg-output-buffer
352                                    pgg-errors-buffer))
353         ))
354     status))
355
356 ;;;###autoload
357 (defun pgg-insert-key ()
358   "Insert the ASCII armored public key."
359   (interactive)
360   (let ((entity (pgg-make-scheme (or pgg-scheme pgg-default-scheme))))
361     (luna-send entity 'insert-key entity)))
362
363 ;;;###autoload
364 (defun pgg-snarf-keys-region (start end)
365   "Import public keys in the current region between START and END."
366   (interactive "r")
367   (let ((entity (pgg-make-scheme (or pgg-scheme pgg-default-scheme))))
368     (pgg-save-coding-system start end
369       (luna-send entity 'snarf-keys-region entity start end))))
370
371 (defun pgg-lookup-key-string (string &optional type)
372   (let ((entity (pgg-make-scheme (or pgg-scheme pgg-default-scheme))))
373     (luna-send entity 'lookup-key-string entity string type)))
374
375 (defvar pgg-insert-url-function  (function pgg-insert-url-with-w3))
376
377 (defun pgg-insert-url-with-w3 (url)
378   (require 'w3)
379   (require 'url)
380   (let (buffer-file-name)
381     (url-insert-file-contents url)))
382
383 (defvar pgg-insert-url-extra-arguments nil)
384 (defvar pgg-insert-url-program nil)
385
386 (defun pgg-insert-url-with-program (url)
387   (let ((args (copy-sequence pgg-insert-url-extra-arguments))
388         process)
389     (insert
390      (with-temp-buffer
391        (setq process
392              (apply #'start-process " *PGG url*" (current-buffer)
393                     pgg-insert-url-program (nconc args (list url))))
394        (set-process-sentinel process #'ignore)
395        (while (eq 'run (process-status process))
396          (accept-process-output process 5))
397        (delete-process process)
398        (if (and process (eq 'run (process-status process)))
399            (interrupt-process process))
400        (buffer-string)))
401     ))
402
403 (defun pgg-fetch-key (keyserver key)
404   "Attempt to fetch a KEY from KEYSERVER for addition to PGP or GnuPG keyring."
405   (with-current-buffer (get-buffer-create pgg-output-buffer)
406     (buffer-disable-undo)
407     (erase-buffer)
408     (let ((proto (if (string-match "^[a-zA-Z\\+\\.\\\\-]+:" keyserver)
409                      (substring keyserver 0 (1- (match-end 0))))))
410       (save-excursion
411         (funcall pgg-insert-url-function
412                  (if proto keyserver
413                    (format "http://%s:11371/pks/lookup?op=get&search=%s"
414                            keyserver key))))
415       (when (re-search-forward "^-+BEGIN" nil 'last)
416         (delete-region (point-min) (match-beginning 0))
417         (when (re-search-forward "^-+END" nil t)
418           (delete-region (progn (end-of-line) (point))
419                          (point-max)))
420         (insert "\n")
421         (with-temp-buffer
422           (insert-buffer-substring pgg-output-buffer)
423           (pgg-snarf-keys-region (point-min)(point-max))))
424       )))
425
426
427 (provide 'pgg)
428
429 ;;; pgg.el ends here