#include <sys/types.h>
#include <stddef.h>
#include <stdlib.h>
#ifdef PPP_DEFS_IN_NET
#include <net/ppp_defs.h>
#else
#include "ppp_defs.h"
#endif
#include "ppp-comp.h"
#include "zlib.h"
#if DO_DEFLATE
#define DEFLATE_DEBUG 1
struct deflate_state {
int seqno;
int w_size;
int unit;
int hdrlen;
int mru;
int debug;
z_stream strm;
struct compstat stats;
};
#define DEFLATE_OVHD 2
static void *z_alloc __P((void *, u_int items, u_int size));
static void z_free __P((void *, void *ptr, u_int nb));
static void *z_decomp_alloc __P((u_char *options, int opt_len));
static void z_decomp_free __P((void *state));
static int z_decomp_init __P((void *state, u_char *options, int opt_len,
int unit, int hdrlen, int mru, int debug));
static void z_incomp __P((void *state, u_char *dmsg, int len));
static int z_decompress __P((void *state, u_char *cmp, int inlen,
u_char *dmp, int *outlenp));
static void z_decomp_reset __P((void *state));
static void z_comp_stats __P((void *state, struct compstat *stats));
struct compressor ppp_deflate = {
CI_DEFLATE,
z_decomp_alloc,
z_decomp_free,
z_decomp_init,
z_decomp_reset,
z_decompress,
z_incomp,
z_comp_stats,
};
static void *
z_alloc(notused, items, size)
void *notused;
u_int items, size;
{
return malloc(items * size);
}
static void
z_free(notused, ptr, nbytes)
void *notused;
void *ptr;
u_int nbytes;
{
free(ptr);
}
static void
z_comp_stats(arg, stats)
void *arg;
struct compstat *stats;
{
struct deflate_state *state = (struct deflate_state *) arg;
u_int out;
*stats = state->stats;
stats->ratio = stats->unc_bytes;
out = stats->comp_bytes + stats->unc_bytes;
if (stats->ratio <= 0x7ffffff)
stats->ratio <<= 8;
else
out >>= 8;
if (out != 0)
stats->ratio /= out;
}
static void *
z_decomp_alloc(options, opt_len)
u_char *options;
int opt_len;
{
struct deflate_state *state;
int w_size;
if (opt_len != CILEN_DEFLATE || options[0] != CI_DEFLATE
|| options[1] != CILEN_DEFLATE
|| DEFLATE_METHOD(options[2]) != DEFLATE_METHOD_VAL
|| options[3] != DEFLATE_CHK_SEQUENCE)
return NULL;
w_size = DEFLATE_SIZE(options[2]);
if (w_size < DEFLATE_MIN_SIZE || w_size > DEFLATE_MAX_SIZE)
return NULL;
state = (struct deflate_state *) malloc(sizeof(*state));
if (state == NULL)
return NULL;
state->strm.next_out = NULL;
state->strm.zalloc = (alloc_func) z_alloc;
state->strm.zfree = (free_func) z_free;
if (inflateInit2(&state->strm, -w_size) != Z_OK) {
free(state);
return NULL;
}
state->w_size = w_size;
memset(&state->stats, 0, sizeof(state->stats));
return (void *) state;
}
static void
z_decomp_free(arg)
void *arg;
{
struct deflate_state *state = (struct deflate_state *) arg;
inflateEnd(&state->strm);
free(state);
}
static int
z_decomp_init(arg, options, opt_len, unit, hdrlen, mru, debug)
void *arg;
u_char *options;
int opt_len, unit, hdrlen, mru, debug;
{
struct deflate_state *state = (struct deflate_state *) arg;
if (opt_len < CILEN_DEFLATE || options[0] != CI_DEFLATE
|| options[1] != CILEN_DEFLATE
|| DEFLATE_METHOD(options[2]) != DEFLATE_METHOD_VAL
|| DEFLATE_SIZE(options[2]) != state->w_size
|| options[3] != DEFLATE_CHK_SEQUENCE)
return 0;
state->seqno = 0;
state->unit = unit;
state->hdrlen = hdrlen;
state->debug = debug;
state->mru = mru;
inflateReset(&state->strm);
return 1;
}
static void
z_decomp_reset(arg)
void *arg;
{
struct deflate_state *state = (struct deflate_state *) arg;
state->seqno = 0;
inflateReset(&state->strm);
}
static int
z_decompress(arg, mi, inlen, mo, outlenp)
void *arg;
u_char *mi, *mo;
int inlen, *outlenp;
{
struct deflate_state *state = (struct deflate_state *) arg;
u_char *rptr, *wptr;
int rlen, olen, ospace;
int seq, i, flush, r, decode_proto;
rptr = mi;
if (*rptr == 0)
++rptr;
++rptr;
seq = (rptr[0] << 8) + rptr[1];
rptr += 2;
if (seq != state->seqno) {
#if !DEFLATE_DEBUG
if (state->debug)
#endif
printf("z_decompress%d: bad seq # %d, expected %d\n",
state->unit, seq, state->seqno);
return DECOMP_ERROR;
}
++state->seqno;
wptr = mo;
state->strm.next_in = rptr;
state->strm.avail_in = mi + inlen - rptr;
rlen = state->strm.avail_in + PPP_HDRLEN + DEFLATE_OVHD;
state->strm.next_out = wptr;
state->strm.avail_out = state->mru + 2;
r = inflate(&state->strm, Z_PACKET_FLUSH);
if (r != Z_OK) {
#if !DEFLATE_DEBUG
if (state->debug)
#endif
printf("z_decompress%d: inflate returned %d (%s)\n",
state->unit, r, (state->strm.msg? state->strm.msg: ""));
return DECOMP_FATALERROR;
}
olen = state->mru + 2 - state->strm.avail_out;
*outlenp = olen;
if ((wptr[0] & 1) != 0)
++olen;
olen += 2;
#if DEFLATE_DEBUG
if (olen > state->mru + PPP_HDRLEN)
printf("ppp_deflate%d: exceeded mru (%d > %d)\n",
state->unit, olen, state->mru + PPP_HDRLEN);
#endif
state->stats.unc_bytes += olen;
state->stats.unc_packets++;
state->stats.comp_bytes += rlen;
state->stats.comp_packets++;
return DECOMP_OK;
}
static void
z_incomp(arg, mi, mlen)
void *arg;
u_char *mi;
int mlen;
{
struct deflate_state *state = (struct deflate_state *) arg;
u_char *rptr;
int rlen, proto, r;
rptr = mi;
proto = rptr[0];
if ((proto & 1) == 0)
proto = (proto << 8) + rptr[1];
if (proto > 0x3fff || proto == 0xfd || proto == 0xfb)
return;
++state->seqno;
if (rptr[0] == 0)
++rptr;
rlen = mi + mlen - rptr;
state->strm.next_in = rptr;
state->strm.avail_in = rlen;
r = inflateIncomp(&state->strm);
if (r != Z_OK) {
#if !DEFLATE_DEBUG
if (state->debug)
#endif
printf("z_incomp%d: inflateIncomp returned %d (%s)\n",
state->unit, r, (state->strm.msg? state->strm.msg: ""));
return;
}
if (proto <= 0xff)
++rlen;
rlen += 2;
state->stats.inc_bytes += rlen;
state->stats.inc_packets++;
state->stats.unc_bytes += rlen;
state->stats.unc_packets++;
}
#endif