Add arch tagline
[bpt/emacs.git] / lisp / net / net-utils.el
CommitLineData
e8af40ee 1;;; net-utils.el --- network functions
8749abea 2
5fd6d89f 3;; Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004,
d7a0267c 4;; 2005, 2006, 2007 Free Software Foundation, Inc.
a84f13fb 5
8749abea
GM
6;; Author: Peter Breton <pbreton@cs.umb.edu>
7;; Created: Sun Mar 16 1997
c2e6c8d1 8;; Keywords: network comm
8749abea
GM
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
14;; the Free Software Foundation; either version 2, or (at your option)
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
3a35cf56
LK
24;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25;; Boston, MA 02110-1301, USA.
8749abea
GM
26
27;;; Commentary:
c2e6c8d1 28
8749abea
GM
29;;
30;; There are three main areas of functionality:
ddb62bf1 31;;
8749abea
GM
32;; * Wrap common network utility programs (ping, traceroute, netstat,
33;; nslookup, arp, route). Note that these wrappers are of the diagnostic
34;; functions of these programs only.
ddb62bf1 35;;
8749abea 36;; * Implement some very basic protocols in Emacs Lisp (finger and whois)
ddb62bf1 37;;
8749abea
GM
38;; * Support connections to HOST/PORT, generally for debugging and the like.
39;; In other words, for doing much the same thing as "telnet HOST PORT", and
40;; then typing commands.
41;;
42;; PATHS
43;;
44;; On some systems, some of these programs are not in normal user path,
ddb62bf1 45;; but rather in /sbin, /usr/sbin, and so on.
8749abea
GM
46
47
48;;; Code:
49(eval-when-compile
50 (require 'comint))
51
52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
53;; Customization Variables
54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
55
56(defgroup net-utils nil
57 "Network utility functions."
58 :prefix "net-utils-"
59 :group 'comm
c2e6c8d1 60 :version "20.3")
8749abea 61
ddb62bf1 62(defcustom net-utils-remove-ctl-m
8749abea
GM
63 (member system-type (list 'windows-nt 'msdos))
64 "If non-nil, remove control-Ms from output."
65 :group 'net-utils
c2e6c8d1 66 :type 'boolean)
8749abea 67
ddb62bf1
PB
68(defcustom traceroute-program
69 (if (eq system-type 'windows-nt)
8749abea
GM
70 "tracert"
71 "traceroute")
72 "Program to trace network hops to a destination."
73 :group 'net-utils
c2e6c8d1 74 :type 'string)
8749abea
GM
75
76(defcustom traceroute-program-options nil
77 "Options for the traceroute program."
78 :group 'net-utils
c2e6c8d1 79 :type '(repeat string))
8749abea
GM
80
81(defcustom ping-program "ping"
82 "Program to send network test packets to a host."
83 :group 'net-utils
c2e6c8d1 84 :type 'string)
8749abea 85
c2e6c8d1 86;; On GNU/Linux and Irix, the system's ping program seems to send packets
8749abea 87;; indefinitely unless told otherwise
ddb62bf1 88(defcustom ping-program-options
8749abea
GM
89 (and (memq system-type (list 'linux 'gnu/linux 'irix))
90 (list "-c" "4"))
91 "Options for the ping program.
92These options can be used to limit how many ICMP packets are emitted."
93 :group 'net-utils
c2e6c8d1 94 :type '(repeat string))
8749abea 95
ddb62bf1 96(defcustom ipconfig-program
8749abea
GM
97 (if (eq system-type 'windows-nt)
98 "ipconfig"
99 "ifconfig")
100 "Program to print network configuration information."
101 :group 'net-utils
c2e6c8d1 102 :type 'string)
8749abea
GM
103
104(defcustom ipconfig-program-options
c2e6c8d1
PJ
105 (list
106 (if (eq system-type 'windows-nt)
107 "/all" "-a"))
8749abea
GM
108 "Options for ipconfig-program."
109 :group 'net-utils
c2e6c8d1 110 :type '(repeat string))
8749abea
GM
111
112(defcustom netstat-program "netstat"
113 "Program to print network statistics."
114 :group 'net-utils
c2e6c8d1 115 :type 'string)
8749abea 116
ddb62bf1 117(defcustom netstat-program-options
8749abea
GM
118 (list "-a")
119 "Options for netstat-program."
120 :group 'net-utils
c2e6c8d1 121 :type '(repeat string))
8749abea
GM
122
123(defcustom arp-program "arp"
124 "Program to print IP to address translation tables."
125 :group 'net-utils
c2e6c8d1 126 :type 'string)
8749abea 127
ddb62bf1 128(defcustom arp-program-options
8749abea
GM
129 (list "-a")
130 "Options for arp-program."
131 :group 'net-utils
c2e6c8d1 132 :type '(repeat string))
8749abea 133
ddb62bf1 134(defcustom route-program
8749abea
GM
135 (if (eq system-type 'windows-nt)
136 "route"
137 "netstat")
138 "Program to print routing tables."
139 :group 'net-utils
c2e6c8d1 140 :type 'string)
8749abea 141
ddb62bf1 142(defcustom route-program-options
8749abea
GM
143 (if (eq system-type 'windows-nt)
144 (list "print")
145 (list "-r"))
146 "Options for route-program."
147 :group 'net-utils
c2e6c8d1 148 :type '(repeat string))
8749abea
GM
149
150(defcustom nslookup-program "nslookup"
151 "Program to interactively query DNS information."
152 :group 'net-utils
c2e6c8d1 153 :type 'string)
8749abea
GM
154
155(defcustom nslookup-program-options nil
156 "List of options to pass to the nslookup program."
157 :group 'net-utils
c2e6c8d1 158 :type '(repeat string))
8749abea
GM
159
160(defcustom nslookup-prompt-regexp "^> "
8fb051f9
MB
161 "Regexp to match the nslookup prompt.
162
163This variable is only used if the variable
980cc247 164`comint-use-prompt-regexp' is non-nil."
8749abea 165 :group 'net-utils
c2e6c8d1 166 :type 'regexp)
8749abea
GM
167
168(defcustom dig-program "dig"
169 "Program to query DNS information."
170 :group 'net-utils
c2e6c8d1 171 :type 'string)
8749abea
GM
172
173(defcustom ftp-program "ftp"
174 "Progam to run to do FTP transfers."
175 :group 'net-utils
c2e6c8d1 176 :type 'string)
8749abea
GM
177
178(defcustom ftp-program-options nil
179 "List of options to pass to the FTP program."
180 :group 'net-utils
c2e6c8d1 181 :type '(repeat string))
8749abea
GM
182
183(defcustom ftp-prompt-regexp "^ftp>"
8fb051f9
MB
184 "Regexp which matches the FTP program's prompt.
185
186This variable is only used if the variable
980cc247 187`comint-use-prompt-regexp' is non-nil."
8749abea 188 :group 'net-utils
c2e6c8d1 189 :type 'regexp)
8749abea
GM
190
191(defcustom smbclient-program "smbclient"
192 "Smbclient program."
193 :group 'net-utils
c2e6c8d1 194 :type 'string)
8749abea
GM
195
196(defcustom smbclient-program-options nil
197 "List of options to pass to the smbclient program."
198 :group 'net-utils
c2e6c8d1 199 :type '(repeat string))
8749abea
GM
200
201(defcustom smbclient-prompt-regexp "^smb: \>"
8fb051f9
MB
202 "Regexp which matches the smbclient program's prompt.
203
204This variable is only used if the variable
980cc247 205`comint-use-prompt-regexp' is non-nil."
8749abea 206 :group 'net-utils
c2e6c8d1 207 :type 'regexp)
8749abea 208
ac8a1898
PB
209(defcustom dns-lookup-program "host"
210 "Program to interactively query DNS information."
211 :group 'net-utils
212 :type 'string
213 )
214
215(defcustom dns-lookup-program-options nil
216 "List of options to pass to the dns-lookup program."
217 :group 'net-utils
218 :type '(repeat string)
219 )
220
76540917
PB
221;; Internal variables
222(defvar network-connection-service nil)
223(defvar network-connection-host nil)
224
8749abea
GM
225;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
226;; Nslookup goodies
227;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
228
229(defconst nslookup-font-lock-keywords
3478046b 230 (progn
c2e6c8d1
PJ
231 (defvar font-lock-type-face)
232 (defvar font-lock-keyword-face)
233 (defvar font-lock-variable-name-face)
3478046b
PB
234 (require 'font-lock)
235 (list
3478046b
PB
236 (list "^[A-Za-z0-9 _]+:" 0 font-lock-type-face)
237 (list "\\<\\(SOA\\|NS\\|MX\\|A\\|CNAME\\)\\>"
238 1 font-lock-keyword-face)
239 ;; Dotted quads
240 (list
241 (mapconcat 'identity
242 (make-list 4 "[0-9]+")
243 "\\.")
244 0 font-lock-variable-name-face)
245 ;; Host names
246 (list
247 (let ((host-expression "[-A-Za-z0-9]+"))
248 (concat
249 (mapconcat 'identity
250 (make-list 2 host-expression)
251 "\\.")
c2e6c8d1
PJ
252 "\\(\\." host-expression "\\)*"))
253 0 font-lock-variable-name-face)))
3478046b 254 "Expressions to font-lock for nslookup.")
8749abea 255
8749abea
GM
256;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
257;; Utility functions
258;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
259
260;; Simplified versions of some at-point functions from ffap.el.
261;; It's not worth loading all of ffap just for these.
262(defun net-utils-machine-at-point ()
263 (let ((pt (point)))
264 (buffer-substring-no-properties
265 (save-excursion
266 (skip-chars-backward "-a-zA-Z0-9.")
267 (point))
268 (save-excursion
269 (skip-chars-forward "-a-zA-Z0-9.")
270 (skip-chars-backward "." pt)
271 (point)))))
272
273(defun net-utils-url-at-point ()
274 (let ((pt (point)))
275 (buffer-substring-no-properties
276 (save-excursion
277 (skip-chars-backward "--:=&?$+@-Z_a-z~#,%")
278 (skip-chars-forward "^A-Za-z0-9" pt)
279 (point))
280 (save-excursion
281 (skip-chars-forward "--:=&?$+@-Z_a-z~#,%")
282 (skip-chars-backward ":;.,!?" pt)
283 (point)))))
284
285
286(defun net-utils-remove-ctrl-m-filter (process output-string)
287 "Remove trailing control Ms."
288 (let ((old-buffer (current-buffer))
289 (filtered-string output-string))
290 (unwind-protect
291 (let ((moving))
292 (set-buffer (process-buffer process))
293 (setq moving (= (point) (process-mark process)))
ddb62bf1 294
8749abea
GM
295 (while (string-match "\r" filtered-string)
296 (setq filtered-string
297 (replace-match "" nil nil filtered-string)))
298
299 (save-excursion
300 ;; Insert the text, moving the process-marker.
301 (goto-char (process-mark process))
302 (insert filtered-string)
303 (set-marker (process-mark process) (point)))
304 (if moving (goto-char (process-mark process))))
305 (set-buffer old-buffer))))
ddb62bf1 306
8749abea
GM
307(defmacro net-utils-run-program (name header program &rest args)
308 "Run a network information program."
309 ` (let ((buf (get-buffer-create (concat "*" ,name "*"))))
310 (set-buffer buf)
311 (erase-buffer)
312 (insert ,header "\n")
ddb62bf1 313 (set-process-filter
8749abea
GM
314 (apply 'start-process ,name buf ,program ,@args)
315 'net-utils-remove-ctrl-m-filter)
ddb62bf1
PB
316 (display-buffer buf)
317 buf))
8749abea
GM
318
319;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
320;; Wrappers for external network programs
321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
322
323;;;###autoload
324(defun traceroute (target)
325 "Run traceroute program for TARGET."
326 (interactive "sTarget: ")
ddb62bf1 327 (let ((options
8749abea
GM
328 (if traceroute-program-options
329 (append traceroute-program-options (list target))
330 (list target))))
331 (net-utils-run-program
332 (concat "Traceroute" " " target)
333 (concat "** Traceroute ** " traceroute-program " ** " target)
334 traceroute-program
c2e6c8d1 335 options)))
8749abea
GM
336
337;;;###autoload
338(defun ping (host)
339 "Ping HOST.
ddb62bf1 340If your system's ping continues until interrupted, you can try setting
8749abea 341`ping-program-options'."
ddb62bf1 342 (interactive
8749abea 343 (list (read-from-minibuffer "Ping host: " (net-utils-machine-at-point))))
ddb62bf1 344 (let ((options
8749abea
GM
345 (if ping-program-options
346 (append ping-program-options (list host))
347 (list host))))
348 (net-utils-run-program
349 (concat "Ping" " " host)
350 (concat "** Ping ** " ping-program " ** " host)
351 ping-program
c2e6c8d1 352 options)))
8749abea
GM
353
354;;;###autoload
355(defun ipconfig ()
356 "Run ipconfig program."
357 (interactive)
358 (net-utils-run-program
359 "Ipconfig"
360 (concat "** Ipconfig ** " ipconfig-program " ** ")
361 ipconfig-program
c2e6c8d1 362 ipconfig-program-options))
8749abea
GM
363
364;; This is the normal name on most Unixes.
365;;;###autoload
ddb62bf1 366(defalias 'ifconfig 'ipconfig)
8749abea
GM
367
368;;;###autoload
369(defun netstat ()
370 "Run netstat program."
371 (interactive)
372 (net-utils-run-program
373 "Netstat"
374 (concat "** Netstat ** " netstat-program " ** ")
375 netstat-program
c2e6c8d1 376 netstat-program-options))
8749abea
GM
377
378;;;###autoload
379(defun arp ()
380 "Run the arp program."
381 (interactive)
382 (net-utils-run-program
383 "Arp"
384 (concat "** Arp ** " arp-program " ** ")
385 arp-program
c2e6c8d1 386 arp-program-options))
8749abea
GM
387
388;;;###autoload
389(defun route ()
390 "Run the route program."
391 (interactive)
392 (net-utils-run-program
393 "Route"
394 (concat "** Route ** " route-program " ** ")
395 route-program
c2e6c8d1 396 route-program-options))
8749abea
GM
397
398;; FIXME -- Needs to be a process filter
399;; (defun netstat-with-filter (filter)
400;; "Run netstat program."
401;; (interactive "sFilter: ")
402;; (netstat)
403;; (set-buffer (get-buffer "*Netstat*"))
404;; (goto-char (point-min))
c2e6c8d1 405;; (delete-matching-lines filter))
8749abea
GM
406
407;;;###autoload
408(defun nslookup-host (host)
409 "Lookup the DNS information for HOST."
410 (interactive
411 (list (read-from-minibuffer "Lookup host: " (net-utils-machine-at-point))))
ddb62bf1 412 (let ((options
8749abea
GM
413 (if nslookup-program-options
414 (append nslookup-program-options (list host))
415 (list host))))
416 (net-utils-run-program
417 "Nslookup"
418 (concat "** "
419 (mapconcat 'identity
420 (list "Nslookup" host nslookup-program)
421 " ** "))
422 nslookup-program
c2e6c8d1 423 options)))
8749abea
GM
424
425;;;###autoload
426(defun nslookup ()
427 "Run nslookup program."
428 (interactive)
429 (require 'comint)
430 (comint-run nslookup-program)
c2e6c8d1 431 (nslookup-mode))
8749abea
GM
432
433;; Using a derived mode gives us keymaps, hooks, etc.
8fb051f9 434(define-derived-mode nslookup-mode comint-mode "Nslookup"
8749abea 435 "Major mode for interacting with the nslookup program."
ddb62bf1 436 (set
8749abea
GM
437 (make-local-variable 'font-lock-defaults)
438 '((nslookup-font-lock-keywords)))
8749abea 439 (setq comint-prompt-regexp nslookup-prompt-regexp)
c2e6c8d1 440 (setq comint-input-autoexpand t))
8749abea
GM
441
442(define-key nslookup-mode-map "\t" 'comint-dynamic-complete)
443
ac8a1898
PB
444;;;###autoload
445(defun dns-lookup-host (host)
446 "Lookup the DNS information for HOST (name or IP address)."
447 (interactive
448 (list (read-from-minibuffer "Lookup host: " (net-utils-machine-at-point))))
449 (let ((options
450 (if dns-lookup-program-options
451 (append dns-lookup-program-options (list host))
452 (list host))))
453 (net-utils-run-program
454 (concat "DNS Lookup [" host "]")
455 (concat "** "
456 (mapconcat 'identity
457 (list "DNS Lookup" host dns-lookup-program)
458 " ** "))
459 dns-lookup-program
460 options
461 )))
462
8749abea 463;;;###autoload
5daebfbb 464(defun run-dig (host)
8749abea
GM
465 "Run dig program."
466 (interactive
467 (list
468 (progn
469 (require 'ffap)
ddb62bf1
PB
470 (read-from-minibuffer
471 "Lookup host: "
7fe92d22
RS
472 (with-no-warnings
473 (or (ffap-string-at-point 'machine) ""))))))
8749abea
GM
474 (net-utils-run-program
475 "Dig"
476 (concat "** "
477 (mapconcat 'identity
478 (list "Dig" host dig-program)
479 " ** "))
480 dig-program
c2e6c8d1 481 (list host)))
8749abea
GM
482
483;; This is a lot less than ange-ftp, but much simpler.
484;;;###autoload
485(defun ftp (host)
486 "Run ftp program."
ddb62bf1 487 (interactive
8749abea 488 (list
ddb62bf1 489 (read-from-minibuffer
8749abea
GM
490 "Ftp to Host: " (net-utils-machine-at-point))))
491 (require 'comint)
492 (let ((buf (get-buffer-create (concat "*ftp [" host "]*"))))
493 (set-buffer buf)
8fb051f9 494 (ftp-mode)
8749abea
GM
495 (comint-exec buf (concat "ftp-" host) ftp-program nil
496 (if ftp-program-options
497 (append (list host) ftp-program-options)
498 (list host)))
8fb051f9 499 (pop-to-buffer buf)))
8749abea 500
8fb051f9 501(define-derived-mode ftp-mode comint-mode "FTP"
8749abea 502 "Major mode for interacting with the ftp program."
8749abea 503 (setq comint-prompt-regexp ftp-prompt-regexp)
8749abea 504 (setq comint-input-autoexpand t)
8fb051f9
MB
505 ;; Only add the password-prompting hook if it's not already in the
506 ;; global hook list. This stands a small chance of losing, if it's
507 ;; later removed from the global list (very small, since any
508 ;; password prompts will probably immediately follow the initial
509 ;; connection), but it's better than getting prompted twice for the
510 ;; same password.
511 (unless (memq 'comint-watch-for-password-prompt
512 (default-value 'comint-output-filter-functions))
513 (add-hook 'comint-output-filter-functions 'comint-watch-for-password-prompt
c2e6c8d1 514 nil t)))
8749abea 515
8749abea
GM
516;; Occasionally useful
517(define-key ftp-mode-map "\t" 'comint-dynamic-complete)
518
519(defun smbclient (host service)
520 "Connect to SERVICE on HOST via SMB."
ddb62bf1 521 (interactive
8749abea 522 (list
ddb62bf1 523 (read-from-minibuffer
8749abea
GM
524 "Connect to Host: " (net-utils-machine-at-point))
525 (read-from-minibuffer "SMB Service: ")))
526 (require 'comint)
527 (let* ((name (format "smbclient [%s\\%s]" host service))
528 (buf (get-buffer-create (concat "*" name "*")))
529 (service-name (concat "\\\\" host "\\" service)))
530 (set-buffer buf)
8fb051f9 531 (smbclient-mode)
8749abea
GM
532 (comint-exec buf name smbclient-program nil
533 (if smbclient-program-options
534 (append (list service-name) smbclient-program-options)
535 (list service-name)))
8fb051f9 536 (pop-to-buffer buf)))
8749abea
GM
537
538(defun smbclient-list-shares (host)
539 "List services on HOST."
ddb62bf1 540 (interactive
8749abea 541 (list
ddb62bf1 542 (read-from-minibuffer
c2e6c8d1 543 "Connect to Host: " (net-utils-machine-at-point))))
8749abea
GM
544 (let ((buf (get-buffer-create (format "*SMB Shares on %s*" host))))
545 (set-buffer buf)
8749abea 546 (smbclient-mode)
8fb051f9
MB
547 (comint-exec buf "smbclient-list-shares"
548 smbclient-program nil (list "-L" host))
549 (pop-to-buffer buf)))
ddb62bf1 550
8fb051f9 551(define-derived-mode smbclient-mode comint-mode "smbclient"
8749abea 552 "Major mode for interacting with the smbclient program."
8749abea 553 (setq comint-prompt-regexp smbclient-prompt-regexp)
8749abea 554 (setq comint-input-autoexpand t)
8fb051f9
MB
555 ;; Only add the password-prompting hook if it's not already in the
556 ;; global hook list. This stands a small chance of losing, if it's
557 ;; later removed from the global list (very small, since any
558 ;; password prompts will probably immediately follow the initial
559 ;; connection), but it's better than getting prompted twice for the
560 ;; same password.
561 (unless (memq 'comint-watch-for-password-prompt
562 (default-value 'comint-output-filter-functions))
563 (add-hook 'comint-output-filter-functions 'comint-watch-for-password-prompt
c2e6c8d1 564 nil t)))
8749abea 565
8749abea
GM
566
567;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
568;; Network Connections
569;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
570
571;; Full list is available at:
350ca08d 572;; http://www.iana.org/assignments/port-numbers
ddb62bf1 573(defvar network-connection-service-alist
8749abea
GM
574 (list
575 (cons 'echo 7)
576 (cons 'active-users 11)
577 (cons 'daytime 13)
578 (cons 'chargen 19)
579 (cons 'ftp 21)
580 (cons 'telnet 23)
581 (cons 'smtp 25)
582 (cons 'time 37)
583 (cons 'whois 43)
584 (cons 'gopher 70)
585 (cons 'finger 79)
586 (cons 'www 80)
587 (cons 'pop2 109)
588 (cons 'pop3 110)
589 (cons 'sun-rpc 111)
590 (cons 'nntp 119)
591 (cons 'ntp 123)
592 (cons 'netbios-name 137)
593 (cons 'netbios-data 139)
594 (cons 'irc 194)
595 (cons 'https 443)
c2e6c8d1 596 (cons 'rlogin 513))
8749abea 597 "Alist of services and associated TCP port numbers.
9d551c66
RS
598This list is not complete.")
599
8749abea 600;; Workhorse macro
ddb62bf1 601(defmacro run-network-program (process-name host port
8749abea 602 &optional initial-string)
8fb051f9 603 `(let ((tcp-connection)
c2e6c8d1 604 (buf))
8749abea
GM
605 (setq buf (get-buffer-create (concat "*" ,process-name "*")))
606 (set-buffer buf)
ddb62bf1 607 (or
8749abea 608 (setq tcp-connection
ddb62bf1 609 (open-network-stream
8749abea
GM
610 ,process-name
611 buf
612 ,host
c2e6c8d1 613 ,port))
8749abea
GM
614 (error "Could not open connection to %s" ,host))
615 (erase-buffer)
616 (set-marker (process-mark tcp-connection) (point-min))
617 (set-process-filter tcp-connection 'net-utils-remove-ctrl-m-filter)
618 (and ,initial-string
ddb62bf1 619 (process-send-string tcp-connection
8749abea
GM
620 (concat ,initial-string "\r\n")))
621 (display-buffer buf)))
622
623;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
624;; Simple protocols
625;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
626
086d5b87
GM
627(defcustom finger-X.500-host-regexps nil
628 "A list of regular expressions matching host names.
629If a host name passed to `finger' matches one of these regular
630expressions, it is assumed to be a host that doesn't accept
631queries of the form USER@HOST, and wants a query containing USER only."
632 :group 'net-utils
633 :type '(repeat regexp)
634 :version "21.1")
635
8749abea
GM
636;; Finger protocol
637;;;###autoload
638(defun finger (user host)
639 "Finger USER on HOST."
640 ;; One of those great interactive statements that's actually
641 ;; longer than the function call! The idea is that if the user
642 ;; uses a string like "pbreton@cs.umb.edu", we won't ask for the
643 ;; host name. If we don't see an "@", we'll prompt for the host.
644 (interactive
645 (let* ((answer (read-from-minibuffer "Finger User: "
646 (net-utils-url-at-point)))
647 (index (string-match (regexp-quote "@") answer)))
648 (if index
086d5b87
GM
649 (list (substring answer 0 index)
650 (substring answer (1+ index)))
651 (list answer
652 (read-from-minibuffer "At Host: "
653 (net-utils-machine-at-point))))))
654 (let* ((user-and-host (concat user "@" host))
655 (process-name (concat "Finger [" user-and-host "]"))
656 (regexps finger-X.500-host-regexps)
657 found)
ac8a1898
PB
658 (and regexps
659 (while (not (string-match (car regexps) host))
660 (setq regexps (cdr regexps)))
661 (when regexps
662 (setq user-and-host user)))
ddb62bf1
PB
663 (run-network-program
664 process-name
665 host
8749abea 666 (cdr (assoc 'finger network-connection-service-alist))
086d5b87 667 user-and-host)))
8749abea
GM
668
669(defcustom whois-server-name "rs.internic.net"
670 "Default host name for the whois service."
671 :group 'net-utils
c2e6c8d1 672 :type 'string)
8749abea
GM
673
674(defcustom whois-server-list
675 '(("whois.arin.net") ; Networks, ASN's, and related POC's (numbers)
676 ("rs.internic.net") ; domain related info
677 ("whois.abuse.net")
678 ("whois.apnic.net")
679 ("nic.ddn.mil")
680 ("whois.nic.mil")
681 ("whois.nic.gov")
682 ("whois.ripe.net"))
683 "A list of whois servers that can be queried."
684 :group 'net-utils
685 :type '(repeat (list string)))
686
687(defcustom whois-server-tld
688 '(("rs.internic.net" . "com")
689 ("rs.internic.net" . "org")
690 ("whois.ripe.net" . "be")
691 ("whois.ripe.net" . "de")
692 ("whois.ripe.net" . "dk")
693 ("whois.ripe.net" . "it")
694 ("whois.ripe.net" . "fi")
695 ("whois.ripe.net" . "fr")
696 ("whois.ripe.net" . "uk")
697 ("whois.apnic.net" . "au")
698 ("whois.apnic.net" . "ch")
699 ("whois.apnic.net" . "hk")
700 ("whois.apnic.net" . "jp")
701 ("whois.nic.gov" . "gov")
702 ("whois.nic.mil" . "mil"))
703 "Alist to map top level domains to whois servers."
704 :group 'net-utils
705 :type '(repeat (cons string string)))
706
707(defcustom whois-guess-server t
708 "If non-nil then whois will try to deduce the appropriate whois
709server from the query. If the query doesn't look like a domain or hostname
710then the server named by whois-server-name is used."
711 :group 'net-utils
712 :type 'boolean)
713
714(defun whois-get-tld (host)
715 "Return the top level domain of `host', or nil if it isn't a domain name."
716 (let ((i (1- (length host)))
717 (max-len (- (length host) 5)))
718 (while (not (or (= i max-len) (char-equal (aref host i) ?.)))
719 (setq i (1- i)))
720 (if (= i max-len)
721 nil
722 (substring host (1+ i)))))
723
724;; Whois protocol
725;;;###autoload
726(defun whois (arg search-string)
727 "Send SEARCH-STRING to server defined by the `whois-server-name' variable.
728If `whois-guess-server' is non-nil, then try to deduce the correct server
729from SEARCH-STRING. With argument, prompt for whois server."
730 (interactive "P\nsWhois: ")
731 (let* ((whois-apropos-host (if whois-guess-server
732 (rassoc (whois-get-tld search-string)
733 whois-server-tld)
734 nil))
735 (server-name (if whois-apropos-host
736 (car whois-apropos-host)
737 whois-server-name))
738 (host
739 (if arg
740 (completing-read "Whois server name: "
741 whois-server-list nil nil "whois.")
742 server-name)))
ddb62bf1 743 (run-network-program
8749abea
GM
744 "Whois"
745 host
746 (cdr (assoc 'whois network-connection-service-alist))
c2e6c8d1 747 search-string)))
8749abea
GM
748
749(defcustom whois-reverse-lookup-server "whois.arin.net"
750 "Server which provides inverse DNS mapping."
751 :group 'net-utils
c2e6c8d1 752 :type 'string)
8749abea
GM
753
754;;;###autoload
755(defun whois-reverse-lookup ()
756 (interactive)
757 (let ((whois-server-name whois-reverse-lookup-server))
758 (call-interactively 'whois)))
759
760;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
761;;; General Network connection
762;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
763
76540917 764;; Using a derived mode gives us keymaps, hooks, etc.
ddb62bf1 765(define-derived-mode
76540917 766 network-connection-mode comint-mode "Network-Connection"
c2e6c8d1 767 "Major mode for interacting with the network-connection program.")
76540917
PB
768
769(defun network-connection-mode-setup (host service)
96c01bd4
RS
770 (make-local-variable 'network-connection-host)
771 (setq network-connection-host host)
772 (make-local-variable 'network-connection-service)
ad21495f 773 (setq network-connection-service service))
76540917 774
8749abea
GM
775;;;###autoload
776(defun network-connection-to-service (host service)
777 "Open a network connection to SERVICE on HOST."
ddb62bf1 778 (interactive
8749abea
GM
779 (list
780 (read-from-minibuffer "Host: " (net-utils-machine-at-point))
ddb62bf1
PB
781 (completing-read "Service: "
782 (mapcar
783 (function
8749abea
GM
784 (lambda (elt)
785 (list (symbol-name (car elt)))))
786 network-connection-service-alist))))
ddb62bf1
PB
787 (network-connection
788 host
c2e6c8d1 789 (cdr (assoc (intern service) network-connection-service-alist))))
8749abea
GM
790
791;;;###autoload
792(defun network-connection (host port)
793 "Open a network connection to HOST on PORT."
794 (interactive "sHost: \nnPort: ")
795 (network-service-connection host (number-to-string port)))
796
797(defun network-service-connection (host service)
798 "Open a network connection to SERVICE on HOST."
799 (require 'comint)
c2e6c8d1
PJ
800 (let* ((process-name (concat "Network Connection [" host " " service "]"))
801 (portnum (string-to-number service))
802 (buf (get-buffer-create (concat "*" process-name "*"))))
8749abea 803 (or (zerop portnum) (setq service portnum))
ddb62bf1 804 (make-comint
8749abea
GM
805 process-name
806 (cons host service))
76540917
PB
807 (set-buffer buf)
808 (network-connection-mode)
809 (network-connection-mode-setup host service)
c2e6c8d1 810 (pop-to-buffer buf)))
8749abea 811
ddb62bf1
PB
812(defun network-connection-reconnect ()
813 "Reconnect a network connection, preserving the old input ring."
814 (interactive)
815 (let ((proc (get-buffer-process (current-buffer)))
816 (old-comint-input-ring comint-input-ring)
817 (host network-connection-host)
c2e6c8d1 818 (service network-connection-service))
ddb62bf1
PB
819 (if (not (or (not proc)
820 (eq (process-status proc) 'closed)))
821 (message "Still connected")
822 (goto-char (point-max))
823 (insert (format "Reopening connection to %s\n" host))
824 (network-connection host
c2e6c8d1
PJ
825 (if (numberp service)
826 service
827 (cdr (assoc service network-connection-service-alist))))
ddb62bf1 828 (and old-comint-input-ring
c2e6c8d1 829 (setq comint-input-ring old-comint-input-ring)))))
ddb62bf1 830
8749abea
GM
831(provide 'net-utils)
832
ab5796a9 833;;; arch-tag: 97119e91-9edb-4376-838b-bf7058fa1314
8749abea 834;;; net-utils.el ends here