netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH]ipv6: Add an ICMP error handler icmpv6_err
@ 2012-10-23 15:24 Duan Jiong
  2012-10-24  5:01 ` Steffen Klassert
  0 siblings, 1 reply; 2+ messages in thread
From: Duan Jiong @ 2012-10-23 15:24 UTC (permalink / raw)
  To: davem; +Cc: netdev


Add an ICMP error handler icmpv6_err to deal with ICMPV6 Error
Messages and Redirect Message, when we do not have a socket
context.

Signed-off-by: Duan Jiong <djduanjiong@gmail.com>
---
 net/ipv6/icmp.c | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/net/ipv6/icmp.c b/net/ipv6/icmp.c
index 24d69db..d3cb61d 100644
--- a/net/ipv6/icmp.c
+++ b/net/ipv6/icmp.c
@@ -82,9 +82,12 @@ static inline struct sock *icmpv6_sk(struct net *net)
 }
 
 static int icmpv6_rcv(struct sk_buff *skb);
+static void icmpv6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
+			u8 type, u8 code, int offset, __be32 info);
 
 static const struct inet6_protocol icmpv6_protocol = {
 	.handler	=	icmpv6_rcv,
+	.err_handler	=	icmpv6_err,
 	.flags		=	INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
 };
 
@@ -782,6 +785,26 @@ drop_no_count:
 	return 0;
 }
 
+static void icmpv6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
+			u8 type, u8 code, int offset, __be32 info)
+{
+	struct net *net = dev_net(skb->dev);
+	struct icmp6hdr *hdr = icmp6_hdr(skb);
+
+	switch (hdr->icmp6_type) {
+	case ICMPV6_PKT_TOOBIG:
+		ip6_update_pmtu(skb, net, info, 0, 0);
+		break;
+
+	case NDISC_REDIRECT:
+		ip6_redirect(skb, net, 0, 0);
+		break;
+
+	default:
+		break;
+	}
+}
+
 void icmpv6_flow_init(struct sock *sk, struct flowi6 *fl6,
 		      u8 type,
 		      const struct in6_addr *saddr,
-- 
1.7.11.4

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH]ipv6: Add an ICMP error handler icmpv6_err
  2012-10-23 15:24 [PATCH]ipv6: Add an ICMP error handler icmpv6_err Duan Jiong
@ 2012-10-24  5:01 ` Steffen Klassert
  0 siblings, 0 replies; 2+ messages in thread
From: Steffen Klassert @ 2012-10-24  5:01 UTC (permalink / raw)
  To: Duan Jiong; +Cc: davem, netdev

On Tue, Oct 23, 2012 at 11:24:29PM +0800, Duan Jiong wrote:
> 
> Add an ICMP error handler icmpv6_err to deal with ICMPV6 Error
> Messages and Redirect Message, when we do not have a socket
> context.
> 
> Signed-off-by: Duan Jiong <djduanjiong@gmail.com>
> ---
>  net/ipv6/icmp.c | 23 +++++++++++++++++++++++
>  1 file changed, 23 insertions(+)
> 
> diff --git a/net/ipv6/icmp.c b/net/ipv6/icmp.c
> index 24d69db..d3cb61d 100644
> --- a/net/ipv6/icmp.c
> +++ b/net/ipv6/icmp.c
> @@ -82,9 +82,12 @@ static inline struct sock *icmpv6_sk(struct net *net)
>  }
>  
>  static int icmpv6_rcv(struct sk_buff *skb);
> +static void icmpv6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
> +			u8 type, u8 code, int offset, __be32 info);
>  
>  static const struct inet6_protocol icmpv6_protocol = {
>  	.handler	=	icmpv6_rcv,
> +	.err_handler	=	icmpv6_err,
>  	.flags		=	INET6_PROTO_NOPOLICY|INET6_PROTO_FINAL,
>  };
>  
> @@ -782,6 +785,26 @@ drop_no_count:
>  	return 0;
>  }
>  
> +static void icmpv6_err(struct sk_buff *skb, struct inet6_skb_parm *opt,
> +			u8 type, u8 code, int offset, __be32 info)
> +{
> +	struct net *net = dev_net(skb->dev);
> +	struct icmp6hdr *hdr = icmp6_hdr(skb);
> +
> +	switch (hdr->icmp6_type) {
> +	case ICMPV6_PKT_TOOBIG:
> +		ip6_update_pmtu(skb, net, info, 0, 0);
> +		break;
> +
> +	case NDISC_REDIRECT:
> +		ip6_redirect(skb, net, 0, 0);
> +		break;
> +
> +	default:
> +		break;
> +	}
> +}
> +

Not sure if it really matters, but the ip6_update_pmtu/ip6_redirect
function would be called twice if we have (raw) socket context. Maybe
it's better to do this in raw6_icmp_error() if we have no socket context.
 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-10-24  5:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-23 15:24 [PATCH]ipv6: Add an ICMP error handler icmpv6_err Duan Jiong
2012-10-24  5:01 ` Steffen Klassert

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).