Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 537b361f authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller
Browse files

vti6: better validate user provided tunnel names



Use valid_name() to make sure user does not provide illegal
device name.

Fixes: ed1efb2a ("ipv6: Add support for IPsec virtual tunnel interfaces")
Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
Cc: Steffen Klassert <steffen.klassert@secunet.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent db7a65e3
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -212,10 +212,13 @@ static struct ip6_tnl *vti6_tnl_create(struct net *net, struct __ip6_tnl_parm *p
	char name[IFNAMSIZ];
	int err;

	if (p->name[0])
	if (p->name[0]) {
		if (!dev_valid_name(p->name))
			goto failed;
		strlcpy(name, p->name, IFNAMSIZ);
	else
	} else {
		sprintf(name, "ip6_vti%%d");
	}

	dev = alloc_netdev(sizeof(*t), name, NET_NAME_UNKNOWN, vti6_dev_setup);
	if (!dev)