* [PATCH 1/3] vti6: Simplify error handling in module init and exit
2014-07-30 11:12 pull request (net-next): ipsec-next 2014-07-30 Steffen Klassert
@ 2014-07-30 11:12 ` Steffen Klassert
2014-07-30 11:12 ` [PATCH 2/3] vti: " Steffen Klassert
` (3 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Steffen Klassert @ 2014-07-30 11:12 UTC (permalink / raw)
To: David Miller; +Cc: Herbert Xu, Steffen Klassert, netdev
From: Mathias Krause <minipli@googlemail.com>
The error handling in the module init and exit functions can be
shortened to safe us some code.
1/ Remove the code duplications in the init function, jump straight to
the existing cleanup code by adding some labels. Also give the error
message some more value by telling the reason why loading the module has
failed.
2/ Remove the error handling in the exit function as the only legitimate
reason xfrm6_protocol_deregister() might fail is inet6_del_protocol()
returning -1. That, in turn, means some other protocol handler had been
registered for this very protocol in the meantime. But that essentially
means we haven't been handling that protocol any more, anyway. What it
definitely means not is that we "can't deregister protocol". Therefore
just get rid of that bogus warning. It's plain wrong.
Signed-off-by: Mathias Krause <minipli@googlemail.com>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
---
net/ipv6/ip6_vti.c | 51 ++++++++++++++++++++-------------------------------
1 file changed, 20 insertions(+), 31 deletions(-)
diff --git a/net/ipv6/ip6_vti.c b/net/ipv6/ip6_vti.c
index 9aaa6bb..b61b0b1 100644
--- a/net/ipv6/ip6_vti.c
+++ b/net/ipv6/ip6_vti.c
@@ -1089,36 +1089,26 @@ static struct xfrm6_protocol vti_ipcomp6_protocol __read_mostly = {
**/
static int __init vti6_tunnel_init(void)
{
- int err;
+ const char *msg;
+ int err;
+ msg = "tunnel device";
err = register_pernet_device(&vti6_net_ops);
if (err < 0)
- goto out_pernet;
+ goto pernet_dev_failed;
+ msg = "tunnel protocols";
err = xfrm6_protocol_register(&vti_esp6_protocol, IPPROTO_ESP);
- if (err < 0) {
- pr_err("%s: can't register vti6 protocol\n", __func__);
-
- goto out;
- }
-
+ if (err < 0)
+ goto xfrm_proto_esp_failed;
err = xfrm6_protocol_register(&vti_ah6_protocol, IPPROTO_AH);
- if (err < 0) {
- xfrm6_protocol_deregister(&vti_esp6_protocol, IPPROTO_ESP);
- pr_err("%s: can't register vti6 protocol\n", __func__);
-
- goto out;
- }
-
+ if (err < 0)
+ goto xfrm_proto_ah_failed;
err = xfrm6_protocol_register(&vti_ipcomp6_protocol, IPPROTO_COMP);
- if (err < 0) {
- xfrm6_protocol_deregister(&vti_ah6_protocol, IPPROTO_AH);
- xfrm6_protocol_deregister(&vti_esp6_protocol, IPPROTO_ESP);
- pr_err("%s: can't register vti6 protocol\n", __func__);
-
- goto out;
- }
+ if (err < 0)
+ goto xfrm_proto_comp_failed;
+ msg = "netlink interface";
err = rtnl_link_register(&vti6_link_ops);
if (err < 0)
goto rtnl_link_failed;
@@ -1127,11 +1117,14 @@ static int __init vti6_tunnel_init(void)
rtnl_link_failed:
xfrm6_protocol_deregister(&vti_ipcomp6_protocol, IPPROTO_COMP);
+xfrm_proto_comp_failed:
xfrm6_protocol_deregister(&vti_ah6_protocol, IPPROTO_AH);
+xfrm_proto_ah_failed:
xfrm6_protocol_deregister(&vti_esp6_protocol, IPPROTO_ESP);
-out:
+xfrm_proto_esp_failed:
unregister_pernet_device(&vti6_net_ops);
-out_pernet:
+pernet_dev_failed:
+ pr_err("vti6 init: failed to register %s\n", msg);
return err;
}
@@ -1141,13 +1134,9 @@ out_pernet:
static void __exit vti6_tunnel_cleanup(void)
{
rtnl_link_unregister(&vti6_link_ops);
- if (xfrm6_protocol_deregister(&vti_ipcomp6_protocol, IPPROTO_COMP))
- pr_info("%s: can't deregister protocol\n", __func__);
- if (xfrm6_protocol_deregister(&vti_ah6_protocol, IPPROTO_AH))
- pr_info("%s: can't deregister protocol\n", __func__);
- if (xfrm6_protocol_deregister(&vti_esp6_protocol, IPPROTO_ESP))
- pr_info("%s: can't deregister protocol\n", __func__);
-
+ xfrm6_protocol_deregister(&vti_ipcomp6_protocol, IPPROTO_COMP);
+ xfrm6_protocol_deregister(&vti_ah6_protocol, IPPROTO_AH);
+ xfrm6_protocol_deregister(&vti_esp6_protocol, IPPROTO_ESP);
unregister_pernet_device(&vti6_net_ops);
}
--
1.9.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 2/3] vti: Simplify error handling in module init and exit
2014-07-30 11:12 pull request (net-next): ipsec-next 2014-07-30 Steffen Klassert
2014-07-30 11:12 ` [PATCH 1/3] vti6: Simplify error handling in module init and exit Steffen Klassert
@ 2014-07-30 11:12 ` Steffen Klassert
2014-07-30 11:12 ` [PATCH 3/3] xfrm4: Remove duplicate semicolon Steffen Klassert
` (2 subsequent siblings)
4 siblings, 0 replies; 9+ messages in thread
From: Steffen Klassert @ 2014-07-30 11:12 UTC (permalink / raw)
To: David Miller; +Cc: Herbert Xu, Steffen Klassert, netdev
From: Mathias Krause <minipli@googlemail.com>
The error handling in the module init and exit functions can be
shortened to safe us some code.
1/ Remove the code duplications in the init function, jump straight to
the existing cleanup code by adding some labels. Also give the error
message some more value by telling the reason why loading the module has
failed. Furthermore fix the "IPSec" typo -- it should be "IPsec" instead.
2/ Remove the error handling in the exit function as the only legitimate
reason xfrm4_protocol_deregister() might fail is inet_del_protocol()
returning -1. That, in turn, means some other protocol handler had been
registered for this very protocol in the meantime. But that essentially
means we haven't been handling that protocol any more, anyway. What it
definitely means not is that we "can't deregister tunnel". Therefore
just get rid of that bogus warning. It's plain wrong.
Signed-off-by: Mathias Krause <minipli@googlemail.com>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
---
net/ipv4/ip_vti.c | 54 +++++++++++++++++++++---------------------------------
1 file changed, 21 insertions(+), 33 deletions(-)
diff --git a/net/ipv4/ip_vti.c b/net/ipv4/ip_vti.c
index b8960f3..e453cb7 100644
--- a/net/ipv4/ip_vti.c
+++ b/net/ipv4/ip_vti.c
@@ -534,40 +534,28 @@ static struct rtnl_link_ops vti_link_ops __read_mostly = {
static int __init vti_init(void)
{
+ const char *msg;
int err;
- pr_info("IPv4 over IPSec tunneling driver\n");
+ pr_info("IPv4 over IPsec tunneling driver\n");
+ msg = "tunnel device";
err = register_pernet_device(&vti_net_ops);
if (err < 0)
- return err;
- err = xfrm4_protocol_register(&vti_esp4_protocol, IPPROTO_ESP);
- if (err < 0) {
- unregister_pernet_device(&vti_net_ops);
- pr_info("vti init: can't register tunnel\n");
-
- return err;
- }
+ goto pernet_dev_failed;
+ msg = "tunnel protocols";
+ err = xfrm4_protocol_register(&vti_esp4_protocol, IPPROTO_ESP);
+ if (err < 0)
+ goto xfrm_proto_esp_failed;
err = xfrm4_protocol_register(&vti_ah4_protocol, IPPROTO_AH);
- if (err < 0) {
- xfrm4_protocol_deregister(&vti_esp4_protocol, IPPROTO_ESP);
- unregister_pernet_device(&vti_net_ops);
- pr_info("vti init: can't register tunnel\n");
-
- return err;
- }
-
+ if (err < 0)
+ goto xfrm_proto_ah_failed;
err = xfrm4_protocol_register(&vti_ipcomp4_protocol, IPPROTO_COMP);
- if (err < 0) {
- xfrm4_protocol_deregister(&vti_ah4_protocol, IPPROTO_AH);
- xfrm4_protocol_deregister(&vti_esp4_protocol, IPPROTO_ESP);
- unregister_pernet_device(&vti_net_ops);
- pr_info("vti init: can't register tunnel\n");
-
- return err;
- }
+ if (err < 0)
+ goto xfrm_proto_comp_failed;
+ msg = "netlink interface";
err = rtnl_link_register(&vti_link_ops);
if (err < 0)
goto rtnl_link_failed;
@@ -576,23 +564,23 @@ static int __init vti_init(void)
rtnl_link_failed:
xfrm4_protocol_deregister(&vti_ipcomp4_protocol, IPPROTO_COMP);
+xfrm_proto_comp_failed:
xfrm4_protocol_deregister(&vti_ah4_protocol, IPPROTO_AH);
+xfrm_proto_ah_failed:
xfrm4_protocol_deregister(&vti_esp4_protocol, IPPROTO_ESP);
+xfrm_proto_esp_failed:
unregister_pernet_device(&vti_net_ops);
+pernet_dev_failed:
+ pr_err("vti init: failed to register %s\n", msg);
return err;
}
static void __exit vti_fini(void)
{
rtnl_link_unregister(&vti_link_ops);
- if (xfrm4_protocol_deregister(&vti_ipcomp4_protocol, IPPROTO_COMP))
- pr_info("vti close: can't deregister tunnel\n");
- if (xfrm4_protocol_deregister(&vti_ah4_protocol, IPPROTO_AH))
- pr_info("vti close: can't deregister tunnel\n");
- if (xfrm4_protocol_deregister(&vti_esp4_protocol, IPPROTO_ESP))
- pr_info("vti close: can't deregister tunnel\n");
-
-
+ xfrm4_protocol_deregister(&vti_ipcomp4_protocol, IPPROTO_COMP);
+ xfrm4_protocol_deregister(&vti_ah4_protocol, IPPROTO_AH);
+ xfrm4_protocol_deregister(&vti_esp4_protocol, IPPROTO_ESP);
unregister_pernet_device(&vti_net_ops);
}
--
1.9.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [PATCH 3/3] xfrm4: Remove duplicate semicolon
2014-07-30 11:12 pull request (net-next): ipsec-next 2014-07-30 Steffen Klassert
2014-07-30 11:12 ` [PATCH 1/3] vti6: Simplify error handling in module init and exit Steffen Klassert
2014-07-30 11:12 ` [PATCH 2/3] vti: " Steffen Klassert
@ 2014-07-30 11:12 ` Steffen Klassert
2014-07-31 2:07 ` pull request (net-next): ipsec-next 2014-07-30 Ying Xue
2014-07-31 3:06 ` David Miller
4 siblings, 0 replies; 9+ messages in thread
From: Steffen Klassert @ 2014-07-30 11:12 UTC (permalink / raw)
To: David Miller; +Cc: Herbert Xu, Steffen Klassert, netdev
From: Christoph Paasch <christoph.paasch@uclouvain.be>
3328715e6c1fc (xfrm4: Add IPsec protocol multiplexer) adds a
duplicate semicolon after the return-statement.
Although it has no negative impact, the second semicolon should be
removed.
Cc: Steffen Klassert <steffen.klassert@secunet.com>
Cc: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Christoph Paasch <christoph.paasch@uclouvain.be>
Signed-off-by: Steffen Klassert <steffen.klassert@secunet.com>
---
net/ipv4/xfrm4_protocol.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/net/ipv4/xfrm4_protocol.c b/net/ipv4/xfrm4_protocol.c
index a2ce010..dccefa9 100644
--- a/net/ipv4/xfrm4_protocol.c
+++ b/net/ipv4/xfrm4_protocol.c
@@ -124,7 +124,7 @@ static int xfrm4_ah_rcv(struct sk_buff *skb)
for_each_protocol_rcu(ah4_handlers, handler)
if ((ret = handler->handler(skb)) != -EINVAL)
- return ret;;
+ return ret;
icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
--
1.9.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: pull request (net-next): ipsec-next 2014-07-30
2014-07-30 11:12 pull request (net-next): ipsec-next 2014-07-30 Steffen Klassert
` (2 preceding siblings ...)
2014-07-30 11:12 ` [PATCH 3/3] xfrm4: Remove duplicate semicolon Steffen Klassert
@ 2014-07-31 2:07 ` Ying Xue
2014-07-31 10:29 ` Steffen Klassert
2014-07-31 3:06 ` David Miller
4 siblings, 1 reply; 9+ messages in thread
From: Ying Xue @ 2014-07-31 2:07 UTC (permalink / raw)
To: Steffen Klassert, David Miller; +Cc: Herbert Xu, netdev
Hi Steffen,
Sorry, it seems you don't include below patch in your pull request:
http://patchwork.ozlabs.org/patch/369818/
Regards,
Ying
On 07/30/2014 07:12 PM, Steffen Klassert wrote:
> This is the last pull request for ipsec-next before I'll be
> off for two weeks starting on friday. David, can you please
> take urgent ipsec patches directly into net/net-next during
> this time?
>
> 1) Error handling simplifications for vti and vti6.
> From Mathias Krause.
>
> 2) Remove a duplicate semicolon after a return statement.
> From Christoph Paasch.
>
> Please pull or let me know if there are problems.
>
> Thanks!
>
> The following changes since commit 644a918d20336a7deaa81f675c3c2f25bf3dafbb:
>
> enic: Make dummy rfs functions inline to fix !CONFIG_RFS_ACCEL build (2014-06-25 18:04:41 -0700)
>
> are available in the git repository at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git master
>
> for you to fetch changes up to 1759389e8af46d724220785bf710b7bdbebdfa48:
>
> xfrm4: Remove duplicate semicolon (2014-06-30 07:49:47 +0200)
>
> ----------------------------------------------------------------
> Christoph Paasch (1):
> xfrm4: Remove duplicate semicolon
>
> Mathias Krause (2):
> vti6: Simplify error handling in module init and exit
> vti: Simplify error handling in module init and exit
>
> net/ipv4/ip_vti.c | 54 ++++++++++++++++++-----------------------------
> net/ipv4/xfrm4_protocol.c | 2 +-
> net/ipv6/ip6_vti.c | 51 ++++++++++++++++++--------------------------
> 3 files changed, 42 insertions(+), 65 deletions(-)
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: pull request (net-next): ipsec-next 2014-07-30
2014-07-30 11:12 pull request (net-next): ipsec-next 2014-07-30 Steffen Klassert
` (3 preceding siblings ...)
2014-07-31 2:07 ` pull request (net-next): ipsec-next 2014-07-30 Ying Xue
@ 2014-07-31 3:06 ` David Miller
2014-08-19 10:29 ` Steffen Klassert
4 siblings, 1 reply; 9+ messages in thread
From: David Miller @ 2014-07-31 3:06 UTC (permalink / raw)
To: steffen.klassert; +Cc: herbert, netdev
From: Steffen Klassert <steffen.klassert@secunet.com>
Date: Wed, 30 Jul 2014 13:12:25 +0200
> This is the last pull request for ipsec-next before I'll be
> off for two weeks starting on friday. David, can you please
> take urgent ipsec patches directly into net/net-next during
> this time?
Sure, no problem.
> 1) Error handling simplifications for vti and vti6.
> From Mathias Krause.
>
> 2) Remove a duplicate semicolon after a return statement.
> From Christoph Paasch.
>
> Please pull or let me know if there are problems.
Pulled, thanks Steffen.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: pull request (net-next): ipsec-next 2014-07-30
2014-07-31 3:06 ` David Miller
@ 2014-08-19 10:29 ` Steffen Klassert
2014-08-22 1:11 ` David Miller
0 siblings, 1 reply; 9+ messages in thread
From: Steffen Klassert @ 2014-08-19 10:29 UTC (permalink / raw)
To: David Miller; +Cc: herbert, netdev
On Wed, Jul 30, 2014 at 08:06:16PM -0700, David Miller wrote:
> From: Steffen Klassert <steffen.klassert@secunet.com>
> Date: Wed, 30 Jul 2014 13:12:25 +0200
>
> > This is the last pull request for ipsec-next before I'll be
> > off for two weeks starting on friday. David, can you please
> > take urgent ipsec patches directly into net/net-next during
> > this time?
>
> Sure, no problem.
>
I'm back and continue to run the IPsec trees.
Thanks for helping out in the meantime!
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: pull request (net-next): ipsec-next 2014-07-30
2014-08-19 10:29 ` Steffen Klassert
@ 2014-08-22 1:11 ` David Miller
0 siblings, 0 replies; 9+ messages in thread
From: David Miller @ 2014-08-22 1:11 UTC (permalink / raw)
To: steffen.klassert; +Cc: herbert, netdev
From: Steffen Klassert <steffen.klassert@secunet.com>
Date: Tue, 19 Aug 2014 12:29:32 +0200
> On Wed, Jul 30, 2014 at 08:06:16PM -0700, David Miller wrote:
>> From: Steffen Klassert <steffen.klassert@secunet.com>
>> Date: Wed, 30 Jul 2014 13:12:25 +0200
>>
>> > This is the last pull request for ipsec-next before I'll be
>> > off for two weeks starting on friday. David, can you please
>> > take urgent ipsec patches directly into net/net-next during
>> > this time?
>>
>> Sure, no problem.
>>
>
> I'm back and continue to run the IPsec trees.
>
> Thanks for helping out in the meantime!
Welcome back :-)
^ permalink raw reply [flat|nested] 9+ messages in thread