]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/net/netfilter/nf_conntrack_labels.h
netfilter: connlabels: move set helper to xt_connlabel
[mirror_ubuntu-artful-kernel.git] / include / net / netfilter / nf_conntrack_labels.h
CommitLineData
c539f017
FW
1#include <linux/types.h>
2#include <net/net_namespace.h>
3#include <linux/netfilter/nf_conntrack_common.h>
4#include <linux/netfilter/nf_conntrack_tuple_common.h>
5#include <net/netfilter/nf_conntrack.h>
6#include <net/netfilter/nf_conntrack_extend.h>
7
8#include <uapi/linux/netfilter/xt_connlabel.h>
9
d2bf2f34
FW
10#define NF_CT_LABELS_MAX_SIZE ((XT_CONNLABEL_MAXBIT + 1) / BITS_PER_BYTE)
11
c539f017 12struct nf_conn_labels {
23014011 13 unsigned long bits[NF_CT_LABELS_MAX_SIZE / sizeof(long)];
c539f017
FW
14};
15
16static inline struct nf_conn_labels *nf_ct_labels_find(const struct nf_conn *ct)
17{
18#ifdef CONFIG_NF_CONNTRACK_LABELS
19 return nf_ct_ext_find(ct, NF_CT_EXT_LABELS);
20#else
21 return NULL;
22#endif
23}
24
25static inline struct nf_conn_labels *nf_ct_labels_ext_add(struct nf_conn *ct)
26{
27#ifdef CONFIG_NF_CONNTRACK_LABELS
c539f017 28 struct net *net = nf_ct_net(ct);
c539f017 29
23014011 30 if (net->ct.labels_used == 0)
c539f017
FW
31 return NULL;
32
23014011
FW
33 return nf_ct_ext_add_length(ct, NF_CT_EXT_LABELS,
34 sizeof(struct nf_conn_labels), GFP_ATOMIC);
c539f017
FW
35#else
36 return NULL;
37#endif
38}
39
9b21f6a9
FW
40int nf_connlabels_replace(struct nf_conn *ct,
41 const u32 *data, const u32 *mask, unsigned int words);
42
c539f017 43#ifdef CONFIG_NF_CONNTRACK_LABELS
5f69b8f5
G
44int nf_conntrack_labels_init(void);
45void nf_conntrack_labels_fini(void);
adff6c65 46int nf_connlabels_get(struct net *net, unsigned int bit);
86ca02e7 47void nf_connlabels_put(struct net *net);
c539f017 48#else
5f69b8f5
G
49static inline int nf_conntrack_labels_init(void) { return 0; }
50static inline void nf_conntrack_labels_fini(void) {}
adff6c65 51static inline int nf_connlabels_get(struct net *net, unsigned int bit) { return 0; }
86ca02e7 52static inline void nf_connlabels_put(struct net *net) {}
c539f017 53#endif