1995-01-31 06:29:58 +00:00
|
|
|
/*
|
|
|
|
* Input/Output VJ Compressed packets
|
|
|
|
*
|
|
|
|
* Written by Toshiharu OHNO (tony-o@iij.ad.jp)
|
|
|
|
*
|
|
|
|
* Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
* provided that the above copyright notice and this paragraph are
|
|
|
|
* duplicated in all such forms and that any documentation,
|
|
|
|
* advertising materials, and other materials related to such
|
|
|
|
* distribution and use acknowledge that the software was developed
|
|
|
|
* by the Internet Initiative Japan, Inc. The name of the
|
|
|
|
* IIJ may not be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*
|
1998-05-21 21:49:08 +00:00
|
|
|
* $Id: vjcomp.c,v 1.16.2.17 1998/05/04 03:00:09 brian Exp $
|
1995-05-30 03:57:47 +00:00
|
|
|
*
|
1995-01-31 06:29:58 +00:00
|
|
|
* TODO:
|
|
|
|
*/
|
1997-10-26 01:04:02 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <netinet/in.h>
|
1995-01-31 06:29:58 +00:00
|
|
|
#include <netinet/in_systm.h>
|
|
|
|
#include <netinet/ip.h>
|
1998-04-28 01:25:46 +00:00
|
|
|
#include <sys/un.h>
|
1997-10-26 01:04:02 +00:00
|
|
|
|
1997-11-09 06:22:49 +00:00
|
|
|
#include <stdio.h>
|
1997-10-26 01:04:02 +00:00
|
|
|
|
|
|
|
#include "mbuf.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "timer.h"
|
|
|
|
#include "fsm.h"
|
|
|
|
#include "lcpproto.h"
|
1995-01-31 06:29:58 +00:00
|
|
|
#include "slcompress.h"
|
1998-03-13 00:44:26 +00:00
|
|
|
#include "lqr.h"
|
1995-01-31 06:29:58 +00:00
|
|
|
#include "hdlc.h"
|
1998-01-29 23:11:44 +00:00
|
|
|
#include "defs.h"
|
|
|
|
#include "iplist.h"
|
|
|
|
#include "throughput.h"
|
1995-01-31 06:29:58 +00:00
|
|
|
#include "ipcp.h"
|
1998-02-23 00:38:44 +00:00
|
|
|
#include "lcp.h"
|
|
|
|
#include "ccp.h"
|
|
|
|
#include "link.h"
|
1998-03-16 22:52:54 +00:00
|
|
|
#include "filter.h"
|
1998-03-20 19:48:28 +00:00
|
|
|
#include "descriptor.h"
|
1998-04-03 19:21:56 +00:00
|
|
|
#include "mp.h"
|
1998-02-23 00:38:44 +00:00
|
|
|
#include "bundle.h"
|
1997-10-26 01:04:02 +00:00
|
|
|
#include "vjcomp.h"
|
1995-01-31 06:29:58 +00:00
|
|
|
|
1997-08-25 00:29:32 +00:00
|
|
|
#define MAX_VJHEADER 16 /* Maximum size of compressed header */
|
1995-01-31 06:29:58 +00:00
|
|
|
|
|
|
|
void
|
1998-05-01 19:26:12 +00:00
|
|
|
vj_SendFrame(struct link *l, struct mbuf * bp, struct bundle *bundle)
|
1995-01-31 06:29:58 +00:00
|
|
|
{
|
|
|
|
int type;
|
1997-12-03 10:23:54 +00:00
|
|
|
u_short proto;
|
1998-03-13 21:07:46 +00:00
|
|
|
u_short cproto = bundle->ncp.ipcp.peer_compproto >> 16;
|
1995-01-31 06:29:58 +00:00
|
|
|
|
1998-05-04 03:00:09 +00:00
|
|
|
log_Printf(LogDEBUG, "vj_SendFrame: COMPPROTO = %x\n",
|
1998-03-13 21:07:46 +00:00
|
|
|
bundle->ncp.ipcp.peer_compproto);
|
1997-08-25 00:29:32 +00:00
|
|
|
if (((struct ip *) MBUF_CTOP(bp))->ip_p == IPPROTO_TCP
|
|
|
|
&& cproto == PROTO_VJCOMP) {
|
1998-03-16 22:54:35 +00:00
|
|
|
type = sl_compress_tcp(bp, (struct ip *)MBUF_CTOP(bp),
|
|
|
|
&bundle->ncp.ipcp.vj.cslc,
|
|
|
|
&bundle->ncp.ipcp.vj.slstat,
|
1998-03-13 21:07:46 +00:00
|
|
|
bundle->ncp.ipcp.peer_compproto & 0xff);
|
1998-05-01 19:26:12 +00:00
|
|
|
log_Printf(LogDEBUG, "vj_SendFrame: type = %x\n", type);
|
1995-01-31 06:29:58 +00:00
|
|
|
switch (type) {
|
|
|
|
case TYPE_IP:
|
|
|
|
proto = PROTO_IP;
|
|
|
|
break;
|
|
|
|
case TYPE_UNCOMPRESSED_TCP:
|
|
|
|
proto = PROTO_VJUNCOMP;
|
|
|
|
break;
|
|
|
|
case TYPE_COMPRESSED_TCP:
|
|
|
|
proto = PROTO_VJCOMP;
|
|
|
|
break;
|
|
|
|
default:
|
1998-05-01 19:26:12 +00:00
|
|
|
log_Printf(LogERROR, "Unknown frame type %x\n", type);
|
|
|
|
mbuf_Free(bp);
|
1995-01-31 06:29:58 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
proto = PROTO_IP;
|
1998-02-23 00:38:44 +00:00
|
|
|
|
1998-04-03 19:21:56 +00:00
|
|
|
if (!ccp_Compress(&l->ccp, l, PRI_NORMAL, proto, bp))
|
1998-05-01 19:26:12 +00:00
|
|
|
hdlc_Output(l, PRI_NORMAL, proto, bp);
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct mbuf *
|
1998-03-16 22:54:35 +00:00
|
|
|
VjUncompressTcp(struct ipcp *ipcp, struct mbuf * bp, u_char type)
|
1995-01-31 06:29:58 +00:00
|
|
|
{
|
|
|
|
u_char *bufp;
|
|
|
|
int len, olen, rlen;
|
|
|
|
struct mbuf *nbp;
|
1997-08-25 00:29:32 +00:00
|
|
|
u_char work[MAX_HDR + MAX_VJHEADER]; /* enough to hold TCP/IP header */
|
1995-01-31 06:29:58 +00:00
|
|
|
|
1998-05-01 19:26:12 +00:00
|
|
|
olen = len = mbuf_Length(bp);
|
1995-01-31 06:29:58 +00:00
|
|
|
if (type == TYPE_UNCOMPRESSED_TCP) {
|
1997-08-25 00:29:32 +00:00
|
|
|
|
1995-01-31 06:29:58 +00:00
|
|
|
/*
|
1997-08-25 00:29:32 +00:00
|
|
|
* Uncompressed packet does NOT change its size, so that we can use mbuf
|
|
|
|
* space for uncompression job.
|
1995-01-31 06:29:58 +00:00
|
|
|
*/
|
|
|
|
bufp = MBUF_CTOP(bp);
|
1998-03-16 22:54:35 +00:00
|
|
|
len = sl_uncompress_tcp(&bufp, len, type, &ipcp->vj.cslc, &ipcp->vj.slstat);
|
1995-02-26 12:18:08 +00:00
|
|
|
if (len <= 0) {
|
1998-05-01 19:26:12 +00:00
|
|
|
mbuf_Free(bp);
|
1998-01-21 02:15:33 +00:00
|
|
|
bp = NULL;
|
1995-02-26 12:18:08 +00:00
|
|
|
}
|
1997-08-25 00:29:32 +00:00
|
|
|
return (bp);
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|
1997-08-25 00:29:32 +00:00
|
|
|
|
1995-01-31 06:29:58 +00:00
|
|
|
/*
|
1997-08-25 00:29:32 +00:00
|
|
|
* Handle compressed packet. 1) Read upto MAX_VJHEADER bytes into work
|
|
|
|
* space. 2) Try to uncompress it. 3) Compute amount of necesary space. 4)
|
|
|
|
* Copy unread data info there.
|
1995-01-31 06:29:58 +00:00
|
|
|
*/
|
1997-08-25 00:29:32 +00:00
|
|
|
if (len > MAX_VJHEADER)
|
|
|
|
len = MAX_VJHEADER;
|
1995-01-31 06:29:58 +00:00
|
|
|
rlen = len;
|
|
|
|
bufp = work + MAX_HDR;
|
1998-05-01 19:26:12 +00:00
|
|
|
bp = mbuf_Read(bp, bufp, rlen);
|
1998-03-16 22:54:35 +00:00
|
|
|
len = sl_uncompress_tcp(&bufp, olen, type, &ipcp->vj.cslc, &ipcp->vj.slstat);
|
1995-02-26 12:18:08 +00:00
|
|
|
if (len <= 0) {
|
1998-05-01 19:26:12 +00:00
|
|
|
mbuf_Free(bp);
|
1998-01-21 02:15:33 +00:00
|
|
|
return NULL;
|
1995-02-26 12:18:08 +00:00
|
|
|
}
|
1995-01-31 06:29:58 +00:00
|
|
|
len -= olen;
|
|
|
|
len += rlen;
|
1998-05-01 19:26:12 +00:00
|
|
|
nbp = mbuf_Alloc(len, MB_VJCOMP);
|
1997-10-26 01:04:02 +00:00
|
|
|
memcpy(MBUF_CTOP(nbp), bufp, len);
|
1995-01-31 06:29:58 +00:00
|
|
|
nbp->next = bp;
|
1997-08-25 00:29:32 +00:00
|
|
|
return (nbp);
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct mbuf *
|
1998-05-01 19:26:12 +00:00
|
|
|
vj_Input(struct ipcp *ipcp, struct mbuf *bp, int proto)
|
1995-01-31 06:29:58 +00:00
|
|
|
{
|
|
|
|
u_char type;
|
|
|
|
|
1998-05-01 19:26:12 +00:00
|
|
|
log_Printf(LogDEBUG, "vj_Input: proto %02x\n", proto);
|
|
|
|
log_DumpBp(LogDEBUG, "Raw packet info:", bp);
|
1995-01-31 06:29:58 +00:00
|
|
|
|
|
|
|
switch (proto) {
|
|
|
|
case PROTO_VJCOMP:
|
|
|
|
type = TYPE_COMPRESSED_TCP;
|
|
|
|
break;
|
|
|
|
case PROTO_VJUNCOMP:
|
|
|
|
type = TYPE_UNCOMPRESSED_TCP;
|
|
|
|
break;
|
|
|
|
default:
|
1998-05-01 19:26:12 +00:00
|
|
|
log_Printf(LogERROR, "vj_Input...???\n");
|
1997-08-25 00:29:32 +00:00
|
|
|
return (bp);
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|
1998-03-16 22:54:35 +00:00
|
|
|
bp = VjUncompressTcp(ipcp, bp, type);
|
1997-08-25 00:29:32 +00:00
|
|
|
return (bp);
|
1995-01-31 06:29:58 +00:00
|
|
|
}
|
1997-12-03 10:23:54 +00:00
|
|
|
|
|
|
|
const char *
|
1998-01-11 17:50:49 +00:00
|
|
|
vj2asc(u_int32_t val)
|
1997-12-03 10:23:54 +00:00
|
|
|
{
|
|
|
|
static char asc[50];
|
|
|
|
|
1998-04-16 00:26:21 +00:00
|
|
|
if (val)
|
|
|
|
snprintf(asc, sizeof asc, "%d VJ slots %s slot compression",
|
|
|
|
(int)((val>>8)&15)+1, val & 1 ? "with" : "without");
|
|
|
|
else
|
|
|
|
strcpy(asc, "VJ disabled");
|
1997-12-03 10:23:54 +00:00
|
|
|
return asc;
|
|
|
|
}
|