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