annotate lisp/utils/passwd.el @ 30:ec9a17fef872 r19-15b98

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