|
@@ -489,7 +489,8 @@ static int inet6_netconf_fill_devconf(struct sk_buff *skb, int ifindex,
|
|
nla_put_s32(skb, NETCONFA_PROXY_NEIGH, devconf->proxy_ndp) < 0)
|
|
nla_put_s32(skb, NETCONFA_PROXY_NEIGH, devconf->proxy_ndp) < 0)
|
|
goto nla_put_failure;
|
|
goto nla_put_failure;
|
|
|
|
|
|
- return nlmsg_end(skb, nlh);
|
|
|
|
|
|
+ nlmsg_end(skb, nlh);
|
|
|
|
+ return 0;
|
|
|
|
|
|
nla_put_failure:
|
|
nla_put_failure:
|
|
nlmsg_cancel(skb, nlh);
|
|
nlmsg_cancel(skb, nlh);
|
|
@@ -619,7 +620,7 @@ static int inet6_netconf_dump_devconf(struct sk_buff *skb,
|
|
cb->nlh->nlmsg_seq,
|
|
cb->nlh->nlmsg_seq,
|
|
RTM_NEWNETCONF,
|
|
RTM_NEWNETCONF,
|
|
NLM_F_MULTI,
|
|
NLM_F_MULTI,
|
|
- -1) <= 0) {
|
|
|
|
|
|
+ -1) < 0) {
|
|
rcu_read_unlock();
|
|
rcu_read_unlock();
|
|
goto done;
|
|
goto done;
|
|
}
|
|
}
|
|
@@ -635,7 +636,7 @@ cont:
|
|
NETLINK_CB(cb->skb).portid,
|
|
NETLINK_CB(cb->skb).portid,
|
|
cb->nlh->nlmsg_seq,
|
|
cb->nlh->nlmsg_seq,
|
|
RTM_NEWNETCONF, NLM_F_MULTI,
|
|
RTM_NEWNETCONF, NLM_F_MULTI,
|
|
- -1) <= 0)
|
|
|
|
|
|
+ -1) < 0)
|
|
goto done;
|
|
goto done;
|
|
else
|
|
else
|
|
h++;
|
|
h++;
|
|
@@ -646,7 +647,7 @@ cont:
|
|
NETLINK_CB(cb->skb).portid,
|
|
NETLINK_CB(cb->skb).portid,
|
|
cb->nlh->nlmsg_seq,
|
|
cb->nlh->nlmsg_seq,
|
|
RTM_NEWNETCONF, NLM_F_MULTI,
|
|
RTM_NEWNETCONF, NLM_F_MULTI,
|
|
- -1) <= 0)
|
|
|
|
|
|
+ -1) < 0)
|
|
goto done;
|
|
goto done;
|
|
else
|
|
else
|
|
h++;
|
|
h++;
|
|
@@ -4047,7 +4048,8 @@ static int inet6_fill_ifaddr(struct sk_buff *skb, struct inet6_ifaddr *ifa,
|
|
if (nla_put_u32(skb, IFA_FLAGS, ifa->flags) < 0)
|
|
if (nla_put_u32(skb, IFA_FLAGS, ifa->flags) < 0)
|
|
goto error;
|
|
goto error;
|
|
|
|
|
|
- return nlmsg_end(skb, nlh);
|
|
|
|
|
|
+ nlmsg_end(skb, nlh);
|
|
|
|
+ return 0;
|
|
|
|
|
|
error:
|
|
error:
|
|
nlmsg_cancel(skb, nlh);
|
|
nlmsg_cancel(skb, nlh);
|
|
@@ -4076,7 +4078,8 @@ static int inet6_fill_ifmcaddr(struct sk_buff *skb, struct ifmcaddr6 *ifmca,
|
|
return -EMSGSIZE;
|
|
return -EMSGSIZE;
|
|
}
|
|
}
|
|
|
|
|
|
- return nlmsg_end(skb, nlh);
|
|
|
|
|
|
+ nlmsg_end(skb, nlh);
|
|
|
|
+ return 0;
|
|
}
|
|
}
|
|
|
|
|
|
static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
|
|
static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
|
|
@@ -4101,7 +4104,8 @@ static int inet6_fill_ifacaddr(struct sk_buff *skb, struct ifacaddr6 *ifaca,
|
|
return -EMSGSIZE;
|
|
return -EMSGSIZE;
|
|
}
|
|
}
|
|
|
|
|
|
- return nlmsg_end(skb, nlh);
|
|
|
|
|
|
+ nlmsg_end(skb, nlh);
|
|
|
|
+ return 0;
|
|
}
|
|
}
|
|
|
|
|
|
enum addr_type_t {
|
|
enum addr_type_t {
|
|
@@ -4134,7 +4138,7 @@ static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
|
|
cb->nlh->nlmsg_seq,
|
|
cb->nlh->nlmsg_seq,
|
|
RTM_NEWADDR,
|
|
RTM_NEWADDR,
|
|
NLM_F_MULTI);
|
|
NLM_F_MULTI);
|
|
- if (err <= 0)
|
|
|
|
|
|
+ if (err < 0)
|
|
break;
|
|
break;
|
|
nl_dump_check_consistent(cb, nlmsg_hdr(skb));
|
|
nl_dump_check_consistent(cb, nlmsg_hdr(skb));
|
|
}
|
|
}
|
|
@@ -4151,7 +4155,7 @@ static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
|
|
cb->nlh->nlmsg_seq,
|
|
cb->nlh->nlmsg_seq,
|
|
RTM_GETMULTICAST,
|
|
RTM_GETMULTICAST,
|
|
NLM_F_MULTI);
|
|
NLM_F_MULTI);
|
|
- if (err <= 0)
|
|
|
|
|
|
+ if (err < 0)
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
break;
|
|
@@ -4166,7 +4170,7 @@ static int in6_dump_addrs(struct inet6_dev *idev, struct sk_buff *skb,
|
|
cb->nlh->nlmsg_seq,
|
|
cb->nlh->nlmsg_seq,
|
|
RTM_GETANYCAST,
|
|
RTM_GETANYCAST,
|
|
NLM_F_MULTI);
|
|
NLM_F_MULTI);
|
|
- if (err <= 0)
|
|
|
|
|
|
+ if (err < 0)
|
|
break;
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
break;
|
|
@@ -4638,7 +4642,8 @@ static int inet6_fill_ifinfo(struct sk_buff *skb, struct inet6_dev *idev,
|
|
goto nla_put_failure;
|
|
goto nla_put_failure;
|
|
|
|
|
|
nla_nest_end(skb, protoinfo);
|
|
nla_nest_end(skb, protoinfo);
|
|
- return nlmsg_end(skb, nlh);
|
|
|
|
|
|
+ nlmsg_end(skb, nlh);
|
|
|
|
+ return 0;
|
|
|
|
|
|
nla_put_failure:
|
|
nla_put_failure:
|
|
nlmsg_cancel(skb, nlh);
|
|
nlmsg_cancel(skb, nlh);
|
|
@@ -4670,7 +4675,7 @@ static int inet6_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb)
|
|
if (inet6_fill_ifinfo(skb, idev,
|
|
if (inet6_fill_ifinfo(skb, idev,
|
|
NETLINK_CB(cb->skb).portid,
|
|
NETLINK_CB(cb->skb).portid,
|
|
cb->nlh->nlmsg_seq,
|
|
cb->nlh->nlmsg_seq,
|
|
- RTM_NEWLINK, NLM_F_MULTI) <= 0)
|
|
|
|
|
|
+ RTM_NEWLINK, NLM_F_MULTI) < 0)
|
|
goto out;
|
|
goto out;
|
|
cont:
|
|
cont:
|
|
idx++;
|
|
idx++;
|
|
@@ -4747,7 +4752,8 @@ static int inet6_fill_prefix(struct sk_buff *skb, struct inet6_dev *idev,
|
|
ci.valid_time = ntohl(pinfo->valid);
|
|
ci.valid_time = ntohl(pinfo->valid);
|
|
if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
|
|
if (nla_put(skb, PREFIX_CACHEINFO, sizeof(ci), &ci))
|
|
goto nla_put_failure;
|
|
goto nla_put_failure;
|
|
- return nlmsg_end(skb, nlh);
|
|
|
|
|
|
+ nlmsg_end(skb, nlh);
|
|
|
|
+ return 0;
|
|
|
|
|
|
nla_put_failure:
|
|
nla_put_failure:
|
|
nlmsg_cancel(skb, nlh);
|
|
nlmsg_cancel(skb, nlh);
|