annotate lisp/utils/passwd.el @ 2:ac2d302a0011 r19-15b2

Import from CVS: tag r19-15b2
author cvs
date Mon, 13 Aug 2007 08:46:35 +0200
parents 376386a54a3c
children 0293115a14e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; passwd.el --- Prompting for passwords semi-securely
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ;; Copyright (C) 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 ;; Keywords: comm, extensions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; Author: Jamie Zawinski <jwz@netscape.com>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 ;; This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 ;; XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 ;; XEmacs is distributed in the hope that it will be useful, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 ;;; Synched up with: Not in FSF.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 ;; You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 ;; along with XEmacs; see the file COPYING. If not, write to the Free
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 ;; Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;;; Change Log:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 ;;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 ;; Sun Jun 12 04:19:30 1994 by sandy on ibm550.sissa.it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 ;; Added support for password histories and (provide 'passwd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 ;; (jwz says: this "history" thing is completely undocumented, you loser!)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 ;; 2-Jan-95 (mon); 4:13 AM by jwz@netscape.com
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 ;; Fixed Sandy's extreme keymap bogosity. Made it invert the screen when
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 ;; reading securely (this could be better; maybe use red text or something
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 ;; instead...)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 ;; 9-Jul-95 (fri); 4:55 AM by jwz@netscape.com
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 ;; Made it work with XEmacs 19.12.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 ;; 7-Jul-95 by cthomp@cs.uiuc.edu
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 ;; Added variable to control inverting frame when keyboard grabbed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 (defvar passwd-invert-frame-when-keyboard-grabbed t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 "*If non-nil swap the foreground and background colors of all faces.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 This is done while the keyboard is grabbed in order to give a visual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 clue that a grab is in effect.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 (defvar passwd-echo ?.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 "*The character which should be echoed when typing a password,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 or nil, meaning echo nothing.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 (defvar read-passwd-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 (let ((i 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 (s (make-string 1 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 (cond ((fboundp 'set-keymap-parent)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 (setq map (make-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 (set-keymap-parent map minibuffer-local-map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 (t ; v18/FSFmacs compatibility
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 (setq map (copy-keymap minibuffer-local-map))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 (if (fboundp 'set-keymap-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 (set-keymap-name map 'read-passwd-map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (while (< i 127)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 (aset s 0 i)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 (or (and (boundp 'meta-prefix-char) (eq i meta-prefix-char))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 (define-key map s 'self-insert-command))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 (setq i (1+ i)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 (define-key map "\C-g" 'keyboard-quit)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 (define-key map "\C-h" 'delete-backward-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 (define-key map "\r" 'exit-minibuffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 (define-key map "\n" 'exit-minibuffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (define-key map "\C-u" 'passwd-erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 (define-key map "\C-q" 'quoted-insert)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 (define-key map "\177" 'delete-backward-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 (define-key map "\M-n" 'passwd-next-history-element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 (define-key map "\M-p" 'passwd-previous-history-element)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 "Keymap used for reading passwords in the minibuffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 The \"bindings\" in this map are not real commands; only a limited
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 number of commands are understood. The important bindings are:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 \\<read-passwd-map>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 \\[passwd-erase-buffer] Erase all input.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 \\[quoted-insert] Insert the next character literally.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 \\[delete-backward-char] Delete the previous character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 \\[exit-minibuffer] Accept what you have typed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 \\[keyboard-quit] Abort the command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 All other characters insert themselves (but do not echo.)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 ;;; internal variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 (defvar passwd-history nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 (defvar passwd-history-posn 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 ;;;###autoload
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 (defun read-passwd (prompt &optional confirm default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 "Prompts for a password in the minibuffer, and returns it as a string.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 If PROMPT may be a prompt string or an alist of elements
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 '\(prompt . default\).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 If optional arg CONFIRM is true, then ask the user to type the password
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 again to confirm that they typed it correctly.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 If optional arg DEFAULT is provided, then it is a string to insert as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 the default choice (it is not, of course, displayed.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 If running under X, the keyboard will be grabbed (with XGrabKeyboard())
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 to reduce the possibility that evesdropping is occuring.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 When reading a password, all keys self-insert, except for:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 \\<read-passwd-map>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 \\[read-passwd-erase-line] Erase the entire line.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 \\[quoted-insert] Insert the next character literally.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 \\[delete-backward-char] Delete the previous character.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 \\[exit-minibuffer] Accept what you have typed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 \\[keyboard-quit] Abort the command.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 The returned value is always a newly-created string. No additional copies
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 of the password remain after this function has returned.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 NOTE: unless great care is taken, the typed password will exist in plaintext
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 form in the running image for an arbitrarily long time. Priveleged users may
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 be able to extract it from memory. If emacs crashes, it may appear in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 resultant core file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 Some steps you can take to prevent the password from being copied around:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 - as soon as you are done with the returned string, destroy it with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 (fillarray string 0). The same goes for any default passwords
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 or password histories.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 - do not copy the string, as with concat or substring - if you do, be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 sure to keep track of and destroy all copies.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 - do not insert the password into a buffer - if you do, be sure to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 overwrite the buffer text before killing it, as with the functions
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 `passwd-erase-buffer' or `passwd-kill-buffer'. Note that deleting
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 the text from the buffer does NOT necessarily remove the text from
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 memory.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 - be careful of the undo history - if you insert the password into a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 buffer which has undo recording turned on, the password will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 copied onto the undo list, and thus recoverable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 - do not pass it as an argument to a shell command - anyone will be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 able to see it if they run `ps' at the right time.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 Note that the password will be temporarily recoverable with the `view-lossage'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 command. This data will not be overwritten until another hundred or so
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 characters are typed. There's not currently a way around this."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 (let ((input (get-buffer-create " *password*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 (passwd-history-posn 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 passwd-history)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 (if (listp prompt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 (setq passwd-history prompt
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 default (cdr (car passwd-history))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 (set-buffer input)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 (buffer-disable-undo input)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 (use-local-map read-passwd-map)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 (if (passwd-grab-keyboard)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 (passwd-secure-display))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 (read-passwd-1 input prompt nil default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 (set-buffer input)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 (if (not confirm)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 (buffer-string)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 (let ((ok nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 passwd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 (while (not ok)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 (set-buffer input)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 (setq passwd (buffer-string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 (read-passwd-1 input prompt "[Retype to confirm]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 (if (passwd-compare-string-to-buffer passwd input)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 (setq ok t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 (fillarray passwd 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 (setq passwd nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 (beep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 (read-passwd-1 input prompt "[Mismatch. Start over]")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 ))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 passwd)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 ;; protected
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 (passwd-ungrab-keyboard)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 (passwd-insecure-display)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 (passwd-kill-buffer input)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 (if (fboundp 'clear-message) ;XEmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 (clear-message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 (message ""))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 ))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 (defun read-passwd-1 (buffer prompt &optional prompt2 default)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 (set-buffer buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 (passwd-erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 (if default (insert default))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 (catch 'exit ; exit-minibuffer throws here
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 (while t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 (set-buffer buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 (let* ((minibuffer-completion-table nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 (cursor-in-echo-area t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 (echo-keystrokes 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 (key (passwd-read-key-sequence
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 (concat (if (listp prompt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 (car (nth passwd-history-posn passwd-history))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 prompt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 prompt2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 (if passwd-echo
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 (make-string (buffer-size) passwd-echo)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 (binding (key-binding key)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212 (setq prompt2 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 (set-buffer buffer) ; just in case...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 (if (fboundp 'event-to-character) ;; lemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 (setq last-command-event (aref key (1- (length key)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 last-command-char (event-to-character last-command-event))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 ;; v18/FSFmacs compatibility
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 (setq last-command-char (aref key (1- (length key)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 (setq this-command binding)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 (condition-case c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 (command-execute binding)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 (error
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 (beep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 (if (fboundp 'display-error)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 (display-error c t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 ;; v18/FSFmacs compatibility
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 (message (concat (or (get (car-safe c) 'error-message) "???")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 (if (cdr-safe c) ": ")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 (mapconcat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 (function (lambda (x) (format "%s" x)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 (cdr-safe c) ", "))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 (sit-for 2)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 ))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 (defun passwd-previous-history-element (n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 (interactive "p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 (or passwd-history
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 (error "Password history is empty."))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 (let ((l (length passwd-history)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 (setq passwd-history-posn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 (% (+ n passwd-history-posn) l))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 (if (< passwd-history-posn 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 (setq passwd-history-posn (+ passwd-history-posn l))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 (let ((obuff (current-buffer))) ; want to move point in passwd buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 (unwind-protect
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 (set-buffer " *password*")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 (passwd-erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 (insert (cdr (nth passwd-history-posn passwd-history))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 (set-buffer obuff))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 (defun passwd-next-history-element (n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 (interactive "p")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 (passwd-previous-history-element (- n)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 (defun passwd-erase-buffer ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 ;; First erase the buffer, which will simply enlarge the gap.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 ;; Then insert null characters until the gap is filled with them
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 ;; to prevent the old text from being visible in core files or kmem.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 ;; (Actually use 3x the size of the buffer just to be safe - a longer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 ;; passwd might have been typed and backspaced over.)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 (widen)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 (let ((s (* (buffer-size) 3)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 (erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 (while (> s 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 (insert ?\000)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 (setq s (1- s)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 (erase-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 (defun passwd-kill-buffer (buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 (set-buffer buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 (buffer-disable-undo buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 (passwd-erase-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 (set-buffer-modified-p nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 (kill-buffer buffer))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 (defun passwd-compare-string-to-buffer (string buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 ;; same as (equal string (buffer-string)) but with no dangerous consing.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 (set-buffer buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 (goto-char (point-min))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 (let ((L (length string))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 (i 0))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 (if (/= L (- (point-max) (point-min)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 (while (not (eobp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 (if (/= (following-char) (aref string i))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 (setq i (1+ i))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 (forward-char)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 (= (point) (+ i (point-min)))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 (defvar passwd-face-data nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 (defun passwd-secure-display ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299 ;; Inverts the screen - used to indicate secure input, like xterm.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 ((and passwd-invert-frame-when-keyboard-grabbed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 (fboundp 'set-face-foreground))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 (setq passwd-face-data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 (delq nil (mapcar (function
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 (lambda (face)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 (let ((fg (face-foreground face))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 (bg (face-background face)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 (if (or fg bg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 (if (fboundp 'color-name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 (list face
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 (color-name fg)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 (color-name bg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 (list face fg bg))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 nil))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 (if (fboundp 'list-faces)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 (list-faces) ; lemacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 (face-list) ; FSFmacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 ))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 (let ((rest passwd-face-data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 (while rest
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 (set-face-foreground (nth 0 (car rest)) (nth 2 (car rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 (set-face-background (nth 0 (car rest)) (nth 1 (car rest)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 (setq rest (cdr rest))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 (defun passwd-insecure-display ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 ;; Undoes the effect of `passwd-secure-display'.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 (cond
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 (passwd-invert-frame-when-keyboard-grabbed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 (while passwd-face-data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 (set-face-foreground (nth 0 (car passwd-face-data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 (nth 1 (car passwd-face-data)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 (set-face-background (nth 0 (car passwd-face-data))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 (nth 2 (car passwd-face-data)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 (setq passwd-face-data (cdr passwd-face-data)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 nil)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 (defun passwd-grab-keyboard ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 (cond ((not (and (fboundp 'x-grab-keyboard) ; lemacs 19.10+
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 (eq 'x (if (fboundp 'frame-type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 (frame-type (selected-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 (live-screen-p (selected-screen))))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 ((x-grab-keyboard)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 (message "Unable to grab keyboard - waiting a second...")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 (sleep-for 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 (cond ((x-grab-keyboard)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 (message "Keyboard grabbed on second try.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 (t
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 (beep)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 (message "WARNING: keyboard is insecure (unable to grab!)")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 (sleep-for 3)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 nil)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 (defun passwd-ungrab-keyboard ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 (if (and (fboundp 'x-ungrab-keyboard) ; lemacs 19.10+
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 (eq 'x (if (fboundp 'frame-type)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 (frame-type (selected-frame))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362 (live-screen-p (selected-screen)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 (x-ungrab-keyboard)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 ;; v18 compatibility
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 (or (fboundp 'buffer-disable-undo)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 (fset 'buffer-disable-undo 'buffer-flush-undo))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 ;; read-key-sequence echoes the key sequence in Emacs 18.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370 (defun passwd-read-key-sequence (prompt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 (let ((inhibit-quit t)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372 str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 (while (or (null str) (keymapp (key-binding str)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374 (if (fboundp 'display-message)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 (display-message 'prompt prompt)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 (message prompt))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 (setq str (concat str (char-to-string (read-char)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 (setq quit-flag nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 str))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 (or (string-match "^18" emacs-version)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 (fset 'passwd-read-key-sequence 'read-key-sequence))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 (provide 'passwd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386 ;;; passwd.el ends here