Home | History | Annotate | Line # | Download | only in net
slcompress.c revision 1.12
      1 /*	$NetBSD: slcompress.c,v 1.12 1995/07/04 06:28:28 paulus Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1989, 1993, 1994
      5  *	The Regents of the University of California.  All rights reserved.
      6  *
      7  * Redistribution and use in source and binary forms, with or without
      8  * modification, are permitted provided that the following conditions
      9  * are met:
     10  * 1. Redistributions of source code must retain the above copyright
     11  *    notice, this list of conditions and the following disclaimer.
     12  * 2. Redistributions in binary form must reproduce the above copyright
     13  *    notice, this list of conditions and the following disclaimer in the
     14  *    documentation and/or other materials provided with the distribution.
     15  * 3. All advertising materials mentioning features or use of this software
     16  *    must display the following acknowledgement:
     17  *	This product includes software developed by the University of
     18  *	California, Berkeley and its contributors.
     19  * 4. Neither the name of the University nor the names of its contributors
     20  *    may be used to endorse or promote products derived from this software
     21  *    without specific prior written permission.
     22  *
     23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33  * SUCH DAMAGE.
     34  *
     35  *	@(#)slcompress.c	8.2 (Berkeley) 4/16/94
     36  */
     37 
     38 /*
     39  * Routines to compress and uncompess tcp packets (for transmission
     40  * over low speed serial lines.
     41  *
     42  * Van Jacobson (van (at) helios.ee.lbl.gov), Dec 31, 1989:
     43  *	- Initial distribution.
     44  */
     45 
     46 #include <sys/param.h>
     47 #include <sys/mbuf.h>
     48 
     49 #include <netinet/in.h>
     50 #include <netinet/in_systm.h>
     51 #include <netinet/ip.h>
     52 #include <netinet/tcp.h>
     53 
     54 #include <net/slcompress.h>
     55 
     56 #ifndef SL_NO_STATS
     57 #define INCR(counter) ++comp->counter;
     58 #else
     59 #define INCR(counter)
     60 #endif
     61 
     62 #define BCMP(p1, p2, n) bcmp((char *)(p1), (char *)(p2), (int)(n))
     63 #define BCOPY(p1, p2, n) bcopy((char *)(p1), (char *)(p2), (int)(n))
     64 #ifndef _KERNEL
     65 #define ovbcopy bcopy
     66 #endif
     67 
     68 void
     69 sl_compress_init(comp, max_state)
     70 	struct slcompress *comp;
     71 	int max_state;
     72 {
     73 	register u_int i;
     74 	register struct cstate *tstate = comp->tstate;
     75 
     76 	if (max_state == -1)
     77 		max_state = MAX_STATES - 1;
     78 	bzero((char *)comp, sizeof(*comp));
     79 	for (i = max_state; i > 0; --i) {
     80 		tstate[i].cs_id = i;
     81 		tstate[i].cs_next = &tstate[i - 1];
     82 	}
     83 	tstate[0].cs_next = &tstate[max_state];
     84 	tstate[0].cs_id = 0;
     85 	comp->last_cs = &tstate[0];
     86 	comp->last_recv = 255;
     87 	comp->last_xmit = 255;
     88 	comp->flags = SLF_TOSS;
     89 }
     90 
     91 
     92 /* ENCODE encodes a number that is known to be non-zero.  ENCODEZ
     93  * checks for zero (since zero has to be encoded in the long, 3 byte
     94  * form).
     95  */
     96 #define ENCODE(n) { \
     97 	if ((u_int16_t)(n) >= 256) { \
     98 		*cp++ = 0; \
     99 		cp[1] = (n); \
    100 		cp[0] = (n) >> 8; \
    101 		cp += 2; \
    102 	} else { \
    103 		*cp++ = (n); \
    104 	} \
    105 }
    106 #define ENCODEZ(n) { \
    107 	if ((u_int16_t)(n) >= 256 || (u_int16_t)(n) == 0) { \
    108 		*cp++ = 0; \
    109 		cp[1] = (n); \
    110 		cp[0] = (n) >> 8; \
    111 		cp += 2; \
    112 	} else { \
    113 		*cp++ = (n); \
    114 	} \
    115 }
    116 
    117 #define DECODEL(f) { \
    118 	if (*cp == 0) {\
    119 		(f) = htonl(ntohl(f) + ((cp[1] << 8) | cp[2])); \
    120 		cp += 3; \
    121 	} else { \
    122 		(f) = htonl(ntohl(f) + (u_int32_t)*cp++); \
    123 	} \
    124 }
    125 
    126 #define DECODES(f) { \
    127 	if (*cp == 0) {\
    128 		(f) = htons(ntohs(f) + ((cp[1] << 8) | cp[2])); \
    129 		cp += 3; \
    130 	} else { \
    131 		(f) = htons(ntohs(f) + (u_int32_t)*cp++); \
    132 	} \
    133 }
    134 
    135 #define DECODEU(f) { \
    136 	if (*cp == 0) {\
    137 		(f) = htons((cp[1] << 8) | cp[2]); \
    138 		cp += 3; \
    139 	} else { \
    140 		(f) = htons((u_int32_t)*cp++); \
    141 	} \
    142 }
    143 
    144 u_int
    145 sl_compress_tcp(m, ip, comp, compress_cid)
    146 	struct mbuf *m;
    147 	register struct ip *ip;
    148 	struct slcompress *comp;
    149 	int compress_cid;
    150 {
    151 	register struct cstate *cs = comp->last_cs->cs_next;
    152 	register u_int hlen = ip->ip_hl;
    153 	register struct tcphdr *oth;
    154 	register struct tcphdr *th;
    155 	register u_int deltaS, deltaA;
    156 	register u_int changes = 0;
    157 	u_char new_seq[16];
    158 	register u_char *cp = new_seq;
    159 
    160 	/*
    161 	 * Bail if this is an IP fragment or if the TCP packet isn't
    162 	 * `compressible' (i.e., ACK isn't set or some other control bit is
    163 	 * set).  (We assume that the caller has already made sure the
    164 	 * packet is IP proto TCP).
    165 	 */
    166 	if ((ip->ip_off & htons(0x3fff)) || m->m_len < 40)
    167 		return (TYPE_IP);
    168 
    169 	th = (struct tcphdr *)&((int32_t *)ip)[hlen];
    170 	if ((th->th_flags & (TH_SYN|TH_FIN|TH_RST|TH_ACK)) != TH_ACK)
    171 		return (TYPE_IP);
    172 	/*
    173 	 * Packet is compressible -- we're going to send either a
    174 	 * COMPRESSED_TCP or UNCOMPRESSED_TCP packet.  Either way we need
    175 	 * to locate (or create) the connection state.  Special case the
    176 	 * most recently used connection since it's most likely to be used
    177 	 * again & we don't have to do any reordering if it's used.
    178 	 */
    179 	INCR(sls_packets)
    180 	if (ip->ip_src.s_addr != cs->cs_ip.ip_src.s_addr ||
    181 	    ip->ip_dst.s_addr != cs->cs_ip.ip_dst.s_addr ||
    182 	    *(int32_t *)th != ((int32_t *)&cs->cs_ip)[cs->cs_ip.ip_hl]) {
    183 		/*
    184 		 * Wasn't the first -- search for it.
    185 		 *
    186 		 * States are kept in a circularly linked list with
    187 		 * last_cs pointing to the end of the list.  The
    188 		 * list is kept in lru order by moving a state to the
    189 		 * head of the list whenever it is referenced.  Since
    190 		 * the list is short and, empirically, the connection
    191 		 * we want is almost always near the front, we locate
    192 		 * states via linear search.  If we don't find a state
    193 		 * for the datagram, the oldest state is (re-)used.
    194 		 */
    195 		register struct cstate *lcs;
    196 		register struct cstate *lastcs = comp->last_cs;
    197 
    198 		do {
    199 			lcs = cs; cs = cs->cs_next;
    200 			INCR(sls_searches)
    201 			if (ip->ip_src.s_addr == cs->cs_ip.ip_src.s_addr
    202 			    && ip->ip_dst.s_addr == cs->cs_ip.ip_dst.s_addr
    203 			    && *(int32_t *)th ==
    204 			    ((int32_t *)&cs->cs_ip)[cs->cs_ip.ip_hl])
    205 				goto found;
    206 		} while (cs != lastcs);
    207 
    208 		/*
    209 		 * Didn't find it -- re-use oldest cstate.  Send an
    210 		 * uncompressed packet that tells the other side what
    211 		 * connection number we're using for this conversation.
    212 		 * Note that since the state list is circular, the oldest
    213 		 * state points to the newest and we only need to set
    214 		 * last_cs to update the lru linkage.
    215 		 */
    216 		INCR(sls_misses)
    217 		comp->last_cs = lcs;
    218 		hlen += th->th_off;
    219 		hlen <<= 2;
    220 		goto uncompressed;
    221 
    222 	found:
    223 		/*
    224 		 * Found it -- move to the front on the connection list.
    225 		 */
    226 		if (cs == lastcs)
    227 			comp->last_cs = lcs;
    228 		else {
    229 			lcs->cs_next = cs->cs_next;
    230 			cs->cs_next = lastcs->cs_next;
    231 			lastcs->cs_next = cs;
    232 		}
    233 	}
    234 
    235 	/*
    236 	 * Make sure that only what we expect to change changed. The first
    237 	 * line of the `if' checks the IP protocol version, header length &
    238 	 * type of service.  The 2nd line checks the "Don't fragment" bit.
    239 	 * The 3rd line checks the time-to-live and protocol (the protocol
    240 	 * check is unnecessary but costless).  The 4th line checks the TCP
    241 	 * header length.  The 5th line checks IP options, if any.  The 6th
    242 	 * line checks TCP options, if any.  If any of these things are
    243 	 * different between the previous & current datagram, we send the
    244 	 * current datagram `uncompressed'.
    245 	 */
    246 	oth = (struct tcphdr *)&((int32_t *)&cs->cs_ip)[hlen];
    247 	deltaS = hlen;
    248 	hlen += th->th_off;
    249 	hlen <<= 2;
    250 
    251 	if (((u_int16_t *)ip)[0] != ((u_int16_t *)&cs->cs_ip)[0] ||
    252 	    ((u_int16_t *)ip)[3] != ((u_int16_t *)&cs->cs_ip)[3] ||
    253 	    ((u_int16_t *)ip)[4] != ((u_int16_t *)&cs->cs_ip)[4] ||
    254 	    th->th_off != oth->th_off ||
    255 	    (deltaS > 5 &&
    256 	     BCMP(ip + 1, &cs->cs_ip + 1, (deltaS - 5) << 2)) ||
    257 	    (th->th_off > 5 &&
    258 	     BCMP(th + 1, oth + 1, (th->th_off - 5) << 2)))
    259 		goto uncompressed;
    260 
    261 	/*
    262 	 * Figure out which of the changing fields changed.  The
    263 	 * receiver expects changes in the order: urgent, window,
    264 	 * ack, seq (the order minimizes the number of temporaries
    265 	 * needed in this section of code).
    266 	 */
    267 	if (th->th_flags & TH_URG) {
    268 		deltaS = ntohs(th->th_urp);
    269 		ENCODEZ(deltaS);
    270 		changes |= NEW_U;
    271 	} else if (th->th_urp != oth->th_urp)
    272 		/* argh! URG not set but urp changed -- a sensible
    273 		 * implementation should never do this but RFC793
    274 		 * doesn't prohibit the change so we have to deal
    275 		 * with it. */
    276 		 goto uncompressed;
    277 
    278 	if (deltaS = (u_int16_t)(ntohs(th->th_win) - ntohs(oth->th_win))) {
    279 		ENCODE(deltaS);
    280 		changes |= NEW_W;
    281 	}
    282 
    283 	if (deltaA = ntohl(th->th_ack) - ntohl(oth->th_ack)) {
    284 		if (deltaA > 0xffff)
    285 			goto uncompressed;
    286 		ENCODE(deltaA);
    287 		changes |= NEW_A;
    288 	}
    289 
    290 	if (deltaS = ntohl(th->th_seq) - ntohl(oth->th_seq)) {
    291 		if (deltaS > 0xffff)
    292 			goto uncompressed;
    293 		ENCODE(deltaS);
    294 		changes |= NEW_S;
    295 	}
    296 
    297 	switch(changes) {
    298 
    299 	case 0:
    300 		/*
    301 		 * Nothing changed. If this packet contains data and the
    302 		 * last one didn't, this is probably a data packet following
    303 		 * an ack (normal on an interactive connection) and we send
    304 		 * it compressed.  Otherwise it's probably a retransmit,
    305 		 * retransmitted ack or window probe.  Send it uncompressed
    306 		 * in case the other side missed the compressed version.
    307 		 */
    308 		if (ip->ip_len != cs->cs_ip.ip_len &&
    309 		    ntohs(cs->cs_ip.ip_len) == hlen)
    310 			break;
    311 
    312 		/* (fall through) */
    313 
    314 	case SPECIAL_I:
    315 	case SPECIAL_D:
    316 		/*
    317 		 * actual changes match one of our special case encodings --
    318 		 * send packet uncompressed.
    319 		 */
    320 		goto uncompressed;
    321 
    322 	case NEW_S|NEW_A:
    323 		if (deltaS == deltaA &&
    324 		    deltaS == ntohs(cs->cs_ip.ip_len) - hlen) {
    325 			/* special case for echoed terminal traffic */
    326 			changes = SPECIAL_I;
    327 			cp = new_seq;
    328 		}
    329 		break;
    330 
    331 	case NEW_S:
    332 		if (deltaS == ntohs(cs->cs_ip.ip_len) - hlen) {
    333 			/* special case for data xfer */
    334 			changes = SPECIAL_D;
    335 			cp = new_seq;
    336 		}
    337 		break;
    338 	}
    339 
    340 	deltaS = ntohs(ip->ip_id) - ntohs(cs->cs_ip.ip_id);
    341 	if (deltaS != 1) {
    342 		ENCODEZ(deltaS);
    343 		changes |= NEW_I;
    344 	}
    345 	if (th->th_flags & TH_PUSH)
    346 		changes |= TCP_PUSH_BIT;
    347 	/*
    348 	 * Grab the cksum before we overwrite it below.  Then update our
    349 	 * state with this packet's header.
    350 	 */
    351 	deltaA = ntohs(th->th_sum);
    352 	BCOPY(ip, &cs->cs_ip, hlen);
    353 
    354 	/*
    355 	 * We want to use the original packet as our compressed packet.
    356 	 * (cp - new_seq) is the number of bytes we need for compressed
    357 	 * sequence numbers.  In addition we need one byte for the change
    358 	 * mask, one for the connection id and two for the tcp checksum.
    359 	 * So, (cp - new_seq) + 4 bytes of header are needed.  hlen is how
    360 	 * many bytes of the original packet to toss so subtract the two to
    361 	 * get the new packet size.
    362 	 */
    363 	deltaS = cp - new_seq;
    364 	cp = (u_char *)ip;
    365 	if (compress_cid == 0 || comp->last_xmit != cs->cs_id) {
    366 		comp->last_xmit = cs->cs_id;
    367 		hlen -= deltaS + 4;
    368 		cp += hlen;
    369 		*cp++ = changes | NEW_C;
    370 		*cp++ = cs->cs_id;
    371 	} else {
    372 		hlen -= deltaS + 3;
    373 		cp += hlen;
    374 		*cp++ = changes;
    375 	}
    376 	m->m_len -= hlen;
    377 	m->m_data += hlen;
    378 	*cp++ = deltaA >> 8;
    379 	*cp++ = deltaA;
    380 	BCOPY(new_seq, cp, deltaS);
    381 	INCR(sls_compressed)
    382 	return (TYPE_COMPRESSED_TCP);
    383 
    384 	/*
    385 	 * Update connection state cs & send uncompressed packet ('uncompressed'
    386 	 * means a regular ip/tcp packet but with the 'conversation id' we hope
    387 	 * to use on future compressed packets in the protocol field).
    388 	 */
    389 uncompressed:
    390 	BCOPY(ip, &cs->cs_ip, hlen);
    391 	ip->ip_p = cs->cs_id;
    392 	comp->last_xmit = cs->cs_id;
    393 	return (TYPE_UNCOMPRESSED_TCP);
    394 }
    395 
    396 
    397 int
    398 sl_uncompress_tcp(bufp, len, type, comp)
    399 	u_char **bufp;
    400 	int len;
    401 	u_int type;
    402 	struct slcompress *comp;
    403 {
    404 	u_char *hdr, *cp;
    405 	int hlen, vjlen;
    406 
    407 	cp = bufp? *bufp: NULL;
    408 	vjlen = sl_uncompress_tcp_core(cp, len, len, type, comp, &hdr, &hlen);
    409 	if (vjlen < 0)
    410 		return (0);	/* error */
    411 	if (vjlen == 0)
    412 		return (len);	/* was uncompressed already */
    413 
    414 	cp += vjlen;
    415 	len -= vjlen;
    416 
    417 	/*
    418 	 * At this point, cp points to the first byte of data in the
    419 	 * packet.  If we're not aligned on a 4-byte boundary, copy the
    420 	 * data down so the ip & tcp headers will be aligned.  Then back up
    421 	 * cp by the tcp/ip header length to make room for the reconstructed
    422 	 * header (we assume the packet we were handed has enough space to
    423 	 * prepend 128 bytes of header).
    424 	 */
    425 	if ((int)cp & 3) {
    426 		if (len > 0)
    427 			(void) ovbcopy(cp, (caddr_t)((int)cp &~ 3), len);
    428 		cp = (u_char *)((int)cp &~ 3);
    429 	}
    430 	cp -= hlen;
    431 	len += hlen;
    432 	BCOPY(hdr, cp, hlen);
    433 
    434 	*bufp = cp;
    435 	return (len);
    436 }
    437 
    438 /*
    439  * Uncompress a packet of total length total_len.  The first buflen
    440  * bytes are at buf; this must include the entire (compressed or
    441  * uncompressed) TCP/IP header.  This procedure returns the length
    442  * of the VJ header, with a pointer to the uncompressed IP header
    443  * in *hdrp and its length in *hlenp.
    444  */
    445 int
    446 sl_uncompress_tcp_core(buf, buflen, total_len, type, comp, hdrp, hlenp)
    447 	u_char *buf;
    448 	int buflen, total_len;
    449 	u_int type;
    450 	struct slcompress *comp;
    451 	u_char **hdrp;
    452 	u_int *hlenp;
    453 {
    454 	register u_char *cp;
    455 	register u_int hlen, changes;
    456 	register struct tcphdr *th;
    457 	register struct cstate *cs;
    458 	register struct ip *ip;
    459 	register u_int16_t *bp;
    460 	register u_int vjlen;
    461 
    462 	switch (type) {
    463 
    464 	case TYPE_UNCOMPRESSED_TCP:
    465 		ip = (struct ip *) buf;
    466 		if (ip->ip_p >= MAX_STATES)
    467 			goto bad;
    468 		cs = &comp->rstate[comp->last_recv = ip->ip_p];
    469 		comp->flags &=~ SLF_TOSS;
    470 		ip->ip_p = IPPROTO_TCP;
    471 		hlen = ip->ip_hl;
    472 		hlen += ((struct tcphdr *)&((int32_t *)ip)[hlen])->th_off;
    473 		hlen <<= 2;
    474 		BCOPY(ip, &cs->cs_ip, hlen);
    475 		cs->cs_hlen = hlen;
    476 		INCR(sls_uncompressedin)
    477 		*hdrp = (u_char *) &cs->cs_ip;
    478 		*hlenp = hlen;
    479 		return (0);
    480 
    481 	default:
    482 		goto bad;
    483 
    484 	case TYPE_COMPRESSED_TCP:
    485 		break;
    486 	}
    487 	/* We've got a compressed packet. */
    488 	INCR(sls_compressedin)
    489 	cp = buf;
    490 	changes = *cp++;
    491 	if (changes & NEW_C) {
    492 		/* Make sure the state index is in range, then grab the state.
    493 		 * If we have a good state index, clear the 'discard' flag. */
    494 		if (*cp >= MAX_STATES)
    495 			goto bad;
    496 
    497 		comp->flags &=~ SLF_TOSS;
    498 		comp->last_recv = *cp++;
    499 	} else {
    500 		/* this packet has an implicit state index.  If we've
    501 		 * had a line error since the last time we got an
    502 		 * explicit state index, we have to toss the packet. */
    503 		if (comp->flags & SLF_TOSS) {
    504 			INCR(sls_tossed)
    505 			return (-1);
    506 		}
    507 	}
    508 	cs = &comp->rstate[comp->last_recv];
    509 	hlen = cs->cs_ip.ip_hl << 2;
    510 	th = (struct tcphdr *)&((u_char *)&cs->cs_ip)[hlen];
    511 	th->th_sum = htons((*cp << 8) | cp[1]);
    512 	cp += 2;
    513 	if (changes & TCP_PUSH_BIT)
    514 		th->th_flags |= TH_PUSH;
    515 	else
    516 		th->th_flags &=~ TH_PUSH;
    517 
    518 	switch (changes & SPECIALS_MASK) {
    519 	case SPECIAL_I:
    520 		{
    521 		register u_int i = ntohs(cs->cs_ip.ip_len) - cs->cs_hlen;
    522 		th->th_ack = htonl(ntohl(th->th_ack) + i);
    523 		th->th_seq = htonl(ntohl(th->th_seq) + i);
    524 		}
    525 		break;
    526 
    527 	case SPECIAL_D:
    528 		th->th_seq = htonl(ntohl(th->th_seq) + ntohs(cs->cs_ip.ip_len)
    529 				   - cs->cs_hlen);
    530 		break;
    531 
    532 	default:
    533 		if (changes & NEW_U) {
    534 			th->th_flags |= TH_URG;
    535 			DECODEU(th->th_urp)
    536 		} else
    537 			th->th_flags &=~ TH_URG;
    538 		if (changes & NEW_W)
    539 			DECODES(th->th_win)
    540 		if (changes & NEW_A)
    541 			DECODEL(th->th_ack)
    542 		if (changes & NEW_S)
    543 			DECODEL(th->th_seq)
    544 		break;
    545 	}
    546 	if (changes & NEW_I) {
    547 		DECODES(cs->cs_ip.ip_id)
    548 	} else
    549 		cs->cs_ip.ip_id = htons(ntohs(cs->cs_ip.ip_id) + 1);
    550 
    551 	/*
    552 	 * At this point, cp points to the first byte of data in the
    553 	 * packet.  Fill in the IP total length and update the IP
    554 	 * header checksum.
    555 	 */
    556 	vjlen = cp - buf;
    557 	buflen -= vjlen;
    558 	if (buflen < 0)
    559 		/* we must have dropped some characters (crc should detect
    560 		 * this but the old slip framing won't) */
    561 		goto bad;
    562 
    563 	total_len += cs->cs_hlen - vjlen;
    564 	cs->cs_ip.ip_len = htons(total_len);
    565 
    566 	/* recompute the ip header checksum */
    567 	bp = (u_int16_t *) &cs->cs_ip;
    568 	cs->cs_ip.ip_sum = 0;
    569 	for (changes = 0; hlen > 0; hlen -= 2)
    570 		changes += *bp++;
    571 	changes = (changes & 0xffff) + (changes >> 16);
    572 	changes = (changes & 0xffff) + (changes >> 16);
    573 	cs->cs_ip.ip_sum = ~ changes;
    574 
    575 	*hdrp = (u_char *) &cs->cs_ip;
    576 	*hlenp = cs->cs_hlen;
    577 	return vjlen;
    578 
    579 bad:
    580 	comp->flags |= SLF_TOSS;
    581 	INCR(sls_errorin)
    582 	return (-1);
    583 }
    584