GNU Linux-libre 4.9-gnu1
[releases.git] / include / net / netfilter / nf_conntrack_labels.h
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
10 #define NF_CT_LABELS_MAX_SIZE ((XT_CONNLABEL_MAXBIT + 1) / BITS_PER_BYTE)
11
12 struct nf_conn_labels {
13         unsigned long bits[NF_CT_LABELS_MAX_SIZE / sizeof(long)];
14 };
15
16 static 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
25 static inline struct nf_conn_labels *nf_ct_labels_ext_add(struct nf_conn *ct)
26 {
27 #ifdef CONFIG_NF_CONNTRACK_LABELS
28         struct net *net = nf_ct_net(ct);
29
30         if (net->ct.labels_used == 0)
31                 return NULL;
32
33         return nf_ct_ext_add(ct, NF_CT_EXT_LABELS, GFP_ATOMIC);
34 #else
35         return NULL;
36 #endif
37 }
38
39 int nf_connlabels_replace(struct nf_conn *ct,
40                           const u32 *data, const u32 *mask, unsigned int words);
41
42 #ifdef CONFIG_NF_CONNTRACK_LABELS
43 int nf_conntrack_labels_init(void);
44 void nf_conntrack_labels_fini(void);
45 int nf_connlabels_get(struct net *net, unsigned int bit);
46 void nf_connlabels_put(struct net *net);
47 #else
48 static inline int nf_conntrack_labels_init(void) { return 0; }
49 static inline void nf_conntrack_labels_fini(void) {}
50 static inline int nf_connlabels_get(struct net *net, unsigned int bit) { return 0; }
51 static inline void nf_connlabels_put(struct net *net) {}
52 #endif