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