All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dan Williams <dcbw@redhat.com>
To: Guillaume Nault <g.nault@alphalink.fr>, netdev@vger.kernel.org
Cc: linux-ppp@vger.kernel.org, David Miller <davem@davemloft.net>
Subject: Re: [PATCH net-next] pppoe: optional deactivation of PADT packet handling
Date: Tue, 15 Dec 2015 16:50:05 +0000	[thread overview]
Message-ID: <1450198205.3851.6.camel@redhat.com> (raw)
In-Reply-To: <712ac4d53ca9fb8621164a1b72c74eae8c8529aa.1450194732.git.g.nault@alphalink.fr>

On Tue, 2015-12-15 at 17:06 +0100, Guillaume Nault wrote:
> Kernel space shouldn't handle PADT packets since PADT belongs to
> PPPoE's control plane.
> With "handle_padt" module option, user space can now decide to avoid
> kernel interpretation of PADT packets and be responsible for session
> disconnection.

In general, module options like this kinda suck.  How about a new PPPoE
ioctl so the option can be toggled for a given socket/session instead? 
 Then at least you're not locked into a specific PPPoE implementation
for all sessions on the machine.

Dan

> Signed-off-by: Guillaume Nault <g.nault@alphalink.fr>
> ---
> The two open-source PPPoE programs I know of are accel-ppp and pppd
> (with the rp-pppoe plugin). Accel-ppp already handles PADT, while
> pppd + rp-pppoe doesn't (seems like it doesn't even listen to its
> PPPoE Discovery socket once session is established).
> 
> 
>  drivers/net/ppp/pppoe.c | 18 ++++++++++++++++--
>  1 file changed, 16 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/net/ppp/pppoe.c b/drivers/net/ppp/pppoe.c
> index b8da2ea..1846c3a 100644
> --- a/drivers/net/ppp/pppoe.c
> +++ b/drivers/net/ppp/pppoe.c
> @@ -109,6 +109,18 @@ struct pppoe_net {
>  	rwlock_t hash_lock;
>  };
>  
> +/* PADT packets belong to PPPoE's discovery stage (i.e. control
> plane)
> + * and should be handled by user space. Unfortunately, some programs
> + * don't listen out for PADT packets and rely on pppoe module for
> + * closing session after reception of PADT.
> + *
> + * This option can be deactivated when PPPoE discovery is handled by
> + * a PADT aware program.
> + */
> +static bool handle_padt __read_mostly = true;
> +module_param(handle_padt, bool, 0444);
> +MODULE_PARM_DESC(handle_padt, "Let kernel interpret incoming PADT");
> +
>  /*
>   * PPPoE could be in the following stages:
>   * 1) Discovery stage (to obtain remote MAC and Session ID)
> @@ -1173,7 +1185,8 @@ static int __init pppoe_init(void)
>  		goto out_unregister_pppoe_proto;
>  
>  	dev_add_pack(&pppoes_ptype);
> -	dev_add_pack(&pppoed_ptype);
> +	if (handle_padt)
> +		dev_add_pack(&pppoed_ptype);
>  	register_netdevice_notifier(&pppoe_notifier);
>  
>  	return 0;
> @@ -1189,7 +1202,8 @@ out:
>  static void __exit pppoe_exit(void)
>  {
>  	unregister_netdevice_notifier(&pppoe_notifier);
> -	dev_remove_pack(&pppoed_ptype);
> +	if (handle_padt)
> +		dev_remove_pack(&pppoed_ptype);
>  	dev_remove_pack(&pppoes_ptype);
>  	unregister_pppox_proto(PX_PROTO_OE);
>  	proto_unregister(&pppoe_sk_proto);

WARNING: multiple messages have this Message-ID (diff)
From: Dan Williams <dcbw@redhat.com>
To: Guillaume Nault <g.nault@alphalink.fr>, netdev@vger.kernel.org
Cc: linux-ppp@vger.kernel.org, David Miller <davem@davemloft.net>
Subject: Re: [PATCH net-next] pppoe: optional deactivation of PADT packet handling
Date: Tue, 15 Dec 2015 10:50:05 -0600	[thread overview]
Message-ID: <1450198205.3851.6.camel@redhat.com> (raw)
In-Reply-To: <712ac4d53ca9fb8621164a1b72c74eae8c8529aa.1450194732.git.g.nault@alphalink.fr>

On Tue, 2015-12-15 at 17:06 +0100, Guillaume Nault wrote:
> Kernel space shouldn't handle PADT packets since PADT belongs to
> PPPoE's control plane.
> With "handle_padt" module option, user space can now decide to avoid
> kernel interpretation of PADT packets and be responsible for session
> disconnection.

In general, module options like this kinda suck.  How about a new PPPoE
ioctl so the option can be toggled for a given socket/session instead? 
 Then at least you're not locked into a specific PPPoE implementation
for all sessions on the machine.

Dan

> Signed-off-by: Guillaume Nault <g.nault@alphalink.fr>
> ---
> The two open-source PPPoE programs I know of are accel-ppp and pppd
> (with the rp-pppoe plugin). Accel-ppp already handles PADT, while
> pppd + rp-pppoe doesn't (seems like it doesn't even listen to its
> PPPoE Discovery socket once session is established).
> 
> 
>  drivers/net/ppp/pppoe.c | 18 ++++++++++++++++--
>  1 file changed, 16 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/net/ppp/pppoe.c b/drivers/net/ppp/pppoe.c
> index b8da2ea..1846c3a 100644
> --- a/drivers/net/ppp/pppoe.c
> +++ b/drivers/net/ppp/pppoe.c
> @@ -109,6 +109,18 @@ struct pppoe_net {
>  	rwlock_t hash_lock;
>  };
>  
> +/* PADT packets belong to PPPoE's discovery stage (i.e. control
> plane)
> + * and should be handled by user space. Unfortunately, some programs
> + * don't listen out for PADT packets and rely on pppoe module for
> + * closing session after reception of PADT.
> + *
> + * This option can be deactivated when PPPoE discovery is handled by
> + * a PADT aware program.
> + */
> +static bool handle_padt __read_mostly = true;
> +module_param(handle_padt, bool, 0444);
> +MODULE_PARM_DESC(handle_padt, "Let kernel interpret incoming PADT");
> +
>  /*
>   * PPPoE could be in the following stages:
>   * 1) Discovery stage (to obtain remote MAC and Session ID)
> @@ -1173,7 +1185,8 @@ static int __init pppoe_init(void)
>  		goto out_unregister_pppoe_proto;
>  
>  	dev_add_pack(&pppoes_ptype);
> -	dev_add_pack(&pppoed_ptype);
> +	if (handle_padt)
> +		dev_add_pack(&pppoed_ptype);
>  	register_netdevice_notifier(&pppoe_notifier);
>  
>  	return 0;
> @@ -1189,7 +1202,8 @@ out:
>  static void __exit pppoe_exit(void)
>  {
>  	unregister_netdevice_notifier(&pppoe_notifier);
> -	dev_remove_pack(&pppoed_ptype);
> +	if (handle_padt)
> +		dev_remove_pack(&pppoed_ptype);
>  	dev_remove_pack(&pppoes_ptype);
>  	unregister_pppox_proto(PX_PROTO_OE);
>  	proto_unregister(&pppoe_sk_proto);

  reply	other threads:[~2015-12-15 16:50 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-12-15 16:06 [PATCH net-next] pppoe: optional deactivation of PADT packet handling Guillaume Nault
2015-12-15 16:06 ` Guillaume Nault
2015-12-15 16:50 ` Dan Williams [this message]
2015-12-15 16:50   ` Dan Williams
2015-12-16 15:39   ` Guillaume Nault
2015-12-16 15:39     ` Guillaume Nault
2015-12-15 18:15 ` David Miller
2015-12-15 18:15   ` David Miller

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=1450198205.3851.6.camel@redhat.com \
    --to=dcbw@redhat.com \
    --cc=davem@davemloft.net \
    --cc=g.nault@alphalink.fr \
    --cc=linux-ppp@vger.kernel.org \
    --cc=netdev@vger.kernel.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.