]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - include/net/netfilter/nf_conntrack_l4proto.h
netfilter: nft_hash: fix nft_hash_deactivate
[thirdparty/kernel/stable.git] / include / net / netfilter / nf_conntrack_l4proto.h
CommitLineData
9fb9cbb1 1/*
605dcad6 2 * Header for use in defining a given L4 protocol for connection tracking.
9fb9cbb1
YK
3 *
4 * 16 Dec 2003: Yasuyuki Kozakai @USAGI <yasuyuki.kozakai@toshiba.co.jp>
5 * - generalized L3 protocol dependent part.
6 *
7 * Derived from include/linux/netfiter_ipv4/ip_conntrack_protcol.h
8 */
9
605dcad6
MJ
10#ifndef _NF_CONNTRACK_L4PROTO_H
11#define _NF_CONNTRACK_L4PROTO_H
df6fb868 12#include <linux/netlink.h>
f73e924c 13#include <net/netlink.h>
9fb9cbb1 14#include <net/netfilter/nf_conntrack.h>
2c352f44 15#include <net/netns/generic.h>
9fb9cbb1
YK
16
17struct seq_file;
18
fd2c3ef7 19struct nf_conntrack_l4proto {
9fb9cbb1
YK
20 /* L3 Protocol number. */
21 u_int16_t l3proto;
22
605dcad6
MJ
23 /* L4 Protocol number. */
24 u_int8_t l4proto;
9fb9cbb1 25
71d8c47f
PNA
26 /* Resolve clashes on insertion races. */
27 bool allow_clash;
28
9fb9cbb1
YK
29 /* Try to fill in the third arg: dataoff is offset past network protocol
30 hdr. Return true if possible. */
09f263cd 31 bool (*pkt_to_tuple)(const struct sk_buff *skb, unsigned int dataoff,
a31f1adc 32 struct net *net, struct nf_conntrack_tuple *tuple);
9fb9cbb1
YK
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 */
09f263cd
JE
37 bool (*invert_tuple)(struct nf_conntrack_tuple *inverse,
38 const struct nf_conntrack_tuple *orig);
9fb9cbb1 39
9fb9cbb1 40 /* Returns verdict for packet, or -1 for invalid. */
c88130bc 41 int (*packet)(struct nf_conn *ct,
9fb9cbb1
YK
42 const struct sk_buff *skb,
43 unsigned int dataoff,
44 enum ip_conntrack_info ctinfo,
2c8503f5 45 unsigned int *timeouts);
9fb9cbb1
YK
46
47 /* Called when a new connection for this protocol found;
48 * returns TRUE if it's OK. If so, packet() called next. */
09f263cd 49 bool (*new)(struct nf_conn *ct, const struct sk_buff *skb,
2c8503f5 50 unsigned int dataoff, unsigned int *timeouts);
9fb9cbb1
YK
51
52 /* Called when a conntrack entry is destroyed */
c88130bc 53 void (*destroy)(struct nf_conn *ct);
9fb9cbb1 54
8fea97ec 55 int (*error)(struct net *net, struct nf_conn *tmpl, struct sk_buff *skb,
11df4b76 56 unsigned int dataoff,
76108cea 57 u_int8_t pf, unsigned int hooknum);
9fb9cbb1 58
c6dd940b
FW
59 /* called by gc worker if table is full */
60 bool (*can_early_drop)(const struct nf_conn *ct);
61
2c8503f5
PNA
62 /* Return the array of timeouts for this protocol. */
63 unsigned int *(*get_timeouts)(struct net *net);
64
c1d10adb 65 /* convert protoinfo to nfnetink attributes */
fdf70832 66 int (*to_nlattr)(struct sk_buff *skb, struct nlattr *nla,
440f0d58 67 struct nf_conn *ct);
d0dba725
HE
68 /* Calculate protoinfo nlattr size */
69 int (*nlattr_size)(void);
c1d10adb
PNA
70
71 /* convert nfnetlink attributes to protoinfo */
fdf70832 72 int (*from_nlattr)(struct nlattr *tb[], struct nf_conn *ct);
c1d10adb 73
fdf70832 74 int (*tuple_to_nlattr)(struct sk_buff *skb,
c1d10adb 75 const struct nf_conntrack_tuple *t);
d0dba725
HE
76 /* Calculate tuple nlattr size */
77 int (*nlattr_tuple_size)(void);
fdf70832 78 int (*nlattr_to_tuple)(struct nlattr *tb[],
c1d10adb 79 struct nf_conntrack_tuple *t);
f73e924c 80 const struct nla_policy *nla_policy;
c1d10adb 81
d0dba725
HE
82 size_t nla_size;
83
50978462
PNA
84#if IS_ENABLED(CONFIG_NF_CT_NETLINK_TIMEOUT)
85 struct {
8264deb8
G
86 int (*nlattr_to_obj)(struct nlattr *tb[],
87 struct net *net, void *data);
50978462
PNA
88 int (*obj_to_nlattr)(struct sk_buff *skb, const void *data);
89
036c6940
FW
90 u16 obj_size;
91 u16 nlattr_max;
50978462
PNA
92 const struct nla_policy *nla_policy;
93 } ctnl_timeout;
ea48cc83
FW
94#endif
95#ifdef CONFIG_NF_CONNTRACK_PROCFS
96 /* Print out the private part of the conntrack. */
97 void (*print_conntrack)(struct seq_file *s, struct nf_conn *);
a999e683 98#endif
c7d03a00 99 unsigned int *net_id;
2c352f44 100 /* Init l4proto pernet data */
f1caad27 101 int (*init_net)(struct net *net, u_int16_t proto);
2c352f44 102
08911475
PNA
103 /* Return the per-net protocol part. */
104 struct nf_proto_net *(*get_net_proto)(struct net *net);
105
9fb9cbb1
YK
106 /* Module (if any) which this is connected to. */
107 struct module *me;
108};
109
9d2493f8 110/* Existing built-in generic protocol */
605dcad6 111extern struct nf_conntrack_l4proto nf_conntrack_l4proto_generic;
9fb9cbb1
YK
112
113#define MAX_NF_CT_PROTO 256
9fb9cbb1 114
b3480fe0 115const struct nf_conntrack_l4proto *__nf_ct_l4proto_find(u_int16_t l3proto,
4e77be46 116 u_int8_t l4proto);
c1d10adb 117
b3480fe0 118const struct nf_conntrack_l4proto *nf_ct_l4proto_find_get(u_int16_t l3proto,
4e77be46 119 u_int8_t l4proto);
2a04aabf 120void nf_ct_l4proto_put(const struct nf_conntrack_l4proto *p);
c1ebd7df 121
c296bb4d 122/* Protocol pernet registration. */
0e54d217 123int nf_ct_l4proto_pernet_register_one(struct net *net,
2a04aabf 124 const struct nf_conntrack_l4proto *proto);
0e54d217 125void nf_ct_l4proto_pernet_unregister_one(struct net *net,
2a04aabf 126 const struct nf_conntrack_l4proto *proto);
4e77be46 127int nf_ct_l4proto_pernet_register(struct net *net,
2a04aabf 128 struct nf_conntrack_l4proto *const proto[],
0e54d217 129 unsigned int num_proto);
4e77be46 130void nf_ct_l4proto_pernet_unregister(struct net *net,
2a04aabf
JL
131 struct nf_conntrack_l4proto *const proto[],
132 unsigned int num_proto);
9fb9cbb1 133
c296bb4d 134/* Protocol global registration. */
0e54d217 135int nf_ct_l4proto_register_one(struct nf_conntrack_l4proto *proto);
2a04aabf 136void nf_ct_l4proto_unregister_one(const struct nf_conntrack_l4proto *proto);
0e54d217
DC
137int nf_ct_l4proto_register(struct nf_conntrack_l4proto *proto[],
138 unsigned int num_proto);
139void nf_ct_l4proto_unregister(struct nf_conntrack_l4proto *proto[],
140 unsigned int num_proto);
c296bb4d 141
c1d10adb 142/* Generic netlink helpers */
4e77be46
JP
143int nf_ct_port_tuple_to_nlattr(struct sk_buff *skb,
144 const struct nf_conntrack_tuple *tuple);
145int nf_ct_port_nlattr_to_tuple(struct nlattr *tb[],
146 struct nf_conntrack_tuple *t);
147int nf_ct_port_nlattr_tuple_size(void);
f73e924c 148extern const struct nla_policy nf_ct_port_nla_policy[];
c1d10adb 149
9fb9cbb1 150#ifdef CONFIG_SYSCTL
3d0b527b
FW
151__printf(3, 4) __cold
152void nf_ct_l4proto_log_invalid(const struct sk_buff *skb,
153 const struct nf_conn *ct,
154 const char *fmt, ...);
c4f3db15
FW
155__printf(5, 6) __cold
156void nf_l4proto_log_invalid(const struct sk_buff *skb,
157 struct net *net,
158 u16 pf, u8 protonum,
159 const char *fmt, ...);
9fb9cbb1 160#else
c4f3db15
FW
161static inline __printf(5, 6) __cold
162void nf_l4proto_log_invalid(const struct sk_buff *skb, struct net *net,
163 u16 pf, u8 protonum, const char *fmt, ...) {}
3d0b527b
FW
164static inline __printf(3, 4) __cold
165void nf_ct_l4proto_log_invalid(const struct sk_buff *skb,
166 const struct nf_conn *ct,
167 const char *fmt, ...) { }
9fb9cbb1
YK
168#endif /* CONFIG_SYSCTL */
169
170#endif /*_NF_CONNTRACK_PROTOCOL_H*/