1 ;;; epa-file.el --- the EasyPG Assistant, transparent file encryption -*- lexical-binding: t -*-
2 ;; Copyright (C) 2006-2012 Free Software Foundation, Inc.
4 ;; Author: Daiki Ueno <ueno@unixuser.org>
5 ;; Keywords: PGP, GnuPG
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28 (defcustom epa-file-cache-passphrase-for-symmetric-encryption nil
29 "If non-nil, cache passphrase for symmetric encryption.
31 For security reasons, this option is turned off by default and
32 not recommended to use. Instead, consider using public-key
33 encryption with gpg-agent which does the same job in a safer
38 (defcustom epa-file-select-keys nil
39 "Control whether or not to pop up the key selection dialog.
41 If t, always asks user to select recipients.
42 If nil, query user only when `epa-file-encrypt-to' is not set.
43 If neither t nor nil, doesn't ask user. In this case, symmetric
45 :type
'(choice (const :tag
"Ask always" t
)
46 (const :tag
"Ask when recipients are not set" nil
)
47 (const :tag
"Don't ask" silent
))
50 (defvar epa-file-passphrase-alist nil
)
53 (if (fboundp 'encode-coding-string
)
54 (defalias 'epa-file--encode-coding-string
'encode-coding-string
)
55 (defalias 'epa-file--encode-coding-string
'identity
)))
58 (if (fboundp 'decode-coding-string
)
59 (defalias 'epa-file--decode-coding-string
'decode-coding-string
)
60 (defalias 'epa-file--decode-coding-string
'identity
)))
62 (defun epa-file-passphrase-callback-function (context key-id file
)
63 (if (and epa-file-cache-passphrase-for-symmetric-encryption
66 (setq file
(file-truename file
))
67 (let ((entry (assoc file epa-file-passphrase-alist
))
69 (or (copy-sequence (cdr entry
))
72 (setq entry
(list file
)
73 epa-file-passphrase-alist
75 epa-file-passphrase-alist
)))
76 (setq passphrase
(epa-passphrase-callback-function context
79 (setcdr entry
(copy-sequence passphrase
))
81 (epa-passphrase-callback-function context key-id file
)))
84 (defun epa-file-handler (operation &rest args
)
86 (let ((op (get operation
'epa-file
)))
89 (epa-file-run-real-handler operation args
)))))
91 (defun epa-file-run-real-handler (operation args
)
92 (let ((inhibit-file-name-handlers
93 (cons 'epa-file-handler
94 (and (eq inhibit-file-name-operation operation
)
95 inhibit-file-name-handlers
)))
96 (inhibit-file-name-operation operation
))
97 (apply operation args
)))
99 (defun epa-file-decode-and-insert (string file visit beg end replace
)
100 (if (fboundp 'decode-coding-inserted-region
)
102 (narrow-to-region (point) (point))
103 (insert (if enable-multibyte-characters
104 (string-to-multibyte string
)
106 (decode-coding-inserted-region
107 (point-min) (point-max)
108 (substring file
0 (string-match epa-file-name-regexp file
))
109 visit beg end replace
))
110 (insert (epa-file--decode-coding-string string
(or coding-system-for-read
113 (defvar epa-file-error nil
)
114 (defun epa-file--find-file-not-found-function ()
115 (let ((error epa-file-error
))
116 (save-window-excursion
119 (cons "Opening input file" (cdr error
)))))
121 (defvar last-coding-system-used
)
122 (defun epa-file-insert-file-contents (file &optional visit beg end replace
)
123 (barf-if-buffer-read-only)
124 (if (and visit
(or beg end
))
125 (error "Attempt to visit less than an entire file"))
126 (setq file
(expand-file-name file
))
129 (epa-file-run-real-handler #'file-local-copy
(list file
))
131 (local-file (or local-copy file
))
132 (context (epg-make-context))
135 (setq buffer-file-name file
))
136 (epg-context-set-passphrase-callback
138 (cons #'epa-file-passphrase-callback-function
140 (epg-context-set-progress-callback
142 (cons #'epa-progress-callback-function
143 (format "Decrypting %s" file
)))
147 (goto-char (point-min)))
148 (condition-case error
149 (setq string
(epg-decrypt-file context local-file nil
))
151 (if (setq entry
(assoc file epa-file-passphrase-alist
))
153 ;; Hack to prevent find-file from opening empty buffer
154 ;; when decryption failed (bug#6568). See the place
155 ;; where `find-file-not-found-functions' are called in
156 ;; `find-file-noselect-1'.
157 (when (file-exists-p local-file
)
158 (make-local-variable 'epa-file-error
)
159 (setq epa-file-error error
)
160 (add-hook 'find-file-not-found-functions
161 'epa-file--find-file-not-found-function
164 (cons "Opening input file" (cdr error
)))))
165 (make-local-variable 'epa-file-encrypt-to
)
166 (setq epa-file-encrypt-to
167 (mapcar #'car
(epg-context-result-for context
'encrypted-to
)))
169 (setq string
(substring string
(or beg
0) end
)))
171 ;; If visiting, bind off buffer-file-name so that
172 ;; file-locking will not ask whether we should
173 ;; really edit the buffer.
174 (let ((buffer-file-name
175 (if visit nil buffer-file-name
)))
177 (narrow-to-region (point) (point))
178 (epa-file-decode-and-insert string file visit beg end replace
)
179 (setq length
(- (point-max) (point-min))))
181 (delete-region (point) (point-max))))
183 (set-visited-file-modtime))))
185 (file-exists-p local-copy
))
186 (delete-file local-copy
)))
188 (put 'insert-file-contents
'epa-file
'epa-file-insert-file-contents
)
190 (defun epa-file-write-region (start end file
&optional append visit lockname
193 (error "Can't append to the file"))
194 (setq file
(expand-file-name file
))
195 (let* ((coding-system (or coding-system-for-write
196 (if (fboundp 'select-safe-coding-system
)
197 ;; This is needed since Emacs 22 has
198 ;; no-conversion setting for *.gpg in
199 ;; `auto-coding-alist'.
200 (let ((buffer-file-name
201 (file-name-sans-extension file
)))
202 (select-safe-coding-system
203 (point-min) (point-max)))
204 buffer-file-coding-system
)))
205 (context (epg-make-context))
206 (coding-system-for-write 'binary
)
210 ((listp epa-file-encrypt-to
) epa-file-encrypt-to
)
211 ((stringp epa-file-encrypt-to
) (list epa-file-encrypt-to
)))))
212 (epg-context-set-passphrase-callback
214 (cons #'epa-file-passphrase-callback-function
216 (epg-context-set-progress-callback
218 (cons #'epa-progress-callback-function
219 (format "Encrypting %s" file
)))
220 (epg-context-set-armor context epa-armor
)
221 (condition-case error
226 (epa-file--encode-coding-string start coding-system
)
228 (setq start
(point-min)
230 (epa-file--encode-coding-string (buffer-substring start end
)
232 (if (or (eq epa-file-select-keys t
)
233 (and (null epa-file-select-keys
)
234 (not (local-variable-p 'epa-file-encrypt-to
238 "Select recipients for encryption.
239 If no one is selected, symmetric encryption will be performed. "
241 (if epa-file-encrypt-to
242 (epg-list-keys context recipients
)))))
244 (if (setq entry
(assoc file epa-file-passphrase-alist
))
246 (signal 'file-error
(cons "Opening output file" (cdr error
)))))
247 (epa-file-run-real-handler
249 (list string nil file append visit lockname mustbenew
))
250 (if (boundp 'last-coding-system-used
)
251 (setq last-coding-system-used coding-system
))
254 (setq buffer-file-name file
)
255 (set-visited-file-modtime))
258 (set-visited-file-modtime)
259 (setq buffer-file-name visit
))))
263 (message "Wrote %s" buffer-file-name
))))
264 (put 'write-region
'epa-file
'epa-file-write-region
)
266 (defun epa-file-select-keys ()
267 "Select recipients for encryption."
269 (make-local-variable 'epa-file-encrypt-to
)
270 (setq epa-file-encrypt-to
273 (epg-sub-key-id (car (epg-key-sub-key-list key
))))
276 "Select recipients for encryption.
277 If no one is selected, symmetric encryption will be performed. "))))
280 (defun epa-file-enable ()
282 (if (memq epa-file-handler file-name-handler-alist
)
283 (message "`epa-file' already enabled")
284 (setq file-name-handler-alist
285 (cons epa-file-handler file-name-handler-alist
))
286 (add-hook 'find-file-hook
'epa-file-find-file-hook
)
287 (setq auto-mode-alist
(cons epa-file-auto-mode-alist-entry auto-mode-alist
))
288 (message "`epa-file' enabled")))
291 (defun epa-file-disable ()
293 (if (memq epa-file-handler file-name-handler-alist
)
295 (setq file-name-handler-alist
296 (delq epa-file-handler file-name-handler-alist
))
297 (remove-hook 'find-file-hook
'epa-file-find-file-hook
)
298 (setq auto-mode-alist
(delq epa-file-auto-mode-alist-entry
300 (message "`epa-file' disabled"))
301 (message "`epa-file' already disabled")))
305 ;;; epa-file.el ends here