Home | History | Annotate | Line # | Download | only in telnetd
slc.c revision 1.8
      1  1.8    perry /*	$NetBSD: slc.c,v 1.8 1998/08/10 02:57:24 perry Exp $	*/
      2  1.5  thorpej 
      3  1.1      cgd /*
      4  1.3      cgd  * Copyright (c) 1989, 1993
      5  1.3      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.1      cgd  * 3. All advertising materials mentioning features or use of this software
     16  1.1      cgd  *    must display the following acknowledgement:
     17  1.1      cgd  *	This product includes software developed by the University of
     18  1.1      cgd  *	California, Berkeley and its contributors.
     19  1.1      cgd  * 4. Neither the name of the University nor the names of its contributors
     20  1.1      cgd  *    may be used to endorse or promote products derived from this software
     21  1.1      cgd  *    without specific prior written permission.
     22  1.1      cgd  *
     23  1.1      cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24  1.1      cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25  1.1      cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26  1.1      cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27  1.1      cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28  1.1      cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29  1.1      cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30  1.1      cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31  1.1      cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32  1.1      cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33  1.1      cgd  * SUCH DAMAGE.
     34  1.1      cgd  */
     35  1.1      cgd 
     36  1.6      mrg #include <sys/cdefs.h>
     37  1.1      cgd #ifndef lint
     38  1.5  thorpej #if 0
     39  1.5  thorpej static char sccsid[] = "@(#)slc.c	8.1 (Berkeley) 6/4/93";
     40  1.5  thorpej #else
     41  1.8    perry __RCSID("$NetBSD: slc.c,v 1.8 1998/08/10 02:57:24 perry Exp $");
     42  1.5  thorpej #endif
     43  1.1      cgd #endif /* not lint */
     44  1.1      cgd 
     45  1.1      cgd #include "telnetd.h"
     46  1.1      cgd 
     47  1.1      cgd #ifdef	LINEMODE
     48  1.1      cgd /*
     49  1.1      cgd  * local varibles
     50  1.1      cgd  */
     51  1.1      cgd static unsigned char	*def_slcbuf = (unsigned char *)0;
     52  1.1      cgd static int		def_slclen = 0;
     53  1.1      cgd static int		slcchange;	/* change to slc is requested */
     54  1.1      cgd static unsigned char	*slcptr;	/* pointer into slc buffer */
     55  1.1      cgd static unsigned char	slcbuf[NSLC*6];	/* buffer for slc negotiation */
     56  1.1      cgd 
     57  1.6      mrg void default_slc __P((void));
     58  1.6      mrg int end_slc __P((unsigned char **));
     59  1.6      mrg void process_slc __P((u_int, u_int, cc_t));
     60  1.6      mrg 
     61  1.1      cgd /*
     62  1.1      cgd  * send_slc
     63  1.1      cgd  *
     64  1.1      cgd  * Write out the current special characters to the client.
     65  1.1      cgd  */
     66  1.1      cgd 	void
     67  1.1      cgd send_slc()
     68  1.1      cgd {
     69  1.1      cgd 	register int i;
     70  1.1      cgd 
     71  1.1      cgd 	/*
     72  1.1      cgd 	 * Send out list of triplets of special characters
     73  1.1      cgd 	 * to client.  We only send info on the characters
     74  1.1      cgd 	 * that are currently supported.
     75  1.1      cgd 	 */
     76  1.1      cgd 	for (i = 1; i <= NSLC; i++) {
     77  1.1      cgd 		if ((slctab[i].defset.flag & SLC_LEVELBITS) == SLC_NOSUPPORT)
     78  1.1      cgd 			continue;
     79  1.1      cgd 		add_slc((unsigned char)i, slctab[i].current.flag,
     80  1.1      cgd 							slctab[i].current.val);
     81  1.1      cgd 	}
     82  1.1      cgd 
     83  1.1      cgd }  /* end of send_slc */
     84  1.1      cgd 
     85  1.1      cgd /*
     86  1.1      cgd  * default_slc
     87  1.1      cgd  *
     88  1.1      cgd  * Set pty special characters to all the defaults.
     89  1.1      cgd  */
     90  1.1      cgd 	void
     91  1.1      cgd default_slc()
     92  1.1      cgd {
     93  1.1      cgd 	register int i;
     94  1.1      cgd 
     95  1.1      cgd 	for (i = 1; i <= NSLC; i++) {
     96  1.1      cgd 		slctab[i].current.val = slctab[i].defset.val;
     97  1.1      cgd 		if (slctab[i].current.val == (cc_t)(_POSIX_VDISABLE))
     98  1.1      cgd 			slctab[i].current.flag = SLC_NOSUPPORT;
     99  1.1      cgd 		else
    100  1.1      cgd 			slctab[i].current.flag = slctab[i].defset.flag;
    101  1.1      cgd 		if (slctab[i].sptr) {
    102  1.1      cgd 			*(slctab[i].sptr) = slctab[i].defset.val;
    103  1.1      cgd 		}
    104  1.1      cgd 	}
    105  1.1      cgd 	slcchange = 1;
    106  1.1      cgd 
    107  1.1      cgd }  /* end of default_slc */
    108  1.1      cgd #endif	/* LINEMODE */
    109  1.1      cgd 
    110  1.1      cgd /*
    111  1.1      cgd  * get_slc_defaults
    112  1.1      cgd  *
    113  1.1      cgd  * Initialize the slc mapping table.
    114  1.1      cgd  */
    115  1.1      cgd 	void
    116  1.1      cgd get_slc_defaults()
    117  1.1      cgd {
    118  1.1      cgd 	register int i;
    119  1.1      cgd 
    120  1.1      cgd 	init_termbuf();
    121  1.1      cgd 
    122  1.1      cgd 	for (i = 1; i <= NSLC; i++) {
    123  1.7    mikel 		slctab[i].defset.flag =
    124  1.1      cgd 			spcset(i, &slctab[i].defset.val, &slctab[i].sptr);
    125  1.7    mikel 		slctab[i].current.flag = SLC_NOSUPPORT;
    126  1.7    mikel 		slctab[i].current.val = 0;
    127  1.1      cgd 	}
    128  1.1      cgd 
    129  1.1      cgd }  /* end of get_slc_defaults */
    130  1.1      cgd 
    131  1.1      cgd #ifdef	LINEMODE
    132  1.1      cgd /*
    133  1.1      cgd  * add_slc
    134  1.1      cgd  *
    135  1.1      cgd  * Add an slc triplet to the slc buffer.
    136  1.1      cgd  */
    137  1.1      cgd 	void
    138  1.1      cgd add_slc(func, flag, val)
    139  1.1      cgd 	register char func, flag;
    140  1.1      cgd 	register cc_t val;
    141  1.1      cgd {
    142  1.1      cgd 
    143  1.1      cgd 	if ((*slcptr++ = (unsigned char)func) == 0xff)
    144  1.1      cgd 		*slcptr++ = 0xff;
    145  1.1      cgd 
    146  1.1      cgd 	if ((*slcptr++ = (unsigned char)flag) == 0xff)
    147  1.1      cgd 		*slcptr++ = 0xff;
    148  1.1      cgd 
    149  1.1      cgd 	if ((*slcptr++ = (unsigned char)val) == 0xff)
    150  1.1      cgd 		*slcptr++ = 0xff;
    151  1.1      cgd 
    152  1.1      cgd }  /* end of add_slc */
    153  1.1      cgd 
    154  1.1      cgd /*
    155  1.1      cgd  * start_slc
    156  1.1      cgd  *
    157  1.1      cgd  * Get ready to process incoming slc's and respond to them.
    158  1.1      cgd  *
    159  1.1      cgd  * The parameter getit is non-zero if it is necessary to grab a copy
    160  1.1      cgd  * of the terminal control structures.
    161  1.1      cgd  */
    162  1.1      cgd 	void
    163  1.1      cgd start_slc(getit)
    164  1.1      cgd 	register int getit;
    165  1.1      cgd {
    166  1.1      cgd 
    167  1.1      cgd 	slcchange = 0;
    168  1.1      cgd 	if (getit)
    169  1.1      cgd 		init_termbuf();
    170  1.6      mrg 	(void)snprintf((char *)slcbuf, sizeof slcbuf, "%c%c%c%c",
    171  1.1      cgd 					IAC, SB, TELOPT_LINEMODE, LM_SLC);
    172  1.1      cgd 	slcptr = slcbuf + 4;
    173  1.1      cgd 
    174  1.1      cgd }  /* end of start_slc */
    175  1.1      cgd 
    176  1.1      cgd /*
    177  1.1      cgd  * end_slc
    178  1.1      cgd  *
    179  1.1      cgd  * Finish up the slc negotiation.  If something to send, then send it.
    180  1.1      cgd  */
    181  1.1      cgd 	int
    182  1.1      cgd end_slc(bufp)
    183  1.1      cgd 	register unsigned char **bufp;
    184  1.1      cgd {
    185  1.1      cgd 	register int len;
    186  1.1      cgd 
    187  1.1      cgd 	/*
    188  1.1      cgd 	 * If a change has occured, store the new terminal control
    189  1.1      cgd 	 * structures back to the terminal driver.
    190  1.1      cgd 	 */
    191  1.1      cgd 	if (slcchange) {
    192  1.1      cgd 		set_termbuf();
    193  1.1      cgd 	}
    194  1.1      cgd 
    195  1.1      cgd 	/*
    196  1.1      cgd 	 * If the pty state has not yet been fully processed and there is a
    197  1.1      cgd 	 * deferred slc request from the client, then do not send any
    198  1.1      cgd 	 * sort of slc negotiation now.  We will respond to the client's
    199  1.1      cgd 	 * request very soon.
    200  1.1      cgd 	 */
    201  1.1      cgd 	if (def_slcbuf && (terminit() == 0)) {
    202  1.1      cgd 		return(0);
    203  1.1      cgd 	}
    204  1.1      cgd 
    205  1.1      cgd 	if (slcptr > (slcbuf + 4)) {
    206  1.1      cgd 		if (bufp) {
    207  1.1      cgd 			*bufp = &slcbuf[4];
    208  1.1      cgd 			return(slcptr - slcbuf - 4);
    209  1.1      cgd 		} else {
    210  1.1      cgd 			(void) sprintf((char *)slcptr, "%c%c", IAC, SE);
    211  1.1      cgd 			slcptr += 2;
    212  1.1      cgd 			len = slcptr - slcbuf;
    213  1.1      cgd 			writenet(slcbuf, len);
    214  1.1      cgd 			netflush();  /* force it out immediately */
    215  1.3      cgd 			DIAG(TD_OPTIONS, printsub('>', slcbuf+2, len-2););
    216  1.1      cgd 		}
    217  1.1      cgd 	}
    218  1.1      cgd 	return (0);
    219  1.1      cgd 
    220  1.1      cgd }  /* end of end_slc */
    221  1.1      cgd 
    222  1.1      cgd /*
    223  1.1      cgd  * process_slc
    224  1.1      cgd  *
    225  1.1      cgd  * Figure out what to do about the client's slc
    226  1.1      cgd  */
    227  1.1      cgd 	void
    228  1.1      cgd process_slc(func, flag, val)
    229  1.6      mrg 	u_int func, flag;
    230  1.6      mrg 	cc_t val;
    231  1.1      cgd {
    232  1.6      mrg 	int hislevel, mylevel, ack;
    233  1.1      cgd 
    234  1.1      cgd 	/*
    235  1.1      cgd 	 * Ensure that we know something about this function
    236  1.1      cgd 	 */
    237  1.1      cgd 	if (func > NSLC) {
    238  1.1      cgd 		add_slc(func, SLC_NOSUPPORT, 0);
    239  1.1      cgd 		return;
    240  1.1      cgd 	}
    241  1.1      cgd 
    242  1.1      cgd 	/*
    243  1.1      cgd 	 * Process the special case requests of 0 SLC_DEFAULT 0
    244  1.1      cgd 	 * and 0 SLC_VARIABLE 0.  Be a little forgiving here, don't
    245  1.1      cgd 	 * worry about whether the value is actually 0 or not.
    246  1.1      cgd 	 */
    247  1.1      cgd 	if (func == 0) {
    248  1.1      cgd 		if ((flag = flag & SLC_LEVELBITS) == SLC_DEFAULT) {
    249  1.1      cgd 			default_slc();
    250  1.1      cgd 			send_slc();
    251  1.1      cgd 		} else if (flag == SLC_VARIABLE) {
    252  1.1      cgd 			send_slc();
    253  1.1      cgd 		}
    254  1.1      cgd 		return;
    255  1.1      cgd 	}
    256  1.1      cgd 
    257  1.1      cgd 	/*
    258  1.1      cgd 	 * Appears to be a function that we know something about.  So
    259  1.1      cgd 	 * get on with it and see what we know.
    260  1.1      cgd 	 */
    261  1.1      cgd 
    262  1.1      cgd 	hislevel = flag & SLC_LEVELBITS;
    263  1.1      cgd 	mylevel = slctab[func].current.flag & SLC_LEVELBITS;
    264  1.1      cgd 	ack = flag & SLC_ACK;
    265  1.1      cgd 	/*
    266  1.1      cgd 	 * ignore the command if:
    267  1.1      cgd 	 * the function value and level are the same as what we already have;
    268  1.1      cgd 	 * or the level is the same and the ack bit is set
    269  1.1      cgd 	 */
    270  1.1      cgd 	if (hislevel == mylevel && (val == slctab[func].current.val || ack)) {
    271  1.1      cgd 		return;
    272  1.1      cgd 	} else if (ack) {
    273  1.1      cgd 		/*
    274  1.1      cgd 		 * If we get here, we got an ack, but the levels don't match.
    275  1.1      cgd 		 * This shouldn't happen.  If it does, it is probably because
    276  1.1      cgd 		 * we have sent two requests to set a variable without getting
    277  1.1      cgd 		 * a response between them, and this is the first response.
    278  1.1      cgd 		 * So, ignore it, and wait for the next response.
    279  1.1      cgd 		 */
    280  1.1      cgd 		return;
    281  1.1      cgd 	} else {
    282  1.1      cgd 		change_slc(func, flag, val);
    283  1.1      cgd 	}
    284  1.1      cgd 
    285  1.1      cgd }  /* end of process_slc */
    286  1.1      cgd 
    287  1.1      cgd /*
    288  1.1      cgd  * change_slc
    289  1.1      cgd  *
    290  1.1      cgd  * Process a request to change one of our special characters.
    291  1.1      cgd  * Compare client's request with what we are capable of supporting.
    292  1.1      cgd  */
    293  1.1      cgd 	void
    294  1.1      cgd change_slc(func, flag, val)
    295  1.6      mrg 	int func, flag;
    296  1.6      mrg 	cc_t val;
    297  1.1      cgd {
    298  1.6      mrg 	int hislevel, mylevel;
    299  1.7    mikel 
    300  1.1      cgd 	hislevel = flag & SLC_LEVELBITS;
    301  1.1      cgd 	mylevel = slctab[func].defset.flag & SLC_LEVELBITS;
    302  1.1      cgd 	/*
    303  1.1      cgd 	 * If client is setting a function to NOSUPPORT
    304  1.1      cgd 	 * or DEFAULT, then we can easily and directly
    305  1.1      cgd 	 * accomodate the request.
    306  1.1      cgd 	 */
    307  1.1      cgd 	if (hislevel == SLC_NOSUPPORT) {
    308  1.1      cgd 		slctab[func].current.flag = flag;
    309  1.1      cgd 		slctab[func].current.val = (cc_t)_POSIX_VDISABLE;
    310  1.1      cgd 		flag |= SLC_ACK;
    311  1.1      cgd 		add_slc(func, flag, val);
    312  1.1      cgd 		return;
    313  1.1      cgd 	}
    314  1.1      cgd 	if (hislevel == SLC_DEFAULT) {
    315  1.1      cgd 		/*
    316  1.1      cgd 		 * Special case here.  If client tells us to use
    317  1.1      cgd 		 * the default on a function we don't support, then
    318  1.1      cgd 		 * return NOSUPPORT instead of what we may have as a
    319  1.1      cgd 		 * default level of DEFAULT.
    320  1.1      cgd 		 */
    321  1.1      cgd 		if (mylevel == SLC_DEFAULT) {
    322  1.1      cgd 			slctab[func].current.flag = SLC_NOSUPPORT;
    323  1.1      cgd 		} else {
    324  1.1      cgd 			slctab[func].current.flag = slctab[func].defset.flag;
    325  1.1      cgd 		}
    326  1.1      cgd 		slctab[func].current.val = slctab[func].defset.val;
    327  1.1      cgd 		add_slc(func, slctab[func].current.flag,
    328  1.1      cgd 						slctab[func].current.val);
    329  1.1      cgd 		return;
    330  1.1      cgd 	}
    331  1.1      cgd 
    332  1.1      cgd 	/*
    333  1.1      cgd 	 * Client wants us to change to a new value or he
    334  1.1      cgd 	 * is telling us that he can't change to our value.
    335  1.1      cgd 	 * Some of the slc's we support and can change,
    336  1.1      cgd 	 * some we do support but can't change,
    337  1.1      cgd 	 * and others we don't support at all.
    338  1.1      cgd 	 * If we can change it then we have a pointer to
    339  1.1      cgd 	 * the place to put the new value, so change it,
    340  1.1      cgd 	 * otherwise, continue the negotiation.
    341  1.1      cgd 	 */
    342  1.1      cgd 	if (slctab[func].sptr) {
    343  1.1      cgd 		/*
    344  1.1      cgd 		 * We can change this one.
    345  1.1      cgd 		 */
    346  1.1      cgd 		slctab[func].current.val = val;
    347  1.1      cgd 		*(slctab[func].sptr) = val;
    348  1.1      cgd 		slctab[func].current.flag = flag;
    349  1.1      cgd 		flag |= SLC_ACK;
    350  1.1      cgd 		slcchange = 1;
    351  1.1      cgd 		add_slc(func, flag, val);
    352  1.1      cgd 	} else {
    353  1.1      cgd 		/*
    354  1.1      cgd 		* It is not possible for us to support this
    355  1.1      cgd 		* request as he asks.
    356  1.1      cgd 		*
    357  1.1      cgd 		* If our level is DEFAULT, then just ack whatever was
    358  1.7    mikel 		* sent.
    359  1.1      cgd 		*
    360  1.1      cgd 		* If he can't change and we can't change,
    361  1.1      cgd 		* then degenerate to NOSUPPORT.
    362  1.1      cgd 		*
    363  1.1      cgd 		* Otherwise we send our level back to him, (CANTCHANGE
    364  1.1      cgd 		* or NOSUPPORT) and if CANTCHANGE, send
    365  1.1      cgd 		* our value as well.
    366  1.1      cgd 		*/
    367  1.1      cgd 		if (mylevel == SLC_DEFAULT) {
    368  1.1      cgd 			slctab[func].current.flag = flag;
    369  1.1      cgd 			slctab[func].current.val = val;
    370  1.1      cgd 			flag |= SLC_ACK;
    371  1.1      cgd 		} else if (hislevel == SLC_CANTCHANGE &&
    372  1.1      cgd 				    mylevel == SLC_CANTCHANGE) {
    373  1.1      cgd 			flag &= ~SLC_LEVELBITS;
    374  1.1      cgd 			flag |= SLC_NOSUPPORT;
    375  1.1      cgd 			slctab[func].current.flag = flag;
    376  1.1      cgd 		} else {
    377  1.1      cgd 			flag &= ~SLC_LEVELBITS;
    378  1.1      cgd 			flag |= mylevel;
    379  1.1      cgd 			slctab[func].current.flag = flag;
    380  1.1      cgd 			if (mylevel == SLC_CANTCHANGE) {
    381  1.1      cgd 				slctab[func].current.val =
    382  1.1      cgd 					slctab[func].defset.val;
    383  1.1      cgd 				val = slctab[func].current.val;
    384  1.1      cgd 			}
    385  1.1      cgd 		}
    386  1.1      cgd 		add_slc(func, flag, val);
    387  1.1      cgd 	}
    388  1.1      cgd 
    389  1.1      cgd }  /* end of change_slc */
    390  1.1      cgd 
    391  1.1      cgd #if	defined(USE_TERMIO) && (VEOF == VMIN)
    392  1.1      cgd cc_t oldeofc = '\004';
    393  1.1      cgd #endif
    394  1.1      cgd 
    395  1.1      cgd /*
    396  1.1      cgd  * check_slc
    397  1.1      cgd  *
    398  1.1      cgd  * Check the special characters in use and notify the client if any have
    399  1.1      cgd  * changed.  Only those characters that are capable of being changed are
    400  1.1      cgd  * likely to have changed.  If a local change occurs, kick the support level
    401  1.1      cgd  * and flags up to the defaults.
    402  1.1      cgd  */
    403  1.1      cgd 	void
    404  1.1      cgd check_slc()
    405  1.1      cgd {
    406  1.1      cgd 	register int i;
    407  1.1      cgd 
    408  1.1      cgd 	for (i = 1; i <= NSLC; i++) {
    409  1.1      cgd #if	defined(USE_TERMIO) && (VEOF == VMIN)
    410  1.1      cgd 		/*
    411  1.1      cgd 		 * In a perfect world this would be a neat little
    412  1.1      cgd 		 * function.  But in this world, we should not notify
    413  1.1      cgd 		 * client of changes to the VEOF char when
    414  1.1      cgd 		 * ICANON is off, because it is not representing
    415  1.1      cgd 		 * a special character.
    416  1.1      cgd 		 */
    417  1.1      cgd 		if (i == SLC_EOF) {
    418  1.1      cgd 			if (!tty_isediting())
    419  1.1      cgd 				continue;
    420  1.1      cgd 			else if (slctab[i].sptr)
    421  1.1      cgd 				oldeofc = *(slctab[i].sptr);
    422  1.1      cgd 		}
    423  1.1      cgd #endif	/* defined(USE_TERMIO) && defined(SYSV_TERMIO) */
    424  1.1      cgd 		if (slctab[i].sptr &&
    425  1.1      cgd 				(*(slctab[i].sptr) != slctab[i].current.val)) {
    426  1.1      cgd 			slctab[i].current.val = *(slctab[i].sptr);
    427  1.1      cgd 			if (*(slctab[i].sptr) == (cc_t)_POSIX_VDISABLE)
    428  1.1      cgd 				slctab[i].current.flag = SLC_NOSUPPORT;
    429  1.1      cgd 			else
    430  1.1      cgd 				slctab[i].current.flag = slctab[i].defset.flag;
    431  1.1      cgd 			add_slc((unsigned char)i, slctab[i].current.flag,
    432  1.1      cgd 						slctab[i].current.val);
    433  1.1      cgd 		}
    434  1.1      cgd 	}
    435  1.1      cgd }  /* check_slc */
    436  1.1      cgd 
    437  1.1      cgd /*
    438  1.1      cgd  * do_opt_slc
    439  1.1      cgd  *
    440  1.1      cgd  * Process an slc option buffer.  Defer processing of incoming slc's
    441  1.1      cgd  * until after the terminal state has been processed.  Save the first slc
    442  1.1      cgd  * request that comes along, but discard all others.
    443  1.1      cgd  *
    444  1.1      cgd  * ptr points to the beginning of the buffer, len is the length.
    445  1.1      cgd  */
    446  1.1      cgd 	void
    447  1.1      cgd do_opt_slc(ptr, len)
    448  1.1      cgd 	register unsigned char *ptr;
    449  1.1      cgd 	register int len;
    450  1.1      cgd {
    451  1.1      cgd 	register unsigned char func, flag;
    452  1.1      cgd 	cc_t val;
    453  1.1      cgd 	register unsigned char *end = ptr + len;
    454  1.1      cgd 
    455  1.1      cgd 	if (terminit()) {  /* go ahead */
    456  1.1      cgd 		while (ptr < end) {
    457  1.1      cgd 			func = *ptr++;
    458  1.1      cgd 			if (ptr >= end) break;
    459  1.1      cgd 			flag = *ptr++;
    460  1.1      cgd 			if (ptr >= end) break;
    461  1.1      cgd 			val = (cc_t)*ptr++;
    462  1.1      cgd 
    463  1.6      mrg 			process_slc((u_int)func, (u_int)flag, val);
    464  1.1      cgd 
    465  1.1      cgd 		}
    466  1.1      cgd 	} else {
    467  1.1      cgd 		/*
    468  1.1      cgd 		 * save this slc buffer if it is the first, otherwise dump
    469  1.1      cgd 		 * it.
    470  1.1      cgd 		 */
    471  1.1      cgd 		if (def_slcbuf == (unsigned char *)0) {
    472  1.1      cgd 			def_slclen = len;
    473  1.1      cgd 			def_slcbuf = (unsigned char *)malloc((unsigned)len);
    474  1.1      cgd 			if (def_slcbuf == (unsigned char *)0)
    475  1.1      cgd 				return;  /* too bad */
    476  1.8    perry 			memcpy(def_slcbuf, ptr, len);
    477  1.1      cgd 		}
    478  1.1      cgd 	}
    479  1.1      cgd 
    480  1.1      cgd }  /* end of do_opt_slc */
    481  1.1      cgd 
    482  1.1      cgd /*
    483  1.1      cgd  * deferslc
    484  1.1      cgd  *
    485  1.1      cgd  * Do slc stuff that was deferred.
    486  1.1      cgd  */
    487  1.1      cgd 	void
    488  1.1      cgd deferslc()
    489  1.1      cgd {
    490  1.1      cgd 	if (def_slcbuf) {
    491  1.1      cgd 		start_slc(1);
    492  1.1      cgd 		do_opt_slc(def_slcbuf, def_slclen);
    493  1.1      cgd 		(void) end_slc(0);
    494  1.1      cgd 		free(def_slcbuf);
    495  1.1      cgd 		def_slcbuf = (unsigned char *)0;
    496  1.1      cgd 		def_slclen = 0;
    497  1.1      cgd 	}
    498  1.1      cgd 
    499  1.1      cgd }  /* end of deferslc */
    500  1.1      cgd 
    501  1.1      cgd #endif	/* LINEMODE */
    502