1 ;;; auth-source.el --- authentication sources for Gnus and Emacs
3 ;; Copyright (C) 2008-2016 Free Software Foundation, Inc.
5 ;; Author: Ted Zlatanov <tzz@lifelogs.com>
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/>.
25 ;; This is the auth-source.el package. It lets users tell Gnus how to
26 ;; authenticate in a single place. Simplicity is the goal. Instead
27 ;; of providing 5000 options, we'll stick to simple, easy to
28 ;; understand options.
30 ;; See the auth.info Info documentation for details.
34 ;; - never decode the backend file unless it's necessary
35 ;; - a more generic way to match backends and search backend contents
36 ;; - absorb netrc.el and simplify it
37 ;; - protect passwords better
38 ;; - allow creating and changing netrc lines (not files) e.g. change a password
42 (require 'password-cache
)
44 (eval-when-compile (require 'cl
))
47 (autoload 'secrets-create-item
"secrets")
48 (autoload 'secrets-delete-item
"secrets")
49 (autoload 'secrets-get-alias
"secrets")
50 (autoload 'secrets-get-attributes
"secrets")
51 (autoload 'secrets-get-secret
"secrets")
52 (autoload 'secrets-list-collections
"secrets")
53 (autoload 'secrets-search-items
"secrets")
55 (autoload 'rfc2104-hash
"rfc2104")
57 (autoload 'plstore-open
"plstore")
58 (autoload 'plstore-find
"plstore")
59 (autoload 'plstore-put
"plstore")
60 (autoload 'plstore-delete
"plstore")
61 (autoload 'plstore-save
"plstore")
62 (autoload 'plstore-get-file
"plstore")
64 (eval-when-compile (require 'epg
)) ;; setf-method for `epg-context-armor'
65 (autoload 'epg-make-context
"epg")
66 (autoload 'epg-context-set-passphrase-callback
"epg")
67 (autoload 'epg-decrypt-string
"epg")
68 (autoload 'epg-encrypt-string
"epg")
70 (autoload 'help-mode
"help-mode" nil t
)
72 (defvar secrets-enabled
)
74 (defgroup auth-source nil
75 "Authentication sources."
76 :version
"23.1" ;; No Gnus
80 (defcustom auth-source-cache-expiry
7200
81 "How many seconds passwords are cached, or nil to disable
82 expiring. Overrides `password-cache-expiry' through a
86 :type
'(choice (const :tag
"Never" nil
)
87 (const :tag
"All Day" 86400)
88 (const :tag
"2 Hours" 7200)
89 (const :tag
"30 Minutes" 1800)
90 (integer :tag
"Seconds")))
92 ;; The slots below correspond with the `auth-source-search' spec,
93 ;; so a backend with :host set, for instance, would match only
94 ;; searches for that host. Normally they are nil.
95 (defclass auth-source-backend
()
100 :documentation
"The backend type.")
101 (source :initarg
:source
104 :documentation
"The backend source.")
109 :documentation
"The backend host.")
114 :documentation
"The backend user.")
119 :documentation
"The backend protocol.")
122 :documentation
"Internal backend data.")
123 (create-function :initarg
:create-function
127 :documentation
"The create function.")
128 (search-function :initarg
:search-function
132 :documentation
"The search function.")))
134 (defcustom auth-source-protocols
'((imap "imap" "imaps" "143" "993")
135 (pop3 "pop3" "pop" "pop3s" "110" "995")
139 "List of authentication protocols and their names"
142 :version
"23.2" ;; No Gnus
143 :type
'(repeat :tag
"Authentication Protocols"
144 (cons :tag
"Protocol Entry"
145 (symbol :tag
"Protocol")
147 (string :tag
"Name")))))
149 ;; Generate all the protocols in a format Customize can use.
150 ;; TODO: generate on the fly from auth-source-protocols
151 (defconst auth-source-protocols-customize
153 (let ((p (car-safe a
)))
155 :tag
(upcase (symbol-name p
))
157 auth-source-protocols
))
159 (defvar auth-source-creation-defaults nil
160 ;; FIXME: AFAICT this is not set (or let-bound) anywhere!
161 "Defaults for creating token values. Usually let-bound.")
163 (defvar auth-source-creation-prompts nil
164 "Default prompts for token values. Usually let-bound.")
166 (make-obsolete 'auth-source-hide-passwords nil
"Emacs 24.1")
168 (defcustom auth-source-save-behavior
'ask
169 "If set, auth-source will respect it for save behavior."
171 :version
"23.2" ;; No Gnus
173 :tag
"auth-source new token save behavior"
174 (const :tag
"Always save" t
)
175 (const :tag
"Never save" nil
)
176 (const :tag
"Ask" ask
)))
178 ;; TODO: make the default (setq auth-source-netrc-use-gpg-tokens `((,(if (boundp 'epa-file-auto-mode-alist-entry) (car epa-file-auto-mode-alist-entry) "\\.gpg\\'") never) (t gpg)))
179 ;; TODO: or maybe leave as (setq auth-source-netrc-use-gpg-tokens 'never)
181 (defcustom auth-source-netrc-use-gpg-tokens
'never
182 "Set this to tell auth-source when to create GPG password
183 tokens in netrc files. It's either an alist or `never'.
184 Note that if EPA/EPG is not available, this should NOT be used."
186 :version
"23.2" ;; No Gnus
188 (const :tag
"Always use GPG password tokens" (t gpg
))
189 (const :tag
"Never use GPG password tokens" never
)
190 (repeat :tag
"Use a lookup list"
192 (choice :tag
"Matcher"
193 (const :tag
"Match anything" t
)
194 (const :tag
"The EPA encrypted file extensions"
195 ,(if (boundp 'epa-file-auto-mode-alist-entry
)
196 (car epa-file-auto-mode-alist-entry
)
198 (regexp :tag
"Regular expression"))
199 (choice :tag
"What to do"
200 (const :tag
"Save GPG-encrypted password tokens" gpg
)
201 (const :tag
"Don't encrypt tokens" never
))))))
203 (defvar auth-source-magic
"auth-source-magic ")
205 (defcustom auth-source-do-cache t
206 "Whether auth-source should cache information with `password-cache'."
208 :version
"23.2" ;; No Gnus
211 (defcustom auth-source-debug nil
212 "Whether auth-source should log debug messages.
214 If the value is nil, debug messages are not logged.
216 If the value is t, debug messages are logged with `message'. In
217 that case, your authentication data will be in the clear (except
220 If the value is a function, debug messages are logged by calling
221 that function using the same arguments as `message'."
223 :version
"23.2" ;; No Gnus
225 :tag
"auth-source debugging mode"
226 (const :tag
"Log using `message' to the *Messages* buffer" t
)
227 (const :tag
"Log all trivia with `message' to the *Messages* buffer"
229 (function :tag
"Function that takes arguments like `message'")
230 (const :tag
"Don't log anything" nil
)))
232 (defcustom auth-sources
'("~/.authinfo" "~/.authinfo.gpg" "~/.netrc")
233 "List of authentication sources.
234 Each entry is the authentication type with optional properties.
235 Entries are tried in the order in which they appear.
236 See Info node `(auth)Help for users' for details.
238 If an entry names a file with the \".gpg\" extension and you have
239 EPA/EPG set up, the file will be encrypted and decrypted
240 automatically. See Info node `(epa)Encrypting/decrypting gpg files'
243 It's best to customize this with `\\[customize-variable]' because the choices
244 can get pretty complex."
246 :version
"24.1" ;; No Gnus
247 :type
`(repeat :tag
"Authentication Sources"
249 (string :tag
"Just a file")
250 (const :tag
"Default Secrets API Collection" default
)
251 (const :tag
"Login Secrets API Collection" "secrets:Login")
252 (const :tag
"Temp Secrets API Collection" "secrets:session")
254 (const :tag
"Default internet Mac OS Keychain"
255 macos-keychain-internet
)
257 (const :tag
"Default generic Mac OS Keychain"
258 macos-keychain-generic
)
260 (list :tag
"Source definition"
261 (const :format
"" :value
:source
)
262 (choice :tag
"Authentication backend choice"
263 (string :tag
"Authentication Source (file)")
265 :tag
"Secret Service API/KWallet/GNOME Keyring"
266 (const :format
"" :value
:secrets
)
267 (choice :tag
"Collection to use"
268 (string :tag
"Collection name")
269 (const :tag
"Default" default
)
270 (const :tag
"Login" "Login")
272 :tag
"Temporary" "session")))
274 :tag
"Mac OS internet Keychain"
276 :value
:macos-keychain-internet
)
277 (choice :tag
"Collection to use"
278 (string :tag
"internet Keychain path")
279 (const :tag
"default" default
)))
281 :tag
"Mac OS generic Keychain"
283 :value
:macos-keychain-generic
)
284 (choice :tag
"Collection to use"
285 (string :tag
"generic Keychain path")
286 (const :tag
"default" default
))))
287 (repeat :tag
"Extra Parameters" :inline t
288 (choice :tag
"Extra parameter"
291 (const :format
"" :value
:host
)
292 (choice :tag
"Host (machine) choice"
295 :tag
"Regular expression")))
298 (const :format
"" :value
:port
)
302 ,@auth-source-protocols-customize
))
303 (list :tag
"User" :inline t
304 (const :format
"" :value
:user
)
306 :tag
"Personality/Username"
311 (defcustom auth-source-gpg-encrypt-to t
312 "List of recipient keys that `authinfo.gpg' encrypted to.
313 If the value is not a list, symmetric encryption will be used."
315 :version
"24.1" ;; No Gnus
316 :type
'(choice (const :tag
"Symmetric encryption" t
)
317 (repeat :tag
"Recipient public keys"
318 (string :tag
"Recipient public key"))))
320 ;; temp for debugging
321 ;; (unintern 'auth-source-protocols)
322 ;; (unintern 'auth-sources)
323 ;; (customize-variable 'auth-sources)
324 ;; (setq auth-sources nil)
325 ;; (format "%S" auth-sources)
326 ;; (customize-variable 'auth-source-protocols)
327 ;; (setq auth-source-protocols nil)
328 ;; (format "%S" auth-source-protocols)
329 ;; (auth-source-pick nil :host "a" :port 'imap)
330 ;; (auth-source-user-or-password "login" "imap.myhost.com" 'imap)
331 ;; (auth-source-user-or-password "password" "imap.myhost.com" 'imap)
332 ;; (auth-source-user-or-password-imap "login" "imap.myhost.com")
333 ;; (auth-source-user-or-password-imap "password" "imap.myhost.com")
334 ;; (auth-source-protocol-defaults 'imap)
336 ;; (let ((auth-source-debug 'debug)) (auth-source-do-debug "hello"))
337 ;; (let ((auth-source-debug t)) (auth-source-do-debug "hello"))
338 ;; (let ((auth-source-debug nil)) (auth-source-do-debug "hello"))
339 (defun auth-source-do-debug (&rest msg
)
340 (when auth-source-debug
341 (apply #'auth-source-do-warn msg
)))
343 (defun auth-source-do-trivia (&rest msg
)
344 (when (or (eq auth-source-debug
'trivia
)
345 (functionp auth-source-debug
))
346 (apply #'auth-source-do-warn msg
)))
348 (defun auth-source-do-warn (&rest msg
)
350 ;; set logger to either the function in auth-source-debug or 'message
351 ;; note that it will be 'message if auth-source-debug is nil
352 (if (functionp auth-source-debug
)
358 ;; (auth-source-read-char-choice "enter choice? " '(?a ?b ?q))
359 (defun auth-source-read-char-choice (prompt choices
)
360 "Read one of CHOICES by `read-char-choice', or `read-char'.
361 `dropdown-list' support is disabled because it doesn't work reliably.
362 Only one of CHOICES will be returned. The PROMPT is augmented
363 with \"[a/b/c] \" if CHOICES is \(?a ?b ?c)."
365 (let* ((prompt-choices
366 (apply #'concat
(loop for c in choices
367 collect
(format "%c/" c
))))
368 (prompt-choices (concat "[" (substring prompt-choices
0 -
1) "] "))
369 (full-prompt (concat prompt prompt-choices
))
372 (while (not (memq k choices
))
373 (setq k
(read-char-choice full-prompt choices
)))
376 ;; (auth-source-pick nil :host "any" :port 'imap :user "joe")
377 ;; (auth-source-pick t :host "any" :port 'imap :user "joe")
378 ;; (setq auth-sources '((:source (:secrets default) :host t :port t :user "joe")
379 ;; (:source (:secrets "session") :host t :port t :user "joe")
380 ;; (:source (:secrets "Login") :host t :port t)
381 ;; (:source "~/.authinfo.gpg" :host t :port t)))
383 ;; (setq auth-sources '((:source (:secrets default) :host t :port t :user "joe")
384 ;; (:source (:secrets "session") :host t :port t :user "joe")
385 ;; (:source (:secrets "Login") :host t :port t)
388 ;; (setq auth-sources '((:source "~/.authinfo.gpg" :host t :port t)))
390 ;; (auth-source-backend-parse "myfile.gpg")
391 ;; (auth-source-backend-parse 'default)
392 ;; (auth-source-backend-parse "secrets:Login")
393 ;; (auth-source-backend-parse 'macos-keychain-internet)
394 ;; (auth-source-backend-parse 'macos-keychain-generic)
395 ;; (auth-source-backend-parse "macos-keychain-internet:/path/here.keychain")
396 ;; (auth-source-backend-parse "macos-keychain-generic:/path/here.keychain")
398 (defun auth-source-backend-parse (entry)
399 "Creates an auth-source-backend from an ENTRY in `auth-sources'."
400 (auth-source-backend-parse-parameters
403 ;; take 'default and recurse to get it as a Secrets API default collection
404 ;; matching any user, host, and protocol
406 (auth-source-backend-parse '(:source
(:secrets default
))))
407 ;; take secrets:XYZ and recurse to get it as Secrets API collection "XYZ"
408 ;; matching any user, host, and protocol
409 ((and (stringp entry
) (string-match "^secrets:\\(.+\\)" entry
))
410 (auth-source-backend-parse `(:source
(:secrets
,(match-string 1 entry
)))))
412 ;; take 'macos-keychain-internet and recurse to get it as a Mac OS
413 ;; Keychain collection matching any user, host, and protocol
414 ((eq entry
'macos-keychain-internet
)
415 (auth-source-backend-parse '(:source
(:macos-keychain-internet default
))))
416 ;; take 'macos-keychain-generic and recurse to get it as a Mac OS
417 ;; Keychain collection matching any user, host, and protocol
418 ((eq entry
'macos-keychain-generic
)
419 (auth-source-backend-parse '(:source
(:macos-keychain-generic default
))))
420 ;; take macos-keychain-internet:XYZ and recurse to get it as MacOS
421 ;; Keychain "XYZ" matching any user, host, and protocol
422 ((and (stringp entry
) (string-match "^macos-keychain-internet:\\(.+\\)"
424 (auth-source-backend-parse `(:source
(:macos-keychain-internet
425 ,(match-string 1 entry
)))))
426 ;; take macos-keychain-generic:XYZ and recurse to get it as MacOS
427 ;; Keychain "XYZ" matching any user, host, and protocol
428 ((and (stringp entry
) (string-match "^macos-keychain-generic:\\(.+\\)"
430 (auth-source-backend-parse `(:source
(:macos-keychain-generic
431 ,(match-string 1 entry
)))))
433 ;; take just a file name and recurse to get it as a netrc file
434 ;; matching any user, host, and protocol
436 (auth-source-backend-parse `(:source
,entry
)))
438 ;; a file name with parameters
439 ((stringp (plist-get entry
:source
))
440 (if (equal (file-name-extension (plist-get entry
:source
)) "plist")
442 (plist-get entry
:source
)
443 :source
(plist-get entry
:source
)
445 :search-function
#'auth-source-plstore-search
446 :create-function
#'auth-source-plstore-create
447 :data
(plstore-open (plist-get entry
:source
)))
449 (plist-get entry
:source
)
450 :source
(plist-get entry
:source
)
452 :search-function
#'auth-source-netrc-search
453 :create-function
#'auth-source-netrc-create
)))
455 ;; the MacOS Keychain
457 (not (null (plist-get entry
:source
))) ; the source must not be nil
458 (listp (plist-get entry
:source
)) ; and it must be a list
460 (plist-get (plist-get entry
:source
) :macos-keychain-generic
)
461 (plist-get (plist-get entry
:source
) :macos-keychain-internet
)))
463 (let* ((source-spec (plist-get entry
:source
))
464 (keychain-generic (plist-get source-spec
:macos-keychain-generic
))
465 (keychain-type (if keychain-generic
466 'macos-keychain-generic
467 'macos-keychain-internet
))
468 (source (plist-get source-spec
(if keychain-generic
469 :macos-keychain-generic
470 :macos-keychain-internet
))))
472 (when (symbolp source
)
473 (setq source
(symbol-name source
)))
476 (format "Mac OS Keychain (%s)" source
)
479 :search-function
#'auth-source-macos-keychain-search
480 :create-function
#'auth-source-macos-keychain-create
)))
482 ;; the Secrets API. We require the package, in order to have a
483 ;; defined value for `secrets-enabled'.
485 (not (null (plist-get entry
:source
))) ; the source must not be nil
486 (listp (plist-get entry
:source
)) ; and it must be a list
487 (require 'secrets nil t
) ; and we must load the Secrets API
488 secrets-enabled
) ; and that API must be enabled
490 ;; the source is either the :secrets key in ENTRY or
491 ;; if that's missing or nil, it's "session"
492 (let ((source (or (plist-get (plist-get entry
:source
) :secrets
)
495 ;; if the source is a symbol, we look for the alias named so,
496 ;; and if that alias is missing, we use "Login"
497 (when (symbolp source
)
498 (setq source
(or (secrets-get-alias (symbol-name source
))
501 (if (featurep 'secrets
)
503 (format "Secrets API (%s)" source
)
506 :search-function
#'auth-source-secrets-search
507 :create-function
#'auth-source-secrets-create
)
509 "auth-source-backend-parse: no Secrets API, ignoring spec: %S" entry
)
511 (format "Ignored Secrets API (%s)" source
)
518 "auth-source-backend-parse: invalid backend spec: %S" entry
)
519 (make-instance 'auth-source-backend
523 (defun auth-source-backend-parse-parameters (entry backend
)
524 "Fills in the extra auth-source-backend parameters of ENTRY.
525 Using the plist ENTRY, get the :host, :port, and :user search
527 (let ((entry (if (stringp entry
)
531 (when (setq val
(plist-get entry
:host
))
532 (oset backend host val
))
533 (when (setq val
(plist-get entry
:user
))
534 (oset backend user val
))
535 (when (setq val
(plist-get entry
:port
))
536 (oset backend port val
)))
539 ;; (mapcar 'auth-source-backend-parse auth-sources)
541 (defun* auth-source-search
(&rest spec
543 require create delete
545 "Search or modify authentication backends according to SPEC.
547 This function parses `auth-sources' for matches of the SPEC
548 plist. It can optionally create or update an authentication
549 token if requested. A token is just a standard Emacs property
550 list with a :secret property that can be a function; all the
551 other properties will always hold scalar values.
553 Typically the :secret property, if present, contains a password.
555 Common search keys are :max, :host, :port, and :user. In
556 addition, :create specifies if and how tokens will be created.
557 Finally, :type can specify which backend types you want to check.
559 A string value is always matched literally. A symbol is matched
560 as its string value, literally. All the SPEC values can be
561 single values (symbol or string) or lists thereof (in which case
562 any of the search terms matches).
564 :create t means to create a token if possible.
566 A new token will be created if no matching tokens were found.
567 The new token will have only the keys the backend requires. For
568 the netrc backend, for instance, that's the user, host, and
573 \(let ((auth-source-creation-defaults \\='((user . \"defaultUser\")
574 (A . \"default A\"))))
575 (auth-source-search :host \"mine\" :type \\='netrc :max 1
576 :P \"pppp\" :Q \"qqqq\"
581 \"Search for any entry matching host `mine' in backends of type
582 `netrc', maximum one result.
584 Create a new entry if you found none. The netrc backend will
585 automatically require host, user, and port. The host will be
586 `mine'. We prompt for the user with default `defaultUser' and
587 for the port without a default. We will not prompt for A, Q,
588 or P. The resulting token will only have keys user, host, and
591 :create \\='(A B C) also means to create a token if possible.
593 The behavior is like :create t but if the list contains any
594 parameter, that parameter will be required in the resulting
595 token. The value for that parameter will be obtained from the
596 search parameters or from user input. If any queries are needed,
597 the alist `auth-source-creation-defaults' will be checked for the
598 default value. If the user, host, or port are missing, the alist
599 `auth-source-creation-prompts' will be used to look up the
600 prompts IN THAT ORDER (so the `user' prompt will be queried first,
601 then `host', then `port', and finally `secret'). Each prompt string
602 can use %u, %h, and %p to show the user, host, and port.
606 \(let ((auth-source-creation-defaults \\='((user . \"defaultUser\")
607 (A . \"default A\")))
608 (auth-source-creation-prompts
609 \\='((password . \"Enter IMAP password for %h:%p: \"))))
610 (auth-source-search :host \\='(\"nonesuch\" \"twosuch\") :type \\='netrc :max 1
611 :P \"pppp\" :Q \"qqqq\"
612 :create \\='(A B Q)))
616 \"Search for any entry matching host `nonesuch'
617 or `twosuch' in backends of type `netrc', maximum one result.
619 Create a new entry if you found none. The netrc backend will
620 automatically require host, user, and port. The host will be
621 `nonesuch' and Q will be `qqqq'. We prompt for the password
622 with the shown prompt. We will not prompt for Q. The resulting
623 token will have keys user, host, port, A, B, and Q. It will not
624 have P with any value, even though P is used in the search to
625 find only entries that have P set to `pppp'.\"
627 When multiple values are specified in the search parameter, the
628 user is prompted for which one. So :host (X Y Z) would ask the
629 user to choose between X, Y, and Z.
631 This creation can fail if the search was not specific enough to
632 create a new token (it's up to the backend to decide that). You
633 should `catch' the backend-specific error as usual. Some
634 backends (netrc, at least) will prompt the user rather than throw
637 :require (A B C) means that only results that contain those
638 tokens will be returned. Thus for instance requiring :secret
639 will ensure that any results will actually have a :secret
642 :delete t means to delete any found entries. nil by default.
643 Use `auth-source-delete' in ELisp code instead of calling
644 `auth-source-search' directly with this parameter.
646 :type (X Y Z) will check only those backend types. `netrc' and
647 `secrets' are the only ones supported right now.
649 :max N means to try to return at most N items (defaults to 1).
650 More than N items may be returned, depending on the search and
653 When :max is 0 the function will return just t or nil to indicate
654 if any matches were found.
656 :host (X Y Z) means to match only hosts X, Y, or Z according to
657 the match rules above. Defaults to t.
659 :user (X Y Z) means to match only users X, Y, or Z according to
660 the match rules above. Defaults to t.
662 :port (P Q R) means to match only protocols P, Q, or R.
665 :K (V1 V2 V3) for any other key K will match values V1, V2, or
666 V3 (note the match rules above).
668 The return value is a list with at most :max tokens. Each token
669 is a plist with keys :backend :host :port :user, plus any other
670 keys provided by the backend (notably :secret). But note the
671 exception for :max 0, which see above.
673 The token can hold a :save-function key. If you call that, the
674 user will be prompted to save the data to the backend. You can't
675 request that this should happen right after creation, because
676 `auth-source-search' has no way of knowing if the token is
677 actually useful. So the caller must arrange to call this function.
679 The token's :secret key can hold a function. In that case you
680 must call it to obtain the actual value."
681 (let* ((backends (mapcar #'auth-source-backend-parse auth-sources
))
683 (ignored-keys '(:require
:create
:delete
:max
))
684 (keys (loop for i below
(length spec
) by
2
685 unless
(memq (nth i spec
) ignored-keys
)
686 collect
(nth i spec
)))
687 (cached (auth-source-remembered-p spec
))
688 ;; note that we may have cached results but found is still nil
689 ;; (there were no results from the search)
690 (found (auth-source-recall spec
))
693 (if (and cached auth-source-do-cache
)
694 (auth-source-do-debug
695 "auth-source-search: found %d CACHED results matching %S"
699 (or (eq t create
) (listp create
)) t
700 "Invalid auth-source :create parameter (must be t or a list): %s %s")
704 "Invalid auth-source :require parameter (must be a list): %s")
706 (setq filtered-backends
(copy-sequence backends
))
707 (dolist (backend backends
)
709 ;; ignore invalid slots
711 (unless (auth-source-search-collection
713 (slot-value backend key
))
714 (setq filtered-backends
(delq backend filtered-backends
))
716 (invalid-slot-name nil
))))
718 (auth-source-do-trivia
719 "auth-source-search: found %d backends matching %S"
720 (length filtered-backends
) spec
)
722 ;; (debug spec "filtered" filtered-backends)
723 ;; First go through all the backends without :create, so we can
725 (setq found
(auth-source-search-backends filtered-backends
729 ;; create is always nil here
733 (auth-source-do-debug
734 "auth-source-search: found %d results (max %d) matching %S"
735 (length found
) max spec
)
737 ;; If we didn't find anything, then we allow the backend(s) to
738 ;; create the entries.
741 (setq found
(auth-source-search-backends filtered-backends
747 (auth-source-do-debug
748 "auth-source-search: CREATED %d results (max %d) matching %S"
749 (length found
) max spec
))
751 ;; note we remember the lack of result too, if it's applicable
752 (when auth-source-do-cache
753 (auth-source-remember spec found
)))
759 (defun auth-source-search-backends (backends spec max create delete require
)
760 (let ((max (if (zerop max
) 1 max
)) ; stop with 1 match if we're asked for zero
762 (dolist (backend backends
)
763 (when (> max
(length matches
)) ; if we need more matches...
764 (let* ((bmatches (apply
765 (slot-value backend
'search-function
)
767 :type
(slot-value backend
'type
)
768 ;; note we're overriding whatever the spec
769 ;; has for :max, :require, :create, and :delete
776 (auth-source-do-trivia
777 "auth-source-search-backend: got %d (max %d) in %s:%s matching %S"
778 (length bmatches
) max
779 (slot-value backend
'type
)
780 (slot-value backend
'source
)
782 (setq matches
(append matches bmatches
))))))
785 ;; (auth-source-search :max 0)
786 ;; (auth-source-search :max 1)
787 ;; (funcall (plist-get (nth 0 (auth-source-search :max 1)) :secret))
788 ;; (auth-source-search :host "nonesuch" :type 'netrc :K 1)
789 ;; (auth-source-search :host "nonesuch" :type 'secrets)
791 (defun auth-source-delete (&rest spec
)
792 "Delete entries from the authentication backends according to SPEC.
793 Calls `auth-source-search' with the :delete property in SPEC set to t.
794 The backend may not actually delete the entries.
796 Returns the deleted entries."
797 (auth-source-search (plist-put spec
:delete t
)))
799 (defun auth-source-search-collection (collection value
)
800 "Returns t is VALUE is t or COLLECTION is t or COLLECTION contains VALUE."
801 (when (and (atom collection
) (not (eq t collection
)))
802 (setq collection
(list collection
)))
804 ;; (debug :collection collection :value value)
805 (or (eq collection t
)
807 (equal collection value
)
808 (member value collection
)))
810 (defvar auth-source-netrc-cache nil
)
812 (defun auth-source-forget-all-cached ()
813 "Forget all cached auth-source data."
815 (loop for sym being the symbols of password-data
816 ;; when the symbol name starts with auth-source-magic
817 when
(string-match (concat "^" auth-source-magic
)
820 do
(password-cache-remove (symbol-name sym
)))
821 (setq auth-source-netrc-cache nil
))
823 (defun auth-source-format-cache-entry (spec)
824 "Format SPEC entry to put it in the password cache."
825 (concat auth-source-magic
(format "%S" spec
)))
827 (defun auth-source-remember (spec found
)
828 "Remember FOUND search results for SPEC."
829 (let ((password-cache-expiry auth-source-cache-expiry
))
831 (auth-source-format-cache-entry spec
) found
)))
833 (defun auth-source-recall (spec)
834 "Recall FOUND search results for SPEC."
835 (password-read-from-cache (auth-source-format-cache-entry spec
)))
837 (defun auth-source-remembered-p (spec)
838 "Check if SPEC is remembered."
840 (auth-source-format-cache-entry spec
)))
842 (defun auth-source-forget (spec)
843 "Forget any cached data matching SPEC exactly.
845 This is the same SPEC you passed to `auth-source-search'.
846 Returns t or nil for forgotten or not found."
847 (password-cache-remove (auth-source-format-cache-entry spec
)))
849 ;; (loop for sym being the symbols of password-data when (string-match (concat "^" auth-source-magic) (symbol-name sym)) collect (symbol-name sym))
851 ;; (auth-source-remember '(:host "wedd") '(4 5 6))
852 ;; (auth-source-remembered-p '(:host "wedd"))
853 ;; (auth-source-remember '(:host "xedd") '(1 2 3))
854 ;; (auth-source-remembered-p '(:host "xedd"))
855 ;; (auth-source-remembered-p '(:host "zedd"))
856 ;; (auth-source-recall '(:host "xedd"))
857 ;; (auth-source-recall '(:host t))
858 ;; (auth-source-forget+ :host t)
860 (defun auth-source-forget+ (&rest spec
)
861 "Forget any cached data matching SPEC. Returns forgotten count.
863 This is not a full `auth-source-search' spec but works similarly.
864 For instance, \(:host \"myhost\" \"yourhost\") would find all the
865 cached data that was found with a search for those two hosts,
866 while \(:host t) would find all host entries."
869 (loop for sym being the symbols of password-data
870 ;; when the symbol name matches with auth-source-magic
871 when
(and (setq sname
(symbol-name sym
))
872 (string-match (concat "^" auth-source-magic
"\\(.+\\)")
874 ;; and the spec matches what was stored in the cache
875 (auth-source-specmatchp spec
(read (match-string 1 sname
))))
878 (password-cache-remove sname
)
882 (defun auth-source-specmatchp (spec stored
)
883 (let ((keys (loop for i below
(length spec
) by
2
884 collect
(nth i spec
))))
887 (unless (auth-source-search-collection (plist-get stored key
)
888 (plist-get spec key
))
892 ;; (auth-source-pick-first-password :host "z.lifelogs.com")
893 ;; (auth-source-pick-first-password :port "imap")
894 (defun auth-source-pick-first-password (&rest spec
)
895 "Pick the first secret found from applying SPEC to `auth-source-search'."
896 (let* ((result (nth 0 (apply #'auth-source-search
(plist-put spec
:max
1))))
897 (secret (plist-get result
:secret
)))
899 (if (functionp secret
)
903 ;; (auth-source-format-prompt "test %u %h %p" '((?u "user") (?h "host")))
904 (defun auth-source-format-prompt (prompt alist
)
905 "Format PROMPT using %x (for any character x) specifiers in ALIST."
907 (let ((c (nth 0 cell
))
910 (setq prompt
(replace-regexp-in-string (format "%%%c" c
)
915 (defun auth-source-ensure-strings (values)
918 (unless (listp values
)
919 (setq values
(list values
)))
920 (mapcar (lambda (value)
926 ;;; Backend specific parsing: netrc/authinfo backend
928 (defun auth-source--aput-1 (alist key val
)
931 (while (and (consp rest
) (not (equal key
(caar rest
))))
932 (push (pop rest
) seen
))
934 (if (null rest
) alist
935 (nconc (nreverse seen
)
936 (if (equal key
(caar rest
)) (cdr rest
) rest
))))))
937 (defmacro auth-source--aput
(var key val
)
938 `(setq ,var
(auth-source--aput-1 ,var
,key
,val
)))
940 (defun auth-source--aget (alist key
)
941 (cdr (assoc key alist
)))
943 ;; (auth-source-netrc-parse :file "~/.authinfo.gpg")
944 (defun* auth-source-netrc-parse
(&key file max host user port require
946 "Parse FILE and return a list of all entries in the file.
947 Note that the MAX parameter is used so we can exit the parse early."
949 ;; We got already parsed contents; just return it.
951 (when (file-exists-p file
)
952 (setq port
(auth-source-ensure-strings port
))
954 (let* ((max (or max
5000)) ; sanity check: default to stop at 5K
956 (cached (cdr-safe (assoc file auth-source-netrc-cache
)))
957 (cached-mtime (plist-get cached
:mtime
))
958 (cached-secrets (plist-get cached
:secret
))
959 (check (lambda(alist)
961 (auth-source-search-collection
964 (auth-source--aget alist
"machine")
965 (auth-source--aget alist
"host")
967 (auth-source-search-collection
970 (auth-source--aget alist
"login")
971 (auth-source--aget alist
"account")
972 (auth-source--aget alist
"user")
974 (auth-source-search-collection
977 (auth-source--aget alist
"port")
978 (auth-source--aget alist
"protocol")
981 ;; the required list of keys is nil, or
983 ;; every element of require is in n(ormalized)
984 (let ((n (nth 0 (auth-source-netrc-normalize
985 (list alist
) file
))))
986 (loop for req in require
987 always
(plist-get n req
)))))))
990 (if (and (functionp cached-secrets
)
992 (nth 5 (file-attributes file
))))
994 (auth-source-do-trivia
995 "auth-source-netrc-parse: using CACHED file data for %s"
997 (insert (funcall cached-secrets
)))
998 (insert-file-contents file
)
999 ;; cache all netrc files (used to be just .gpg files)
1000 ;; Store the contents of the file heavily encrypted in memory.
1001 ;; (note for the irony-impaired: they are just obfuscated)
1003 auth-source-netrc-cache file
1004 (list :mtime
(nth 5 (file-attributes file
))
1005 :secret
(lexical-let ((v (mapcar #'1+ (buffer-string))))
1006 (lambda () (apply #'string
(mapcar #'1- v
)))))))
1007 (goto-char (point-min))
1008 (let ((entries (auth-source-netrc-parse-entries check max
))
1010 (while (setq alist
(pop entries
))
1011 (push (nreverse alist
) result
)))
1013 (when (< 0 modified
)
1014 (when auth-source-gpg-encrypt-to
1015 ;; (see bug#7487) making `epa-file-encrypt-to' local to
1016 ;; this buffer lets epa-file skip the key selection query
1017 ;; (see the `local-variable-p' check in
1018 ;; `epa-file-write-region').
1019 (unless (local-variable-p 'epa-file-encrypt-to
(current-buffer))
1020 (make-local-variable 'epa-file-encrypt-to
))
1021 (if (listp auth-source-gpg-encrypt-to
)
1022 (setq epa-file-encrypt-to auth-source-gpg-encrypt-to
)))
1024 ;; ask AFTER we've successfully opened the file
1025 (when (y-or-n-p (format "Save file %s? (%d deletions)"
1027 (write-region (point-min) (point-max) file nil
'silent
)
1028 (auth-source-do-debug
1029 "auth-source-netrc-parse: modified %d lines in %s"
1032 (nreverse result
))))))
1034 (defun auth-source-netrc-parse-next-interesting ()
1035 "Advance to the next interesting position in the current buffer."
1036 ;; If we're looking at a comment or are at the end of the line, move forward
1037 (while (or (looking-at "#")
1041 (skip-chars-forward "\t "))
1043 (defun auth-source-netrc-parse-one ()
1044 "Read one thing from the current buffer."
1045 (auth-source-netrc-parse-next-interesting)
1047 (when (or (looking-at "'\\([^']*\\)'")
1048 (looking-at "\"\\([^\"]*\\)\"")
1049 (looking-at "\\([^ \t\n]+\\)"))
1050 (forward-char (length (match-string 0)))
1051 (auth-source-netrc-parse-next-interesting)
1052 (match-string-no-properties 1)))
1054 ;; with thanks to org-mode
1055 (defsubst auth-source-current-line
(&optional pos
)
1057 (and pos
(goto-char pos
))
1058 ;; works also in narrowed buffer, because we start at 1, not point-min
1059 (+ (if (bolp) 1 0) (count-lines 1 (point)))))
1061 (defun auth-source-netrc-parse-entries(check max
)
1062 "Parse up to MAX netrc entries, passed by CHECK, from the current buffer."
1063 (let ((adder (lambda(check alist all
)
1066 (> max
(length all
))
1067 (funcall check alist
))
1070 item item2 all alist default
)
1071 (while (setq item
(auth-source-netrc-parse-one))
1072 (setq default
(equal item
"default"))
1073 ;; We're starting a new machine. Save the old one.
1076 (equal item
"machine")))
1077 ;; (auth-source-do-trivia
1078 ;; "auth-source-netrc-parse-entries: got entry %S" alist)
1079 (setq all
(funcall adder check alist all
)
1081 ;; In default entries, we don't have a next token.
1082 ;; We store them as ("machine" . t)
1084 (push (cons "machine" t
) alist
)
1085 ;; Not a default entry. Grab the next item.
1086 (when (setq item2
(auth-source-netrc-parse-one))
1087 ;; Did we get a "machine" value?
1088 (if (equal item2
"machine")
1090 "%s: Unexpected `machine' token at line %d"
1091 "auth-source-netrc-parse-entries"
1092 (auth-source-current-line))
1093 (push (cons item item2
) alist
)))))
1095 ;; Clean up: if there's an entry left over, use it.
1097 (setq all
(funcall adder check alist all
))
1098 ;; (auth-source-do-trivia
1099 ;; "auth-source-netrc-parse-entries: got2 entry %S" alist)
1103 (defvar auth-source-passphrase-alist nil
)
1105 (defun auth-source-token-passphrase-callback-function (_context _key-id file
)
1106 (let* ((file (file-truename file
))
1107 (entry (assoc file auth-source-passphrase-alist
))
1109 ;; return the saved passphrase, calling a function if needed
1110 (or (copy-sequence (if (functionp (cdr entry
))
1111 (funcall (cdr entry
))
1115 (setq entry
(list file
))
1116 (push entry auth-source-passphrase-alist
))
1119 (format "Passphrase for %s tokens: " file
)
1121 (setcdr entry
(lexical-let ((p (copy-sequence passphrase
)))
1125 ;; (auth-source-epa-extract-gpg-token "gpg:LS0tLS1CRUdJTiBQR1AgTUVTU0FHRS0tLS0tClZlcnNpb246IEdudVBHIHYxLjQuMTEgKEdOVS9MaW51eCkKCmpBMEVBd01DT25qMjB1ak9rZnRneVI3K21iNm9aZWhuLzRad3cySkdlbnVaKzRpeEswWDY5di9icDI1U1dsQT0KPS9yc2wKLS0tLS1FTkQgUEdQIE1FU1NBR0UtLS0tLQo=" "~/.netrc")
1126 (defun auth-source-epa-extract-gpg-token (secret file
)
1127 "Pass either the decoded SECRET or the gpg:BASE64DATA version.
1128 FILE is the file from which we obtained this token."
1129 (when (string-match "^gpg:\\(.+\\)" secret
)
1130 (setq secret
(base64-decode-string (match-string 1 secret
))))
1131 (let ((context (epg-make-context 'OpenPGP
)))
1132 (epg-context-set-passphrase-callback
1134 (cons #'auth-source-token-passphrase-callback-function
1136 (epg-decrypt-string context secret
)))
1138 (defvar pp-escape-newlines
)
1140 ;; (insert (auth-source-epa-make-gpg-token "mysecret" "~/.netrc"))
1141 (defun auth-source-epa-make-gpg-token (secret file
)
1142 (let ((context (epg-make-context 'OpenPGP
))
1143 (pp-escape-newlines nil
)
1145 (setf (epg-context-armor context
) t
)
1146 (epg-context-set-passphrase-callback
1148 (cons #'auth-source-token-passphrase-callback-function
1150 (setq cipher
(epg-encrypt-string context secret nil
))
1153 (base64-encode-region (point-min) (point-max) t
)
1154 (concat "gpg:" (buffer-substring-no-properties
1158 (defun auth-source--symbol-keyword (symbol)
1159 (intern (format ":%s" symbol
)))
1161 (defun auth-source-netrc-normalize (alist filename
)
1162 (mapcar (lambda (entry)
1164 (while (setq item
(pop entry
))
1165 (let ((k (car item
))
1168 ;; apply key aliases
1169 (setq k
(cond ((member k
'("machine")) "host")
1170 ((member k
'("login" "account")) "user")
1171 ((member k
'("protocol")) "port")
1172 ((member k
'("password")) "secret")
1175 ;; send back the secret in a function (lexical binding)
1176 (when (equal k
"secret")
1177 (setq v
(lexical-let ((lexv v
)
1178 (token-decoder nil
))
1179 (when (string-match "^gpg:" lexv
)
1180 ;; it's a GPG token: create a token decoder
1181 ;; which unsets itself once
1185 (auth-source-epa-extract-gpg-token
1188 (setq token-decoder nil
)))))
1191 (setq lexv
(funcall token-decoder lexv
)))
1193 (setq ret
(plist-put ret
1194 (auth-source--symbol-keyword k
)
1199 ;; (setq secret (plist-get (nth 0 (auth-source-search :host t :type 'netrc :K 1 :max 1)) :secret))
1202 (defun* auth-source-netrc-search
(&rest
1204 &key backend require create
1205 type max host user port
1207 "Given a property list SPEC, return search matches from the :backend.
1208 See `auth-source-search' for details on SPEC."
1209 ;; just in case, check that the type is correct (null or same as the backend)
1210 (assert (or (null type
) (eq type
(oref backend type
)))
1211 t
"Invalid netrc search: %s %s")
1213 (let ((results (auth-source-netrc-normalize
1214 (auth-source-netrc-parse
1217 :file
(oref backend source
)
1221 (oref backend source
))))
1223 ;; if we need to create an entry AND none were found to match
1227 ;; create based on the spec and record the value
1229 ;; if the user did not want to create the entry
1230 ;; in the file, it will be returned
1231 (apply (slot-value backend
'create-function
) spec
)
1232 ;; if not, we do the search again without :create
1233 ;; to get the updated data.
1235 ;; the result will be returned, even if the search fails
1236 (apply #'auth-source-netrc-search
1237 (plist-put spec
:create nil
)))))
1240 (defun auth-source-netrc-element-or-first (v)
1245 ;; (auth-source-search :host "nonesuch" :type 'netrc :max 1 :create t)
1246 ;; (auth-source-search :host "nonesuch" :type 'netrc :max 1 :create t :create-extra-keys '((A "default A") (B)))
1248 (defun* auth-source-netrc-create
(&rest spec
1252 (let* ((base-required '(host user port secret
))
1253 ;; we know (because of an assertion in auth-source-search) that the
1254 ;; :create parameter is either t or a list (which includes nil)
1255 (create-extra (if (eq t create
) nil create
))
1256 (current-data (car (auth-source-search :max
1
1259 (required (append base-required create-extra
))
1260 (file (oref backend source
))
1262 ;; `valist' is an alist
1264 ;; `artificial' will be returned if no creation is needed
1267 ;; only for base required elements (defined as function parameters):
1268 ;; fill in the valist with whatever data we may have from the search
1269 ;; we complete the first value if it's a list and use the value otherwise
1270 (dolist (br base-required
)
1271 (let ((val (plist-get spec
(auth-source--symbol-keyword br
))))
1273 (let ((br-choice (cond
1274 ;; all-accepting choice (predicate is t)
1276 ;; just the value otherwise
1279 (auth-source--aput valist br br-choice
))))))
1281 ;; for extra required elements, see if the spec includes a value for them
1282 (dolist (er create-extra
)
1283 (let ((k (auth-source--symbol-keyword er
))
1284 (keys (loop for i below
(length spec
) by
2
1285 collect
(nth i spec
))))
1287 (auth-source--aput valist er
(plist-get spec k
)))))
1289 ;; for each required element
1290 (dolist (r required
)
1291 (let* ((data (auth-source--aget valist r
))
1292 ;; take the first element if the data is a list
1293 (data (or (auth-source-netrc-element-or-first data
)
1294 (plist-get current-data
1295 (auth-source--symbol-keyword r
))))
1296 ;; this is the default to be offered
1297 (given-default (auth-source--aget
1298 auth-source-creation-defaults r
))
1299 ;; the default supplementals are simple:
1300 ;; for the user, try `given-default' and then (user-login-name);
1301 ;; otherwise take `given-default'
1303 ((and (not given-default
) (eq r
'user
))
1306 (printable-defaults (list
1309 (auth-source-netrc-element-or-first
1310 (auth-source--aget valist
'user
))
1311 (plist-get artificial
:user
)
1315 (auth-source-netrc-element-or-first
1316 (auth-source--aget valist
'host
))
1317 (plist-get artificial
:host
)
1321 (auth-source-netrc-element-or-first
1322 (auth-source--aget valist
'port
))
1323 (plist-get artificial
:port
)
1325 (prompt (or (auth-source--aget auth-source-creation-prompts r
)
1327 (secret "%p password for %u@%h: ")
1328 (user "%p user name for %h: ")
1329 (host "%p host name for user %u: ")
1330 (port "%p port for %u@%h: "))
1331 (format "Enter %s (%%u@%%h:%%p): " r
)))
1332 (prompt (auth-source-format-prompt
1334 `((?u
,(auth-source--aget printable-defaults
'user
))
1335 (?h
,(auth-source--aget printable-defaults
'host
))
1336 (?p
,(auth-source--aget printable-defaults
'port
))))))
1338 ;; Store the data, prompting for the password if needed.
1341 ;; Special case prompt for passwords.
1342 ;; TODO: make the default (setq auth-source-netrc-use-gpg-tokens `((,(if (boundp 'epa-file-auto-mode-alist-entry) (car epa-file-auto-mode-alist-entry) "\\.gpg\\'") nil) (t gpg)))
1343 ;; TODO: or maybe leave as (setq auth-source-netrc-use-gpg-tokens 'never)
1344 (let* ((ep (format "Use GPG password tokens in %s?" file
))
1347 ((eq auth-source-netrc-use-gpg-tokens
'never
)
1349 ((listp auth-source-netrc-use-gpg-tokens
)
1350 (let ((check (copy-sequence
1351 auth-source-netrc-use-gpg-tokens
))
1354 (setq item
(pop check
))
1355 (when (or (eq (car item
) t
)
1356 (string-match (car item
) file
))
1357 (setq ret
(cdr item
))
1359 ;; FIXME: `ret' unused.
1360 ;; Should we return it here?
1363 (plain (or (eval default
) (read-passwd prompt
))))
1364 ;; ask if we don't know what to do (in which case
1365 ;; auth-source-netrc-use-gpg-tokens must be a list)
1367 (setq gpg-encrypt
(if (y-or-n-p ep
) 'gpg
'never
))
1368 ;; TODO: save the defcustom now? or ask?
1369 (setq auth-source-netrc-use-gpg-tokens
1370 (cons `(,file
,gpg-encrypt
)
1371 auth-source-netrc-use-gpg-tokens
)))
1372 (if (eq gpg-encrypt
'gpg
)
1373 (auth-source-epa-make-gpg-token plain file
)
1375 (if (stringp default
)
1376 (read-string (if (string-match ": *\\'" prompt
)
1377 (concat (substring prompt
0 (match-beginning 0))
1378 " (default " default
"): ")
1379 (concat prompt
"(default " default
") "))
1384 (setq artificial
(plist-put artificial
1385 (auth-source--symbol-keyword r
)
1387 (lexical-let ((data data
))
1391 ;; When r is not an empty string...
1392 (when (and (stringp data
)
1393 (< 0 (length data
)))
1394 ;; this function is not strictly necessary but I think it
1395 ;; makes the code clearer -tzz
1396 (let ((printer (lambda ()
1397 ;; append the key (the symbol name of r)
1398 ;; and the value in r
1401 (if (zerop (length add
)) "" " ")
1402 ;; remap auth-source tokens to netrc
1407 (port "port") ; redundant but clearer
1408 (t (symbol-name r
)))
1409 (if (string-match "[\"# ]" data
)
1412 (setq add
(concat add
(funcall printer
)))))))
1417 (lexical-let ((file file
)
1419 (lambda () (auth-source-netrc-saver file add
))))
1423 ;;(funcall (plist-get (nth 0 (auth-source-search :host '("nonesuch2") :user "tzz" :port "imap" :create t :max 1)) :save-function))
1424 (defun auth-source-netrc-saver (file add
)
1425 "Save a line ADD in FILE, prompting along the way.
1426 Respects `auth-source-save-behavior'. Uses
1427 `auth-source-netrc-cache' to avoid prompting more than once."
1428 (let* ((key (format "%s %s" file
(rfc2104-hash 'md5
64 16 file add
)))
1429 (cached (assoc key auth-source-netrc-cache
)))
1432 (auth-source-do-trivia
1433 "auth-source-netrc-saver: found previous run for key %s, returning"
1436 (when (file-exists-p file
)
1437 (insert-file-contents file
))
1438 (when auth-source-gpg-encrypt-to
1439 ;; (see bug#7487) making `epa-file-encrypt-to' local to
1440 ;; this buffer lets epa-file skip the key selection query
1441 ;; (see the `local-variable-p' check in
1442 ;; `epa-file-write-region').
1443 (unless (local-variable-p 'epa-file-encrypt-to
(current-buffer))
1444 (make-local-variable 'epa-file-encrypt-to
))
1445 (if (listp auth-source-gpg-encrypt-to
)
1446 (setq epa-file-encrypt-to auth-source-gpg-encrypt-to
)))
1447 ;; we want the new data to be found first, so insert at beginning
1448 (goto-char (point-min))
1450 ;; Ask AFTER we've successfully opened the file.
1451 (let ((prompt (format "Save auth info to file %s? " file
))
1452 (done (not (eq auth-source-save-behavior
'ask
)))
1453 (bufname "*auth-source Help*")
1456 (setq k
(auth-source-read-char-choice prompt
'(?y ?n ?N ?e ??
)))
1460 (with-output-to-temp-buffer bufname
1462 (concat "(y)es, save\n"
1463 "(n)o but use the info\n"
1464 "(N)o and don't ask to save again\n"
1466 "(?) for help as you can see.\n"))
1467 ;; Why? Doesn't with-output-to-temp-buffer already do
1468 ;; the exact same thing anyway? --Stef
1469 (set-buffer standard-output
)
1476 (customize-save-variable 'auth-source-save-behavior nil
))
1477 (?e
(setq add
(read-string "Line to add: " add
)))
1480 (when (get-buffer-window bufname
)
1481 (delete-window (get-buffer-window bufname
)))
1483 ;; Make sure the info is not saved.
1484 (when (null auth-source-save-behavior
)
1487 (when (< 0 (length add
))
1492 (write-region (point-min) (point-max) file nil
'silent
)
1493 ;; Make the .authinfo file non-world-readable.
1494 (set-file-modes file
#o600
)
1495 (auth-source-do-debug
1496 "auth-source-netrc-create: wrote 1 new line to %s"
1498 (message "Saved new authentication information to %s" file
)
1500 (auth-source--aput auth-source-netrc-cache key
"ran"))))
1502 ;;; Backend specific parsing: Secrets API backend
1504 ;; (let ((auth-sources '(default))) (auth-source-search :max 1 :create t))
1505 ;; (let ((auth-sources '(default))) (auth-source-search :max 1 :delete t))
1506 ;; (let ((auth-sources '(default))) (auth-source-search :max 1))
1507 ;; (let ((auth-sources '(default))) (auth-source-search))
1508 ;; (let ((auth-sources '("secrets:Login"))) (auth-source-search :max 1))
1509 ;; (let ((auth-sources '("secrets:Login"))) (auth-source-search :max 1 :signon_realm "https://git.gnus.org/Git"))
1511 (defun auth-source-secrets-listify-pattern (pattern)
1512 "Convert a pattern with lists to a list of string patterns.
1514 auth-source patterns can have values of the form :foo (\"bar\"
1515 \"qux\"), which means to match any secret with :foo equal to
1516 \"bar\" or :foo equal to \"qux\". The secrets backend supports
1517 only string values for patterns, so this routine returns a list
1518 of patterns that is equivalent to the single original pattern
1519 when interpreted such that if a secret matches any pattern in the
1520 list, it matches the original pattern."
1523 (let* ((key (pop pattern
))
1524 (value (pop pattern
))
1525 (tails (auth-source-secrets-listify-pattern pattern
))
1526 (heads (if (stringp value
)
1527 (list (list key value
))
1528 (mapcar (lambda (v) (list key v
)) value
))))
1534 collect
(append h tl
))))))
1536 (defun* auth-source-secrets-search
(&rest
1538 &key backend create delete label max
1540 "Search the Secrets API; spec is like `auth-source'.
1542 The :label key specifies the item's label. It is the only key
1543 that can specify a substring. Any :label value besides a string
1544 will allow any label.
1546 All other search keys must match exactly. If you need substring
1547 matching, do a wider search and narrow it down yourself.
1549 You'll get back all the properties of the token as a plist.
1551 Here's an example that looks for the first item in the `Login'
1554 (let ((auth-sources \\='(\"secrets:Login\")))
1555 (auth-source-search :max 1)
1557 Here's another that looks for the first item in the `Login'
1558 Secrets collection whose label contains `gnus':
1560 (let ((auth-sources \\='(\"secrets:Login\")))
1561 (auth-source-search :max 1 :label \"gnus\")
1563 And this one looks for the first item in the `Login' Secrets
1564 collection that's a Google Chrome entry for the git.gnus.org site
1565 authentication tokens:
1567 (let ((auth-sources \\='(\"secrets:Login\")))
1568 (auth-source-search :max 1 :signon_realm \"https://git.gnus.org/Git\"))
1572 (assert (not create
) nil
1573 "The Secrets API auth-source backend doesn't support creation yet")
1575 ;; (secrets-delete-item coll elt)
1576 (assert (not delete
) nil
1577 "The Secrets API auth-source backend doesn't support deletion yet")
1579 (let* ((coll (oref backend source
))
1580 (max (or max
5000)) ; sanity check: default to stop at 5K
1581 (ignored-keys '(:create
:delete
:max
:backend
:label
:require
:type
))
1582 (search-keys (loop for i below
(length spec
) by
2
1583 unless
(memq (nth i spec
) ignored-keys
)
1584 collect
(nth i spec
)))
1585 ;; build a search spec without the ignored keys
1586 ;; if a search key is nil or t (match anything), we skip it
1587 (search-specs (auth-source-secrets-listify-pattern
1588 (apply #'append
(mapcar
1590 (if (or (null (plist-get spec k
))
1591 (eq t
(plist-get spec k
)))
1593 (list k
(plist-get spec k
))))
1595 ;; needed keys (always including host, login, port, and secret)
1596 (returned-keys (delete-dups (append
1597 '(:host
:login
:port
:secret
)
1600 (loop for search-spec in search-specs
1602 (loop for item in
(apply #'secrets-search-items coll search-spec
)
1603 unless
(and (stringp label
)
1604 (not (string-match label item
)))
1606 ;; TODO: respect max in `secrets-search-items', not after the fact
1607 (items (butlast items
(- (length items
) max
)))
1608 ;; convert the item name to a full plist
1609 (items (mapcar (lambda (item)
1611 ;; make an entry for the secret (password) element
1614 (lexical-let ((v (secrets-get-secret coll item
)))
1616 ;; rewrite the entry from ((k1 v1) (k2 v2)) to plist
1618 (mapcar (lambda (entry)
1619 (list (car entry
) (cdr entry
)))
1620 (secrets-get-attributes coll item
)))))
1622 ;; ensure each item has each key in `returned-keys'
1623 (items (mapcar (lambda (plist)
1626 (mapcar (lambda (req)
1627 (if (plist-get plist req
)
1635 (defun auth-source-secrets-create (&rest spec
)
1637 ;; (apply 'secrets-create-item (auth-get-source entry) name passwd spec)
1640 ;;; Backend specific parsing: Mac OS Keychain (using /usr/bin/security) backend
1642 ;; (let ((auth-sources '(macos-keychain-internet))) (auth-source-search :max 1 :create t))
1643 ;; (let ((auth-sources '(macos-keychain-internet))) (auth-source-search :max 1 :delete t))
1644 ;; (let ((auth-sources '(macos-keychain-internet))) (auth-source-search :max 1))
1645 ;; (let ((auth-sources '(macos-keychain-internet))) (auth-source-search))
1647 ;; (let ((auth-sources '(macos-keychain-generic))) (auth-source-search :max 1 :create t))
1648 ;; (let ((auth-sources '(macos-keychain-generic))) (auth-source-search :max 1 :delete t))
1649 ;; (let ((auth-sources '(macos-keychain-generic))) (auth-source-search :max 1))
1650 ;; (let ((auth-sources '(macos-keychain-generic))) (auth-source-search))
1652 ;; (let ((auth-sources '("macos-keychain-internet:/Users/tzz/Library/Keychains/login.keychain"))) (auth-source-search :max 1))
1653 ;; (let ((auth-sources '("macos-keychain-generic:Login"))) (auth-source-search :max 1 :host "git.gnus.org"))
1654 ;; (let ((auth-sources '("macos-keychain-generic:Login"))) (auth-source-search :max 1))
1656 (defun* auth-source-macos-keychain-search
(&rest
1658 &key backend create delete
1661 "Search the MacOS Keychain; spec is like `auth-source'.
1663 All search keys must match exactly. If you need substring
1664 matching, do a wider search and narrow it down yourself.
1666 You'll get back all the properties of the token as a plist.
1668 The :type key is either `macos-keychain-internet' or
1669 `macos-keychain-generic'.
1671 For the internet keychain type, the :label key searches the
1672 item's labels (\"-l LABEL\" passed to \"/usr/bin/security\").
1673 Similarly, :host maps to \"-s HOST\", :user maps to \"-a USER\",
1674 and :port maps to \"-P PORT\" or \"-r PROT\"
1675 \(note PROT has to be a 4-character string).
1677 For the generic keychain type, the :label key searches the item's
1678 labels (\"-l LABEL\" passed to \"/usr/bin/security\").
1679 Similarly, :host maps to \"-c HOST\" (the \"creator\" keychain
1680 field), :user maps to \"-a USER\", and :port maps to \"-s PORT\".
1682 Here's an example that looks for the first item in the default
1683 generic MacOS Keychain:
1685 (let ((auth-sources \\='(macos-keychain-generic)))
1686 (auth-source-search :max 1)
1688 Here's another that looks for the first item in the internet
1689 MacOS Keychain collection whose label is `gnus':
1691 (let ((auth-sources \\='(macos-keychain-internet)))
1692 (auth-source-search :max 1 :label \"gnus\")
1694 And this one looks for the first item in the internet keychain
1695 entries for git.gnus.org:
1697 (let ((auth-sources \\='(macos-keychain-internet\")))
1698 (auth-source-search :max 1 :host \"git.gnus.org\"))
1701 (assert (not create
) nil
1702 "The MacOS Keychain auth-source backend doesn't support creation yet")
1704 ;; (macos-keychain-delete-item coll elt)
1705 (assert (not delete
) nil
1706 "The MacOS Keychain auth-source backend doesn't support deletion yet")
1708 (let* ((coll (oref backend source
))
1709 (max (or max
5000)) ; sanity check: default to stop at 5K
1710 ;; Filter out ignored keys from the spec
1711 (ignored-keys '(:create
:delete
:max
:backend
:label
:host
:port
))
1712 ;; Build a search spec without the ignored keys
1713 (search-keys (loop for i below
(length spec
) by
2
1714 unless
(memq (nth i spec
) ignored-keys
)
1715 collect
(nth i spec
)))
1716 ;; If a search key value is nil or t (match anything), we skip it
1717 (search-spec (apply #'append
(mapcar
1719 (if (or (null (plist-get spec k
))
1720 (eq t
(plist-get spec k
)))
1722 (list k
(plist-get spec k
))))
1724 ;; needed keys (always including host, login, port, and secret)
1725 (returned-keys (delete-dups (append
1726 '(:host
:login
:port
:secret
)
1728 ;; Extract host and port from spec
1729 (hosts (plist-get spec
:host
))
1730 (hosts (if (and hosts
(listp hosts
)) hosts
`(,hosts
)))
1731 (ports (plist-get spec
:port
))
1732 (ports (if (and ports
(listp ports
)) ports
`(,ports
)))
1733 ;; Loop through all combinations of host/port and pass each of these to
1734 ;; auth-source-macos-keychain-search-items
1735 (items (catch 'match
1736 (dolist (host hosts
)
1737 (dolist (port ports
)
1738 (let* ((port (if port
(format "%S" port
)))
1739 (items (apply #'auth-source-macos-keychain-search-items
1746 (throw 'match items
)))))))
1748 ;; ensure each item has each key in `returned-keys'
1749 (items (mapcar (lambda (plist)
1752 (mapcar (lambda (req)
1753 (if (plist-get plist req
)
1762 (defun auth-source--decode-octal-string (string)
1763 "Convert octal string to utf-8 string. E.g: 'a\134b' to 'a\b'"
1764 (let ((list (string-to-list string
))
1765 (size (length string
)))
1766 (decode-coding-string
1767 (apply #'unibyte-string
1768 (loop for i
= 0 then
(+ i
(if (eq (nth i list
) ?
\\) 4 1))
1769 for var
= (nth i list
)
1772 collect
(string-to-number
1773 (concat (cl-subseq list
(+ i
1) (+ i
4))) 8)
1778 (defun* auth-source-macos-keychain-search-items
(coll _type _max
1783 (let* ((keychain-generic (eq type
'macos-keychain-generic
))
1784 (args `(,(if keychain-generic
1785 "find-generic-password"
1786 "find-internet-password")
1788 (ret (list :type type
)))
1790 (setq args
(append args
(list "-l" label
))))
1792 (setq args
(append args
(list (if keychain-generic
"-c" "-s") host
))))
1794 (setq args
(append args
(list "-a" user
))))
1797 (if keychain-generic
1798 (setq args
(append args
(list "-s" port
)))
1799 (setq args
(append args
(list
1800 (if (string-match "[0-9]+" port
) "-P" "-r")
1803 (unless (equal coll
"default")
1804 (setq args
(append args
(list coll
))))
1807 (apply #'call-process
"/usr/bin/security" nil t nil args
)
1808 (goto-char (point-min))
1811 ((looking-at "^password: \\(?:0x[0-9A-F]+\\)? *\"\\(.+\\)\"")
1812 (setq ret
(auth-source-macos-keychain-result-append
1816 (lexical-let ((v (auth-source--decode-octal-string
1819 ;; TODO: check if this is really the label
1820 ;; match 0x00000007 <blob>="AppleID"
1822 "^[ ]+0x00000007 <blob>=\\(?:0x[0-9A-F]+\\)? *\"\\(.+\\)\"")
1823 (setq ret
(auth-source-macos-keychain-result-append
1827 (auth-source--decode-octal-string (match-string 1)))))
1828 ;; match "crtr"<uint32>="aapl"
1829 ;; match "svce"<blob>="AppleID"
1831 "^[ ]+\"\\([a-z]+\\)\"[^=]+=\\(?:0x[0-9A-F]+\\)? *\"\\(.+\\)\"")
1832 (setq ret
(auth-source-macos-keychain-result-append
1835 (auth-source--decode-octal-string (match-string 1))
1836 (auth-source--decode-octal-string (match-string 2))))))
1838 ;; return `ret' iff it has the :secret key
1839 (and (plist-get ret
:secret
) (list ret
))))
1841 (defun auth-source-macos-keychain-result-append (result generic k v
)
1843 (push (auth-source--symbol-keyword
1845 ((equal k
"acct") "user")
1846 ;; for generic keychains, creator is host, service is port
1847 ((and generic
(equal k
"crtr")) "host")
1848 ((and generic
(equal k
"svce")) "port")
1849 ;; for internet keychains, protocol is port, server is host
1850 ((and (not generic
) (equal k
"ptcl")) "port")
1851 ((and (not generic
) (equal k
"srvr")) "host")
1855 (defun auth-source-macos-keychain-create (&rest spec
)
1859 ;;; Backend specific parsing: PLSTORE backend
1861 (defun* auth-source-plstore-search
(&rest
1863 &key backend create delete
1866 "Search the PLSTORE; spec is like `auth-source'."
1867 (let* ((store (oref backend data
))
1868 (max (or max
5000)) ; sanity check: default to stop at 5K
1869 (ignored-keys '(:create
:delete
:max
:backend
:label
:require
:type
))
1870 (search-keys (loop for i below
(length spec
) by
2
1871 unless
(memq (nth i spec
) ignored-keys
)
1872 collect
(nth i spec
)))
1873 ;; build a search spec without the ignored keys
1874 ;; if a search key is nil or t (match anything), we skip it
1875 (search-spec (apply #'append
(mapcar
1877 (let ((v (plist-get spec k
)))
1885 ;; needed keys (always including host, login, port, and secret)
1886 (returned-keys (delete-dups (append
1887 '(:host
:login
:port
:secret
)
1889 (items (plstore-find store search-spec
))
1890 (item-names (mapcar #'car items
))
1891 (items (butlast items
(- (length items
) max
)))
1892 ;; convert the item to a full plist
1893 (items (mapcar (lambda (item)
1894 (let* ((plist (copy-tree (cdr item
)))
1895 (secret (plist-member plist
:secret
)))
1899 (lexical-let ((v (car (cdr secret
))))
1903 ;; ensure each item has each key in `returned-keys'
1904 (items (mapcar (lambda (plist)
1907 (mapcar (lambda (req)
1908 (if (plist-get plist req
)
1915 ;; if we need to create an entry AND none were found to match
1919 ;; create based on the spec and record the value
1921 ;; if the user did not want to create the entry
1922 ;; in the file, it will be returned
1923 (apply (slot-value backend
'create-function
) spec
)
1924 ;; if not, we do the search again without :create
1925 ;; to get the updated data.
1927 ;; the result will be returned, even if the search fails
1928 (apply #'auth-source-plstore-search
1929 (plist-put spec
:create nil
)))))
1932 (dolist (item-name item-names
)
1933 (plstore-delete store item-name
))
1934 (plstore-save store
)))
1937 (defun* auth-source-plstore-create
(&rest spec
1941 (let* ((base-required '(host user port secret
))
1942 (base-secret '(secret))
1943 ;; we know (because of an assertion in auth-source-search) that the
1944 ;; :create parameter is either t or a list (which includes nil)
1945 (create-extra (if (eq t create
) nil create
))
1946 (current-data (car (auth-source-search :max
1
1949 (required (append base-required create-extra
))
1950 ;; `valist' is an alist
1952 ;; `artificial' will be returned if no creation is needed
1956 ;; only for base required elements (defined as function parameters):
1957 ;; fill in the valist with whatever data we may have from the search
1958 ;; we complete the first value if it's a list and use the value otherwise
1959 (dolist (br base-required
)
1960 (let ((val (plist-get spec
(auth-source--symbol-keyword br
))))
1962 (let ((br-choice (cond
1963 ;; all-accepting choice (predicate is t)
1965 ;; just the value otherwise
1968 (auth-source--aput valist br br-choice
))))))
1970 ;; for extra required elements, see if the spec includes a value for them
1971 (dolist (er create-extra
)
1972 (let ((k (auth-source--symbol-keyword er
))
1973 (keys (loop for i below
(length spec
) by
2
1974 collect
(nth i spec
))))
1976 (auth-source--aput valist er
(plist-get spec k
)))))
1978 ;; for each required element
1979 (dolist (r required
)
1980 (let* ((data (auth-source--aget valist r
))
1981 ;; take the first element if the data is a list
1982 (data (or (auth-source-netrc-element-or-first data
)
1983 (plist-get current-data
1984 (auth-source--symbol-keyword r
))))
1985 ;; this is the default to be offered
1986 (given-default (auth-source--aget
1987 auth-source-creation-defaults r
))
1988 ;; the default supplementals are simple:
1989 ;; for the user, try `given-default' and then (user-login-name);
1990 ;; otherwise take `given-default'
1992 ((and (not given-default
) (eq r
'user
))
1995 (printable-defaults (list
1998 (auth-source-netrc-element-or-first
1999 (auth-source--aget valist
'user
))
2000 (plist-get artificial
:user
)
2004 (auth-source-netrc-element-or-first
2005 (auth-source--aget valist
'host
))
2006 (plist-get artificial
:host
)
2010 (auth-source-netrc-element-or-first
2011 (auth-source--aget valist
'port
))
2012 (plist-get artificial
:port
)
2014 (prompt (or (auth-source--aget auth-source-creation-prompts r
)
2016 (secret "%p password for %u@%h: ")
2017 (user "%p user name for %h: ")
2018 (host "%p host name for user %u: ")
2019 (port "%p port for %u@%h: "))
2020 (format "Enter %s (%%u@%%h:%%p): " r
)))
2021 (prompt (auth-source-format-prompt
2023 `((?u
,(auth-source--aget printable-defaults
'user
))
2024 (?h
,(auth-source--aget printable-defaults
'host
))
2025 (?p
,(auth-source--aget printable-defaults
'port
))))))
2027 ;; Store the data, prompting for the password if needed.
2030 (or (eval default
) (read-passwd prompt
))
2031 (if (stringp default
)
2033 (if (string-match ": *\\'" prompt
)
2034 (concat (substring prompt
0 (match-beginning 0))
2035 " (default " default
"): ")
2036 (concat prompt
"(default " default
") "))
2041 (if (member r base-secret
)
2042 (setq secret-artificial
2043 (plist-put secret-artificial
2044 (auth-source--symbol-keyword r
)
2046 (setq artificial
(plist-put artificial
2047 (auth-source--symbol-keyword r
)
2049 (plstore-put (oref backend data
)
2050 (sha1 (format "%s@%s:%s"
2051 (plist-get artificial
:user
)
2052 (plist-get artificial
:host
)
2053 (plist-get artificial
:port
)))
2054 artificial secret-artificial
)
2055 (if (y-or-n-p (format "Save auth info to file %s? "
2056 (plstore-get-file (oref backend data
))))
2057 (plstore-save (oref backend data
)))))
2061 ;; (auth-source-user-or-password '("login" "password") "imap.myhost.com" t "tzz")
2063 ;; deprecate the old interface
2064 (make-obsolete 'auth-source-user-or-password
2065 'auth-source-search
"Emacs 24.1")
2066 (make-obsolete 'auth-source-forget-user-or-password
2067 'auth-source-forget
"Emacs 24.1")
2069 (defun auth-source-user-or-password
2070 (mode host port
&optional username create-missing delete-existing
)
2071 "Find MODE (string or list of strings) matching HOST and PORT.
2073 DEPRECATED in favor of `auth-source-search'!
2075 USERNAME is optional and will be used as \"login\" in a search
2076 across the Secret Service API (see secrets.el) if the resulting
2077 items don't have a username. This means that if you search for
2078 username \"joe\" and it matches an item but the item doesn't have
2079 a :user attribute, the username \"joe\" will be returned.
2081 A non nil DELETE-EXISTING means deleting any matching password
2082 entry in the respective sources. This is useful only when
2083 CREATE-MISSING is non nil as well; the intended use case is to
2084 remove wrong password entries.
2086 If no matching entry is found, and CREATE-MISSING is non nil,
2087 the password will be retrieved interactively, and it will be
2088 stored in the password database which matches best (see
2091 MODE can be \"login\" or \"password\"."
2092 (auth-source-do-debug
2093 "auth-source-user-or-password: DEPRECATED get %s for %s (%s) + user=%s"
2094 mode host port username
)
2096 (let* ((listy (listp mode
))
2097 (mode (if listy mode
(list mode
)))
2098 ;; (cname (if username
2099 ;; (format "%s %s:%s %s" mode host port username)
2100 ;; (format "%s %s:%s" mode host port)))
2101 (search (list :host host
:port port
))
2102 (search (if username
(append search
(list :user username
)) search
))
2103 (search (if create-missing
2104 (append search
(list :create t
))
2106 (search (if delete-existing
2107 (append search
(list :delete t
))
2109 ;; (found (if (not delete-existing)
2110 ;; (gethash cname auth-source-cache)
2111 ;; (remhash cname auth-source-cache)
2116 (auth-source-do-debug
2117 "auth-source-user-or-password: DEPRECATED cached %s=%s for %s (%s) + %s"
2119 ;; don't show the password
2120 (if (and (member "password" mode
) t
)
2124 found
) ; return the found data
2125 ;; else, if not found, search with a max of 1
2126 (let ((choice (nth 0 (apply #'auth-source-search
2127 (append '(:max
1) search
)))))
2131 ((equal "password" m
)
2132 (push (if (plist-get choice
:secret
)
2133 (funcall (plist-get choice
:secret
))
2136 (push (plist-get choice
:user
) found
)))))
2137 (setq found
(nreverse found
))
2138 (setq found
(if listy found
(car-safe found
)))))
2142 (defun auth-source-user-and-password (host &optional user
)
2143 (let* ((auth-info (car
2147 :user
"yourusername"
2149 :require
'(:user
:secret
)
2154 :require
'(:user
:secret
)
2156 (user (plist-get auth-info
:user
))
2157 (password (plist-get auth-info
:secret
)))
2158 (when (functionp password
)
2159 (setq password
(funcall password
)))
2160 (list user password auth-info
)))
2162 (provide 'auth-source
)
2164 ;;; auth-source.el ends here