xref: /haiku/src/bin/network/telnetd/utility.c (revision 6b99b20692bc8280323e80c2678af46d6ed6bdb0)
1fdad9c93SAxel Dörfler /*
2fdad9c93SAxel Dörfler  * Copyright (c) 1989, 1993
3fdad9c93SAxel Dörfler  *	The Regents of the University of California.  All rights reserved.
4fdad9c93SAxel Dörfler  *
5fdad9c93SAxel Dörfler  * Redistribution and use in source and binary forms, with or without
6fdad9c93SAxel Dörfler  * modification, are permitted provided that the following conditions
7fdad9c93SAxel Dörfler  * are met:
8fdad9c93SAxel Dörfler  * 1. Redistributions of source code must retain the above copyright
9fdad9c93SAxel Dörfler  *    notice, this list of conditions and the following disclaimer.
10fdad9c93SAxel Dörfler  * 2. Redistributions in binary form must reproduce the above copyright
11fdad9c93SAxel Dörfler  *    notice, this list of conditions and the following disclaimer in the
12fdad9c93SAxel Dörfler  *    documentation and/or other materials provided with the distribution.
13*6b99b206SAugustin Cavalier  * 3. Neither the name of the University nor the names of its contributors
14fdad9c93SAxel Dörfler  *    may be used to endorse or promote products derived from this software
15fdad9c93SAxel Dörfler  *    without specific prior written permission.
16fdad9c93SAxel Dörfler  *
17fdad9c93SAxel Dörfler  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18fdad9c93SAxel Dörfler  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19fdad9c93SAxel Dörfler  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20fdad9c93SAxel Dörfler  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21fdad9c93SAxel Dörfler  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22fdad9c93SAxel Dörfler  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23fdad9c93SAxel Dörfler  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24fdad9c93SAxel Dörfler  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25fdad9c93SAxel Dörfler  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26fdad9c93SAxel Dörfler  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27fdad9c93SAxel Dörfler  * SUCH DAMAGE.
28fdad9c93SAxel Dörfler  */
29fdad9c93SAxel Dörfler 
30fdad9c93SAxel Dörfler #if 0
31fdad9c93SAxel Dörfler #ifndef lint
32fdad9c93SAxel Dörfler static const char sccsid[] = "@(#)utility.c	8.4 (Berkeley) 5/30/95";
33fdad9c93SAxel Dörfler #endif /* not lint */
34fdad9c93SAxel Dörfler #endif
35fdad9c93SAxel Dörfler #include <sys/cdefs.h>
36*6b99b206SAugustin Cavalier __FBSDID("$FreeBSD$");
37fdad9c93SAxel Dörfler 
38fdad9c93SAxel Dörfler #ifdef __FreeBSD__
39fdad9c93SAxel Dörfler #include <locale.h>
40fdad9c93SAxel Dörfler #include <sys/utsname.h>
41fdad9c93SAxel Dörfler #endif
42fdad9c93SAxel Dörfler #include <string.h>
43fdad9c93SAxel Dörfler #define PRINTOPTIONS
44fdad9c93SAxel Dörfler #include "telnetd.h"
45fdad9c93SAxel Dörfler 
46fdad9c93SAxel Dörfler #ifdef	AUTHENTICATION
47fdad9c93SAxel Dörfler #include <libtelnet/auth.h>
48fdad9c93SAxel Dörfler #endif
49fdad9c93SAxel Dörfler #ifdef	ENCRYPTION
50fdad9c93SAxel Dörfler #include <libtelnet/encrypt.h>
51fdad9c93SAxel Dörfler #endif
52fdad9c93SAxel Dörfler 
53fdad9c93SAxel Dörfler /*
54fdad9c93SAxel Dörfler  * utility functions performing io related tasks
55fdad9c93SAxel Dörfler  */
56fdad9c93SAxel Dörfler 
57fdad9c93SAxel Dörfler /*
58fdad9c93SAxel Dörfler  * ttloop
59fdad9c93SAxel Dörfler  *
60fdad9c93SAxel Dörfler  *	A small subroutine to flush the network output buffer, get some data
61fdad9c93SAxel Dörfler  * from the network, and pass it through the telnet state machine.  We
62fdad9c93SAxel Dörfler  * also flush the pty input buffer (by dropping its data) if it becomes
63fdad9c93SAxel Dörfler  * too full.
64fdad9c93SAxel Dörfler  */
65fdad9c93SAxel Dörfler 
66fdad9c93SAxel Dörfler     void
ttloop()67fdad9c93SAxel Dörfler ttloop()
68fdad9c93SAxel Dörfler {
69fdad9c93SAxel Dörfler 
70fdad9c93SAxel Dörfler     DIAG(TD_REPORT, output_data("td: ttloop\r\n"));
71fdad9c93SAxel Dörfler     if (nfrontp - nbackp > 0) {
72fdad9c93SAxel Dörfler 	netflush();
73fdad9c93SAxel Dörfler     }
74fdad9c93SAxel Dörfler     ncc = read(net, netibuf, sizeof netibuf);
75fdad9c93SAxel Dörfler     if (ncc < 0) {
76fdad9c93SAxel Dörfler 	syslog(LOG_INFO, "ttloop:  read: %m");
77fdad9c93SAxel Dörfler 	exit(1);
78fdad9c93SAxel Dörfler     } else if (ncc == 0) {
79fdad9c93SAxel Dörfler 	syslog(LOG_INFO, "ttloop:  peer died: %m");
80fdad9c93SAxel Dörfler 	exit(1);
81fdad9c93SAxel Dörfler     }
82fdad9c93SAxel Dörfler     DIAG(TD_REPORT, output_data("td: ttloop read %d chars\r\n", ncc));
83fdad9c93SAxel Dörfler     netip = netibuf;
84fdad9c93SAxel Dörfler     telrcv();			/* state machine */
85fdad9c93SAxel Dörfler     if (ncc > 0) {
86fdad9c93SAxel Dörfler 	pfrontp = pbackp = ptyobuf;
87fdad9c93SAxel Dörfler 	telrcv();
88fdad9c93SAxel Dörfler     }
89fdad9c93SAxel Dörfler }  /* end of ttloop */
90fdad9c93SAxel Dörfler 
91fdad9c93SAxel Dörfler /*
92fdad9c93SAxel Dörfler  * Check a descriptor to see if out of band data exists on it.
93fdad9c93SAxel Dörfler  */
94fdad9c93SAxel Dörfler int
stilloob(int s)95fdad9c93SAxel Dörfler stilloob(int s)
96fdad9c93SAxel Dörfler {
97fdad9c93SAxel Dörfler     static struct timeval timeout = { 0, 0 };
98fdad9c93SAxel Dörfler     fd_set	excepts;
99fdad9c93SAxel Dörfler     int value;
100fdad9c93SAxel Dörfler 
101fdad9c93SAxel Dörfler     do {
102fdad9c93SAxel Dörfler 	FD_ZERO(&excepts);
103fdad9c93SAxel Dörfler 	FD_SET(s, &excepts);
104fdad9c93SAxel Dörfler 	memset((char *)&timeout, 0, sizeof timeout);
105fdad9c93SAxel Dörfler 	value = select(s+1, (fd_set *)0, (fd_set *)0, &excepts, &timeout);
106fdad9c93SAxel Dörfler     } while ((value == -1) && (errno == EINTR));
107fdad9c93SAxel Dörfler 
108fdad9c93SAxel Dörfler     if (value < 0) {
109fdad9c93SAxel Dörfler 	fatalperror(pty, "select");
110fdad9c93SAxel Dörfler     }
111fdad9c93SAxel Dörfler     if (FD_ISSET(s, &excepts)) {
112fdad9c93SAxel Dörfler 	return 1;
113fdad9c93SAxel Dörfler     } else {
114fdad9c93SAxel Dörfler 	return 0;
115fdad9c93SAxel Dörfler     }
116fdad9c93SAxel Dörfler }
117fdad9c93SAxel Dörfler 
118fdad9c93SAxel Dörfler void
ptyflush(void)119fdad9c93SAxel Dörfler ptyflush(void)
120fdad9c93SAxel Dörfler {
121fdad9c93SAxel Dörfler 	int n;
122fdad9c93SAxel Dörfler 
123fdad9c93SAxel Dörfler 	if ((n = pfrontp - pbackp) > 0) {
124fdad9c93SAxel Dörfler 		DIAG(TD_REPORT | TD_PTYDATA,
125fdad9c93SAxel Dörfler 		    output_data("td: ptyflush %d chars\r\n", n));
126fdad9c93SAxel Dörfler 		DIAG(TD_PTYDATA, printdata("pd", pbackp, n));
127fdad9c93SAxel Dörfler 		n = write(pty, pbackp, n);
128fdad9c93SAxel Dörfler 	}
129fdad9c93SAxel Dörfler 	if (n < 0) {
130fdad9c93SAxel Dörfler 		if (errno == EWOULDBLOCK || errno == EINTR)
131fdad9c93SAxel Dörfler 			return;
132fdad9c93SAxel Dörfler 		cleanup(0);
133fdad9c93SAxel Dörfler 	}
134fdad9c93SAxel Dörfler 	pbackp += n;
135fdad9c93SAxel Dörfler 	if (pbackp == pfrontp)
136fdad9c93SAxel Dörfler 		pbackp = pfrontp = ptyobuf;
137fdad9c93SAxel Dörfler }
138fdad9c93SAxel Dörfler 
139fdad9c93SAxel Dörfler /*
140fdad9c93SAxel Dörfler  * nextitem()
141fdad9c93SAxel Dörfler  *
142fdad9c93SAxel Dörfler  *	Return the address of the next "item" in the TELNET data
143fdad9c93SAxel Dörfler  * stream.  This will be the address of the next character if
144fdad9c93SAxel Dörfler  * the current address is a user data character, or it will
145fdad9c93SAxel Dörfler  * be the address of the character following the TELNET command
146fdad9c93SAxel Dörfler  * if the current address is a TELNET IAC ("I Am a Command")
147fdad9c93SAxel Dörfler  * character.
148fdad9c93SAxel Dörfler  */
149fdad9c93SAxel Dörfler static char *
nextitem(char * current,const char * endp)150*6b99b206SAugustin Cavalier nextitem(char *current, const char *endp)
151fdad9c93SAxel Dörfler {
152*6b99b206SAugustin Cavalier     if (current >= endp) {
153*6b99b206SAugustin Cavalier 	return NULL;
154*6b99b206SAugustin Cavalier     }
155fdad9c93SAxel Dörfler     if ((*current&0xff) != IAC) {
156fdad9c93SAxel Dörfler 	return current+1;
157fdad9c93SAxel Dörfler     }
158*6b99b206SAugustin Cavalier     if (current+1 >= endp) {
159*6b99b206SAugustin Cavalier 	return NULL;
160*6b99b206SAugustin Cavalier     }
161fdad9c93SAxel Dörfler     switch (*(current+1)&0xff) {
162fdad9c93SAxel Dörfler     case DO:
163fdad9c93SAxel Dörfler     case DONT:
164fdad9c93SAxel Dörfler     case WILL:
165fdad9c93SAxel Dörfler     case WONT:
166*6b99b206SAugustin Cavalier 	return current+3 <= endp ? current+3 : NULL;
167fdad9c93SAxel Dörfler     case SB:		/* loop forever looking for the SE */
168fdad9c93SAxel Dörfler 	{
169fdad9c93SAxel Dörfler 	    char *look = current+2;
170fdad9c93SAxel Dörfler 
171*6b99b206SAugustin Cavalier 	    while (look < endp) {
172fdad9c93SAxel Dörfler 		if ((*look++&0xff) == IAC) {
173*6b99b206SAugustin Cavalier 		    if (look < endp && (*look++&0xff) == SE) {
174fdad9c93SAxel Dörfler 			return look;
175fdad9c93SAxel Dörfler 		    }
176fdad9c93SAxel Dörfler 		}
177fdad9c93SAxel Dörfler 	    }
178*6b99b206SAugustin Cavalier 	    return NULL;
179fdad9c93SAxel Dörfler 	}
180fdad9c93SAxel Dörfler     default:
181*6b99b206SAugustin Cavalier 	return current+2 <= endp ? current+2 : NULL;
182fdad9c93SAxel Dörfler     }
183fdad9c93SAxel Dörfler }  /* end of nextitem */
184fdad9c93SAxel Dörfler 
185fdad9c93SAxel Dörfler /*
186fdad9c93SAxel Dörfler  * netclear()
187fdad9c93SAxel Dörfler  *
188fdad9c93SAxel Dörfler  *	We are about to do a TELNET SYNCH operation.  Clear
189fdad9c93SAxel Dörfler  * the path to the network.
190fdad9c93SAxel Dörfler  *
191fdad9c93SAxel Dörfler  *	Things are a bit tricky since we may have sent the first
192fdad9c93SAxel Dörfler  * byte or so of a previous TELNET command into the network.
193fdad9c93SAxel Dörfler  * So, we have to scan the network buffer from the beginning
194fdad9c93SAxel Dörfler  * until we are up to where we want to be.
195fdad9c93SAxel Dörfler  *
196fdad9c93SAxel Dörfler  *	A side effect of what we do, just to keep things
197fdad9c93SAxel Dörfler  * simple, is to clear the urgent data pointer.  The principal
198fdad9c93SAxel Dörfler  * caller should be setting the urgent data pointer AFTER calling
199fdad9c93SAxel Dörfler  * us in any case.
200fdad9c93SAxel Dörfler  */
201fdad9c93SAxel Dörfler void
netclear(void)202fdad9c93SAxel Dörfler netclear(void)
203fdad9c93SAxel Dörfler {
204fdad9c93SAxel Dörfler     char *thisitem, *next;
205fdad9c93SAxel Dörfler     char *good;
206fdad9c93SAxel Dörfler #define	wewant(p)	((nfrontp > p) && ((*p&0xff) == IAC) && \
207*6b99b206SAugustin Cavalier 				(nfrontp > p+1) && ((*(p+1)&0xff) != EC) && ((*(p+1)&0xff) != EL))
208fdad9c93SAxel Dörfler 
209fdad9c93SAxel Dörfler #ifdef	ENCRYPTION
210fdad9c93SAxel Dörfler     thisitem = nclearto > netobuf ? nclearto : netobuf;
211fdad9c93SAxel Dörfler #else	/* ENCRYPTION */
212fdad9c93SAxel Dörfler     thisitem = netobuf;
213fdad9c93SAxel Dörfler #endif	/* ENCRYPTION */
214fdad9c93SAxel Dörfler 
215*6b99b206SAugustin Cavalier     while ((next = nextitem(thisitem, nbackp)) != NULL && (next <= nbackp)) {
216fdad9c93SAxel Dörfler 	thisitem = next;
217fdad9c93SAxel Dörfler     }
218fdad9c93SAxel Dörfler 
219fdad9c93SAxel Dörfler     /* Now, thisitem is first before/at boundary. */
220fdad9c93SAxel Dörfler 
221fdad9c93SAxel Dörfler #ifdef	ENCRYPTION
222fdad9c93SAxel Dörfler     good = nclearto > netobuf ? nclearto : netobuf;
223fdad9c93SAxel Dörfler #else	/* ENCRYPTION */
224fdad9c93SAxel Dörfler     good = netobuf;	/* where the good bytes go */
225fdad9c93SAxel Dörfler #endif	/* ENCRYPTION */
226fdad9c93SAxel Dörfler 
227*6b99b206SAugustin Cavalier     while ((thisitem != NULL) && (nfrontp > thisitem)) {
228fdad9c93SAxel Dörfler 	if (wewant(thisitem)) {
229fdad9c93SAxel Dörfler 	    int length;
230fdad9c93SAxel Dörfler 
231fdad9c93SAxel Dörfler 	    next = thisitem;
232fdad9c93SAxel Dörfler 	    do {
233*6b99b206SAugustin Cavalier 		next = nextitem(next, nfrontp);
234*6b99b206SAugustin Cavalier 	    } while ((next != NULL) && wewant(next) && (nfrontp > next));
235*6b99b206SAugustin Cavalier 	    if (next == NULL) {
236*6b99b206SAugustin Cavalier 		next = nfrontp;
237*6b99b206SAugustin Cavalier 	    }
238fdad9c93SAxel Dörfler 	    length = next-thisitem;
239fdad9c93SAxel Dörfler 	    memmove(good, thisitem, length);
240fdad9c93SAxel Dörfler 	    good += length;
241fdad9c93SAxel Dörfler 	    thisitem = next;
242fdad9c93SAxel Dörfler 	} else {
243*6b99b206SAugustin Cavalier 	    thisitem = nextitem(thisitem, nfrontp);
244fdad9c93SAxel Dörfler 	}
245fdad9c93SAxel Dörfler     }
246fdad9c93SAxel Dörfler 
247fdad9c93SAxel Dörfler     nbackp = netobuf;
248fdad9c93SAxel Dörfler     nfrontp = good;		/* next byte to be sent */
249fdad9c93SAxel Dörfler     neturg = 0;
250fdad9c93SAxel Dörfler }  /* end of netclear */
251fdad9c93SAxel Dörfler 
252fdad9c93SAxel Dörfler /*
253fdad9c93SAxel Dörfler  *  netflush
254fdad9c93SAxel Dörfler  *		Send as much data as possible to the network,
255fdad9c93SAxel Dörfler  *	handling requests for urgent data.
256fdad9c93SAxel Dörfler  */
257fdad9c93SAxel Dörfler void
netflush(void)258fdad9c93SAxel Dörfler netflush(void)
259fdad9c93SAxel Dörfler {
260fdad9c93SAxel Dörfler     int n;
261fdad9c93SAxel Dörfler     extern int not42;
262fdad9c93SAxel Dörfler 
263fdad9c93SAxel Dörfler     while ((n = nfrontp - nbackp) > 0) {
264fdad9c93SAxel Dörfler #if 0
265fdad9c93SAxel Dörfler 	/* XXX This causes output_data() to recurse and die */
266fdad9c93SAxel Dörfler 	DIAG(TD_REPORT, {
267fdad9c93SAxel Dörfler 	    n += output_data("td: netflush %d chars\r\n", n);
268fdad9c93SAxel Dörfler 	});
269fdad9c93SAxel Dörfler #endif
270fdad9c93SAxel Dörfler #ifdef	ENCRYPTION
271fdad9c93SAxel Dörfler 	if (encrypt_output) {
272fdad9c93SAxel Dörfler 		char *s = nclearto ? nclearto : nbackp;
273fdad9c93SAxel Dörfler 		if (nfrontp - s > 0) {
274fdad9c93SAxel Dörfler 			(*encrypt_output)((unsigned char *)s, nfrontp-s);
275fdad9c93SAxel Dörfler 			nclearto = nfrontp;
276fdad9c93SAxel Dörfler 		}
277fdad9c93SAxel Dörfler 	}
278fdad9c93SAxel Dörfler #endif	/* ENCRYPTION */
279fdad9c93SAxel Dörfler 	/*
280fdad9c93SAxel Dörfler 	 * if no urgent data, or if the other side appears to be an
281fdad9c93SAxel Dörfler 	 * old 4.2 client (and thus unable to survive TCP urgent data),
282fdad9c93SAxel Dörfler 	 * write the entire buffer in non-OOB mode.
283fdad9c93SAxel Dörfler 	 */
284fdad9c93SAxel Dörfler 	if ((neturg == 0) || (not42 == 0)) {
285fdad9c93SAxel Dörfler 	    n = write(net, nbackp, n);	/* normal write */
286fdad9c93SAxel Dörfler 	} else {
287fdad9c93SAxel Dörfler 	    n = neturg - nbackp;
288fdad9c93SAxel Dörfler 	    /*
289fdad9c93SAxel Dörfler 	     * In 4.2 (and 4.3) systems, there is some question about
290fdad9c93SAxel Dörfler 	     * what byte in a sendOOB operation is the "OOB" data.
291fdad9c93SAxel Dörfler 	     * To make ourselves compatible, we only send ONE byte
292fdad9c93SAxel Dörfler 	     * out of band, the one WE THINK should be OOB (though
293fdad9c93SAxel Dörfler 	     * we really have more the TCP philosophy of urgent data
294fdad9c93SAxel Dörfler 	     * rather than the Unix philosophy of OOB data).
295fdad9c93SAxel Dörfler 	     */
296fdad9c93SAxel Dörfler 	    if (n > 1) {
297fdad9c93SAxel Dörfler 		n = send(net, nbackp, n-1, 0);	/* send URGENT all by itself */
298fdad9c93SAxel Dörfler 	    } else {
299fdad9c93SAxel Dörfler 		n = send(net, nbackp, n, MSG_OOB);	/* URGENT data */
300fdad9c93SAxel Dörfler 	    }
301fdad9c93SAxel Dörfler 	}
302fdad9c93SAxel Dörfler 	if (n == -1) {
303fdad9c93SAxel Dörfler 	    if (errno == EWOULDBLOCK || errno == EINTR)
304fdad9c93SAxel Dörfler 		continue;
305fdad9c93SAxel Dörfler 	    cleanup(0);
306fdad9c93SAxel Dörfler 	    /* NOTREACHED */
307fdad9c93SAxel Dörfler 	}
308fdad9c93SAxel Dörfler 	nbackp += n;
309fdad9c93SAxel Dörfler #ifdef	ENCRYPTION
310fdad9c93SAxel Dörfler 	if (nbackp > nclearto)
311fdad9c93SAxel Dörfler 	    nclearto = 0;
312fdad9c93SAxel Dörfler #endif	/* ENCRYPTION */
313fdad9c93SAxel Dörfler 	if (nbackp >= neturg) {
314fdad9c93SAxel Dörfler 	    neturg = 0;
315fdad9c93SAxel Dörfler 	}
316fdad9c93SAxel Dörfler 	if (nbackp == nfrontp) {
317fdad9c93SAxel Dörfler 	    nbackp = nfrontp = netobuf;
318fdad9c93SAxel Dörfler #ifdef	ENCRYPTION
319fdad9c93SAxel Dörfler 	    nclearto = 0;
320fdad9c93SAxel Dörfler #endif	/* ENCRYPTION */
321fdad9c93SAxel Dörfler 	}
322fdad9c93SAxel Dörfler     }
323fdad9c93SAxel Dörfler     return;
324fdad9c93SAxel Dörfler }  /* end of netflush */
325fdad9c93SAxel Dörfler 
326fdad9c93SAxel Dörfler 
327fdad9c93SAxel Dörfler /*
328fdad9c93SAxel Dörfler  * miscellaneous functions doing a variety of little jobs follow ...
329fdad9c93SAxel Dörfler  */
330fdad9c93SAxel Dörfler 
331fdad9c93SAxel Dörfler 
332fdad9c93SAxel Dörfler void
fatal(int f,const char * msg)333fdad9c93SAxel Dörfler fatal(int f, const char *msg)
334fdad9c93SAxel Dörfler {
335fdad9c93SAxel Dörfler 	char buf[BUFSIZ];
336fdad9c93SAxel Dörfler 
337fdad9c93SAxel Dörfler 	(void) snprintf(buf, sizeof(buf), "telnetd: %s.\r\n", msg);
338fdad9c93SAxel Dörfler #ifdef	ENCRYPTION
339fdad9c93SAxel Dörfler 	if (encrypt_output) {
340fdad9c93SAxel Dörfler 		/*
341fdad9c93SAxel Dörfler 		 * Better turn off encryption first....
342fdad9c93SAxel Dörfler 		 * Hope it flushes...
343fdad9c93SAxel Dörfler 		 */
344fdad9c93SAxel Dörfler 		encrypt_send_end();
345fdad9c93SAxel Dörfler 		netflush();
346fdad9c93SAxel Dörfler 	}
347fdad9c93SAxel Dörfler #endif	/* ENCRYPTION */
348fdad9c93SAxel Dörfler 	(void) write(f, buf, (int)strlen(buf));
349fdad9c93SAxel Dörfler 	sleep(1);	/*XXX*/
350fdad9c93SAxel Dörfler 	exit(1);
351fdad9c93SAxel Dörfler }
352fdad9c93SAxel Dörfler 
353fdad9c93SAxel Dörfler void
fatalperror(int f,const char * msg)354fdad9c93SAxel Dörfler fatalperror(int f, const char *msg)
355fdad9c93SAxel Dörfler {
356fdad9c93SAxel Dörfler 	char buf[BUFSIZ];
357fdad9c93SAxel Dörfler 
358fdad9c93SAxel Dörfler 	(void) snprintf(buf, sizeof(buf), "%s: %s", msg, strerror(errno));
359fdad9c93SAxel Dörfler 	fatal(f, buf);
360fdad9c93SAxel Dörfler }
361fdad9c93SAxel Dörfler 
362fdad9c93SAxel Dörfler char editedhost[32];
363fdad9c93SAxel Dörfler 
364fdad9c93SAxel Dörfler void
edithost(char * pat,char * host)365fdad9c93SAxel Dörfler edithost(char *pat, char *host)
366fdad9c93SAxel Dörfler {
367fdad9c93SAxel Dörfler 	char *res = editedhost;
368fdad9c93SAxel Dörfler 
369*6b99b206SAugustin Cavalier 	if (pat) {
370fdad9c93SAxel Dörfler 		while (*pat) {
371fdad9c93SAxel Dörfler 			switch (*pat) {
372fdad9c93SAxel Dörfler 
373fdad9c93SAxel Dörfler 			case '#':
374fdad9c93SAxel Dörfler 				if (*host)
375fdad9c93SAxel Dörfler 					host++;
376fdad9c93SAxel Dörfler 				break;
377fdad9c93SAxel Dörfler 
378fdad9c93SAxel Dörfler 			case '@':
379fdad9c93SAxel Dörfler 				if (*host)
380fdad9c93SAxel Dörfler 					*res++ = *host++;
381fdad9c93SAxel Dörfler 				break;
382fdad9c93SAxel Dörfler 
383fdad9c93SAxel Dörfler 			default:
384fdad9c93SAxel Dörfler 				*res++ = *pat;
385fdad9c93SAxel Dörfler 				break;
386fdad9c93SAxel Dörfler 			}
387fdad9c93SAxel Dörfler 			if (res == &editedhost[sizeof editedhost - 1]) {
388fdad9c93SAxel Dörfler 				*res = '\0';
389fdad9c93SAxel Dörfler 				return;
390fdad9c93SAxel Dörfler 			}
391fdad9c93SAxel Dörfler 			pat++;
392fdad9c93SAxel Dörfler 		}
393*6b99b206SAugustin Cavalier 	}
394fdad9c93SAxel Dörfler 	if (*host)
395fdad9c93SAxel Dörfler 		(void) strncpy(res, host,
396fdad9c93SAxel Dörfler 				sizeof editedhost - (res - editedhost) -1);
397fdad9c93SAxel Dörfler 	else
398fdad9c93SAxel Dörfler 		*res = '\0';
399fdad9c93SAxel Dörfler 	editedhost[sizeof editedhost - 1] = '\0';
400fdad9c93SAxel Dörfler }
401fdad9c93SAxel Dörfler 
402fdad9c93SAxel Dörfler static char *putlocation;
403fdad9c93SAxel Dörfler 
404fdad9c93SAxel Dörfler static void
putstr(const char * s)405fdad9c93SAxel Dörfler putstr(const char *s)
406fdad9c93SAxel Dörfler {
407fdad9c93SAxel Dörfler 
408fdad9c93SAxel Dörfler 	while (*s)
409fdad9c93SAxel Dörfler 		putchr(*s++);
410fdad9c93SAxel Dörfler }
411fdad9c93SAxel Dörfler 
412fdad9c93SAxel Dörfler void
putchr(int cc)413fdad9c93SAxel Dörfler putchr(int cc)
414fdad9c93SAxel Dörfler {
415fdad9c93SAxel Dörfler 	*putlocation++ = cc;
416fdad9c93SAxel Dörfler }
417fdad9c93SAxel Dörfler 
418fdad9c93SAxel Dörfler #ifdef __FreeBSD__
419fdad9c93SAxel Dörfler static char fmtstr[] = { "%+" };
420fdad9c93SAxel Dörfler #else
421fdad9c93SAxel Dörfler static char fmtstr[] = { "%l:%M%P on %A, %d %B %Y" };
422fdad9c93SAxel Dörfler #endif
423fdad9c93SAxel Dörfler 
424fdad9c93SAxel Dörfler void
putf(char * cp,char * where)425fdad9c93SAxel Dörfler putf(char *cp, char *where)
426fdad9c93SAxel Dörfler {
427fdad9c93SAxel Dörfler 	char *slash;
428fdad9c93SAxel Dörfler 	time_t t;
429fdad9c93SAxel Dörfler 	char db[100];
430fdad9c93SAxel Dörfler #ifdef __FreeBSD__
431fdad9c93SAxel Dörfler 	static struct utsname kerninfo;
432fdad9c93SAxel Dörfler 
433fdad9c93SAxel Dörfler 	if (!*kerninfo.sysname)
434fdad9c93SAxel Dörfler 		uname(&kerninfo);
435fdad9c93SAxel Dörfler #endif
436fdad9c93SAxel Dörfler 
437fdad9c93SAxel Dörfler 	putlocation = where;
438fdad9c93SAxel Dörfler 
439fdad9c93SAxel Dörfler 	while (*cp) {
440fdad9c93SAxel Dörfler 		if (*cp =='\n') {
441fdad9c93SAxel Dörfler 			putstr("\r\n");
442fdad9c93SAxel Dörfler 			cp++;
443fdad9c93SAxel Dörfler 			continue;
444fdad9c93SAxel Dörfler 		} else if (*cp != '%') {
445fdad9c93SAxel Dörfler 			putchr(*cp++);
446fdad9c93SAxel Dörfler 			continue;
447fdad9c93SAxel Dörfler 		}
448fdad9c93SAxel Dörfler 		switch (*++cp) {
449fdad9c93SAxel Dörfler 
450fdad9c93SAxel Dörfler 		case 't':
451fdad9c93SAxel Dörfler #ifdef	STREAMSPTY
452fdad9c93SAxel Dörfler 			/* names are like /dev/pts/2 -- we want pts/2 */
453fdad9c93SAxel Dörfler 			slash = strchr(line+1, '/');
454fdad9c93SAxel Dörfler #else
455fdad9c93SAxel Dörfler 			slash = strrchr(line, '/');
456fdad9c93SAxel Dörfler #endif
457fdad9c93SAxel Dörfler 			if (slash == (char *) 0)
458fdad9c93SAxel Dörfler 				putstr(line);
459fdad9c93SAxel Dörfler 			else
460fdad9c93SAxel Dörfler 				putstr(&slash[1]);
461fdad9c93SAxel Dörfler 			break;
462fdad9c93SAxel Dörfler 
463fdad9c93SAxel Dörfler 		case 'h':
464fdad9c93SAxel Dörfler 			putstr(editedhost);
465fdad9c93SAxel Dörfler 			break;
466fdad9c93SAxel Dörfler 
467fdad9c93SAxel Dörfler 		case 'd':
468fdad9c93SAxel Dörfler #ifdef __FreeBSD__
469fdad9c93SAxel Dörfler 			setlocale(LC_TIME, "");
470fdad9c93SAxel Dörfler #endif
471fdad9c93SAxel Dörfler 			(void)time(&t);
472fdad9c93SAxel Dörfler 			(void)strftime(db, sizeof(db), fmtstr, localtime(&t));
473fdad9c93SAxel Dörfler 			putstr(db);
474fdad9c93SAxel Dörfler 			break;
475fdad9c93SAxel Dörfler 
476fdad9c93SAxel Dörfler #ifdef __FreeBSD__
477fdad9c93SAxel Dörfler 		case 's':
478fdad9c93SAxel Dörfler 			putstr(kerninfo.sysname);
479fdad9c93SAxel Dörfler 			break;
480fdad9c93SAxel Dörfler 
481fdad9c93SAxel Dörfler 		case 'm':
482fdad9c93SAxel Dörfler 			putstr(kerninfo.machine);
483fdad9c93SAxel Dörfler 			break;
484fdad9c93SAxel Dörfler 
485fdad9c93SAxel Dörfler 		case 'r':
486fdad9c93SAxel Dörfler 			putstr(kerninfo.release);
487fdad9c93SAxel Dörfler 			break;
488fdad9c93SAxel Dörfler 
489fdad9c93SAxel Dörfler 		case 'v':
490fdad9c93SAxel Dörfler 			putstr(kerninfo.version);
491fdad9c93SAxel Dörfler 			break;
492fdad9c93SAxel Dörfler #endif
493fdad9c93SAxel Dörfler 
494fdad9c93SAxel Dörfler 		case '%':
495fdad9c93SAxel Dörfler 			putchr('%');
496fdad9c93SAxel Dörfler 			break;
497fdad9c93SAxel Dörfler 		}
498fdad9c93SAxel Dörfler 		cp++;
499fdad9c93SAxel Dörfler 	}
500fdad9c93SAxel Dörfler }
501fdad9c93SAxel Dörfler 
502fdad9c93SAxel Dörfler #ifdef DIAGNOSTICS
503fdad9c93SAxel Dörfler /*
504fdad9c93SAxel Dörfler  * Print telnet options and commands in plain text, if possible.
505fdad9c93SAxel Dörfler  */
506fdad9c93SAxel Dörfler void
printoption(const char * fmt,int option)507fdad9c93SAxel Dörfler printoption(const char *fmt, int option)
508fdad9c93SAxel Dörfler {
509fdad9c93SAxel Dörfler 	if (TELOPT_OK(option))
510fdad9c93SAxel Dörfler 		output_data("%s %s\r\n", fmt, TELOPT(option));
511fdad9c93SAxel Dörfler 	else if (TELCMD_OK(option))
512fdad9c93SAxel Dörfler 		output_data("%s %s\r\n", fmt, TELCMD(option));
513fdad9c93SAxel Dörfler 	else
514fdad9c93SAxel Dörfler 		output_data("%s %d\r\n", fmt, option);
515fdad9c93SAxel Dörfler 	return;
516fdad9c93SAxel Dörfler }
517fdad9c93SAxel Dörfler 
518fdad9c93SAxel Dörfler void
printsub(char direction,unsigned char * pointer,int length)519fdad9c93SAxel Dörfler printsub(char direction, unsigned char *pointer, int length)
520fdad9c93SAxel Dörfler {
521fdad9c93SAxel Dörfler     int i = 0;
522fdad9c93SAxel Dörfler 
523fdad9c93SAxel Dörfler 	if (!(diagnostic & TD_OPTIONS))
524fdad9c93SAxel Dörfler 		return;
525fdad9c93SAxel Dörfler 
526fdad9c93SAxel Dörfler 	if (direction) {
527fdad9c93SAxel Dörfler 	    output_data("td: %s suboption ",
528fdad9c93SAxel Dörfler 					direction == '<' ? "recv" : "send");
529fdad9c93SAxel Dörfler 	    if (length >= 3) {
530fdad9c93SAxel Dörfler 		int j;
531fdad9c93SAxel Dörfler 
532fdad9c93SAxel Dörfler 		i = pointer[length-2];
533fdad9c93SAxel Dörfler 		j = pointer[length-1];
534fdad9c93SAxel Dörfler 
535fdad9c93SAxel Dörfler 		if (i != IAC || j != SE) {
536fdad9c93SAxel Dörfler 		    output_data("(terminated by ");
537fdad9c93SAxel Dörfler 		    if (TELOPT_OK(i))
538fdad9c93SAxel Dörfler 			output_data("%s ", TELOPT(i));
539fdad9c93SAxel Dörfler 		    else if (TELCMD_OK(i))
540fdad9c93SAxel Dörfler 			output_data("%s ", TELCMD(i));
541fdad9c93SAxel Dörfler 		    else
542fdad9c93SAxel Dörfler 			output_data("%d ", i);
543fdad9c93SAxel Dörfler 		    if (TELOPT_OK(j))
544fdad9c93SAxel Dörfler 			output_data("%s", TELOPT(j));
545fdad9c93SAxel Dörfler 		    else if (TELCMD_OK(j))
546fdad9c93SAxel Dörfler 			output_data("%s", TELCMD(j));
547fdad9c93SAxel Dörfler 		    else
548fdad9c93SAxel Dörfler 			output_data("%d", j);
549fdad9c93SAxel Dörfler 		    output_data(", not IAC SE!) ");
550fdad9c93SAxel Dörfler 		}
551fdad9c93SAxel Dörfler 	    }
552fdad9c93SAxel Dörfler 	    length -= 2;
553fdad9c93SAxel Dörfler 	}
554fdad9c93SAxel Dörfler 	if (length < 1) {
555fdad9c93SAxel Dörfler 	    output_data("(Empty suboption??\?)");
556fdad9c93SAxel Dörfler 	    return;
557fdad9c93SAxel Dörfler 	}
558fdad9c93SAxel Dörfler 	switch (pointer[0]) {
559fdad9c93SAxel Dörfler 	case TELOPT_TTYPE:
560fdad9c93SAxel Dörfler 	    output_data("TERMINAL-TYPE ");
561fdad9c93SAxel Dörfler 	    switch (pointer[1]) {
562fdad9c93SAxel Dörfler 	    case TELQUAL_IS:
563fdad9c93SAxel Dörfler 		output_data("IS \"%.*s\"", length-2, (char *)pointer+2);
564fdad9c93SAxel Dörfler 		break;
565fdad9c93SAxel Dörfler 	    case TELQUAL_SEND:
566fdad9c93SAxel Dörfler 		output_data("SEND");
567fdad9c93SAxel Dörfler 		break;
568fdad9c93SAxel Dörfler 	    default:
569fdad9c93SAxel Dörfler 		output_data(
570fdad9c93SAxel Dörfler 				"- unknown qualifier %d (0x%x).",
571fdad9c93SAxel Dörfler 				pointer[1], pointer[1]);
572fdad9c93SAxel Dörfler 	    }
573fdad9c93SAxel Dörfler 	    break;
574fdad9c93SAxel Dörfler 	case TELOPT_TSPEED:
575fdad9c93SAxel Dörfler 	    output_data("TERMINAL-SPEED");
576fdad9c93SAxel Dörfler 	    if (length < 2) {
577fdad9c93SAxel Dörfler 		output_data(" (empty suboption??\?)");
578fdad9c93SAxel Dörfler 		break;
579fdad9c93SAxel Dörfler 	    }
580fdad9c93SAxel Dörfler 	    switch (pointer[1]) {
581fdad9c93SAxel Dörfler 	    case TELQUAL_IS:
582fdad9c93SAxel Dörfler 		output_data(" IS %.*s", length-2, (char *)pointer+2);
583fdad9c93SAxel Dörfler 		break;
584fdad9c93SAxel Dörfler 	    default:
585fdad9c93SAxel Dörfler 		if (pointer[1] == 1)
586fdad9c93SAxel Dörfler 		    output_data(" SEND");
587fdad9c93SAxel Dörfler 		else
588fdad9c93SAxel Dörfler 		    output_data(" %d (unknown)", pointer[1]);
589fdad9c93SAxel Dörfler 		for (i = 2; i < length; i++) {
590fdad9c93SAxel Dörfler 		    output_data(" ?%d?", pointer[i]);
591fdad9c93SAxel Dörfler 		}
592fdad9c93SAxel Dörfler 		break;
593fdad9c93SAxel Dörfler 	    }
594fdad9c93SAxel Dörfler 	    break;
595fdad9c93SAxel Dörfler 
596fdad9c93SAxel Dörfler 	case TELOPT_LFLOW:
597fdad9c93SAxel Dörfler 	    output_data("TOGGLE-FLOW-CONTROL");
598fdad9c93SAxel Dörfler 	    if (length < 2) {
599fdad9c93SAxel Dörfler 		output_data(" (empty suboption??\?)");
600fdad9c93SAxel Dörfler 		break;
601fdad9c93SAxel Dörfler 	    }
602fdad9c93SAxel Dörfler 	    switch (pointer[1]) {
603fdad9c93SAxel Dörfler 	    case LFLOW_OFF:
604fdad9c93SAxel Dörfler 		output_data(" OFF"); break;
605fdad9c93SAxel Dörfler 	    case LFLOW_ON:
606fdad9c93SAxel Dörfler 		output_data(" ON"); break;
607fdad9c93SAxel Dörfler 	    case LFLOW_RESTART_ANY:
608fdad9c93SAxel Dörfler 		output_data(" RESTART-ANY"); break;
609fdad9c93SAxel Dörfler 	    case LFLOW_RESTART_XON:
610fdad9c93SAxel Dörfler 		output_data(" RESTART-XON"); break;
611fdad9c93SAxel Dörfler 	    default:
612fdad9c93SAxel Dörfler 		output_data(" %d (unknown)", pointer[1]);
613fdad9c93SAxel Dörfler 	    }
614fdad9c93SAxel Dörfler 	    for (i = 2; i < length; i++) {
615fdad9c93SAxel Dörfler 		output_data(" ?%d?", pointer[i]);
616fdad9c93SAxel Dörfler 	    }
617fdad9c93SAxel Dörfler 	    break;
618fdad9c93SAxel Dörfler 
619fdad9c93SAxel Dörfler 	case TELOPT_NAWS:
620fdad9c93SAxel Dörfler 	    output_data("NAWS");
621fdad9c93SAxel Dörfler 	    if (length < 2) {
622fdad9c93SAxel Dörfler 		output_data(" (empty suboption??\?)");
623fdad9c93SAxel Dörfler 		break;
624fdad9c93SAxel Dörfler 	    }
625fdad9c93SAxel Dörfler 	    if (length == 2) {
626fdad9c93SAxel Dörfler 		output_data(" ?%d?", pointer[1]);
627fdad9c93SAxel Dörfler 		break;
628fdad9c93SAxel Dörfler 	    }
629fdad9c93SAxel Dörfler 	    output_data(" %d %d (%d)",
630fdad9c93SAxel Dörfler 		pointer[1], pointer[2],
631fdad9c93SAxel Dörfler 		(int)((((unsigned int)pointer[1])<<8)|((unsigned int)pointer[2])));
632fdad9c93SAxel Dörfler 	    if (length == 4) {
633fdad9c93SAxel Dörfler 		output_data(" ?%d?", pointer[3]);
634fdad9c93SAxel Dörfler 		break;
635fdad9c93SAxel Dörfler 	    }
636fdad9c93SAxel Dörfler 	    output_data(" %d %d (%d)",
637fdad9c93SAxel Dörfler 		pointer[3], pointer[4],
638fdad9c93SAxel Dörfler 		(int)((((unsigned int)pointer[3])<<8)|((unsigned int)pointer[4])));
639fdad9c93SAxel Dörfler 	    for (i = 5; i < length; i++) {
640fdad9c93SAxel Dörfler 		output_data(" ?%d?", pointer[i]);
641fdad9c93SAxel Dörfler 	    }
642fdad9c93SAxel Dörfler 	    break;
643fdad9c93SAxel Dörfler 
644fdad9c93SAxel Dörfler 	case TELOPT_LINEMODE:
645fdad9c93SAxel Dörfler 	    output_data("LINEMODE ");
646fdad9c93SAxel Dörfler 	    if (length < 2) {
647fdad9c93SAxel Dörfler 		output_data(" (empty suboption??\?)");
648fdad9c93SAxel Dörfler 		break;
649fdad9c93SAxel Dörfler 	    }
650fdad9c93SAxel Dörfler 	    switch (pointer[1]) {
651fdad9c93SAxel Dörfler 	    case WILL:
652fdad9c93SAxel Dörfler 		output_data("WILL ");
653fdad9c93SAxel Dörfler 		goto common;
654fdad9c93SAxel Dörfler 	    case WONT:
655fdad9c93SAxel Dörfler 		output_data("WONT ");
656fdad9c93SAxel Dörfler 		goto common;
657fdad9c93SAxel Dörfler 	    case DO:
658fdad9c93SAxel Dörfler 		output_data("DO ");
659fdad9c93SAxel Dörfler 		goto common;
660fdad9c93SAxel Dörfler 	    case DONT:
661fdad9c93SAxel Dörfler 		output_data("DONT ");
662fdad9c93SAxel Dörfler 	    common:
663fdad9c93SAxel Dörfler 		if (length < 3) {
664fdad9c93SAxel Dörfler 		    output_data("(no option??\?)");
665fdad9c93SAxel Dörfler 		    break;
666fdad9c93SAxel Dörfler 		}
667fdad9c93SAxel Dörfler 		switch (pointer[2]) {
668fdad9c93SAxel Dörfler 		case LM_FORWARDMASK:
669fdad9c93SAxel Dörfler 		    output_data("Forward Mask");
670fdad9c93SAxel Dörfler 		    for (i = 3; i < length; i++) {
671fdad9c93SAxel Dörfler 			output_data(" %x", pointer[i]);
672fdad9c93SAxel Dörfler 		    }
673fdad9c93SAxel Dörfler 		    break;
674fdad9c93SAxel Dörfler 		default:
675fdad9c93SAxel Dörfler 		    output_data("%d (unknown)", pointer[2]);
676fdad9c93SAxel Dörfler 		    for (i = 3; i < length; i++) {
677fdad9c93SAxel Dörfler 			output_data(" %d", pointer[i]);
678fdad9c93SAxel Dörfler 		    }
679fdad9c93SAxel Dörfler 		    break;
680fdad9c93SAxel Dörfler 		}
681fdad9c93SAxel Dörfler 		break;
682fdad9c93SAxel Dörfler 
683fdad9c93SAxel Dörfler 	    case LM_SLC:
684fdad9c93SAxel Dörfler 		output_data("SLC");
685fdad9c93SAxel Dörfler 		for (i = 2; i < length - 2; i += 3) {
686fdad9c93SAxel Dörfler 		    if (SLC_NAME_OK(pointer[i+SLC_FUNC]))
687fdad9c93SAxel Dörfler 			output_data(" %s", SLC_NAME(pointer[i+SLC_FUNC]));
688fdad9c93SAxel Dörfler 		    else
689fdad9c93SAxel Dörfler 			output_data(" %d", pointer[i+SLC_FUNC]);
690fdad9c93SAxel Dörfler 		    switch (pointer[i+SLC_FLAGS]&SLC_LEVELBITS) {
691fdad9c93SAxel Dörfler 		    case SLC_NOSUPPORT:
692fdad9c93SAxel Dörfler 			output_data(" NOSUPPORT"); break;
693fdad9c93SAxel Dörfler 		    case SLC_CANTCHANGE:
694fdad9c93SAxel Dörfler 			output_data(" CANTCHANGE"); break;
695fdad9c93SAxel Dörfler 		    case SLC_VARIABLE:
696fdad9c93SAxel Dörfler 			output_data(" VARIABLE"); break;
697fdad9c93SAxel Dörfler 		    case SLC_DEFAULT:
698fdad9c93SAxel Dörfler 			output_data(" DEFAULT"); break;
699fdad9c93SAxel Dörfler 		    }
700fdad9c93SAxel Dörfler 		    output_data("%s%s%s",
701fdad9c93SAxel Dörfler 			pointer[i+SLC_FLAGS]&SLC_ACK ? "|ACK" : "",
702fdad9c93SAxel Dörfler 			pointer[i+SLC_FLAGS]&SLC_FLUSHIN ? "|FLUSHIN" : "",
703fdad9c93SAxel Dörfler 			pointer[i+SLC_FLAGS]&SLC_FLUSHOUT ? "|FLUSHOUT" : "");
704fdad9c93SAxel Dörfler 		    if (pointer[i+SLC_FLAGS]& ~(SLC_ACK|SLC_FLUSHIN|
705fdad9c93SAxel Dörfler 						SLC_FLUSHOUT| SLC_LEVELBITS)) {
706fdad9c93SAxel Dörfler 			output_data("(0x%x)", pointer[i+SLC_FLAGS]);
707fdad9c93SAxel Dörfler 		    }
708fdad9c93SAxel Dörfler 		    output_data(" %d;", pointer[i+SLC_VALUE]);
709fdad9c93SAxel Dörfler 		    if ((pointer[i+SLC_VALUE] == IAC) &&
710fdad9c93SAxel Dörfler 			(pointer[i+SLC_VALUE+1] == IAC))
711fdad9c93SAxel Dörfler 				i++;
712fdad9c93SAxel Dörfler 		}
713fdad9c93SAxel Dörfler 		for (; i < length; i++) {
714fdad9c93SAxel Dörfler 		    output_data(" ?%d?", pointer[i]);
715fdad9c93SAxel Dörfler 		}
716fdad9c93SAxel Dörfler 		break;
717fdad9c93SAxel Dörfler 
718fdad9c93SAxel Dörfler 	    case LM_MODE:
719fdad9c93SAxel Dörfler 		output_data("MODE ");
720fdad9c93SAxel Dörfler 		if (length < 3) {
721fdad9c93SAxel Dörfler 		    output_data("(no mode??\?)");
722fdad9c93SAxel Dörfler 		    break;
723fdad9c93SAxel Dörfler 		}
724fdad9c93SAxel Dörfler 		{
725fdad9c93SAxel Dörfler 		    char tbuf[32];
726fdad9c93SAxel Dörfler 		    sprintf(tbuf, "%s%s%s%s%s",
727fdad9c93SAxel Dörfler 			pointer[2]&MODE_EDIT ? "|EDIT" : "",
728fdad9c93SAxel Dörfler 			pointer[2]&MODE_TRAPSIG ? "|TRAPSIG" : "",
729fdad9c93SAxel Dörfler 			pointer[2]&MODE_SOFT_TAB ? "|SOFT_TAB" : "",
730fdad9c93SAxel Dörfler 			pointer[2]&MODE_LIT_ECHO ? "|LIT_ECHO" : "",
731fdad9c93SAxel Dörfler 			pointer[2]&MODE_ACK ? "|ACK" : "");
732fdad9c93SAxel Dörfler 		    output_data("%s", tbuf[1] ? &tbuf[1] : "0");
733fdad9c93SAxel Dörfler 		}
734fdad9c93SAxel Dörfler 		if (pointer[2]&~(MODE_EDIT|MODE_TRAPSIG|MODE_ACK)) {
735fdad9c93SAxel Dörfler 		    output_data(" (0x%x)", pointer[2]);
736fdad9c93SAxel Dörfler 		}
737fdad9c93SAxel Dörfler 		for (i = 3; i < length; i++) {
738fdad9c93SAxel Dörfler 		    output_data(" ?0x%x?", pointer[i]);
739fdad9c93SAxel Dörfler 		}
740fdad9c93SAxel Dörfler 		break;
741fdad9c93SAxel Dörfler 	    default:
742fdad9c93SAxel Dörfler 		output_data("%d (unknown)", pointer[1]);
743fdad9c93SAxel Dörfler 		for (i = 2; i < length; i++) {
744fdad9c93SAxel Dörfler 		    output_data(" %d", pointer[i]);
745fdad9c93SAxel Dörfler 		}
746fdad9c93SAxel Dörfler 	    }
747fdad9c93SAxel Dörfler 	    break;
748fdad9c93SAxel Dörfler 
749fdad9c93SAxel Dörfler 	case TELOPT_STATUS: {
750fdad9c93SAxel Dörfler 	    const char *cp;
751fdad9c93SAxel Dörfler 	    int j, k;
752fdad9c93SAxel Dörfler 
753fdad9c93SAxel Dörfler 	    output_data("STATUS");
754fdad9c93SAxel Dörfler 
755fdad9c93SAxel Dörfler 	    switch (pointer[1]) {
756fdad9c93SAxel Dörfler 	    default:
757fdad9c93SAxel Dörfler 		if (pointer[1] == TELQUAL_SEND)
758fdad9c93SAxel Dörfler 		    output_data(" SEND");
759fdad9c93SAxel Dörfler 		else
760fdad9c93SAxel Dörfler 		    output_data(" %d (unknown)", pointer[1]);
761fdad9c93SAxel Dörfler 		for (i = 2; i < length; i++) {
762fdad9c93SAxel Dörfler 		    output_data(" ?%d?", pointer[i]);
763fdad9c93SAxel Dörfler 		}
764fdad9c93SAxel Dörfler 		break;
765fdad9c93SAxel Dörfler 	    case TELQUAL_IS:
766fdad9c93SAxel Dörfler 		output_data(" IS\r\n");
767fdad9c93SAxel Dörfler 
768fdad9c93SAxel Dörfler 		for (i = 2; i < length; i++) {
769fdad9c93SAxel Dörfler 		    switch(pointer[i]) {
770fdad9c93SAxel Dörfler 		    case DO:	cp = "DO"; goto common2;
771fdad9c93SAxel Dörfler 		    case DONT:	cp = "DONT"; goto common2;
772fdad9c93SAxel Dörfler 		    case WILL:	cp = "WILL"; goto common2;
773fdad9c93SAxel Dörfler 		    case WONT:	cp = "WONT"; goto common2;
774fdad9c93SAxel Dörfler 		    common2:
775fdad9c93SAxel Dörfler 			i++;
776fdad9c93SAxel Dörfler 			if (TELOPT_OK(pointer[i]))
777fdad9c93SAxel Dörfler 			    output_data(" %s %s", cp, TELOPT(pointer[i]));
778fdad9c93SAxel Dörfler 			else
779fdad9c93SAxel Dörfler 			    output_data(" %s %d", cp, pointer[i]);
780fdad9c93SAxel Dörfler 
781fdad9c93SAxel Dörfler 			output_data("\r\n");
782fdad9c93SAxel Dörfler 			break;
783fdad9c93SAxel Dörfler 
784fdad9c93SAxel Dörfler 		    case SB:
785fdad9c93SAxel Dörfler 			output_data(" SB ");
786fdad9c93SAxel Dörfler 			i++;
787fdad9c93SAxel Dörfler 			j = k = i;
788fdad9c93SAxel Dörfler 			while (j < length) {
789fdad9c93SAxel Dörfler 			    if (pointer[j] == SE) {
790fdad9c93SAxel Dörfler 				if (j+1 == length)
791fdad9c93SAxel Dörfler 				    break;
792fdad9c93SAxel Dörfler 				if (pointer[j+1] == SE)
793fdad9c93SAxel Dörfler 				    j++;
794fdad9c93SAxel Dörfler 				else
795fdad9c93SAxel Dörfler 				    break;
796fdad9c93SAxel Dörfler 			    }
797fdad9c93SAxel Dörfler 			    pointer[k++] = pointer[j++];
798fdad9c93SAxel Dörfler 			}
799fdad9c93SAxel Dörfler 			printsub(0, &pointer[i], k - i);
800fdad9c93SAxel Dörfler 			if (i < length) {
801fdad9c93SAxel Dörfler 			    output_data(" SE");
802fdad9c93SAxel Dörfler 			    i = j;
803fdad9c93SAxel Dörfler 			} else
804fdad9c93SAxel Dörfler 			    i = j - 1;
805fdad9c93SAxel Dörfler 
806fdad9c93SAxel Dörfler 			output_data("\r\n");
807fdad9c93SAxel Dörfler 
808fdad9c93SAxel Dörfler 			break;
809fdad9c93SAxel Dörfler 
810fdad9c93SAxel Dörfler 		    default:
811fdad9c93SAxel Dörfler 			output_data(" %d", pointer[i]);
812fdad9c93SAxel Dörfler 			break;
813fdad9c93SAxel Dörfler 		    }
814fdad9c93SAxel Dörfler 		}
815fdad9c93SAxel Dörfler 		break;
816fdad9c93SAxel Dörfler 	    }
817fdad9c93SAxel Dörfler 	    break;
818fdad9c93SAxel Dörfler 	  }
819fdad9c93SAxel Dörfler 
820fdad9c93SAxel Dörfler 	case TELOPT_XDISPLOC:
821fdad9c93SAxel Dörfler 	    output_data("X-DISPLAY-LOCATION ");
822fdad9c93SAxel Dörfler 	    switch (pointer[1]) {
823fdad9c93SAxel Dörfler 	    case TELQUAL_IS:
824fdad9c93SAxel Dörfler 		output_data("IS \"%.*s\"", length-2, (char *)pointer+2);
825fdad9c93SAxel Dörfler 		break;
826fdad9c93SAxel Dörfler 	    case TELQUAL_SEND:
827fdad9c93SAxel Dörfler 		output_data("SEND");
828fdad9c93SAxel Dörfler 		break;
829fdad9c93SAxel Dörfler 	    default:
830fdad9c93SAxel Dörfler 		output_data("- unknown qualifier %d (0x%x).",
831fdad9c93SAxel Dörfler 				pointer[1], pointer[1]);
832fdad9c93SAxel Dörfler 	    }
833fdad9c93SAxel Dörfler 	    break;
834fdad9c93SAxel Dörfler 
835fdad9c93SAxel Dörfler 	case TELOPT_NEW_ENVIRON:
836fdad9c93SAxel Dörfler 	    output_data("NEW-ENVIRON ");
837fdad9c93SAxel Dörfler 	    goto env_common1;
838fdad9c93SAxel Dörfler 	case TELOPT_OLD_ENVIRON:
839fdad9c93SAxel Dörfler 	    output_data("OLD-ENVIRON");
840fdad9c93SAxel Dörfler 	env_common1:
841fdad9c93SAxel Dörfler 	    switch (pointer[1]) {
842fdad9c93SAxel Dörfler 	    case TELQUAL_IS:
843fdad9c93SAxel Dörfler 		output_data("IS ");
844fdad9c93SAxel Dörfler 		goto env_common;
845fdad9c93SAxel Dörfler 	    case TELQUAL_SEND:
846fdad9c93SAxel Dörfler 		output_data("SEND ");
847fdad9c93SAxel Dörfler 		goto env_common;
848fdad9c93SAxel Dörfler 	    case TELQUAL_INFO:
849fdad9c93SAxel Dörfler 		output_data("INFO ");
850fdad9c93SAxel Dörfler 	    env_common:
851fdad9c93SAxel Dörfler 		{
852fdad9c93SAxel Dörfler 		    int noquote = 2;
853fdad9c93SAxel Dörfler 		    for (i = 2; i < length; i++ ) {
854fdad9c93SAxel Dörfler 			switch (pointer[i]) {
855fdad9c93SAxel Dörfler 			case NEW_ENV_VAR:
856*6b99b206SAugustin Cavalier 			    output_data("%s", "\" VAR " + noquote);
857fdad9c93SAxel Dörfler 			    noquote = 2;
858fdad9c93SAxel Dörfler 			    break;
859fdad9c93SAxel Dörfler 
860fdad9c93SAxel Dörfler 			case NEW_ENV_VALUE:
861*6b99b206SAugustin Cavalier 			    output_data("%s", "\" VALUE " + noquote);
862fdad9c93SAxel Dörfler 			    noquote = 2;
863fdad9c93SAxel Dörfler 			    break;
864fdad9c93SAxel Dörfler 
865fdad9c93SAxel Dörfler 			case ENV_ESC:
866*6b99b206SAugustin Cavalier 			    output_data("%s", "\" ESC " + noquote);
867fdad9c93SAxel Dörfler 			    noquote = 2;
868fdad9c93SAxel Dörfler 			    break;
869fdad9c93SAxel Dörfler 
870fdad9c93SAxel Dörfler 			case ENV_USERVAR:
871*6b99b206SAugustin Cavalier 			    output_data("%s", "\" USERVAR " + noquote);
872fdad9c93SAxel Dörfler 			    noquote = 2;
873fdad9c93SAxel Dörfler 			    break;
874fdad9c93SAxel Dörfler 
875fdad9c93SAxel Dörfler 			default:
876fdad9c93SAxel Dörfler 			    if (isprint(pointer[i]) && pointer[i] != '"') {
877fdad9c93SAxel Dörfler 				if (noquote) {
878fdad9c93SAxel Dörfler 				    output_data("\"");
879fdad9c93SAxel Dörfler 				    noquote = 0;
880fdad9c93SAxel Dörfler 				}
881fdad9c93SAxel Dörfler 				output_data("%c", pointer[i]);
882fdad9c93SAxel Dörfler 			    } else {
883fdad9c93SAxel Dörfler 				output_data("\" %03o " + noquote,
884fdad9c93SAxel Dörfler 							pointer[i]);
885fdad9c93SAxel Dörfler 				noquote = 2;
886fdad9c93SAxel Dörfler 			    }
887fdad9c93SAxel Dörfler 			    break;
888fdad9c93SAxel Dörfler 			}
889fdad9c93SAxel Dörfler 		    }
890fdad9c93SAxel Dörfler 		    if (!noquote)
891fdad9c93SAxel Dörfler 			output_data("\"");
892fdad9c93SAxel Dörfler 		    break;
893fdad9c93SAxel Dörfler 		}
894fdad9c93SAxel Dörfler 	    }
895fdad9c93SAxel Dörfler 	    break;
896fdad9c93SAxel Dörfler 
897fdad9c93SAxel Dörfler #ifdef	AUTHENTICATION
898fdad9c93SAxel Dörfler 	case TELOPT_AUTHENTICATION:
899fdad9c93SAxel Dörfler 	    output_data("AUTHENTICATION");
900fdad9c93SAxel Dörfler 
901fdad9c93SAxel Dörfler 	    if (length < 2) {
902fdad9c93SAxel Dörfler 		output_data(" (empty suboption??\?)");
903fdad9c93SAxel Dörfler 		break;
904fdad9c93SAxel Dörfler 	    }
905fdad9c93SAxel Dörfler 	    switch (pointer[1]) {
906fdad9c93SAxel Dörfler 	    case TELQUAL_REPLY:
907fdad9c93SAxel Dörfler 	    case TELQUAL_IS:
908fdad9c93SAxel Dörfler 		output_data(" %s ", (pointer[1] == TELQUAL_IS) ?
909fdad9c93SAxel Dörfler 							"IS" : "REPLY");
910fdad9c93SAxel Dörfler 		if (AUTHTYPE_NAME_OK(pointer[2]))
911fdad9c93SAxel Dörfler 		    output_data("%s ", AUTHTYPE_NAME(pointer[2]));
912fdad9c93SAxel Dörfler 		else
913fdad9c93SAxel Dörfler 		    output_data("%d ", pointer[2]);
914fdad9c93SAxel Dörfler 		if (length < 3) {
915fdad9c93SAxel Dörfler 		    output_data("(partial suboption??\?)");
916fdad9c93SAxel Dörfler 		    break;
917fdad9c93SAxel Dörfler 		}
918fdad9c93SAxel Dörfler 		output_data("%s|%s",
919fdad9c93SAxel Dörfler 			((pointer[3] & AUTH_WHO_MASK) == AUTH_WHO_CLIENT) ?
920fdad9c93SAxel Dörfler 			"CLIENT" : "SERVER",
921fdad9c93SAxel Dörfler 			((pointer[3] & AUTH_HOW_MASK) == AUTH_HOW_MUTUAL) ?
922fdad9c93SAxel Dörfler 			"MUTUAL" : "ONE-WAY");
923fdad9c93SAxel Dörfler 
924fdad9c93SAxel Dörfler     		{
925fdad9c93SAxel Dörfler 		    char buf[512];
926fdad9c93SAxel Dörfler 		    auth_printsub(&pointer[1], length - 1, buf, sizeof(buf));
927fdad9c93SAxel Dörfler 		    output_data("%s", buf);
928fdad9c93SAxel Dörfler 		}
929fdad9c93SAxel Dörfler 		break;
930fdad9c93SAxel Dörfler 
931fdad9c93SAxel Dörfler 	    case TELQUAL_SEND:
932fdad9c93SAxel Dörfler 		i = 2;
933fdad9c93SAxel Dörfler 		output_data(" SEND ");
934fdad9c93SAxel Dörfler 		while (i < length) {
935fdad9c93SAxel Dörfler 		    if (AUTHTYPE_NAME_OK(pointer[i]))
936fdad9c93SAxel Dörfler 			output_data("%s ", AUTHTYPE_NAME(pointer[i]));
937fdad9c93SAxel Dörfler 		    else
938fdad9c93SAxel Dörfler 			output_data("%d ", pointer[i]);
939fdad9c93SAxel Dörfler 		    if (++i >= length) {
940fdad9c93SAxel Dörfler 			output_data("(partial suboption??\?)");
941fdad9c93SAxel Dörfler 			break;
942fdad9c93SAxel Dörfler 		    }
943fdad9c93SAxel Dörfler 		    output_data("%s|%s ",
944fdad9c93SAxel Dörfler 			((pointer[i] & AUTH_WHO_MASK) == AUTH_WHO_CLIENT) ?
945fdad9c93SAxel Dörfler 							"CLIENT" : "SERVER",
946fdad9c93SAxel Dörfler 			((pointer[i] & AUTH_HOW_MASK) == AUTH_HOW_MUTUAL) ?
947fdad9c93SAxel Dörfler 							"MUTUAL" : "ONE-WAY");
948fdad9c93SAxel Dörfler 		    ++i;
949fdad9c93SAxel Dörfler 		}
950fdad9c93SAxel Dörfler 		break;
951fdad9c93SAxel Dörfler 
952fdad9c93SAxel Dörfler 	    case TELQUAL_NAME:
953fdad9c93SAxel Dörfler 		output_data(" NAME \"%.*s\"", length - 2, pointer + 2);
954fdad9c93SAxel Dörfler 		break;
955fdad9c93SAxel Dörfler 
956fdad9c93SAxel Dörfler 	    default:
957fdad9c93SAxel Dörfler 		    for (i = 2; i < length; i++) {
958fdad9c93SAxel Dörfler 			output_data(" ?%d?", pointer[i]);
959fdad9c93SAxel Dörfler 		    }
960fdad9c93SAxel Dörfler 		    break;
961fdad9c93SAxel Dörfler 	    }
962fdad9c93SAxel Dörfler 	    break;
963fdad9c93SAxel Dörfler #endif
964fdad9c93SAxel Dörfler 
965fdad9c93SAxel Dörfler #ifdef	ENCRYPTION
966fdad9c93SAxel Dörfler 	case TELOPT_ENCRYPT:
967fdad9c93SAxel Dörfler 	    output_data("ENCRYPT");
968fdad9c93SAxel Dörfler 	    if (length < 2) {
969fdad9c93SAxel Dörfler 		output_data(" (empty suboption??\?)");
970fdad9c93SAxel Dörfler 		break;
971fdad9c93SAxel Dörfler 	    }
972fdad9c93SAxel Dörfler 	    switch (pointer[1]) {
973fdad9c93SAxel Dörfler 	    case ENCRYPT_START:
974fdad9c93SAxel Dörfler 		output_data(" START");
975fdad9c93SAxel Dörfler 		break;
976fdad9c93SAxel Dörfler 
977fdad9c93SAxel Dörfler 	    case ENCRYPT_END:
978fdad9c93SAxel Dörfler 		output_data(" END");
979fdad9c93SAxel Dörfler 		break;
980fdad9c93SAxel Dörfler 
981fdad9c93SAxel Dörfler 	    case ENCRYPT_REQSTART:
982fdad9c93SAxel Dörfler 		output_data(" REQUEST-START");
983fdad9c93SAxel Dörfler 		break;
984fdad9c93SAxel Dörfler 
985fdad9c93SAxel Dörfler 	    case ENCRYPT_REQEND:
986fdad9c93SAxel Dörfler 		output_data(" REQUEST-END");
987fdad9c93SAxel Dörfler 		break;
988fdad9c93SAxel Dörfler 
989fdad9c93SAxel Dörfler 	    case ENCRYPT_IS:
990fdad9c93SAxel Dörfler 	    case ENCRYPT_REPLY:
991fdad9c93SAxel Dörfler 		output_data(" %s ", (pointer[1] == ENCRYPT_IS) ?
992fdad9c93SAxel Dörfler 							"IS" : "REPLY");
993fdad9c93SAxel Dörfler 		if (length < 3) {
994fdad9c93SAxel Dörfler 		    output_data(" (partial suboption??\?)");
995fdad9c93SAxel Dörfler 		    break;
996fdad9c93SAxel Dörfler 		}
997fdad9c93SAxel Dörfler 		if (ENCTYPE_NAME_OK(pointer[2]))
998fdad9c93SAxel Dörfler 		    output_data("%s ", ENCTYPE_NAME(pointer[2]));
999fdad9c93SAxel Dörfler 		else
1000fdad9c93SAxel Dörfler 		    output_data(" %d (unknown)", pointer[2]);
1001fdad9c93SAxel Dörfler 
1002fdad9c93SAxel Dörfler 		{
1003fdad9c93SAxel Dörfler 		    char buf[512];
1004fdad9c93SAxel Dörfler 		    encrypt_printsub(&pointer[1], length - 1, buf, sizeof(buf));
1005fdad9c93SAxel Dörfler 		    output_data("%s", buf);
1006fdad9c93SAxel Dörfler 		}
1007fdad9c93SAxel Dörfler 		break;
1008fdad9c93SAxel Dörfler 
1009fdad9c93SAxel Dörfler 	    case ENCRYPT_SUPPORT:
1010fdad9c93SAxel Dörfler 		i = 2;
1011fdad9c93SAxel Dörfler 		output_data(" SUPPORT ");
1012fdad9c93SAxel Dörfler 		while (i < length) {
1013fdad9c93SAxel Dörfler 		    if (ENCTYPE_NAME_OK(pointer[i]))
1014fdad9c93SAxel Dörfler 			output_data("%s ", ENCTYPE_NAME(pointer[i]));
1015fdad9c93SAxel Dörfler 		    else
1016fdad9c93SAxel Dörfler 			output_data("%d ", pointer[i]);
1017fdad9c93SAxel Dörfler 		    i++;
1018fdad9c93SAxel Dörfler 		}
1019fdad9c93SAxel Dörfler 		break;
1020fdad9c93SAxel Dörfler 
1021fdad9c93SAxel Dörfler 	    case ENCRYPT_ENC_KEYID:
1022fdad9c93SAxel Dörfler 		output_data(" ENC_KEYID");
1023fdad9c93SAxel Dörfler 		goto encommon;
1024fdad9c93SAxel Dörfler 
1025fdad9c93SAxel Dörfler 	    case ENCRYPT_DEC_KEYID:
1026fdad9c93SAxel Dörfler 		output_data(" DEC_KEYID");
1027fdad9c93SAxel Dörfler 		goto encommon;
1028fdad9c93SAxel Dörfler 
1029fdad9c93SAxel Dörfler 	    default:
1030fdad9c93SAxel Dörfler 		output_data(" %d (unknown)", pointer[1]);
1031fdad9c93SAxel Dörfler 	    encommon:
1032fdad9c93SAxel Dörfler 		for (i = 2; i < length; i++) {
1033fdad9c93SAxel Dörfler 		    output_data(" %d", pointer[i]);
1034fdad9c93SAxel Dörfler 		}
1035fdad9c93SAxel Dörfler 		break;
1036fdad9c93SAxel Dörfler 	    }
1037fdad9c93SAxel Dörfler 	    break;
1038fdad9c93SAxel Dörfler #endif	/* ENCRYPTION */
1039fdad9c93SAxel Dörfler 
1040fdad9c93SAxel Dörfler 	default:
1041fdad9c93SAxel Dörfler 	    if (TELOPT_OK(pointer[0]))
1042fdad9c93SAxel Dörfler 		output_data("%s (unknown)", TELOPT(pointer[0]));
1043fdad9c93SAxel Dörfler 	    else
1044fdad9c93SAxel Dörfler 		output_data("%d (unknown)", pointer[i]);
1045fdad9c93SAxel Dörfler 	    for (i = 1; i < length; i++) {
1046fdad9c93SAxel Dörfler 		output_data(" %d", pointer[i]);
1047fdad9c93SAxel Dörfler 	    }
1048fdad9c93SAxel Dörfler 	    break;
1049fdad9c93SAxel Dörfler 	}
1050fdad9c93SAxel Dörfler 	output_data("\r\n");
1051fdad9c93SAxel Dörfler }
1052fdad9c93SAxel Dörfler 
1053fdad9c93SAxel Dörfler /*
1054fdad9c93SAxel Dörfler  * Dump a data buffer in hex and ascii to the output data stream.
1055fdad9c93SAxel Dörfler  */
1056fdad9c93SAxel Dörfler void
printdata(const char * tag,char * ptr,int cnt)1057fdad9c93SAxel Dörfler printdata(const char *tag, char *ptr, int cnt)
1058fdad9c93SAxel Dörfler {
1059fdad9c93SAxel Dörfler 	int i;
1060fdad9c93SAxel Dörfler 	char xbuf[30];
1061fdad9c93SAxel Dörfler 
1062fdad9c93SAxel Dörfler 	while (cnt) {
1063fdad9c93SAxel Dörfler 		/* flush net output buffer if no room for new data) */
1064fdad9c93SAxel Dörfler 		if ((&netobuf[BUFSIZ] - nfrontp) < 80) {
1065fdad9c93SAxel Dörfler 			netflush();
1066fdad9c93SAxel Dörfler 		}
1067fdad9c93SAxel Dörfler 
1068fdad9c93SAxel Dörfler 		/* add a line of output */
1069fdad9c93SAxel Dörfler 		output_data("%s: ", tag);
1070fdad9c93SAxel Dörfler 		for (i = 0; i < 20 && cnt; i++) {
1071fdad9c93SAxel Dörfler 			output_data("%02x", *ptr);
1072fdad9c93SAxel Dörfler 			if (isprint(*ptr)) {
1073fdad9c93SAxel Dörfler 				xbuf[i] = *ptr;
1074fdad9c93SAxel Dörfler 			} else {
1075fdad9c93SAxel Dörfler 				xbuf[i] = '.';
1076fdad9c93SAxel Dörfler 			}
1077fdad9c93SAxel Dörfler 			if (i % 2) {
1078fdad9c93SAxel Dörfler 				output_data(" ");
1079fdad9c93SAxel Dörfler 			}
1080fdad9c93SAxel Dörfler 			cnt--;
1081fdad9c93SAxel Dörfler 			ptr++;
1082fdad9c93SAxel Dörfler 		}
1083fdad9c93SAxel Dörfler 		xbuf[i] = '\0';
1084fdad9c93SAxel Dörfler 		output_data(" %s\r\n", xbuf );
1085fdad9c93SAxel Dörfler 	}
1086fdad9c93SAxel Dörfler }
1087fdad9c93SAxel Dörfler #endif /* DIAGNOSTICS */
1088