netfilter: nf_conntrack: add support for "conntrack zones"
[deliverable/linux.git] / include / net / netfilter / nf_conntrack_l3proto.h
CommitLineData
9fb9cbb1
YK
1/*
2 * Copyright (C)2003,2004 USAGI/WIDE Project
3 *
4 * Header for use in defining a given L3 protocol for connection tracking.
5 *
6 * Author:
7 * Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
8 *
9 * Derived from include/netfilter_ipv4/ip_conntrack_protocol.h
10 */
11
12#ifndef _NF_CONNTRACK_L3PROTO_H
13#define _NF_CONNTRACK_L3PROTO_H
df6fb868 14#include <linux/netlink.h>
f73e924c 15#include <net/netlink.h>
9fb9cbb1
YK
16#include <linux/seq_file.h>
17#include <net/netfilter/nf_conntrack.h>
18
fd2c3ef7 19struct nf_conntrack_l3proto {
9fb9cbb1
YK
20 /* L3 Protocol Family number. ex) PF_INET */
21 u_int16_t l3proto;
22
23 /* Protocol name */
24 const char *name;
25
26 /*
27 * Try to fill in the third arg: nhoff is offset of l3 proto
28 * hdr. Return true if possible.
29 */
8ce8439a
JE
30 bool (*pkt_to_tuple)(const struct sk_buff *skb, unsigned int nhoff,
31 struct nf_conntrack_tuple *tuple);
9fb9cbb1
YK
32
33 /*
34 * Invert the per-proto part of the tuple: ie. turn xmit into reply.
35 * Some packets can't be inverted: return 0 in that case.
36 */
8ce8439a
JE
37 bool (*invert_tuple)(struct nf_conntrack_tuple *inverse,
38 const struct nf_conntrack_tuple *orig);
9fb9cbb1
YK
39
40 /* Print out the per-protocol part of the tuple. */
41 int (*print_tuple)(struct seq_file *s,
42 const struct nf_conntrack_tuple *);
43
9fb9cbb1
YK
44 /*
45 * Called before tracking.
ffc30690 46 * *dataoff: offset of protocol header (TCP, UDP,...) in skb
9fb9cbb1
YK
47 * *protonum: protocol number
48 */
ffc30690
YK
49 int (*get_l4proto)(const struct sk_buff *skb, unsigned int nhoff,
50 unsigned int *dataoff, u_int8_t *protonum);
9fb9cbb1 51
fdf70832 52 int (*tuple_to_nlattr)(struct sk_buff *skb,
c1d10adb
PNA
53 const struct nf_conntrack_tuple *t);
54
d0dba725
HE
55 /*
56 * Calculate size of tuple nlattr
57 */
58 int (*nlattr_tuple_size)(void);
59
fdf70832 60 int (*nlattr_to_tuple)(struct nlattr *tb[],
c1d10adb 61 struct nf_conntrack_tuple *t);
f73e924c 62 const struct nla_policy *nla_policy;
c1d10adb 63
d0dba725
HE
64 size_t nla_size;
65
d62f9ed4
PM
66#ifdef CONFIG_SYSCTL
67 struct ctl_table_header *ctl_table_header;
b3fd3ffe 68 struct ctl_path *ctl_table_path;
d62f9ed4
PM
69 struct ctl_table *ctl_table;
70#endif /* CONFIG_SYSCTL */
71
9fb9cbb1
YK
72 /* Module (if any) which this is connected to. */
73 struct module *me;
74};
75
76extern struct nf_conntrack_l3proto *nf_ct_l3protos[AF_MAX];
77
78/* Protocol registration. */
79extern int nf_conntrack_l3proto_register(struct nf_conntrack_l3proto *proto);
fe3eb20c 80extern void nf_conntrack_l3proto_unregister(struct nf_conntrack_l3proto *proto);
a3c5029c 81extern struct nf_conntrack_l3proto *nf_ct_l3proto_find_get(u_int16_t l3proto);
c1d10adb
PNA
82extern void nf_ct_l3proto_put(struct nf_conntrack_l3proto *p);
83
9fb9cbb1 84/* Existing built-in protocols */
605dcad6 85extern struct nf_conntrack_l3proto nf_conntrack_l3proto_generic;
ddc8d029
YK
86
87static inline struct nf_conntrack_l3proto *
88__nf_ct_l3proto_find(u_int16_t l3proto)
89{
90 if (unlikely(l3proto >= AF_MAX))
605dcad6 91 return &nf_conntrack_l3proto_generic;
923f4902 92 return rcu_dereference(nf_ct_l3protos[l3proto]);
ddc8d029
YK
93}
94
9fb9cbb1 95#endif /*_NF_CONNTRACK_L3PROTO_H*/
This page took 0.47808 seconds and 5 git commands to generate.