-
Notifications
You must be signed in to change notification settings - Fork 6
/
chat.c
1395 lines (1231 loc) · 31 KB
/
chat.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* chat.c
Chat routine for the UUCP package.
Copyright (C) 1991, 1992, 1993, 1995, 2002 Ian Lance Taylor
This file is part of the Taylor UUCP package.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 2 of the
License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
The author of the program may be contacted at [email protected].
*/
#include "uucp.h"
#if USE_RCS_ID
const char chat_rcsid[] = "$Id$";
#endif
#include <ctype.h>
#include <errno.h>
#include "uudefs.h"
#include "uuconf.h"
#include "conn.h"
#include "prot.h"
#include "system.h"
/* Local functions. */
static int icexpect P((struct sconnection *qconn, int cstrings,
char **azstrings, size_t *aclens,
int ctimeout, boolean fstrip));
static boolean fcsend P((struct sconnection *qconn, pointer puuconf,
const char *zsend,
const struct uuconf_system *qsys,
const struct uuconf_dialer *qdial,
const char *zphone,
boolean ftranslate, boolean fstrip));
static boolean fcecho_send_strip P((struct sconnection *qconn,
const char *z, size_t clen));
static boolean fcecho_send_nostrip P((struct sconnection *qconn,
const char *z, size_t clen));
static boolean fcecho_send P((struct sconnection *qconn, const char *z,
size_t clen, boolean fstrip));
static boolean fcphone P((struct sconnection *qconn,
pointer puuconf,
const struct uuconf_dialer *qdial,
const char *zphone,
boolean (*pfwrite) P((struct sconnection *qc,
const char *zwrite,
size_t cwrite)),
boolean ftranslate, boolean *pfquote));
static boolean fctranslate P((pointer puuconf, const char *zphone,
const char **pzprefix,
const char **pzsuffix));
static boolean fcprogram P((struct sconnection *qconn, pointer puuconf,
char **pzprogram,
const struct uuconf_system *qsys,
const struct uuconf_dialer *qdial,
const char *zphone, const char *zport,
long ibaud));
/* Run a chat script with the other system. The chat script is a
series of expect send pairs. We wait for the expect string to show
up, and then we send the send string. The chat string for a system
holds the expect and send strings separated by a single space. */
boolean
fchat (struct sconnection *qconn, pointer puuconf, const struct uuconf_chat *qchat, const struct uuconf_system *qsys, const struct uuconf_dialer *qdial, const char *zphone, boolean ftranslate, const char *zport, long int ibaud)
{
int cstrings;
char **azstrings;
size_t *aclens;
char **pzchat;
char *zbuf;
size_t cbuflen;
boolean fret;
int i;
/* First run the program, if any. */
if (qchat->uuconf_pzprogram != NULL)
{
if (! fcprogram (qconn, puuconf, qchat->uuconf_pzprogram, qsys, qdial,
zphone, zport, ibaud))
return FALSE;
}
/* If there's no chat script, we're done. */
if (qchat->uuconf_pzchat == NULL)
return TRUE;
if (qchat->uuconf_pzfail == NULL)
{
cstrings = 1;
azstrings = (char **) xmalloc (sizeof (char *));
aclens = (size_t *) xmalloc (sizeof (size_t));
}
else
{
char **pz;
/* We leave string number 0 for the chat script. */
cstrings = 1;
for (pz = qchat->uuconf_pzfail; *pz != NULL; pz++)
++cstrings;
azstrings = (char **) xmalloc (cstrings * sizeof (char *));
aclens = (size_t *) xmalloc (cstrings * sizeof (size_t));
/* Get the strings into the array, and handle all the escape
characters. */
for (cstrings = 1, pz = qchat->uuconf_pzfail;
*pz != NULL;
cstrings++, pz++)
{
azstrings[cstrings] = zbufcpy (*pz);
aclens[cstrings] = cescape (azstrings[cstrings]);
}
}
cbuflen = 0;
zbuf = NULL;
fret = TRUE;
pzchat = qchat->uuconf_pzchat;
while (*pzchat != NULL)
{
size_t clen;
/* Loop over subexpects and subsends. */
while (TRUE)
{
char *ztimeout;
int ctimeout;
/* Copy the expect string into the buffer so that we can
modify it in cescape. */
clen = strlen (*pzchat);
if (clen >= cbuflen)
{
ubuffree (zbuf);
zbuf = zbufalc (clen + 1);
cbuflen = clen;
}
memcpy (zbuf, *pzchat, clen + 1);
azstrings[0] = zbuf;
if (azstrings[0][0] == '-')
++azstrings[0];
/* \Wnum at the end of the string is a timeout. */
ctimeout = qchat->uuconf_ctimeout;
ztimeout = strrchr (azstrings[0], '\\');
if (ztimeout != NULL && ztimeout[1] == 'W')
{
char *zend;
int cval;
cval = (int) strtol (ztimeout + 2, &zend, 10);
if (zend != ztimeout + 2 && *zend == '\0')
{
ctimeout = cval;
*ztimeout = '\0';
}
}
aclens[0] = cescape (azstrings[0]);
if (aclens[0] == 0
|| (aclens[0] == 2
&& strcmp (azstrings[0], "\"\"") == 0))
{
/* There is no subexpect sequence. If there is a
subsend sequence we move on to it. Otherwise we let
this expect succeed. This is somewhat inconsistent,
but it seems to be the traditional approach. */
if (pzchat[1] == NULL || pzchat[1][0] != '-')
break;
}
else
{
int istr;
istr = icexpect (qconn, cstrings, azstrings, aclens,
ctimeout, qchat->uuconf_fstrip);
/* If we found the string, break out of the
subexpect/subsend loop. */
if (istr == 0)
break;
/* If we got an error, return FALSE. */
if (istr < -1)
{
fret = FALSE;
break;
}
/* If we found a failure string, log it and get out. */
if (istr > 0)
{
ulog (LOG_ERROR, "Chat script failed: Got \"%s\"",
qchat->uuconf_pzfail[istr - 1]);
fret = FALSE;
break;
}
/* We timed out; look for a send subsequence. If none,
the chat script has failed. */
if (pzchat[1] == NULL || pzchat[1][0] != '-')
{
ulog (LOG_ERROR, "Timed out in chat script");
fret = FALSE;
break;
}
}
/* Send the send subsequence without the leading '-'. A
\"\" will send nothing. An empty string will send a
carriage return. */
++pzchat;
if (! fcsend (qconn, puuconf, *pzchat + 1, qsys, qdial, zphone,
ftranslate, qchat->uuconf_fstrip))
{
fret = FALSE;
break;
}
/* If there is no expect subsequence, we are done. */
if (pzchat[1] == NULL || pzchat[1][0] != '-')
break;
/* Move on to next expect subsequence. */
++pzchat;
}
if (! fret)
break;
/* Move on to the send string. If there is none, we have
succeeded. */
do
{
++pzchat;
}
while (*pzchat != NULL && (*pzchat)[0] == '-');
if (*pzchat == NULL)
break;
if (**pzchat != '\0')
{
if (! fcsend (qconn, puuconf, *pzchat, qsys, qdial, zphone,
ftranslate, qchat->uuconf_fstrip))
{
fret = FALSE;
break;
}
}
++pzchat;
}
ubuffree (zbuf);
for (i = 1; i < cstrings; i++)
ubuffree (azstrings[i]);
xfree ((pointer) azstrings);
xfree ((pointer) aclens);
return fret;
}
/* Read characters and wait for one of a set of memory strings to come
in. This returns the index into the array of the string that
arrives, or -1 on timeout, or -2 on error. */
static int
icexpect (struct sconnection *qconn, int cstrings, char **azstrings, size_t *aclens, int ctimeout, boolean fstrip)
{
int i;
size_t cmax;
char *zhave;
size_t chave;
long iendtime;
#if DEBUG > 1
int cchars;
int iolddebug;
#endif
cmax = aclens[0];
for (i = 1; i < cstrings; i++)
if (cmax < aclens[i])
cmax = aclens[i];
zhave = zbufalc (cmax);
chave = 0;
iendtime = ixsysdep_time ((long *) NULL) + ctimeout;
#if DEBUG > 1
cchars = 0;
iolddebug = iDebug;
if (FDEBUGGING (DEBUG_CHAT))
{
udebug_buffer ("icexpect: Looking for", azstrings[0],
aclens[0]);
ulog (LOG_DEBUG_START, "icexpect: Got \"");
iDebug &=~ (DEBUG_INCOMING | DEBUG_PORT);
}
#endif
while (TRUE)
{
int bchar;
/* If we have no more time, get out. */
if (ctimeout <= 0)
{
#if DEBUG > 1
if (FDEBUGGING (DEBUG_CHAT))
{
ulog (LOG_DEBUG_END, "\" (timed out)");
iDebug = iolddebug;
}
#endif
ubuffree (zhave);
return -1;
}
/* Read one character at a time. We could use a more complex
algorithm to read in larger batches, but it's probably not
worth it. If the buffer is full, shift it left; we already
know that no string matches, and the buffer holds the largest
string, so this can't lose a match. */
if (chave >= cmax)
{
size_t imove;
for (imove = 0; imove < cmax - 1; imove++)
zhave[imove] = zhave[imove + 1];
--chave;
}
/* The timeout/error return values from breceive_char are the
same as for this function. */
bchar = breceive_char (qconn, ctimeout, TRUE);
if (bchar < 0)
{
#if DEBUG > 1
if (FDEBUGGING (DEBUG_CHAT))
{
/* If there was an error, it will probably be logged in
the middle of our string, but this is only debugging
so it's not a big deal. */
ulog (LOG_DEBUG_END, "\" (%s)",
bchar == -1 ? "timed out" : "error");
iDebug = iolddebug;
}
#endif
ubuffree (zhave);
return bchar;
}
/* Strip the parity bit if desired. */
if (fstrip)
bchar &= 0x7f;
zhave[chave] = (char) bchar;
++chave;
#if DEBUG > 1
if (FDEBUGGING (DEBUG_CHAT))
{
char ab[5];
++cchars;
if (cchars > 60)
{
ulog (LOG_DEBUG_END, "\"");
ulog (LOG_DEBUG_START, "icexpect: Got \"");
cchars = 0;
}
(void) cdebug_char (ab, bchar);
ulog (LOG_DEBUG_CONTINUE, "%s", ab);
}
#endif
/* See if any of the strings can be found in the buffer. Since
we read one character at a time, the string can only be found
at the end of the buffer. */
for (i = 0; i < cstrings; i++)
{
if (aclens[i] <= chave
&& memcmp (zhave + chave - aclens[i], azstrings[i],
aclens[i]) == 0)
{
#if DEBUG > 1
if (FDEBUGGING (DEBUG_CHAT))
{
if (i == 0)
ulog (LOG_DEBUG_END, "\" (found it)");
else
{
ulog (LOG_DEBUG_END, "\"");
udebug_buffer ("icexpect: Found", azstrings[i],
aclens[i]);
}
iDebug = iolddebug;
}
#endif
ubuffree (zhave);
return i;
}
}
ctimeout = (int) (iendtime - ixsysdep_time ((long *) NULL));
}
}
#if DEBUG > 1
/* Debugging function for fcsend. This takes the fquote variable, the
length of the string (0 if this an informational string which can
be printed directly) and the string itself. It returns the new
value for fquote. The fquote variable is TRUE if the debugging
output is in the middle of a quoted string. */
static size_t cCsend_chars;
static int iColddebug;
static boolean fcsend_debug P((boolean, size_t, const char *));
static boolean
fcsend_debug (boolean fquote, size_t clen, const char *zbuf)
{
size_t cwas;
if (! FDEBUGGING (DEBUG_CHAT))
return TRUE;
cwas = cCsend_chars;
if (clen > 0)
cCsend_chars += clen;
else
cCsend_chars += strlen (zbuf);
if (cCsend_chars > 60 && cwas > 10)
{
ulog (LOG_DEBUG_END, "%s", fquote ? "\"" : "");
fquote = FALSE;
ulog (LOG_DEBUG_START, "fcsend: Writing");
cCsend_chars = 0;
}
if (clen == 0)
{
ulog (LOG_DEBUG_CONTINUE, "%s %s", fquote ? "\"" : "", zbuf);
return FALSE;
}
else
{
size_t i;
if (! fquote)
ulog (LOG_DEBUG_CONTINUE, " \"");
for (i = 0; i < clen; i++)
{
char ab[5];
(void) cdebug_char (ab, zbuf[i]);
ulog (LOG_DEBUG_CONTINUE, "%s", ab);
}
return TRUE;
}
}
/* Finish up the debugging information for fcsend. */
static void ucsend_debug_end P((boolean, boolean));
static void
ucsend_debug_end (boolean fquote, boolean ferr)
{
if (! FDEBUGGING (DEBUG_CHAT))
return;
if (fquote)
ulog (LOG_DEBUG_CONTINUE, "\"");
if (ferr)
ulog (LOG_DEBUG_CONTINUE, " (error)");
ulog (LOG_DEBUG_END, "%s", "");
iDebug = iColddebug;
}
#else /* DEBUG <= 1 */
/* Use macro definitions to make fcsend look neater. */
#define fcsend_debug(fquote, clen, zbuf) TRUE
#define ucsend_debug_end(fquote, ferror)
#endif /* DEBUG <= 1 */
/* Send a string out. This has to parse escape sequences as it goes.
Note that it handles the dialer escape sequences (\e, \E, \D, \T)
although they make no sense for chatting with a system. */
static boolean
fcsend (struct sconnection *qconn, pointer puuconf, const char *z, const struct uuconf_system *qsys, const struct uuconf_dialer *qdial, const char *zphone, boolean ftranslate, boolean fstrip)
{
boolean fnocr;
boolean (*pfwrite) P((struct sconnection *, const char *, size_t));
char *zcallout_login;
char *zcallout_pass;
boolean fquote;
if (strcmp (z, "\"\"") == 0)
return TRUE;
fnocr = FALSE;
pfwrite = fconn_write;
zcallout_login = NULL;
zcallout_pass = NULL;
#if DEBUG > 1
if (FDEBUGGING (DEBUG_CHAT))
{
ulog (LOG_DEBUG_START, "fcsend: Writing");
fquote = FALSE;
cCsend_chars = 0;
iColddebug = iDebug;
iDebug &=~ (DEBUG_OUTGOING | DEBUG_PORT);
}
#endif
while (*z != '\0')
{
const char *zlook;
boolean fsend;
char bsend;
zlook = z + strcspn ((char *) z, "\\BE");
if (zlook > z)
{
size_t c;
c = zlook - z;
fquote = fcsend_debug (fquote, c, z);
if (! (*pfwrite) (qconn, z, c))
{
ucsend_debug_end (fquote, TRUE);
return FALSE;
}
}
if (*zlook == '\0')
break;
z = zlook;
fsend = FALSE;
switch (*z)
{
case 'B':
if (strncmp (z, "BREAK", 5) == 0)
{
fquote = fcsend_debug (fquote, (size_t) 0, "break");
if (! fconn_break (qconn))
{
ucsend_debug_end (fquote, TRUE);
return FALSE;
}
fnocr = TRUE;
z += 5;
}
else
{
fsend = TRUE;
bsend = 'B';
++z;
}
break;
case 'E':
if (strncmp (z, "EOT", 3) == 0)
{
fsend = TRUE;
bsend = '\004';
fnocr = TRUE;
z += 3;
}
else
{
fsend = TRUE;
bsend = 'E';
++z;
}
break;
case '\\':
++z;
switch (*z)
{
case '-':
fsend = TRUE;
bsend = '-';
break;
case 'b':
fsend = TRUE;
bsend = '\b';
break;
case 'c':
fnocr = TRUE;
break;
case 'd':
fquote = fcsend_debug (fquote, (size_t) 0, "sleep");
usysdep_sleep (1);
break;
case 'e':
fquote = fcsend_debug (fquote, (size_t) 0, "echo-check-off");
pfwrite = fconn_write;
break;
case 'E':
fquote = fcsend_debug (fquote, (size_t) 0, "echo-check-on");
if (fstrip)
pfwrite = fcecho_send_strip;
else
pfwrite = fcecho_send_nostrip;
break;
case 'K':
fquote = fcsend_debug (fquote, (size_t) 0, "break");
if (! fconn_break (qconn))
{
ucsend_debug_end (fquote, TRUE);
return FALSE;
}
break;
case 'n':
fsend = TRUE;
bsend = '\n';
break;
case 'N':
fsend = TRUE;
bsend = '\0';
break;
case 'p':
fquote = fcsend_debug (fquote, (size_t) 0, "pause");
usysdep_pause ();
break;
case 'r':
fsend = TRUE;
bsend = '\r';
break;
case 's':
fsend = TRUE;
bsend = ' ';
break;
case 't':
fsend = TRUE;
bsend = '\t';
break;
case '\0':
--z;
/* Fall through. */
case '\\':
fsend = TRUE;
bsend = '\\';
break;
case '0': case '1': case '2': case '3': case '4':
case '5': case '6': case '7': case '8': case '9':
fsend = TRUE;
bsend = *z - '0';
if (z[1] >= '0' && z[1] <= '7')
bsend = (char) (8 * bsend + *++z - '0');
if (z[1] >= '0' && z[1] <= '7')
bsend = (char) (8 * bsend + *++z - '0');
break;
case 'x':
fsend = TRUE;
bsend = 0;
while (isxdigit (BUCHAR (z[1])))
{
if (isdigit (BUCHAR (z[1])))
bsend = (char) (16 * bsend + *++z - '0');
else if (isupper (BUCHAR (z[1])))
bsend = (char) (16 * bsend + *++z - 'A' + 10);
else
bsend = (char) (16 * bsend + *++z - 'a' + 10);
}
break;
case 'L':
{
const char *zlog;
char *zcopy;
size_t clen;
if (qsys == NULL)
{
ucsend_debug_end (fquote, TRUE);
ulog (LOG_ERROR, "Illegal use of \\L");
return FALSE;
}
zlog = qsys->uuconf_zcall_login;
if (zlog == NULL)
{
ucsend_debug_end (fquote, TRUE);
ulog (LOG_ERROR, "No login defined");
return FALSE;
}
if (zlog[0] == '*' && zlog[1] == '\0')
{
if (zcallout_login == NULL)
{
int iuuconf;
iuuconf = uuconf_callout (puuconf, qsys,
&zcallout_login,
&zcallout_pass);
if (iuuconf == UUCONF_NOT_FOUND
|| zcallout_login == NULL)
{
ucsend_debug_end (fquote, TRUE);
ulog (LOG_ERROR, "No login defined");
return FALSE;
}
else if (iuuconf != UUCONF_SUCCESS)
{
ucsend_debug_end (fquote, TRUE);
ulog_uuconf (LOG_ERROR, puuconf, iuuconf);
return FALSE;
}
}
zlog = zcallout_login;
}
zcopy = zbufcpy (zlog);
clen = cescape (zcopy);
fquote = fcsend_debug (fquote, (size_t) 0, "login");
fquote = fcsend_debug (fquote, clen, zcopy);
if (! (*pfwrite) (qconn, zcopy, clen))
{
ubuffree (zcopy);
ucsend_debug_end (fquote, TRUE);
return FALSE;
}
ubuffree (zcopy);
}
break;
case 'P':
{
const char *zpass;
char *zcopy;
size_t clen;
if (qsys == NULL)
{
ucsend_debug_end (fquote, TRUE);
ulog (LOG_ERROR, "Illegal use of \\P");
return FALSE;
}
zpass = qsys->uuconf_zcall_password;
if (zpass == NULL)
{
ucsend_debug_end (fquote, TRUE);
ulog (LOG_ERROR, "No password defined");
return FALSE;
}
if (zpass[0] == '*' && zpass[1] == '\0')
{
if (zcallout_pass == NULL)
{
int iuuconf;
iuuconf = uuconf_callout (puuconf, qsys,
&zcallout_login,
&zcallout_pass);
if (iuuconf == UUCONF_NOT_FOUND
|| zcallout_pass == NULL)
{
ucsend_debug_end (fquote, TRUE);
ulog (LOG_ERROR, "No password defined");
return FALSE;
}
else if (iuuconf != UUCONF_SUCCESS)
{
ucsend_debug_end (fquote, TRUE);
ulog_uuconf (LOG_ERROR, puuconf, iuuconf);
return FALSE;
}
}
zpass = zcallout_pass;
}
zcopy = zbufcpy (zpass);
clen = cescape (zcopy);
fquote = fcsend_debug (fquote, (size_t) 0, "password");
fquote = fcsend_debug (fquote, clen, zcopy);
if (! (*pfwrite) (qconn, zcopy, clen))
{
ubuffree (zcopy);
ucsend_debug_end (fquote, TRUE);
return FALSE;
}
ubuffree (zcopy);
}
break;
case 'D':
if (qdial == NULL || zphone == NULL)
{
ucsend_debug_end (fquote, TRUE);
ulog (LOG_ERROR, "Illegal use of \\D");
return FALSE;
}
fquote = fcsend_debug (fquote, (size_t) 0, "\\D");
if (! fcphone (qconn, puuconf, qdial, zphone, pfwrite,
ftranslate, &fquote))
{
ucsend_debug_end (fquote, TRUE);
return FALSE;
}
break;
case 'T':
if (qdial == NULL || zphone == NULL)
{
ucsend_debug_end (fquote, TRUE);
ulog (LOG_ERROR, "Illegal use of \\T");
return FALSE;
}
fquote = fcsend_debug (fquote, (size_t) 0, "\\T");
if (! fcphone (qconn, puuconf, qdial, zphone, pfwrite, TRUE,
&fquote))
{
ucsend_debug_end (fquote, TRUE);
return FALSE;
}
break;
case 'M':
fquote = fcsend_debug (fquote, (size_t) 0, "ignore-carrier");
if (! fconn_carrier (qconn, FALSE))
{
ucsend_debug_end (fquote, TRUE);
return FALSE;
}
break;
case 'm':
if (qdial == NULL || qdial->uuconf_fcarrier)
{
fquote = fcsend_debug (fquote, (size_t) 0, "need-carrier");
if (! fconn_carrier (qconn, TRUE))
{
ucsend_debug_end (fquote, TRUE);
return FALSE;
}
}
break;
default:
/* This error message will screw up any debugging
information, but it's easily avoidable. */
ulog (LOG_ERROR,
"Unrecognized escape sequence \\%c in send string",
*z);
fsend = TRUE;
bsend = *z;
break;
}
++z;
break;
#if DEBUG > 0
default:
ulog (LOG_FATAL, "fcsend: Can't happen");
break;
#endif
}
if (fsend)
{
fquote = fcsend_debug (fquote, (size_t) 1, &bsend);
if (! (*pfwrite) (qconn, &bsend, (size_t) 1))
{
ucsend_debug_end (fquote, TRUE);
return FALSE;
}
}
}
xfree ((pointer) zcallout_login);
xfree ((pointer) zcallout_pass);
/* Output a final carriage return, unless there was a \c. Don't
bother to check for an echo. */
if (! fnocr)
{
char b;
b = '\r';
fquote = fcsend_debug (fquote, (size_t) 1, &b);
if (! fconn_write (qconn, &b, (size_t) 1))
{
ucsend_debug_end (fquote, TRUE);
return FALSE;
}
}
ucsend_debug_end (fquote, FALSE);
return TRUE;
}
/* Write out a phone number with optional dialcode translation. The
pfquote argument is only used for debugging. */
static boolean
fcphone (struct sconnection *qconn, pointer puuconf, const struct uuconf_dialer *qdial, const char *zphone, boolean (*pfwrite) (struct sconnection *, const char *, size_t), boolean ftranslate, boolean *pfquote)
{
const char *zprefix, *zsuffix;
if (ftranslate)
{
if (! fctranslate (puuconf, zphone, &zprefix, &zsuffix))
return FALSE;
}
else
{
zprefix = zphone;
zsuffix = NULL;
}
while (zprefix != NULL)
{
while (TRUE)
{
const char *z;
const char *zstr;
z = zprefix + strcspn ((char *) zprefix, "=-");
if (z > zprefix)
{
size_t clen;
clen = z - zprefix;
*pfquote = fcsend_debug (*pfquote, clen, zprefix);
if (! (*pfwrite) (qconn, zprefix, clen))
return FALSE;
}
if (*z == '=')
zstr = qdial->uuconf_zdialtone;
else if (*z == '-')
zstr = qdial->uuconf_zpause;
else /* *z == '\0' */
break;
if (zstr != NULL)
{
*pfquote = fcsend_debug (*pfquote, strlen (zstr), zstr);
if (! (*pfwrite) (qconn, zstr, strlen (zstr)))
return FALSE;
}
zprefix = z + 1;
}
zprefix = zsuffix;
zsuffix = NULL;
}
return TRUE;
}
/* Given a phone number, run it through dial code translation
returning two strings. */
static boolean
fctranslate (pointer puuconf, const char *zphone, const char **pzprefix, const char **pzsuffix)
{
int iuuconf;
char *zdialcode, *zto;
const char *zfrom;
char *ztrans;
*pzprefix = zphone;
*pzsuffix = NULL;
zdialcode = zbufalc (strlen (zphone) + 1);
zfrom = zphone;
zto = zdialcode;