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