mmc: sdhci-pci: Let devices define how to add the host
[linux-2.6/btrfs-unstable.git] / include / net / netfilter / nf_conntrack_labels.h
blob1723a67c0b0a887d689c58481189f77f723aa400
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>
8 #include <uapi/linux/netfilter/xt_connlabel.h>
10 #define NF_CT_LABELS_MAX_SIZE ((XT_CONNLABEL_MAXBIT + 1) / BITS_PER_BYTE)
12 struct nf_conn_labels {
13 unsigned long bits[NF_CT_LABELS_MAX_SIZE / sizeof(long)];
16 static inline struct nf_conn_labels *nf_ct_labels_find(const struct nf_conn *ct)
18 #ifdef CONFIG_NF_CONNTRACK_LABELS
19 return nf_ct_ext_find(ct, NF_CT_EXT_LABELS);
20 #else
21 return NULL;
22 #endif
25 static inline struct nf_conn_labels *nf_ct_labels_ext_add(struct nf_conn *ct)
27 #ifdef CONFIG_NF_CONNTRACK_LABELS
28 struct net *net = nf_ct_net(ct);
30 if (net->ct.labels_used == 0)
31 return NULL;
33 return nf_ct_ext_add(ct, NF_CT_EXT_LABELS, GFP_ATOMIC);
34 #else
35 return NULL;
36 #endif
39 int nf_connlabels_replace(struct nf_conn *ct,
40 const u32 *data, const u32 *mask, unsigned int words);
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