|
@@ -46,6 +46,7 @@
|
|
|
struct nf_conncount_tuple {
|
|
|
struct hlist_node node;
|
|
|
struct nf_conntrack_tuple tuple;
|
|
|
+ struct nf_conntrack_zone zone;
|
|
|
};
|
|
|
|
|
|
struct nf_conncount_rb {
|
|
@@ -80,7 +81,8 @@ static int key_diff(const u32 *a, const u32 *b, unsigned int klen)
|
|
|
}
|
|
|
|
|
|
bool nf_conncount_add(struct hlist_head *head,
|
|
|
- const struct nf_conntrack_tuple *tuple)
|
|
|
+ const struct nf_conntrack_tuple *tuple,
|
|
|
+ const struct nf_conntrack_zone *zone)
|
|
|
{
|
|
|
struct nf_conncount_tuple *conn;
|
|
|
|
|
@@ -88,6 +90,7 @@ bool nf_conncount_add(struct hlist_head *head,
|
|
|
if (conn == NULL)
|
|
|
return false;
|
|
|
conn->tuple = *tuple;
|
|
|
+ conn->zone = *zone;
|
|
|
hlist_add_head(&conn->node, head);
|
|
|
return true;
|
|
|
}
|
|
@@ -108,7 +111,7 @@ unsigned int nf_conncount_lookup(struct net *net, struct hlist_head *head,
|
|
|
|
|
|
/* check the saved connections */
|
|
|
hlist_for_each_entry_safe(conn, n, head, node) {
|
|
|
- found = nf_conntrack_find_get(net, zone, &conn->tuple);
|
|
|
+ found = nf_conntrack_find_get(net, &conn->zone, &conn->tuple);
|
|
|
if (found == NULL) {
|
|
|
hlist_del(&conn->node);
|
|
|
kmem_cache_free(conncount_conn_cachep, conn);
|
|
@@ -117,7 +120,8 @@ unsigned int nf_conncount_lookup(struct net *net, struct hlist_head *head,
|
|
|
|
|
|
found_ct = nf_ct_tuplehash_to_ctrack(found);
|
|
|
|
|
|
- if (tuple && nf_ct_tuple_equal(&conn->tuple, tuple)) {
|
|
|
+ if (tuple && nf_ct_tuple_equal(&conn->tuple, tuple) &&
|
|
|
+ nf_ct_zone_equal(found_ct, zone, zone->dir)) {
|
|
|
/*
|
|
|
* Just to be sure we have it only once in the list.
|
|
|
* We should not see tuples twice unless someone hooks
|
|
@@ -196,7 +200,7 @@ count_tree(struct net *net, struct rb_root *root,
|
|
|
if (!addit)
|
|
|
return count;
|
|
|
|
|
|
- if (!nf_conncount_add(&rbconn->hhead, tuple))
|
|
|
+ if (!nf_conncount_add(&rbconn->hhead, tuple, zone))
|
|
|
return 0; /* hotdrop */
|
|
|
|
|
|
return count + 1;
|
|
@@ -238,6 +242,7 @@ count_tree(struct net *net, struct rb_root *root,
|
|
|
}
|
|
|
|
|
|
conn->tuple = *tuple;
|
|
|
+ conn->zone = *zone;
|
|
|
memcpy(rbconn->key, key, sizeof(u32) * keylen);
|
|
|
|
|
|
INIT_HLIST_HEAD(&rbconn->hhead);
|