|
@@ -183,6 +183,9 @@ hash_netportnet4_uadt(struct ip_set *set, struct nlattr *tb[],
|
|
|
u8 cidr, cidr2;
|
|
|
int ret;
|
|
|
|
|
|
+ if (tb[IPSET_ATTR_LINENO])
|
|
|
+ *lineno = nla_get_u32(tb[IPSET_ATTR_LINENO]);
|
|
|
+
|
|
|
e.cidr[0] = e.cidr[1] = HOST_MASK;
|
|
|
if (unlikely(!tb[IPSET_ATTR_IP] || !tb[IPSET_ATTR_IP2] ||
|
|
|
!ip_set_attr_netorder(tb, IPSET_ATTR_PORT) ||
|
|
@@ -190,9 +193,6 @@ hash_netportnet4_uadt(struct ip_set *set, struct nlattr *tb[],
|
|
|
!ip_set_optattr_netorder(tb, IPSET_ATTR_CADT_FLAGS)))
|
|
|
return -IPSET_ERR_PROTOCOL;
|
|
|
|
|
|
- if (tb[IPSET_ATTR_LINENO])
|
|
|
- *lineno = nla_get_u32(tb[IPSET_ATTR_LINENO]);
|
|
|
-
|
|
|
ret = ip_set_get_hostipaddr4(tb[IPSET_ATTR_IP], &ip);
|
|
|
if (ret)
|
|
|
return ret;
|
|
@@ -453,6 +453,9 @@ hash_netportnet6_uadt(struct ip_set *set, struct nlattr *tb[],
|
|
|
bool with_ports = false;
|
|
|
int ret;
|
|
|
|
|
|
+ if (tb[IPSET_ATTR_LINENO])
|
|
|
+ *lineno = nla_get_u32(tb[IPSET_ATTR_LINENO]);
|
|
|
+
|
|
|
e.cidr[0] = e.cidr[1] = HOST_MASK;
|
|
|
if (unlikely(!tb[IPSET_ATTR_IP] || !tb[IPSET_ATTR_IP2] ||
|
|
|
!ip_set_attr_netorder(tb, IPSET_ATTR_PORT) ||
|
|
@@ -462,9 +465,6 @@ hash_netportnet6_uadt(struct ip_set *set, struct nlattr *tb[],
|
|
|
if (unlikely(tb[IPSET_ATTR_IP_TO] || tb[IPSET_ATTR_IP2_TO]))
|
|
|
return -IPSET_ERR_HASH_RANGE_UNSUPPORTED;
|
|
|
|
|
|
- if (tb[IPSET_ATTR_LINENO])
|
|
|
- *lineno = nla_get_u32(tb[IPSET_ATTR_LINENO]);
|
|
|
-
|
|
|
ret = ip_set_get_ipaddr6(tb[IPSET_ATTR_IP], &e.ip[0]);
|
|
|
if (ret)
|
|
|
return ret;
|