⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ppp-deflate.c

📁 unix and linux net driver
💻 C
📖 第 1 页 / 共 2 页
字号:
	}	state->stats.inc_bytes += orig_len;	state->stats.inc_packets++;	olen = orig_len;    }    state->stats.unc_bytes += orig_len;    state->stats.unc_packets++;    return olen;}static voidz_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->inc_bytes;    if (stats->ratio <= 0x7ffffff)	stats->ratio <<= 8;    else	out >>= 8;    if (out != 0)	stats->ratio /= out;}/* * Allocate space for a decompressor. */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[0] != CI_DEFLATE_DRAFT)	|| 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;    MALLOC(state, struct deflate_state *, sizeof(struct deflate_state),	   M_DEVBUF, M_NOWAIT);    if (state == NULL)	return NULL;    state->strm.next_out = NULL;    state->strm.zalloc = zalloc;    state->strm.zfree = zfree;    if (inflateInit2(&state->strm, -w_size) != Z_OK) {	FREE(state, M_DEVBUF);	return NULL;    }    state->w_size = w_size;    bzero(&state->stats, sizeof(state->stats));    return (void *) state;}static voidz_decomp_free(arg)    void *arg;{    struct deflate_state *state = (struct deflate_state *) arg;    inflateEnd(&state->strm);    FREE(state, M_DEVBUF);}static intz_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[0] != CI_DEFLATE_DRAFT)	|| 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 voidz_decomp_reset(arg)    void *arg;{    struct deflate_state *state = (struct deflate_state *) arg;    state->seqno = 0;    inflateReset(&state->strm);}/* * Decompress a Deflate-compressed packet. * * Because of patent problems, we return DECOMP_ERROR for errors * found by inspecting the input data and for system problems, but * DECOMP_FATALERROR for any errors which could possibly be said to * be being detected "after" decompression.  For DECOMP_ERROR, * we can issue a CCP reset-request; for DECOMP_FATALERROR, we may be * infringing a patent of Motorola's if we do, so we take CCP down * instead. * * Given that the frame has the correct sequence number and a good FCS, * errors such as invalid codes in the input most likely indicate a * bug, so we return DECOMP_FATALERROR for them in order to turn off * compression, even though they are detected by inspecting the input. */intz_decompress(arg, mi, mop)    void *arg;    struct mbuf *mi, **mop;{    struct deflate_state *state = (struct deflate_state *) arg;    struct mbuf *mo, *mo_head;    u_char *rptr, *wptr;    int rlen, olen, ospace;    int seq, i, flush, r, decode_proto;    u_char hdr[PPP_HDRLEN + DEFLATE_OVHD];    *mop = NULL;    rptr = mtod(mi, u_char *);    rlen = mi->m_len;    for (i = 0; i < PPP_HDRLEN + DEFLATE_OVHD; ++i) {	while (rlen <= 0) {	    mi = mi->m_next;	    if (mi == NULL)		return DECOMP_ERROR;	    rptr = mtod(mi, u_char *);	    rlen = mi->m_len;	}	hdr[i] = *rptr++;	--rlen;    }    /* Check the sequence number. */    seq = (hdr[PPP_HDRLEN] << 8) + hdr[PPP_HDRLEN+1];    if (seq != state->seqno) {	if (state->debug)	    printf("z_decompress%d: bad seq # %d, expected %d\n",		   state->unit, seq, state->seqno);	return DECOMP_ERROR;    }    ++state->seqno;    /* Allocate an output mbuf. */    MGETHDR(mo, M_DONTWAIT, MT_DATA);    if (mo == NULL)	return DECOMP_ERROR;    mo_head = mo;    mo->m_len = 0;    mo->m_next = NULL;    MCLGET(mo, M_DONTWAIT);    ospace = M_TRAILINGSPACE(mo);    if (state->hdrlen + PPP_HDRLEN < ospace) {	mo->m_data += state->hdrlen;	ospace -= state->hdrlen;    }    /*     * Fill in the first part of the PPP header.  The protocol field     * comes from the decompressed data.     */    wptr = mtod(mo, u_char *);    wptr[0] = PPP_ADDRESS(hdr);    wptr[1] = PPP_CONTROL(hdr);    wptr[2] = 0;    /*     * Set up to call inflate.  We set avail_out to 1 initially so we can     * look at the first byte of the output and decide whether we have     * a 1-byte or 2-byte protocol field.     */    state->strm.next_in = rptr;    state->strm.avail_in = rlen;    mi = mi->m_next;    flush = (mi == NULL)? Z_PACKET_FLUSH: Z_NO_FLUSH;    rlen += PPP_HDRLEN + DEFLATE_OVHD;    state->strm.next_out = wptr + 3;    state->strm.avail_out = 1;    decode_proto = 1;    olen = PPP_HDRLEN;    /*     * Call inflate, supplying more input or output as needed.     */    for (;;) {	r = inflate(&state->strm, 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: ""));	    m_freem(mo_head);	    return DECOMP_FATALERROR;	}	if (flush != Z_NO_FLUSH && state->strm.avail_out != 0)	    break;		/* all done */	if (state->strm.avail_in == 0 && mi != NULL) {	    state->strm.next_in = mtod(mi, u_char *);	    state->strm.avail_in = mi->m_len;	    rlen += mi->m_len;	    mi = mi->m_next;	    if (mi == NULL)		flush = Z_PACKET_FLUSH;	}	if (state->strm.avail_out == 0) {	    if (decode_proto) {		state->strm.avail_out = ospace - PPP_HDRLEN;		if ((wptr[3] & 1) == 0) {		    /* 2-byte protocol field */		    wptr[2] = wptr[3];		    --state->strm.next_out;		    ++state->strm.avail_out;		    --olen;		}		decode_proto = 0;	    } else {		mo->m_len = ospace;		olen += ospace;		MGET(mo->m_next, M_DONTWAIT, MT_DATA);		mo = mo->m_next;		if (mo == NULL) {		    m_freem(mo_head);		    return DECOMP_ERROR;		}		MCLGET(mo, M_DONTWAIT);		state->strm.next_out = mtod(mo, u_char *);		state->strm.avail_out = ospace = M_TRAILINGSPACE(mo);	    }	}    }    if (decode_proto) {	m_freem(mo_head);	return DECOMP_ERROR;    }    olen += (mo->m_len = ospace - state->strm.avail_out);#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++;    *mop = mo_head;    return DECOMP_OK;}/* * Incompressible data has arrived - add it to the history. */static voidz_incomp(arg, mi)    void *arg;    struct mbuf *mi;{    struct deflate_state *state = (struct deflate_state *) arg;    u_char *rptr;    int rlen, proto, r;    /*     * Check that the protocol is one we handle.     */    rptr = mtod(mi, u_char *);    proto = PPP_PROTOCOL(rptr);    if (proto > 0x3fff || proto == 0xfd || proto == 0xfb)	return;    ++state->seqno;    /*     * Iterate through the mbufs, adding the characters in them     * to the decompressor's history.  For the first mbuf, we start     * at the either the 1st or 2nd byte of the protocol field,     * depending on whether the protocol value is compressible.     */    rlen = mi->m_len;    state->strm.next_in = rptr + 3;    state->strm.avail_in = rlen - 3;    if (proto > 0xff) {	--state->strm.next_in;	++state->strm.avail_in;    }    for (;;) {	r = inflateIncomp(&state->strm);	if (r != Z_OK) {	    /* gak! */#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;	}	mi = mi->m_next;	if (mi == NULL)	    break;	state->strm.next_in = mtod(mi, u_char *);	state->strm.avail_in = mi->m_len;	rlen += mi->m_len;    }    /*     * Update stats.     */    state->stats.inc_bytes += rlen;    state->stats.inc_packets++;    state->stats.unc_bytes += rlen;    state->stats.unc_packets++;}#endif /* DO_DEFLATE */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -