Skip to content

Commit

Permalink
conf: use lxc_safe_{u}int()
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Brauner <christian.brauner@canonical.com>
  • Loading branch information
Christian Brauner authored and stgraber committed Nov 22, 2016
1 parent 6b9550e commit f36346a
Showing 1 changed file with 21 additions and 8 deletions.
29 changes: 21 additions & 8 deletions src/lxc/conf.c
Expand Up @@ -2504,7 +2504,8 @@ static int instantiate_veth(struct lxc_handler *handler, struct lxc_netdev *netd
{
char veth1buf[IFNAMSIZ], *veth1;
char veth2buf[IFNAMSIZ], *veth2;
int bridge_index, err, mtu = 0;
int bridge_index, err;
unsigned int mtu = 0;

if (netdev->priv.veth_attr.pair) {
veth1 = netdev->priv.veth_attr.pair;
Expand Down Expand Up @@ -2556,8 +2557,10 @@ static int instantiate_veth(struct lxc_handler *handler, struct lxc_netdev *netd
}

if (netdev->mtu) {
mtu = atoi(netdev->mtu);
INFO("Retrieved mtu %d", mtu);
if (lxc_safe_uint(netdev->mtu, &mtu) < 0)
WARN("Failed to parse mtu from.");
else
INFO("Retrieved mtu %d", mtu);
} else if (netdev->link) {
bridge_index = if_nametoindex(netdev->link);
if (bridge_index) {
Expand Down Expand Up @@ -2706,6 +2709,7 @@ static int instantiate_vlan(struct lxc_handler *handler, struct lxc_netdev *netd
char peer[IFNAMSIZ];
int err;
static uint16_t vlan_cntr = 0;
unsigned int mtu = 0;

if (!netdev->link) {
ERROR("no link specified for vlan netdev");
Expand Down Expand Up @@ -2735,7 +2739,12 @@ static int instantiate_vlan(struct lxc_handler *handler, struct lxc_netdev *netd
DEBUG("instantiated vlan '%s', ifindex is '%d'", " vlan1000",
netdev->ifindex);
if (netdev->mtu) {
err = lxc_netdev_set_mtu(peer, atoi(netdev->mtu));
if (lxc_safe_uint(netdev->mtu, &mtu) < 0) {
ERROR("Failed to retrieve mtu from: '%d'/'%s'.",
netdev->ifindex, netdev->name);
return -1;
}
err = lxc_netdev_set_mtu(peer, mtu);
if (err) {
ERROR("failed to set mtu '%s' for %s : %s",
netdev->mtu, peer, strerror(-err));
Expand Down Expand Up @@ -4449,8 +4458,10 @@ void suggest_default_idmap(void)
p2++;
if (!*p2)
continue;
uid = atoi(p);
urange = atoi(p2);
if (lxc_safe_uint(p, &uid) < 0)
WARN("Could not parse UID.");
if (lxc_safe_uint(p2, &urange) < 0)
WARN("Could not parse UID range.");
}
fclose(f);

Expand Down Expand Up @@ -4478,8 +4489,10 @@ void suggest_default_idmap(void)
p2++;
if (!*p2)
continue;
gid = atoi(p);
grange = atoi(p2);
if (lxc_safe_uint(p, &gid) < 0)
WARN("Could not parse GID.");
if (lxc_safe_uint(p2, &grange) < 0)
WARN("Could not parse GID range.");
}
fclose(f);

Expand Down

0 comments on commit f36346a

Please sign in to comment.