]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - include/linux/netfilter/nfnetlink.h
[NETFILTER]: Move reroute-after-queue code up to the nf_queue layer.
[mirror_ubuntu-jammy-kernel.git] / include / linux / netfilter / nfnetlink.h
CommitLineData
f9e815b3
HW
1#ifndef _NFNETLINK_H
2#define _NFNETLINK_H
3#include <linux/types.h>
4
5/* nfnetlink groups: Up to 32 maximum */
6#define NF_NETLINK_CONNTRACK_NEW 0x00000001
7#define NF_NETLINK_CONNTRACK_UPDATE 0x00000002
8#define NF_NETLINK_CONNTRACK_DESTROY 0x00000004
9#define NF_NETLINK_CONNTRACK_EXP_NEW 0x00000008
10#define NF_NETLINK_CONNTRACK_EXP_UPDATE 0x00000010
11#define NF_NETLINK_CONNTRACK_EXP_DESTROY 0x00000020
12
13/* Generic structure for encapsulation optional netfilter information.
14 * It is reminiscent of sockaddr, but with sa_family replaced
15 * with attribute type.
16 * ! This should someday be put somewhere generic as now rtnetlink and
17 * ! nfnetlink use the same attributes methods. - J. Schulist.
18 */
19
20struct nfattr
21{
22 u_int16_t nfa_len;
23 u_int16_t nfa_type;
24} __attribute__ ((packed));
25
26/* FIXME: Shamelessly copy and pasted from rtnetlink.h, it's time
27 * to put this in a generic file */
28
29#define NFA_ALIGNTO 4
30#define NFA_ALIGN(len) (((len) + NFA_ALIGNTO - 1) & ~(NFA_ALIGNTO - 1))
31#define NFA_OK(nfa,len) ((len) > 0 && (nfa)->nfa_len >= sizeof(struct nfattr) \
32 && (nfa)->nfa_len <= (len))
33#define NFA_NEXT(nfa,attrlen) ((attrlen) -= NFA_ALIGN((nfa)->nfa_len), \
34 (struct nfattr *)(((char *)(nfa)) + NFA_ALIGN((nfa)->nfa_len)))
35#define NFA_LENGTH(len) (NFA_ALIGN(sizeof(struct nfattr)) + (len))
36#define NFA_SPACE(len) NFA_ALIGN(NFA_LENGTH(len))
37#define NFA_DATA(nfa) ((void *)(((char *)(nfa)) + NFA_LENGTH(0)))
38#define NFA_PAYLOAD(nfa) ((int)((nfa)->nfa_len) - NFA_LENGTH(0))
39#define NFA_NEST(skb, type) \
40({ struct nfattr *__start = (struct nfattr *) (skb)->tail; \
41 NFA_PUT(skb, type, 0, NULL); \
42 __start; })
43#define NFA_NEST_END(skb, start) \
44({ (start)->nfa_len = ((skb)->tail - (unsigned char *) (start)); \
45 (skb)->len; })
46#define NFA_NEST_CANCEL(skb, start) \
47({ if (start) \
48 skb_trim(skb, (unsigned char *) (start) - (skb)->data); \
49 -1; })
50
51/* General form of address family dependent message.
52 */
53struct nfgenmsg {
54 u_int8_t nfgen_family; /* AF_xxx */
55 u_int8_t version; /* nfnetlink version */
56 u_int16_t res_id; /* resource id */
57} __attribute__ ((packed));
58
080774a2 59#define NFNETLINK_V0 0
f9e815b3
HW
60
61#define NFM_NFA(n) ((struct nfattr *)(((char *)(n)) \
62 + NLMSG_ALIGN(sizeof(struct nfgenmsg))))
63#define NFM_PAYLOAD(n) NLMSG_PAYLOAD(n, sizeof(struct nfgenmsg))
64
65/* netfilter netlink message types are split in two pieces:
66 * 8 bit subsystem, 8bit operation.
67 */
68
69#define NFNL_SUBSYS_ID(x) ((x & 0xff00) >> 8)
70#define NFNL_MSG_TYPE(x) (x & 0x00ff)
71
72enum nfnl_subsys_id {
73 NFNL_SUBSYS_NONE = 0,
74 NFNL_SUBSYS_CTNETLINK,
75 NFNL_SUBSYS_CTNETLINK_EXP,
76 NFNL_SUBSYS_IPTNETLINK,
77 NFNL_SUBSYS_QUEUE,
78 NFNL_SUBSYS_ULOG,
79 NFNL_SUBSYS_COUNT,
80};
81
82#ifdef __KERNEL__
83
080774a2 84#include <linux/netlink.h>
f9e815b3
HW
85#include <linux/capability.h>
86
87struct nfnl_callback
88{
89 kernel_cap_t cap_required; /* capabilities required for this msg */
90 int (*call)(struct sock *nl, struct sk_buff *skb,
91 struct nlmsghdr *nlh, struct nfattr *cda[], int *errp);
92};
93
94struct nfnetlink_subsystem
95{
96 const char *name;
97 __u8 subsys_id; /* nfnetlink subsystem ID */
98 __u8 cb_count; /* number of callbacks */
99 u_int32_t attr_count; /* number of nfattr's */
100 struct nfnl_callback *cb; /* callback for individual types */
101};
102
103extern void __nfa_fill(struct sk_buff *skb, int attrtype,
104 int attrlen, const void *data);
105#define NFA_PUT(skb, attrtype, attrlen, data) \
106({ if (skb_tailroom(skb) < (int)NFA_SPACE(attrlen)) goto nfattr_failure; \
107 __nfa_fill(skb, attrtype, attrlen, data); })
108
109extern struct semaphore nfnl_sem;
110
111#define nfnl_shlock() down(&nfnl_sem)
112#define nfnl_shlock_nowait() down_trylock(&nfnl_sem)
113
114#define nfnl_shunlock() do { up(&nfnl_sem); \
115 if(nfnl && nfnl->sk_receive_queue.qlen) \
116 nfnl->sk_data_ready(nfnl, 0); \
117 } while(0)
118
119extern void nfnl_lock(void);
120extern void nfnl_unlock(void);
121
122extern int nfnetlink_subsys_register(struct nfnetlink_subsystem *n);
123extern int nfnetlink_subsys_unregister(struct nfnetlink_subsystem *n);
124
125extern int nfattr_parse(struct nfattr *tb[], int maxattr,
126 struct nfattr *nfa, int len);
127
128#define nfattr_parse_nested(tb, max, nfa) \
129 nfattr_parse((tb), (max), NFA_DATA((nfa)), NFA_PAYLOAD((nfa)))
130
131#define nfattr_bad_size(tb, max, cta_min) \
132({ int __i, __res = 0; \
133 for (__i=0; __i<max; __i++) \
134 if (tb[__i] && NFA_PAYLOAD(tb[__i]) < cta_min[__i]){ \
135 __res = 1; \
136 break; \
137 } \
138 __res; \
139})
140
141extern int nfnetlink_send(struct sk_buff *skb, u32 pid, unsigned group,
142 int echo);
143extern int nfnetlink_unicast(struct sk_buff *skb, u_int32_t pid, int flags);
144
145#endif /* __KERNEL__ */
146#endif /* _NFNETLINK_H */