Commit 9a810468 authored by Jakub Kicinski's avatar Jakub Kicinski

net: reduce indentation of __dev_alloc_name()

All callers of __dev_valid_name() go thru dev_prep_valid_name()
which handles the non-printf case. Focus __dev_alloc_name() on
the sprintf case, remove the indentation level.

Minor functional change of returning -EINVAL if % is not found,
which should now never happen.
Reviewed-by: default avatarJiri Pirko <jiri@nvidia.com>
Link: https://lore.kernel.org/r/20231023152346.3639749-4-kuba@kernel.orgSigned-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 556c755a
...@@ -1080,50 +1080,46 @@ static int __dev_alloc_name(struct net *net, const char *name, char *res) ...@@ -1080,50 +1080,46 @@ static int __dev_alloc_name(struct net *net, const char *name, char *res)
if (!dev_valid_name(name)) if (!dev_valid_name(name))
return -EINVAL; return -EINVAL;
/* Verify the string as this thing may have come from the user.
* There must be one "%d" and no other "%" characters.
*/
p = strchr(name, '%'); p = strchr(name, '%');
if (p) { if (!p || p[1] != 'd' || strchr(p + 2, '%'))
/* return -EINVAL;
* Verify the string as this thing may have come from
* the user. There must be either one "%d" and no other "%"
* characters.
*/
if (p[1] != 'd' || strchr(p + 2, '%'))
return -EINVAL;
/* Use one page as a bit array of possible slots */
inuse = bitmap_zalloc(max_netdevices, GFP_ATOMIC);
if (!inuse)
return -ENOMEM;
for_each_netdev(net, d) { /* Use one page as a bit array of possible slots */
struct netdev_name_node *name_node; inuse = bitmap_zalloc(max_netdevices, GFP_ATOMIC);
if (!inuse)
return -ENOMEM;
netdev_for_each_altname(d, name_node) { for_each_netdev(net, d) {
if (!sscanf(name_node->name, name, &i)) struct netdev_name_node *name_node;
continue;
if (i < 0 || i >= max_netdevices)
continue;
/* avoid cases where sscanf is not exact inverse of printf */ netdev_for_each_altname(d, name_node) {
snprintf(buf, IFNAMSIZ, name, i); if (!sscanf(name_node->name, name, &i))
if (!strncmp(buf, name_node->name, IFNAMSIZ))
__set_bit(i, inuse);
}
if (!sscanf(d->name, name, &i))
continue; continue;
if (i < 0 || i >= max_netdevices) if (i < 0 || i >= max_netdevices)
continue; continue;
/* avoid cases where sscanf is not exact inverse of printf */ /* avoid cases where sscanf is not exact inverse of printf */
snprintf(buf, IFNAMSIZ, name, i); snprintf(buf, IFNAMSIZ, name, i);
if (!strncmp(buf, d->name, IFNAMSIZ)) if (!strncmp(buf, name_node->name, IFNAMSIZ))
__set_bit(i, inuse); __set_bit(i, inuse);
} }
if (!sscanf(d->name, name, &i))
continue;
if (i < 0 || i >= max_netdevices)
continue;
i = find_first_zero_bit(inuse, max_netdevices); /* avoid cases where sscanf is not exact inverse of printf */
bitmap_free(inuse); snprintf(buf, IFNAMSIZ, name, i);
if (!strncmp(buf, d->name, IFNAMSIZ))
__set_bit(i, inuse);
} }
i = find_first_zero_bit(inuse, max_netdevices);
bitmap_free(inuse);
snprintf(buf, IFNAMSIZ, name, i); snprintf(buf, IFNAMSIZ, name, i);
if (!netdev_name_in_use(net, buf)) { if (!netdev_name_in_use(net, buf)) {
strscpy(res, buf, IFNAMSIZ); strscpy(res, buf, IFNAMSIZ);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment