Replace `send-string' by `process-send-string'.
[bpt/emacs.git] / lisp / net / telnet.el
CommitLineData
8749abea
GM
1;;; telnet.el --- run a telnet session from within an Emacs buffer
2
aa1e26d4 3;; Copyright (C) 1985, 88, 1992, 94, 2005 Free Software Foundation, Inc.
8749abea
GM
4
5;; Author: William F. Schelter
6;; Maintainer: FSF
299248aa 7;; Keywords: unix, comm
8749abea
GM
8
9;; This file is part of GNU Emacs.
10
11;; GNU Emacs is free software; you can redistribute it and/or modify
12;; it under the terms of the GNU General Public License as published by
13;; the Free Software Foundation; either version 2, or (at your option)
14;; any later version.
15
16;; GNU Emacs is distributed in the hope that it will be useful,
17;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;; GNU General Public License for more details.
20
21;; You should have received a copy of the GNU General Public License
22;; along with GNU Emacs; see the file COPYING. If not, write to the
23;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24;; Boston, MA 02111-1307, USA.
25
26;;; Commentary:
27
28;; This mode is intended to be used for telnet or rsh to a remote host;
29;; `telnet' and `rsh' are the two entry points. Multiple telnet or rsh
30;; sessions are supported.
31;;
32;; Normally, input is sent to the remote telnet/rsh line-by-line, as you
a1506d29 33;; type RET or LFD. C-c C-c sends a C-c to the remote immediately;
8749abea
GM
34;; C-c C-z sends C-z immediately. C-c C-q followed by any character
35;; sends that character immediately.
36;;
37;; All RET characters are filtered out of the output coming back from the
38;; remote system. The mode tries to do other useful translations based
39;; on what it sees coming back from the other system before the password
40;; query. It knows about UNIX, ITS, TOPS-20 and Explorer systems.
41;;
42;; You can use the global telnet-host-properties to associate a telnet
43;; program and login name with each host you regularly telnet to.
44
45;;; Code:
46
47;; to do fix software types for lispm:
48;; to eval current expression. Also to try to send escape keys correctly.
49;; essentially we'll want the rubout-handler off.
50
51;; filter is simplistic but should be okay for typical shell usage.
52;; needs hacking if it is going to deal with asynchronous output in a sane
53;; manner
54
55(require 'comint)
56
57(defvar telnet-host-properties ()
58 "Specify which telnet program to use for particular hosts.
59Each element has the form (HOSTNAME PROGRAM [LOGIN-NAME])
60HOSTNAME says which machine the element applies to.
61PROGRAM says which program to run, to talk to that machine.
62LOGIN-NAME, which is optional, says what to log in as on that machine.")
63
64(defvar telnet-new-line "\r")
65(defvar telnet-mode-map nil)
66(defvar telnet-prompt-pattern "^[^#$%>\n]*[#$%>] *")
67(defvar telnet-replace-c-g nil)
68(make-variable-buffer-local
69 (defvar telnet-remote-echoes t
70 "True if the telnet process will echo input."))
71(make-variable-buffer-local
72 (defvar telnet-interrupt-string "\C-c" "String sent by C-c."))
73
74(defvar telnet-count 0
75 "Number of output strings from telnet process while looking for password.")
76(make-variable-buffer-local 'telnet-count)
77
78(defvar telnet-program "telnet"
79 "Program to run to open a telnet connection.")
80
81(defvar telnet-initial-count -50
82 "Initial value of `telnet-count'. Should be set to the negative of the
83number of terminal writes telnet will make setting up the host connection.")
84
85(defvar telnet-maximum-count 4
86 "Maximum value `telnet-count' can have.
87After this many passes, we stop looking for initial setup data.
88Should be set to the number of terminal writes telnet will make
89rejecting one login and prompting again for a username and password.")
90
91(defun telnet-interrupt-subjob ()
8749abea 92 "Interrupt the program running through telnet on the remote host."
279dffd6 93 (interactive)
ff660307 94 (process-send-string nil telnet-interrupt-string))
8749abea
GM
95
96(defun telnet-c-z ()
97 (interactive)
ff660307 98 (process-send-string nil "\C-z"))
8749abea
GM
99
100(defun send-process-next-char ()
101 (interactive)
ff660307
JB
102 (process-send-string nil
103 (char-to-string
104 (let ((inhibit-quit t))
105 (prog1 (read-char)
106 (setq quit-flag nil))))))
8749abea
GM
107
108; initialization on first load.
109(if telnet-mode-map
110 nil
111 (setq telnet-mode-map (nconc (make-sparse-keymap) comint-mode-map))
112 (define-key telnet-mode-map "\C-m" 'telnet-send-input)
113; (define-key telnet-mode-map "\C-j" 'telnet-send-input)
114 (define-key telnet-mode-map "\C-c\C-q" 'send-process-next-char)
a1506d29 115 (define-key telnet-mode-map "\C-c\C-c" 'telnet-interrupt-subjob)
8749abea
GM
116 (define-key telnet-mode-map "\C-c\C-z" 'telnet-c-z))
117
118;;maybe should have a flag for when have found type
119(defun telnet-check-software-type-initialize (string)
120 "Tries to put correct initializations in. Needs work."
121 (let ((case-fold-search t))
122 (cond ((string-match "unix" string)
123 (setq telnet-prompt-pattern comint-prompt-regexp)
124 (setq telnet-new-line "\n"))
125 ((string-match "tops-20" string) ;;maybe add telnet-replace-c-g
126 (setq telnet-prompt-pattern "[@>]*"))
127 ((string-match "its" string)
128 (setq telnet-prompt-pattern "^[^*>\n]*[*>] *"))
129 ((string-match "explorer" string) ;;explorer telnet needs work
130 (setq telnet-replace-c-g ?\n))))
131 (setq comint-prompt-regexp telnet-prompt-pattern))
132
133(defun telnet-initial-filter (proc string)
134 ;For reading up to and including password; also will get machine type.
135 (save-current-buffer
136 (set-buffer (process-buffer proc))
137 (let ((case-fold-search t))
138 (cond ((string-match "No such host" string)
139 (kill-buffer (process-buffer proc))
140 (error "No such host"))
141 ((string-match "passw" string)
142 (telnet-filter proc string)
143 (setq telnet-count 0)
ff660307
JB
144 (process-send-string proc (concat (comint-read-noecho "Password: " t)
145 telnet-new-line))
8749abea
GM
146 (clear-this-command-keys))
147 (t (telnet-check-software-type-initialize string)
148 (telnet-filter proc string)
149 (cond ((> telnet-count telnet-maximum-count)
150 (set-process-filter proc 'telnet-filter))
151 (t (setq telnet-count (1+ telnet-count)))))))))
152
153;; Identical to comint-simple-send, except that it sends telnet-new-line
154;; instead of "\n".
155(defun telnet-simple-send (proc string)
156 (comint-send-string proc string)
732576c8 157 (if comint-input-sender-no-newline
ff78c721 158 (if (not (string-equal string ""))
732576c8
RS
159 (process-send-eof))
160 (comint-send-string proc telnet-new-line)))
8749abea
GM
161
162(defun telnet-filter (proc string)
163 (save-excursion
164 (set-buffer (process-buffer proc))
165 (let* ((last-insertion (marker-position (process-mark proc)))
166 (delta (- (point) last-insertion))
167 (ie (and comint-last-input-end
168 (marker-position comint-last-input-end)))
169 (w (get-buffer-window (current-buffer)))
170 (ws (and w (window-start w))))
171 (goto-char last-insertion)
172 (insert-before-markers string)
173 (set-marker comint-last-output-start last-insertion)
174 (set-marker (process-mark proc) (point))
175 (if ws (set-window-start w ws t))
176 (if ie (set-marker comint-last-input-end ie))
177 (while (progn (skip-chars-backward "^\C-m" last-insertion)
178 (> (point) last-insertion))
179 (delete-region (1- (point)) (point)))
180 (goto-char (process-mark proc))
181 (and telnet-replace-c-g
182 (subst-char-in-region last-insertion (point) ?\C-g
183 telnet-replace-c-g t))
184 ;; If point is after the insertion place, move it
185 ;; along with the text.
186 (if (> delta 0)
187 (goto-char (+ (process-mark proc) delta))))))
188
189(defun telnet-send-input ()
190 (interactive)
191; (comint-send-input telnet-new-line telnet-remote-echoes)
192 (comint-send-input)
193 (if telnet-remote-echoes
194 (delete-region comint-last-input-start
195 comint-last-input-end)))
196
197;;;###autoload (add-hook 'same-window-regexps "\\*telnet-.*\\*\\(\\|<[0-9]+>\\)")
198
199;;;###autoload
8fb5d2f1 200(defun telnet (host &optional port)
8749abea 201 "Open a network login connection to host named HOST (a string).
8fb5d2f1
KS
202Optional arg PORT specifies alternative port to connect to.
203Interactively, use \\[universal-argument] prefix to be prompted for port number.
204
8749abea
GM
205Communication with HOST is recorded in a buffer `*PROGRAM-HOST*'
206where PROGRAM is the telnet program being used. This program
207is controlled by the contents of the global variable `telnet-host-properties',
208falling back on the value of the global variable `telnet-program'.
209Normally input is edited in Emacs and sent a line at a time."
8fb5d2f1
KS
210 (interactive (list (read-string "Open connection to host: ")
211 (cond
212 ((null current-prefix-arg) nil)
213 ((consp current-prefix-arg) (read-string "Port: "))
214 (t (prefix-numeric-value current-prefix-arg)))))
215 (if (and port (numberp port))
216 (setq port (int-to-string port)))
8749abea
GM
217 (let* ((comint-delimiter-argument-list '(?\ ?\t))
218 (properties (cdr (assoc host telnet-host-properties)))
219 (telnet-program (if properties (car properties) telnet-program))
8fb5d2f1
KS
220 (hname (if port (concat host ":" port) host))
221 (name (concat telnet-program "-" (comint-arguments hname 0 nil) ))
8749abea
GM
222 (buffer (get-buffer (concat "*" name "*")))
223 (telnet-options (if (cdr properties) (cons "-l" (cdr properties))))
224 process)
225 (if (and buffer (get-buffer-process buffer))
226 (pop-to-buffer (concat "*" name "*"))
a1506d29 227 (pop-to-buffer
8749abea
GM
228 (apply 'make-comint name telnet-program nil telnet-options))
229 (setq process (get-buffer-process (current-buffer)))
230 (set-process-filter process 'telnet-initial-filter)
231 ;; Don't send the `open' cmd till telnet is ready for it.
232 (accept-process-output process)
233 (erase-buffer)
ff660307
JB
234 (process-send-string process (concat "open " host
235 (if port " " "") (or port "")
236 "\n"))
8749abea
GM
237 (telnet-mode)
238 (setq comint-input-sender 'telnet-simple-send)
239 (setq telnet-count telnet-initial-count))))
240
241(put 'telnet-mode 'mode-class 'special)
242
46554de4 243(define-derived-mode telnet-mode comint-mode "Telnet"
8749abea
GM
244 "This mode is for using telnet (or rsh) from a buffer to another host.
245It has most of the same commands as comint-mode.
246There is a variable ``telnet-interrupt-string'' which is the character
247sent to try to stop execution of a job on the remote host.
46554de4
SM
248Data is sent to the remote host when RET is typed."
249 (set (make-local-variable 'comint-prompt-regexp) telnet-prompt-pattern))
8749abea
GM
250
251;;;###autoload (add-hook 'same-window-regexps "\\*rsh-[^-]*\\*\\(\\|<[0-9]*>\\)")
252
253;;;###autoload
254(defun rsh (host)
255 "Open a network login connection to host named HOST (a string).
256Communication with HOST is recorded in a buffer `*rsh-HOST*'.
257Normally input is edited in Emacs and sent a line at a time."
258 (interactive "sOpen rsh connection to host: ")
259 (require 'shell)
260 (let ((name (concat "rsh-" host )))
261 (pop-to-buffer (make-comint name remote-shell-program nil host))
262 (set-process-filter (get-process name) 'telnet-initial-filter)
263 (telnet-mode)
264 (setq telnet-count -16)))
265
266(provide 'telnet)
267
ab5796a9 268;;; arch-tag: 98218821-d04a-48b6-9058-57d0d4677a56
8749abea 269;;; telnet.el ends here