Add 2012 to FSF copyright years for Emacs files
[bpt/emacs.git] / lisp / net / rlogin.el
CommitLineData
8749abea
GM
1;;; rlogin.el --- remote login interface
2
acaf905b 3;; Copyright (C) 1992-1995, 1997-1998, 2001-2012
e9bffc61 4;; Free Software Foundation, Inc.
8749abea
GM
5
6;; Author: Noah Friedman
7;; Maintainer: Noah Friedman <friedman@splode.com>
8;; Keywords: unix, comm
9
8749abea
GM
10;; This file is part of GNU Emacs.
11
874a927a 12;; GNU Emacs is free software: you can redistribute it and/or modify
8749abea 13;; it under the terms of the GNU General Public License as published by
874a927a
GM
14;; the Free Software Foundation, either version 3 of the License, or
15;; (at your option) any later version.
8749abea
GM
16
17;; GNU Emacs is distributed in the hope that it will be useful,
18;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20;; GNU General Public License for more details.
21
22;; You should have received a copy of the GNU General Public License
874a927a 23;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
8749abea
GM
24
25;;; Commentary:
26
27;; Support for remote logins using `rlogin'.
28;; This program is layered on top of shell.el; the code here only accounts
29;; for the variations needed to handle a remote process, e.g. directory
30;; tracking and the sending of some special characters.
31
32;; If you wish for rlogin mode to prompt you in the minibuffer for
33;; passwords when a password prompt appears, just enter m-x send-invisible
34;; and type in your line, or add `comint-watch-for-password-prompt' to
35;; `comint-output-filter-functions'.
36
37;;; Code:
38
39(require 'comint)
40(require 'shell)
41
42(defgroup rlogin nil
508334bc 43 "Remote login interface."
8749abea
GM
44 :group 'processes
45 :group 'unix)
46
47(defcustom rlogin-program "rlogin"
1fc7dabf 48 "Name of program to invoke rlogin"
8749abea
GM
49 :type 'string
50 :group 'rlogin)
51
52(defcustom rlogin-explicit-args nil
1fc7dabf 53 "List of arguments to pass to rlogin on the command line."
8749abea
GM
54 :type '(repeat (string :tag "Argument"))
55 :group 'rlogin)
56
57(defcustom rlogin-mode-hook nil
1fc7dabf 58 "Hooks to run after setting current buffer to rlogin-mode."
8749abea
GM
59 :type 'hook
60 :group 'rlogin)
61
62(defcustom rlogin-process-connection-type
56442f0c
GM
63 ;; Solaris 2.x `rlogin' will spew a bunch of ioctl error messages if
64 ;; stdin isn't a tty.
65 (and (string-match-p "-solaris2" system-configuration) t)
1fc7dabf 66 "If non-nil, use a pty for the local rlogin process.
5199cf98 67If nil, use a pipe (if pipes are supported on the local system).
8749abea
GM
68
69Generally it is better not to waste ptys on systems which have a static
70number of them. On the other hand, some implementations of `rlogin' assume
71a pty is being used, and errors will result from using a pipe instead."
72 :type '(choice (const :tag "pipes" nil)
73 (other :tag "ptys" t))
74 :group 'rlogin)
75
76(defcustom rlogin-directory-tracking-mode 'local
1fc7dabf 77 "Control whether and how to do directory tracking in an rlogin buffer.
8749abea
GM
78
79nil means don't do directory tracking.
80
81t means do so using an ftp remote file name.
82
83Any other value means do directory tracking using local file names.
84This works only if the remote machine and the local one
85share the same directories (through NFS). This is the default.
86
87This variable becomes local to a buffer when set in any fashion for it.
88
89It is better to use the function of the same name to change the behavior of
90directory tracking in an rlogin session once it has begun, rather than
91simply setting this variable, since the function does the necessary
92re-synching of directories."
93 :type '(choice (const :tag "off" nil)
94 (const :tag "ftp" t)
95 (other :tag "local" local))
96 :group 'rlogin)
97
98(make-variable-buffer-local 'rlogin-directory-tracking-mode)
99
100(defcustom rlogin-host nil
1fc7dabf 101 "The name of the remote host. This variable is buffer-local."
8749abea
GM
102 :type '(choice (const nil) string)
103 :group 'rlogin)
104
105(defcustom rlogin-remote-user nil
1fc7dabf 106 "The username used on the remote host.
8749abea
GM
107This variable is buffer-local and defaults to your local user name.
108If rlogin is invoked with the `-l' option to specify the remote username,
109this variable is set from that."
110 :type '(choice (const nil) string)
111 :group 'rlogin)
112
56442f0c
GM
113(defvar rlogin-mode-map
114 (let ((map (if (consp shell-mode-map)
115 (cons 'keymap shell-mode-map)
116 (copy-keymap shell-mode-map))))
117 (define-key rlogin-mode-map "\C-c\C-c" 'rlogin-send-Ctrl-C)
118 (define-key rlogin-mode-map "\C-c\C-d" 'rlogin-send-Ctrl-D)
119 (define-key rlogin-mode-map "\C-c\C-z" 'rlogin-send-Ctrl-Z)
120 (define-key rlogin-mode-map "\C-c\C-\\" 'rlogin-send-Ctrl-backslash)
121 (define-key rlogin-mode-map "\C-d" 'rlogin-delchar-or-send-Ctrl-D)
122 (define-key rlogin-mode-map "\C-i" 'rlogin-tab-or-complete)
123 map)
124 "Keymap for `rlogin-mode'.")
125
8749abea
GM
126
127\f
8749abea
GM
128(defvar rlogin-history nil)
129
130;;;###autoload
131(defun rlogin (input-args &optional buffer)
132 "Open a network login connection via `rlogin' with args INPUT-ARGS.
133INPUT-ARGS should start with a host name; it may also contain
134other arguments for `rlogin'.
135
136Input is sent line-at-a-time to the remote connection.
137
138Communication with the remote host is recorded in a buffer `*rlogin-HOST*'
139\(or `*rlogin-USER@HOST*' if the remote username differs\).
140If a prefix argument is given and the buffer `*rlogin-HOST*' already exists,
141a new buffer with a different connection will be made.
142
143When called from a program, if the optional second argument BUFFER is
144a string or buffer, it specifies the buffer to use.
145
146The variable `rlogin-program' contains the name of the actual program to
147run. It can be a relative or absolute path.
148
149The variable `rlogin-explicit-args' is a list of arguments to give to
150the rlogin when starting. They are added after any arguments given in
151INPUT-ARGS.
152
153If the default value of `rlogin-directory-tracking-mode' is t, then the
154default directory in that buffer is set to a remote (FTP) file name to
155access your home directory on the remote machine. Occasionally this causes
156an error, if you cannot access the home directory on that machine. This
157error is harmless as long as you don't try to use that default directory.
158
159If `rlogin-directory-tracking-mode' is neither t nor nil, then the default
160directory is initially set up to your (local) home directory.
161This is useful if the remote machine and your local machine
162share the same files via NFS. This is the default.
163
164If you wish to change directory tracking styles during a session, use the
165function `rlogin-directory-tracking-mode' rather than simply setting the
166variable."
167 (interactive (list
168 (read-from-minibuffer "rlogin arguments (hostname first): "
169 nil nil nil 'rlogin-history)
170 current-prefix-arg))
8749abea
GM
171 (let* ((process-connection-type rlogin-process-connection-type)
172 (args (if rlogin-explicit-args
19a31306 173 (append (split-string input-args)
8749abea 174 rlogin-explicit-args)
19a31306 175 (split-string input-args)))
9a479835
TTN
176 (host (let ((tail args))
177 ;; Find first arg that doesn't look like an option.
178 ;; This still loses for args that take values, feh.
179 (while (and tail (= ?- (aref (car tail) 0)))
180 (setq tail (cdr tail)))
181 (car tail)))
8749abea
GM
182 (user (or (car (cdr (member "-l" args)))
183 (user-login-name)))
184 (buffer-name (if (string= user (user-login-name))
185 (format "*rlogin-%s*" host)
0fd2d581 186 (format "*rlogin-%s@%s*" user host))))
8749abea
GM
187 (cond ((null buffer))
188 ((stringp buffer)
189 (setq buffer-name buffer))
190 ((bufferp buffer)
191 (setq buffer-name (buffer-name buffer)))
192 ((numberp buffer)
193 (setq buffer-name (format "%s<%d>" buffer-name buffer)))
194 (t
195 (setq buffer-name (generate-new-buffer-name buffer-name))))
8749abea 196 (setq buffer (get-buffer-create buffer-name))
37ac18a3 197 (switch-to-buffer buffer-name)
0fd2d581 198 (unless (comint-check-proc buffer-name)
8749abea 199 (comint-exec buffer buffer-name rlogin-program nil args)
8749abea 200 (rlogin-mode)
8749abea
GM
201 (make-local-variable 'rlogin-host)
202 (setq rlogin-host host)
203 (make-local-variable 'rlogin-remote-user)
204 (setq rlogin-remote-user user)
56442f0c
GM
205 (ignore-errors
206 (cond ((eq rlogin-directory-tracking-mode t)
207 ;; Do this here, rather than calling the tracking mode
208 ;; function, to avoid a gratuitous resync check; the default
209 ;; should be the user's home directory, be it local or remote.
210 (setq comint-file-name-prefix
211 (concat "/" rlogin-remote-user "@" rlogin-host ":"))
212 (cd-absolute comint-file-name-prefix))
213 ((null rlogin-directory-tracking-mode))
214 (t
215 (cd-absolute (concat comint-file-name-prefix "~/"))))))))
8749abea
GM
216
217(put 'rlogin-mode 'mode-class 'special)
218
cf232e4d 219(define-derived-mode rlogin-mode shell-mode "Rlogin"
8749abea 220 (setq shell-dirtrackp rlogin-directory-tracking-mode)
cf232e4d 221 (make-local-variable 'comint-file-name-prefix))
8749abea
GM
222
223(defun rlogin-directory-tracking-mode (&optional prefix)
224 "Do remote or local directory tracking, or disable entirely.
225
226If called with no prefix argument or a unspecified prefix argument (just
227``\\[universal-argument]'' with no number) do remote directory tracking via
228ange-ftp. If called as a function, give it no argument.
229
230If called with a negative prefix argument, disable directory tracking
231entirely.
232
233If called with a positive, numeric prefix argument, e.g.
234``\\[universal-argument] 1 M-x rlogin-directory-tracking-mode\'',
235then do directory tracking but assume the remote filesystem is the same as
236the local system. This only works in general if the remote machine and the
365f8d85 237local one share the same directories (e.g. through NFS)."
8749abea
GM
238 (interactive "P")
239 (cond
240 ((or (null prefix)
241 (consp prefix))
242 (setq rlogin-directory-tracking-mode t)
243 (setq shell-dirtrackp t)
244 (setq comint-file-name-prefix
245 (concat "/" rlogin-remote-user "@" rlogin-host ":")))
246 ((< prefix 0)
247 (setq rlogin-directory-tracking-mode nil)
248 (setq shell-dirtrackp nil))
249 (t
250 (setq rlogin-directory-tracking-mode 'local)
251 (setq comint-file-name-prefix "")
252 (setq shell-dirtrackp t)))
253 (cond
254 (shell-dirtrackp
255 (let* ((proc (get-buffer-process (current-buffer)))
256 (proc-mark (process-mark proc))
257 (current-input (buffer-substring proc-mark (point-max)))
258 (orig-point (point))
259 (offset (and (>= orig-point proc-mark)
260 (- (point-max) orig-point))))
261 (unwind-protect
262 (progn
263 (delete-region proc-mark (point-max))
264 (goto-char (point-max))
265 (shell-resync-dirs))
266 (goto-char proc-mark)
267 (insert current-input)
268 (if offset
269 (goto-char (- (point-max) offset))
270 (goto-char orig-point)))))))
271
272\f
8749abea
GM
273(defun rlogin-send-Ctrl-C ()
274 (interactive)
275 (process-send-string nil "\C-c"))
276
277(defun rlogin-send-Ctrl-D ()
278 (interactive)
279 (process-send-string nil "\C-d"))
280
281(defun rlogin-send-Ctrl-Z ()
282 (interactive)
283 (process-send-string nil "\C-z"))
284
285(defun rlogin-send-Ctrl-backslash ()
286 (interactive)
287 (process-send-string nil "\C-\\"))
288
289(defun rlogin-delchar-or-send-Ctrl-D (arg)
56442f0c 290 "Delete ARG characters forward, or send a C-d to process if at end of buffer."
8749abea
GM
291 (interactive "p")
292 (if (eobp)
293 (rlogin-send-Ctrl-D)
294 (delete-char arg)))
295
296(defun rlogin-tab-or-complete ()
297 "Complete file name if doing directory tracking, or just insert TAB."
298 (interactive)
299 (if rlogin-directory-tracking-mode
300 (comint-dynamic-complete)
301 (insert "\C-i")))
302
303(provide 'rlogin)
304
305;;; rlogin.el ends here