|
@@ -29,7 +29,8 @@
|
|
|
/* 3 nomatch flag support added */
|
|
|
/* 4 Counters support added */
|
|
|
/* 5 Comments support added */
|
|
|
-#define IPSET_TYPE_REV_MAX 6 /* Forceadd support added */
|
|
|
+/* 6 Forceadd support added */
|
|
|
+#define IPSET_TYPE_REV_MAX 7 /* skbinfo support added */
|
|
|
|
|
|
MODULE_LICENSE("GPL");
|
|
|
MODULE_AUTHOR("Jozsef Kadlecsik <kadlec@blackhole.kfki.hu>");
|
|
@@ -172,7 +173,10 @@ hash_netport4_uadt(struct ip_set *set, struct nlattr *tb[],
|
|
|
!ip_set_optattr_netorder(tb, IPSET_ATTR_TIMEOUT) ||
|
|
|
!ip_set_optattr_netorder(tb, IPSET_ATTR_CADT_FLAGS) ||
|
|
|
!ip_set_optattr_netorder(tb, IPSET_ATTR_PACKETS) ||
|
|
|
- !ip_set_optattr_netorder(tb, IPSET_ATTR_BYTES)))
|
|
|
+ !ip_set_optattr_netorder(tb, IPSET_ATTR_BYTES) ||
|
|
|
+ !ip_set_optattr_netorder(tb, IPSET_ATTR_SKBMARK) ||
|
|
|
+ !ip_set_optattr_netorder(tb, IPSET_ATTR_SKBPRIO) ||
|
|
|
+ !ip_set_optattr_netorder(tb, IPSET_ATTR_SKBQUEUE)))
|
|
|
return -IPSET_ERR_PROTOCOL;
|
|
|
|
|
|
if (tb[IPSET_ATTR_LINENO])
|
|
@@ -389,7 +393,10 @@ hash_netport6_uadt(struct ip_set *set, struct nlattr *tb[],
|
|
|
!ip_set_optattr_netorder(tb, IPSET_ATTR_TIMEOUT) ||
|
|
|
!ip_set_optattr_netorder(tb, IPSET_ATTR_CADT_FLAGS) ||
|
|
|
!ip_set_optattr_netorder(tb, IPSET_ATTR_PACKETS) ||
|
|
|
- !ip_set_optattr_netorder(tb, IPSET_ATTR_BYTES)))
|
|
|
+ !ip_set_optattr_netorder(tb, IPSET_ATTR_BYTES) ||
|
|
|
+ !ip_set_optattr_netorder(tb, IPSET_ATTR_SKBMARK) ||
|
|
|
+ !ip_set_optattr_netorder(tb, IPSET_ATTR_SKBPRIO) ||
|
|
|
+ !ip_set_optattr_netorder(tb, IPSET_ATTR_SKBQUEUE)))
|
|
|
return -IPSET_ERR_PROTOCOL;
|
|
|
if (unlikely(tb[IPSET_ATTR_IP_TO]))
|
|
|
return -IPSET_ERR_HASH_RANGE_UNSUPPORTED;
|
|
@@ -489,6 +496,9 @@ static struct ip_set_type hash_netport_type __read_mostly = {
|
|
|
[IPSET_ATTR_BYTES] = { .type = NLA_U64 },
|
|
|
[IPSET_ATTR_PACKETS] = { .type = NLA_U64 },
|
|
|
[IPSET_ATTR_COMMENT] = { .type = NLA_NUL_STRING },
|
|
|
+ [IPSET_ATTR_SKBMARK] = { .type = NLA_U64 },
|
|
|
+ [IPSET_ATTR_SKBPRIO] = { .type = NLA_U32 },
|
|
|
+ [IPSET_ATTR_SKBQUEUE] = { .type = NLA_U16 },
|
|
|
},
|
|
|
.me = THIS_MODULE,
|
|
|
};
|