1 ;;; epg-config.el --- configuration of the EasyPG Library
3 ;; Copyright (C) 2006-2016 Free Software Foundation, Inc.
5 ;; Author: Daiki Ueno <ueno@unixuser.org>
6 ;; Keywords: PGP, GnuPG
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 (eval-when-compile (require 'cl-lib
))
28 (defconst epg-package-name
"epg"
29 "Name of this package.")
31 (defconst epg-version-number
"1.0.0"
32 "Version number of this package.")
34 (defconst epg-bug-report-address
"ueno@unixuser.org"
35 "Report bugs to this address.")
38 "Interface to the GNU Privacy Guard (GnuPG)."
44 (defcustom epg-gpg-program
(if (executable-find "gpg2")
47 "The `gpg' executable."
52 (defcustom epg-gpgsm-program
"gpgsm"
53 "The `gpgsm' executable."
57 (defcustom epg-gpgconf-program
"gpgconf"
58 "The `gpgconf' executable."
63 (defcustom epg-gpg-home-directory nil
64 "The directory which contains the configuration files of `epg-gpg-program'."
66 :type
'(choice (const :tag
"Default" nil
) directory
))
68 (defcustom epg-passphrase-coding-system nil
69 "Coding system to use with messages from `epg-gpg-program'."
73 (defcustom epg-debug nil
74 "If non-nil, debug output goes to the \" *epg-debug*\" buffer.
75 Note that the buffer name starts with a space."
79 (defconst epg-gpg-minimum-version
"1.4.3")
81 (defconst epg-config--program-alist
84 ("gpg2" .
"2.1.6") ("gpg" .
"1.4.3"))
88 "Alist used to obtain the usable configuration of executables.
89 The first element of each entry is protocol symbol, which is
90 either `OpenPGP' or `CMS'. The second element is a symbol where
91 the executable name is remembered. The rest of the entry is an
92 alist mapping executable names to the minimum required version
93 suitable for the use with Emacs.")
95 (defconst epg-config--configuration-constructor-alist
96 '((OpenPGP . epg-config--make-gpg-configuration
)
97 (CMS . epg-config--make-gpgsm-configuration
))
98 "Alist used to obtain the usable configuration of executables.
99 The first element of each entry is protocol symbol, which is
100 either `OpenPGP' or `CMS'. The second element is a function
101 which constructs a configuration object (actually a plist).")
103 (defvar epg--configurations nil
)
106 (defun epg-find-configuration (protocol &optional no-cache program-alist
)
107 "Find or create a usable configuration to handle PROTOCOL.
108 This function first looks at the existing configuration found by
109 the previous invocation of this function, unless NO-CACHE is non-nil.
111 Then it walks through PROGRAM-ALIST or
112 `epg-config--program-alist'. If `epg-gpg-program' or
113 `epg-gpgsm-program' is already set with custom, use it.
114 Otherwise, it tries the programs listed in the entry until the
115 version requirement is met."
116 (unless program-alist
117 (setq program-alist epg-config--program-alist
))
118 (let ((entry (assq protocol program-alist
)))
120 (error "Unknown protocol %S" protocol
))
121 (cl-destructuring-bind (symbol . alist
)
124 (alist-get protocol epg-config--configuration-constructor-alist
)))
125 (or (and (not no-cache
) (alist-get protocol epg--configurations
))
126 ;; If the executable value is already set with M-x
127 ;; customize, use it without checking.
128 (if (and symbol
(get symbol
'saved-value
))
130 (funcall constructor
(symbol-value symbol
))))
131 (push (cons protocol configuration
) epg--configurations
)
134 (dolist (program-version alist
)
135 (let ((executable (executable-find (car program-version
))))
138 (funcall constructor executable
)))
140 (epg-check-configuration configuration
141 (cdr program-version
))
144 (push (cons protocol configuration
)
145 epg--configurations
))
146 (throw 'found configuration
)))))))))))))
148 ;; Create an `epg-configuration' object for `gpg', using PROGRAM.
149 (defun epg-config--make-gpg-configuration (program)
150 (let (config groups type args
)
152 (apply #'call-process program nil
(list t nil
) nil
153 (append (if epg-gpg-home-directory
154 (list "--homedir" epg-gpg-home-directory
))
155 '("--with-colons" "--list-config")))
156 (goto-char (point-min))
157 (while (re-search-forward "^cfg:\\([^:]+\\):\\(.*\\)" nil t
)
158 (setq type
(intern (match-string 1))
159 args
(match-string 2))
162 (if (string-match "\\`\\([^:]+\\):" args
)
164 (cons (cons (downcase (match-string 1 args
))
165 (delete "" (split-string
171 (message "Invalid group configuration: %S" args
))))
172 ((memq type
'(pubkey cipher digest compress
))
173 (if (string-match "\\`\\([0-9]+\\)\\(;[0-9]+\\)*" args
)
176 (mapcar #'string-to-number
177 (delete "" (split-string args
";"))))
180 (message "Invalid %S algorithm configuration: %S"
183 (setq config
(cons (cons type args
) config
))))))
184 (push (cons 'program program
) config
)
186 (cons (cons 'groups groups
) config
)
189 ;; Create an `epg-configuration' object for `gpgsm', using PROGRAM.
190 (defun epg-config--make-gpgsm-configuration (program)
192 (call-process program nil
(list t nil
) nil
"--version")
193 (goto-char (point-min))
194 (when (looking-at "\\S-+ (")
195 (goto-char (match-end 0))
198 (skip-syntax-forward "-" (point-at-eol))
199 (list (cons 'program program
)
200 (cons 'version
(buffer-substring (point) (point-at-eol)))))))
203 (defun epg-configuration ()
204 "Return a list of internal configuration parameters of `epg-gpg-program'."
205 (declare (obsolete epg-find-configuration
"25.1"))
206 (epg-config--make-gpg-configuration epg-gpg-program
))
208 (defun epg-config--parse-version (string)
211 (while (eq index
(string-match "\\([0-9]+\\)\\.?" string index
))
212 (setq version
(cons (string-to-number (match-string 1 string
))
214 index
(match-end 0)))
217 (defun epg-config--compare-version (v1 v2
)
218 (while (and v1 v2
(= (car v1
) (car v2
)))
219 (setq v1
(cdr v1
) v2
(cdr v2
)))
220 (- (or (car v1
) 0) (or (car v2
) 0)))
223 (defun epg-check-configuration (config &optional minimum-version
)
224 "Verify that a sufficient version of GnuPG is installed."
225 (let ((entry (assq 'version config
))
228 (stringp (cdr entry
)))
229 (error "Undetermined version: %S" entry
))
230 (setq version
(epg-config--parse-version (cdr entry
))
231 minimum-version
(epg-config--parse-version
233 epg-gpg-minimum-version
)))
234 (unless (>= (epg-config--compare-version version minimum-version
) 0)
235 (error "Unsupported version: %s" (cdr entry
)))))
238 (defun epg-expand-group (config group
)
239 "Look at CONFIG and try to expand GROUP."
240 (let ((entry (assq 'groups config
)))
242 (setq entry
(assoc (downcase group
) (cdr entry
))))
245 (provide 'epg-config
)
247 ;;; epg-config.el ends here