Initial import from FreeBSD RELENG_4:
[dragonfly.git] / usr.bin / chat / chat.8
1 .\" -*- nroff -*-
2 .\" manual page [] for chat 1.8
3 .\" $FreeBSD: src/usr.bin/chat/chat.8,v 1.15.2.3 2003/02/24 22:37:41 trhodes Exp $
4 .\" SH section heading
5 .\" SS subsection heading
6 .\" LP paragraph
7 .\" IP indented paragraph
8 .\" TP hanging label
9 .TH CHAT 8 "27 Sep 1997" "Chat Version 1.17"
10 .SH NAME
11 chat \- Automated conversational script with a modem
12 .SH SYNOPSIS
13 .B chat
14 [
15 .I options
16 ]
17 .I script
18 .SH DESCRIPTION
19 .LP
20 The \fIchat\fR program defines a conversational exchange between the
21 computer and the modem.
22 Its primary purpose is to establish the
23 connection between the Point-to-Point Protocol Daemon (\fIpppd\fR) and
24 the remote's \fIpppd\fR process.
25 .SH OPTIONS
26 .TP
27 .B -f \fI<chat file>
28 Read the chat script from the chat \fIfile\fR.
29 The use of this option
30 is mutually exclusive with the chat script parameters.
31 The user must
32 have read access to the file.
33 Multiple lines are permitted in the
34 file.
35 Space or horizontal tab characters should be used to separate
36 the strings.
37 .TP
38 .B -t \fI<timeout>
39 Set the timeout for the expected string to be received.
40 If the string
41 is not received within the time limit then the reply string is not
42 sent.
43 An alternate reply may be sent or the script will fail if there
44 is no alternate reply string.
45 A failed script will cause the
46 \fIchat\fR program to terminate with a non-zero error code.
47 .TP
48 .B -r \fI<report file>
49 Set the file for output of the report strings.
50 If you use the keyword
51 \fIREPORT\fR, the resulting strings are written to this file.
52 If this
53 option is not used and you still use \fIREPORT\fR keywords, the
54 \fIstderr\fR file is used for the report strings.
55 .TP
56 .B -e
57 Start with the echo option turned on.
58 Echoing may also be turned on
59 or off at specific points in the chat script by using the \fIECHO\fR
60 keyword.
61 When echoing is enabled, all output from the modem is echoed
62 to \fIstderr\fR.
63 .TP
64 .B -v
65 Request that the \fIchat\fR script be executed in a verbose mode.
66 The
67 \fIchat\fR program will then log the execution state of the chat
68 script as well as all text received from the modem and the output
69 strings sent to the modem.  The default is to log through
70 .IR syslog (3);
71 the logging method may be altered with the -S and -s flags.
72 Logging is
73 done to the \fIlocal2\fR facility at level \fIinfo\fR for verbose tracing
74 and level \fIerr\fR for some errors.
75 .TP
76 .B -V
77 Request that the \fIchat\fR script be executed in a stderr verbose
78 mode.
79 The \fIchat\fR program will then log all text received from the
80 modem and the output strings sent to the modem to the stderr device.
81 This
82 device is usually the local console at the station running the chat or
83 pppd program.
84 .TP
85 .B -s
86 Use stderr.  All log messages from '-v' and all error messages will be
87 sent to stderr.
88 .TP
89 .B -S
90 Do not use
91 .IR syslog (3).
92 By default, error messages are sent to
93 .IR syslog (3).
94 The use of -S will prevent both log messages from '-v' and
95 error messages from being sent to
96 .IR syslog (3).
97 .TP
98 .B -T \fI<phone number>
99 Pass in an arbitrary string, usually a phone number, that will be
100 substituted for the \\T substitution metacharacter in a send string.
101 .TP
102 .B -U \fI<phone number 2>
103 Pass in a second string, usually a phone number, that will be
104 substituted for the \\U substitution metacharacter in a send string.
105 This is useful when dialing an ISDN terminal adapter that requires two
106 numbers.
107 .TP
108 .B script
109 If the script is not specified in a file with the \fI-f\fR option then
110 the script is included as parameters to the \fIchat\fR program.
111 .SH CHAT SCRIPT
112 .LP
113 The \fIchat\fR script defines the communications.
114 .LP
115 A script consists of one or more "expect-send" pairs of strings,
116 separated by spaces, with an optional "subexpect-subsend" string pair,
117 separated by a dash as in the following example:
118 .IP
119 ogin:-BREAK-ogin: ppp ssword: hello2u2
120 .LP
121 This line indicates that the \fIchat\fR program should expect the string
122 "ogin:". If it fails to receive a login prompt within the time interval
123 allotted, it is to send a break sequence to the remote and then expect the
124 string "ogin:". If the first "ogin:" is received then the break sequence is
125 not generated.
126 .LP
127 Once it received the login prompt the \fIchat\fR program will send the
128 string ppp and then expect the prompt "ssword:". When it receives the
129 prompt for the password, it will send the password hello2u2.
130 .LP
131 A carriage return is normally sent following the reply string.
132 It is not
133 expected in the "expect" string unless it is specifically requested by using
134 the \\r character sequence.
135 .LP
136 The expect sequence should contain only what is needed to identify the
137 string.
138 Since it is normally stored on a disk file, it should not contain
139 variable information.
140 It is generally not acceptable to look for time
141 strings, network identification strings, or other variable pieces of data as
142 an expect string.
143 .LP
144 To help correct for characters which may be corrupted during the initial
145 sequence, look for the string "ogin:" rather than "login:". It is possible
146 that the leading "l" character may be received in error and you may never
147 find the string even though it was sent by the system.
148 For this reason,
149 scripts look for "ogin:" rather than "login:" and "ssword:" rather than
150 "password:".
151 .LP
152 A very simple script might look like this:
153 .IP
154 ogin: ppp ssword: hello2u2
155 .LP
156 In other words, expect ....ogin:, send ppp, expect ...ssword:, send hello2u2.
157 .LP
158 In actual practice, simple scripts are rare.
159 At the vary least, you
160 should include sub-expect sequences should the original string not be
161 received.
162 For example, consider the following script:
163 .IP
164 ogin:--ogin: ppp ssword: hello2u2
165 .LP
166 This would be a better script than the simple one used earlier.
167 This would look
168 for the same login: prompt, however, if one was not received, a single
169 return sequence is sent and then it will look for login: again.
170 Should line
171 noise obscure the first login prompt then sending the empty line will
172 usually generate a login prompt again.
173 .SH COMMENTS
174 Comments can be embedded in the chat script.
175 A comment is a line which
176 starts with the \fB#\fR (hash) character in column 1. Such comment
177 lines are just ignored by the chat program.
178 If a '#' character is to
179 be expected as the first character of the expect sequence, you should
180 quote the expect string.
181 If you want to wait for a prompt that starts with a # (hash)
182 character, you would have to write something like this:
183 .IP
184 # Now wait for the prompt and send logout string
185 .br
186 \&'# ' logout
187 .LP
188
189 .SH ABORT STRINGS
190 Many modems will report the status of the call as a string.
191 These
192 strings may be \fBCONNECTED\fR or \fBNO CARRIER\fR or \fBBUSY\fR.
193 It
194 is often desirable to terminate the script should the modem fail to
195 connect to the remote.
196 The difficulty is that a script would not know
197 exactly which modem string it may receive.
198 On one attempt, it may
199 receive \fBBUSY\fR while the next time it may receive \fBNO CARRIER\fR.
200 .LP
201 These "abort" strings may be specified in the script using the \fIABORT\fR
202 sequence.
203 It is written in the script as in the following example:
204 .IP
205 ABORT BUSY ABORT 'NO CARRIER' '' ATZ OK ATDT5551212 CONNECT
206 .LP
207 This sequence will expect nothing; and then send the string ATZ.
208 The
209 expected response to this is the string \fIOK\fR.
210 When it receives \fIOK\fR,
211 the string ATDT5551212 to dial the telephone.
212 The expected string is
213 \fICONNECT\fR.
214 If the string \fICONNECT\fR is received the remainder of the
215 script is executed.
216 However, should the modem find a busy telephone, it will
217 send the string \fIBUSY\fR.
218 This will cause the string to match the abort
219 character sequence.
220 The script will then fail because it found a match to
221 the abort string.
222 If it received the string \fINO CARRIER\fR, it will abort
223 for the same reason.
224 Either string may be received.
225 Either string will
226 terminate the \fIchat\fR script.
227 .SH CLR_ABORT STRINGS
228 This sequence allows for clearing previously set \fBABORT\fR strings.
229 \fBABORT\fR strings are kept in an array of a pre-determined size (at
230 compilation time); \fBCLR_ABORT\fR will reclaim the space for cleared
231 entries so that new strings can use that space.
232 .SH SAY STRINGS
233 The \fBSAY\fR directive allows the script to send strings to the user
234 at the terminal via standard error.  If \fBchat\fR is being run by
235 pppd, and pppd is running as a daemon (detached from its controlling
236 terminal), standard error will normally be redirected to the file
237 /etc/ppp/connect-errors.
238 .LP
239 \fBSAY\fR strings must be enclosed in single or double quotes.
240 If
241 carriage return and line feed are needed in the string to be output,
242 you must explicitly add them to your string.
243 .LP
244 The SAY strings could be used to give progress messages in sections of
245 the script where you want to have 'ECHO OFF' but still let the user
246 know what is happening.  An example is:
247 .IP
248 ABORT BUSY
249 .br
250 ECHO OFF
251 .br
252 SAY "Dialling your ISP...\\n"
253 .br
254 \&'' ATDT5551212
255 .br
256 TIMEOUT 120
257 .br
258 SAY "Waiting up to 2 minutes for connection ... "
259 .br
260 CONNECT ''
261 .br
262 SAY "Connected, now logging in ...\\n"
263 .br
264 ogin: account
265 .br
266 ssword: pass
267 .br
268 $ \c
269 SAY "Logged in OK ...\\n"
270 \fIetc ...\fR
271 .LP
272 This sequence will only present the SAY strings to the user and all
273 the details of the script will remain hidden.
274 For example, if the
275 above script works, the user will see:
276 .IP
277 Dialling your ISP...
278 .br
279 Waiting up to 2 minutes for connection ... Connected, now logging in ...
280 .br
281 Logged in OK ...
282 .LP
283
284 .SH REPORT STRINGS
285 A \fBreport\fR string is similar to the ABORT string.
286 The difference
287 is that the strings, and all characters to the next control character
288 such as a carriage return, are written to the report file.
289 .LP
290 The report strings may be used to isolate the transmission rate of the
291 modem's connect string and return the value to the chat user.
292 The
293 analysis of the report string logic occurs in conjunction with the
294 other string processing such as looking for the expect string.
295 The use
296 of the same string for a report and abort sequence is probably not
297 very useful, however, it is possible.
298 .LP
299 The report strings to no change the completion code of the program.
300 .LP
301 These "report" strings may be specified in the script using the \fIREPORT\fR
302 sequence.
303 It is written in the script as in the following example:
304 .IP
305 REPORT CONNECT ABORT BUSY '' ATDT5551212 CONNECT '' ogin: account
306 .LP
307 This sequence will expect nothing; and then send the string
308 ATDT5551212 to dial the telephone.
309 The expected string is
310 \fICONNECT\fR.
311 If the string \fICONNECT\fR is received the remainder
312 of the script is executed.
313 In addition the program will write to the
314 expect-file the string "CONNECT" plus any characters which follow it
315 such as the connection rate.
316 .SH CLR_REPORT STRINGS
317 This sequence allows for clearing previously set \fBREPORT\fR strings.
318 \fBREPORT\fR strings are kept in an array of a pre-determined size (at
319 compilation time); \fBCLR_REPORT\fR will reclaim the space for cleared
320 entries so that new strings can use that space.
321 .SH ECHO
322 The echo options controls whether the output from the modem is echoed
323 to \fIstderr\fR.
324 This option may be set with the \fI-e\fR option, but
325 it can also be controlled by the \fIECHO\fR keyword.
326 The "expect-send"
327 pair \fIECHO\fR \fION\fR enables echoing, and \fIECHO\fR \fIOFF\fR
328 disables it.
329 With this keyword you can select which parts of the
330 conversation should be visible.
331 For instance, with the following
332 script:
333 .IP
334 ABORT   'BUSY'
335 .br
336 ABORT   'NO CARRIER'
337 .br
338 \&''      ATZ
339 .br
340 OK\\r\\n  ATD1234567
341 .br
342 \\r\\n    \\c
343 .br
344 ECHO    ON
345 .br
346 CONNECT \\c
347 .br
348 ogin:   account
349 .LP
350 all output resulting from modem configuration and dialing is not visible,
351 but starting with the \fICONNECT\fR (or \fIBUSY\fR) message, everything
352 will be echoed.
353 .SH HANGUP
354 The HANGUP options control whether a modem hangup should be considered
355 as an error or not.  This option is useful in scripts for dialling
356 systems which will hang up and call your system back.  The HANGUP
357 options can be \fBON\fR or \fBOFF\fR.
358 .br
359 When HANGUP is set OFF and the modem hangs up (e.g., after the first
360 stage of logging in to a callback system), \fBchat\fR will continue
361 running the script (e.g., waiting for the incoming call and second
362 stage login prompt). As soon as the incoming call is connected, you
363 should use the \fBHANGUP ON\fR directive to reinstall normal hang up
364 signal behavior.  Here is a (simple) example script:
365 .IP
366 ABORT   'BUSY'
367 .br
368 \&''      ATZ
369 .br
370 OK\\r\\n  ATD1234567
371 .br
372 \\r\\n    \\c
373 .br
374 CONNECT \\c
375 .br
376 \&'Callback login:' call_back_ID
377 .br
378 HANGUP OFF
379 .br
380 ABORT "Bad Login"
381 .br
382 \&'Callback Password:' Call_back_password
383 .br
384 TIMEOUT 120
385 .br
386 CONNECT \\c
387 .br
388 HANGUP ON
389 .br
390 ABORT "NO CARRIER"
391 .br
392 ogin:--BREAK--ogin: real_account
393 .br
394 \fIetc ...\fR
395 .LP
396 .SH TIMEOUT
397 The initial timeout value is 45 seconds.
398 This may be changed using the \fB-t\fR
399 parameter.
400 .LP
401 To change the timeout value for the next expect string, the following
402 example may be used:
403 .IP
404 ATZ OK ATDT5551212 CONNECT TIMEOUT 10 ogin:--ogin: TIMEOUT 5 assword: hello2u2
405 .LP
406 This will change the timeout to 10 seconds when it expects the login:
407 prompt.
408 The timeout is then changed to 5 seconds when it looks for the
409 password prompt.
410 .LP
411 The timeout, once changed, remains in effect until it is changed again.
412 .SH SENDING EOT
413 The special reply string of \fIEOT\fR indicates that the chat program
414 should send an EOT character to the remote.
415 This is normally the
416 End-of-file character sequence.
417 A return character is not sent
418 following the EOT.
419 .LP
420 The EOT sequence may be embedded into the send string using the
421 sequence \fI^D\fR.
422 .SH GENERATING BREAK
423 The special reply string of \fIBREAK\fR will cause a break condition
424 to be sent.
425 The break is a special signal on the transmitter.
426 The
427 normal processing on the receiver is to change the transmission rate.
428 It may be used to cycle through the available transmission rates on
429 the remote until you are able to receive a valid login prompt.
430 .LP
431 The break sequence may be embedded into the send string using the
432 \fI\\K\fR sequence.
433 .SH ESCAPE SEQUENCES
434 The expect and reply strings may contain escape sequences.
435 All of the
436 sequences are legal in the reply string.
437 Many are legal in the expect.
438 Those which are not valid in the expect sequence are so indicated.
439 .TP
440 .B ''
441 Expects or sends a null string.
442 If you send a null string then it will still
443 send the return character.
444 This sequence may either be a pair of apostrophe
445 or quote characters.
446 .TP
447 .B \\\\b
448 represents a backspace character.
449 .TP
450 .B \\\\c
451 Suppresses the newline at the end of the reply string.
452 This is the only
453 method to send a string without a trailing return character.
454 It must
455 be at the end of the send string.
456 For example,
457 the sequence hello\\c will simply send the characters h, e, l, l, o.
458 .I (not valid in expect.)
459 .TP
460 .B \\\\d
461 Delay for one second.
462 The program uses sleep(1) which will delay to a
463 maximum of one second.
464 .I (not valid in expect.)
465 .TP
466 .B \\\\K
467 Insert a BREAK
468 .I (not valid in expect.)
469 .TP
470 .B \\\\n
471 Send a newline or linefeed character.
472 .TP
473 .B \\\\N
474 Send a null character.
475 The same sequence may be represented by \\0.
476 .I (not valid in expect.)
477 .TP
478 .B \\\\p
479 Pause for a fraction of a second.
480 The delay is 1/10th of a second.
481 .I (not valid in expect.)
482 .TP
483 .B \\\\q
484 Suppress writing the string to
485 .IR syslogd (8).
486 The string ?????? is
487 written to the log in its place.
488 .I (not valid in expect.)
489 .TP
490 .B \\\\r
491 Send or expect a carriage return.
492 .TP
493 .B \\\\s
494 Represents a space character in the string.
495 This may be used when it
496 is not desirable to quote the strings which contains spaces.
497 The
498 sequence 'HI TIM' and HI\\sTIM are the same.
499 .TP
500 .B \\\\t
501 Send or expect a tab character.
502 .TP
503 .B \\\\\\\\
504 Send or expect a backslash character.
505 .TP
506 .B \\\\ddd
507 Collapse the octal digits (ddd) into a single ASCII character and send that
508 character.
509 .I (some characters are not valid in expect.)
510 .TP
511 .B \^^C
512 Substitute the sequence with the control character represented by C.
513 For example, the character DC1 (17) is shown as \^^Q.
514 .I (some characters are not valid in expect.)
515 .SH TERMINATION CODES
516 The \fIchat\fR program will terminate with the following completion
517 codes.
518 .TP
519 .B 0
520 The normal termination of the program.
521 This indicates that the script
522 was executed without error to the normal conclusion.
523 .TP
524 .B 1
525 One or more of the parameters are invalid or an expect string was too
526 large for the internal buffers.
527 This indicates that the program as not
528 properly executed.
529 .TP
530 .B 2
531 An error occurred during the execution of the program.
532 This may be due
533 to a read or write operation failing for some reason or chat receiving
534 a signal such as SIGINT.
535 .TP
536 .B 3
537 A timeout event occurred when there was an \fIexpect\fR string without
538 having a "-subsend" string.
539 This may mean that you did not program the
540 script correctly for the condition or that some unexpected event has
541 occurred and the expected string could not be found.
542 .TP
543 .B 4
544 The first string marked as an \fIABORT\fR condition occurred.
545 .TP
546 .B 5
547 The second string marked as an \fIABORT\fR condition occurred.
548 .TP
549 .B 6
550 The third string marked as an \fIABORT\fR condition occurred.
551 .TP
552 .B 7
553 The fourth string marked as an \fIABORT\fR condition occurred.
554 .TP
555 .B ...
556 The other termination codes are also strings marked as an \fIABORT\fR
557 condition.
558 .LP
559 Using the termination code, it is possible to determine which event
560 terminated the script.
561 It is possible to decide if the string "BUSY"
562 was received from the modem as opposed to "NO DIAL TONE". While the
563 first event may be retried, the second will probably have little
564 chance of succeeding during a retry.
565 .SH SEE ALSO
566 Additional information about \fIchat\fR scripts may be found with UUCP
567 documentation.
568 The \fIchat\fR script was taken from the ideas proposed
569 by the scripts used by the \fIuucico\fR program.
570 .LP
571 uucico(1), uucp(1), syslog(3), syslogd(8).
572 .SH COPYRIGHT
573 The \fIchat\fR program is in public domain.
574 This is not the GNU public
575 license.
576 If it breaks then you get to keep both pieces.