From: Matt Domsch <Matt_Domsch@dell.com>
To: Christoph Hellwig <hch@infradead.org>, linux-ppp@vger.kernel.org
Cc: netdev@oss.sgi.com, pptpclient-devel@lists.sourceforge.net,
paulus@samba.org
Subject: Re: RFC: [1/2] PPP MPPE module
Date: Mon, 21 Jun 2004 11:39:20 -0500 [thread overview]
Message-ID: <20040621163920.GB29472@lists.us.dell.com> (raw)
In-Reply-To: <20040618161558.GA22913@infradead.org>
[-- Attachment #1: Type: text/plain, Size: 4910 bytes --]
On Fri, Jun 18, 2004 at 05:15:58PM +0100, Christoph Hellwig wrote:
> Last time I talked to Paul on MPPE he didn't like those hacks in
> the ppp core.
Adding the linux-ppp list to the discussion.
Rather than have code in ppp_generic.c testing for CI_MPPE and doing
code conditionally (which I agree was ugly), how about adding two new
fields to struct compressor:
+ /* Extra skb space needed by the compressor algorithm */
+ unsigned int comp_skb_extra_space;
+ /* Extra skb space needed by the decompressor algorithm */
+ unsigned int decomp_skb_extra_space;
which the compressor modules can fill in if needed? Presently,
bsd_comp.c and ppp_deflate.c don't need these, so they will be filled
with zeros automatically at struct compressor instantiation.
This hunk may still be contriversial though. It adds a negative
return value to the compress() method, which is only (presently) used
by ppp_mppe (bsd_comp.c and ppp_deflate.c always return 0 if they
couldn't compress), to indicate the frame should be dropped.
- } else {
+ } else if (len == 0) {
/* didn't compress, or CCP not up yet */
kfree_skb(new_skb);
+ } else {
+ /*
+ * (len < 0)
+ * MPPE requires that we do not send unencrypted
+ * frames. The compressor will return -1 if we
+ * should drop the frame. We cannot simply test
+ * the compress_proto because MPPE and MPPC share
+ * the same number.
+ */
+ printk(KERN_ERR "ppp: compressor dropped pkt\n");
+ kfree_skb(new_skb);
+ goto drop;
Thoughts?
Patch below against 2.6.7-bk ppp_generic.c and ppp-comp.h to add such,
for comment only.
Thanks,
Matt
--
Matt Domsch
Sr. Software Engineer, Lead Engineer
Dell Linux Solutions linux.dell.com & www.dell.com/linux
Linux on Dell mailing lists @ http://lists.us.dell.com
===== drivers/net/ppp_generic.c 1.45 vs edited =====
--- 1.45/drivers/net/ppp_generic.c 2004-04-09 18:21:06 -05:00
+++ edited/drivers/net/ppp_generic.c 2004-06-21 10:56:34 -05:00
@@ -1066,8 +1066,9 @@
/* try to do packet compression */
if ((ppp->xstate & SC_COMP_RUN) && ppp->xc_state != 0
&& proto != PPP_LCP && proto != PPP_CCP) {
- new_skb = alloc_skb(ppp->dev->mtu + ppp->dev->hard_header_len,
- GFP_ATOMIC);
+ int new_skb_size = ppp->dev->mtu + ppp->xcomp->comp_skb_extra_space + ppp->dev->hard_header_len;
+ int compressor_skb_size = ppp->dev->mtu + ppp->xcomp->comp_skb_extra_space + PPP_HDRLEN;
+ new_skb = alloc_skb(new_skb_size, GFP_ATOMIC);
if (new_skb == 0) {
printk(KERN_ERR "PPP: no memory (comp pkt)\n");
goto drop;
@@ -1079,15 +1080,27 @@
/* compressor still expects A/C bytes in hdr */
len = ppp->xcomp->compress(ppp->xc_state, skb->data - 2,
new_skb->data, skb->len + 2,
- ppp->dev->mtu + PPP_HDRLEN);
+ compressor_skb_size);
if (len > 0 && (ppp->flags & SC_CCP_UP)) {
kfree_skb(skb);
skb = new_skb;
skb_put(skb, len);
skb_pull(skb, 2); /* pull off A/C bytes */
- } else {
+ } else if (len == 0) {
/* didn't compress, or CCP not up yet */
kfree_skb(new_skb);
+ } else {
+ /*
+ * (len < 0)
+ * MPPE requires that we do not send unencrypted
+ * frames. The compressor will return -1 if we
+ * should drop the frame. We cannot simply test
+ * the compress_proto because MPPE and MPPC share
+ * the same number.
+ */
+ printk(KERN_ERR "ppp: compressor dropped pkt\n");
+ kfree_skb(new_skb);
+ goto drop;
}
}
@@ -1596,7 +1609,7 @@
goto err;
if (proto == PPP_COMP) {
- ns = dev_alloc_skb(ppp->mru + PPP_HDRLEN);
+ ns = dev_alloc_skb(ppp->mru + ppp->rcomp->decomp_skb_extra_space + PPP_HDRLEN);
if (ns == 0) {
printk(KERN_ERR "ppp_decompress_frame: no memory\n");
goto err;
===== include/linux/ppp-comp.h 1.4 vs edited =====
--- 1.4/include/linux/ppp-comp.h 2003-08-07 18:57:19 -05:00
+++ edited/include/linux/ppp-comp.h 2004-06-21 10:59:44 -05:00
@@ -111,6 +111,10 @@
/* Used in locking compressor modules */
struct module *owner;
+ /* Extra skb space needed by the compressor algorithm */
+ unsigned int comp_skb_extra_space;
+ /* Extra skb space needed by the decompressor algorithm */
+ unsigned int decomp_skb_extra_space;
};
/*
[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]
prev parent reply other threads:[~2004-06-21 16:39 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-06-18 16:10 RFC: [0/3] PPP MPPE module Matt Domsch
2004-06-18 16:10 ` RFC: [1/3] " Matt Domsch
2004-06-18 18:03 ` Stephen Hemminger
2004-06-18 19:31 ` [pptp-devel] " Matt Domsch
2004-06-18 16:12 ` RFC: [1/2] " Matt Domsch
2004-06-18 16:15 ` Christoph Hellwig
2004-06-21 16:39 ` Matt Domsch [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20040621163920.GB29472@lists.us.dell.com \
--to=matt_domsch@dell.com \
--cc=hch@infradead.org \
--cc=linux-ppp@vger.kernel.org \
--cc=netdev@oss.sgi.com \
--cc=paulus@samba.org \
--cc=pptpclient-devel@lists.sourceforge.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).