net-tools/net-tools-ifconfig-long-iface-crasher.patch

37 lines
942 B
Diff
Raw Normal View History

2012-10-04 09:54:40 +00:00
diff -up net-tools-2.0/lib/interface.c.long_iface net-tools-2.0/lib/interface.c
--- net-tools-2.0/lib/interface.c.long_iface 2012-10-04 11:35:27.983694933 +0200
+++ net-tools-2.0/lib/interface.c 2012-10-04 11:35:27.991694805 +0200
2011-12-06 18:15:09 +00:00
@@ -216,6 +216,7 @@ out:
2011-12-06 18:15:09 +00:00
char *get_name(char **namep, char *p)
{
2011-12-06 18:15:09 +00:00
+ int count = 0;
while (isspace(*p))
p++;
2008-07-15 12:30:02 +00:00
char *name = *namep = p;
2011-12-06 18:15:09 +00:00
@@ -224,7 +225,13 @@ char *get_name(char **namep, char *p)
break;
if (*p == ':') { /* could be an alias */
2011-12-06 18:15:09 +00:00
char *dot = p++;
- while (*p && isdigit(*p)) p++;
+ count++;
+ while (*p && isdigit(*p)) {
+ p++;
+ count++;
+ if (count == (IFNAMSIZ-1))
+ break;
+ }
if (*p == ':') {
/* Yes it is, backup and copy it. */
p = dot;
@@ -240,6 +247,9 @@ char *get_name(char **namep, char *p)
break;
}
*name++ = *p++;
+ count++;
+ if (count == (IFNAMSIZ-1))
+ break;
}
*name++ = '\0';
return p;