* [PATCH] ipconfig: stop ip-config if disabled method directed
@ 2013-04-10 7:23 Takashi Yoshii
2013-04-11 3:19 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Takashi Yoshii @ 2013-04-10 7:23 UTC (permalink / raw)
To: netdev
Hi,
Looks insignificant, but a misusage of kernel level auto configuration
results in an invalid ipv4 address set.
That is a kind of corner case, but I think it is be better sanitizing
the input a bit more for our simple in_aton().
--
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=n
Command line: ip=dhcp
result in false ip address 62.0.0.0 set.
If directed autoconf method is not compiled into the kernel,
ip-config should be terminated.
Signed-off-by: Takashi Yoshii <takashi.yoshii.zj@renesas.com>
---
net/ipv4/ipconfig.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/net/ipv4/ipconfig.c b/net/ipv4/ipconfig.c
index bf6c5cf..6401aac 100644
--- a/net/ipv4/ipconfig.c
+++ b/net/ipv4/ipconfig.c
@@ -1586,6 +1586,16 @@ static int __init ip_auto_config_setup(char *addrs)
if (ic_proto_name(addrs))
return 1;
+ /* This mean the kernel is not configured to have the method. */
+ if (strcmp(addrs, "dhcp") == 0 ||
+ strcmp(addrs, "bootp") == 0 ||
+ strcmp(addrs, "rarp") == 0 ||
+ strcmp(addrs, "both") == 0) {
+ pr_warn("IP-Config: autoconf [%s] not compiled in\n", addrs);
+ ic_enable = 0;
+ return 1;
+ }
+
/* If no static IP is given, turn off autoconfig and bail. */
if (*addrs == 0 ||
strcmp(addrs, "off") == 0 ||
--
1.8.1.5
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] ipconfig: stop ip-config if disabled method directed
2013-04-10 7:23 [PATCH] ipconfig: stop ip-config if disabled method directed Takashi Yoshii
@ 2013-04-11 3:19 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2013-04-11 3:19 UTC (permalink / raw)
To: takashi.yoshii.zj; +Cc: netdev
From: Takashi Yoshii <takashi.yoshii.zj@renesas.com>
Date: Wed, 10 Apr 2013 16:23:54 +0900
> Looks insignificant, but a misusage of kernel level auto configuration
> results in an invalid ipv4 address set.
> That is a kind of corner case, but I think it is be better sanitizing
> the input a bit more for our simple in_aton().
> --
>
> CONFIG_IP_PNP=y
> CONFIG_IP_PNP_DHCP=n
> Command line: ip=dhcp
> result in false ip address 62.0.0.0 set.
>
> If directed autoconf method is not compiled into the kernel,
> ip-config should be terminated.
>
> Signed-off-by: Takashi Yoshii <takashi.yoshii.zj@renesas.com>
This is a poor submission.
When you put _before_ the "--" is the commit message, and the
text afterwards will be removed and not considered as part of
the commit message.
Secondly, put this logic into ic_proto_name() so we don't duplicate
all of these string comparisons.
Thirdly, consider simply removing all of these silly Kconfig
options, they seem rediculous.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-04-11 3:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-10 7:23 [PATCH] ipconfig: stop ip-config if disabled method directed Takashi Yoshii
2013-04-11 3:19 ` David Miller
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).