Merge tag 'v6.6-rc4.vfs.fixes' of gitolite.kernel.org:pub/scm/linux/kernel/git/vfs/vfs
[linux-2.6-block.git] / include / linux / netlink.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2#ifndef __LINUX_NETLINK_H
3#define __LINUX_NETLINK_H
4
1da177e4
LT
5
6#include <linux/capability.h>
7#include <linux/skbuff.h>
abb17e6c 8#include <linux/export.h>
dbe9a417 9#include <net/scm.h>
607ca46e 10#include <uapi/linux/netlink.h>
1da177e4 11
56b49f4b
OW
12struct net;
13
7e3ce05e
MRL
14void do_trace_netlink_extack(const char *msg);
15
b529ccf2
ACM
16static inline struct nlmsghdr *nlmsg_hdr(const struct sk_buff *skb)
17{
18 return (struct nlmsghdr *)skb->data;
19}
20
9652e931 21enum netlink_skb_flags {
2d7a85f4 22 NETLINK_SKB_DST = 0x8, /* Dst set in sendto or sendmsg */
9652e931
PM
23};
24
d94d9fee 25struct netlink_skb_parms {
dbe9a417 26 struct scm_creds creds; /* Skb credentials */
15e47304 27 __u32 portid;
d629b836 28 __u32 dst_group;
9652e931 29 __u32 flags;
e32123e5 30 struct sock *sk;
59324cf3
ND
31 bool nsid_is_set;
32 int nsid;
1da177e4
LT
33};
34
35#define NETLINK_CB(skb) (*(struct netlink_skb_parms*)&((skb)->cb))
36#define NETLINK_CREDS(skb) (&NETLINK_CB((skb)).creds)
37
38
aa9d6e0f
SH
39void netlink_table_grab(void);
40void netlink_table_ungrab(void);
d136f1bd 41
9785e10a
PNA
42#define NL_CFG_F_NONROOT_RECV (1 << 0)
43#define NL_CFG_F_NONROOT_SEND (1 << 1)
44
a31f2d17
PNA
45/* optional Netlink kernel configuration parameters */
46struct netlink_kernel_cfg {
47 unsigned int groups;
c9d2ea96 48 unsigned int flags;
a31f2d17
PNA
49 void (*input)(struct sk_buff *skb);
50 struct mutex *cb_mutex;
023e2cfa
JB
51 int (*bind)(struct net *net, int group);
52 void (*unbind)(struct net *net, int group);
a4c9a56e 53 void (*release) (struct sock *sk, unsigned long *groups);
a31f2d17
PNA
54};
55
aa9d6e0f 56struct sock *__netlink_kernel_create(struct net *net, int unit,
9f00d977
PNA
57 struct module *module,
58 struct netlink_kernel_cfg *cfg);
59static inline struct sock *
60netlink_kernel_create(struct net *net, int unit, struct netlink_kernel_cfg *cfg)
61{
62 return __netlink_kernel_create(net, unit, THIS_MODULE, cfg);
63}
64
ba0dc5f6
JB
65/* this can be increased when necessary - don't expose to userland */
66#define NETLINK_MAX_COOKIE_LEN 20
51c352bd 67#define NETLINK_MAX_FMTMSG_LEN 80
ba0dc5f6 68
2d4bc933
JB
69/**
70 * struct netlink_ext_ack - netlink extended ACK report struct
71 * @_msg: message string to report - don't access directly, use
72 * %NL_SET_ERR_MSG
73 * @bad_attr: attribute with error
44f3625b 74 * @policy: policy for a bad attribute
690252f1
JK
75 * @miss_type: attribute type which was missing
76 * @miss_nest: nest missing an attribute (%NULL if missing top level attr)
ba0dc5f6
JB
77 * @cookie: cookie data to return to userspace (for success)
78 * @cookie_len: actual cookie data length
51c352bd
EC
79 * @_msg_buf: output buffer for formatted message strings - don't access
80 * directly, use %NL_SET_ERR_MSG_FMT
2d4bc933
JB
81 */
82struct netlink_ext_ack {
83 const char *_msg;
84 const struct nlattr *bad_attr;
44f3625b 85 const struct nla_policy *policy;
690252f1
JK
86 const struct nlattr *miss_nest;
87 u16 miss_type;
ba0dc5f6
JB
88 u8 cookie[NETLINK_MAX_COOKIE_LEN];
89 u8 cookie_len;
51c352bd 90 char _msg_buf[NETLINK_MAX_FMTMSG_LEN];
2d4bc933
JB
91};
92
93/* Always use this macro, this allows later putting the
94 * message into a separate section or such for things
95 * like translation or listing all possible messages.
51c352bd 96 * If string formatting is needed use NL_SET_ERR_MSG_FMT.
2d4bc933 97 */
4d463c4d 98#define NL_SET_ERR_MSG(extack, msg) do { \
6311b7ce 99 static const char __msg[] = msg; \
4d463c4d
DB
100 struct netlink_ext_ack *__extack = (extack); \
101 \
7e3ce05e
MRL
102 do_trace_netlink_extack(__msg); \
103 \
4d463c4d
DB
104 if (__extack) \
105 __extack->_msg = __msg; \
2d4bc933
JB
106} while (0)
107
51c352bd
EC
108/* We splice fmt with %s at each end even in the snprintf so that both calls
109 * can use the same string constant, avoiding its duplication in .ro
110 */
111#define NL_SET_ERR_MSG_FMT(extack, fmt, args...) do { \
112 struct netlink_ext_ack *__extack = (extack); \
113 \
114 if (!__extack) \
115 break; \
116 if (snprintf(__extack->_msg_buf, NETLINK_MAX_FMTMSG_LEN, \
117 "%s" fmt "%s", "", ##args, "") >= \
118 NETLINK_MAX_FMTMSG_LEN) \
119 net_warn_ratelimited("%s" fmt "%s", "truncated extack: ", \
120 ##args, "\n"); \
121 \
122 do_trace_netlink_extack(__extack->_msg_buf); \
123 \
124 __extack->_msg = __extack->_msg_buf; \
125} while (0)
126
4d463c4d
DB
127#define NL_SET_ERR_MSG_MOD(extack, msg) \
128 NL_SET_ERR_MSG((extack), KBUILD_MODNAME ": " msg)
45d9b378 129
51c352bd
EC
130#define NL_SET_ERR_MSG_FMT_MOD(extack, fmt, args...) \
131 NL_SET_ERR_MSG_FMT((extack), KBUILD_MODNAME ": " fmt, ##args)
132
028fb19c
LR
133#define NL_SET_ERR_MSG_WEAK(extack, msg) do { \
134 if ((extack) && !(extack)->_msg) \
135 NL_SET_ERR_MSG((extack), msg); \
136} while (0)
137
138#define NL_SET_ERR_MSG_WEAK_MOD(extack, msg) do { \
139 if ((extack) && !(extack)->_msg) \
140 NL_SET_ERR_MSG_MOD((extack), msg); \
141} while (0)
142
44f3625b
JB
143#define NL_SET_BAD_ATTR_POLICY(extack, attr, pol) do { \
144 if ((extack)) { \
c3ab2b4e 145 (extack)->bad_attr = (attr); \
44f3625b
JB
146 (extack)->policy = (pol); \
147 } \
c3ab2b4e
DA
148} while (0)
149
44f3625b
JB
150#define NL_SET_BAD_ATTR(extack, attr) NL_SET_BAD_ATTR_POLICY(extack, attr, NULL)
151
152#define NL_SET_ERR_MSG_ATTR_POL(extack, attr, pol, msg) do { \
153 static const char __msg[] = msg; \
154 struct netlink_ext_ack *__extack = (extack); \
155 \
7e3ce05e
MRL
156 do_trace_netlink_extack(__msg); \
157 \
44f3625b
JB
158 if (__extack) { \
159 __extack->_msg = __msg; \
160 __extack->bad_attr = (attr); \
161 __extack->policy = (pol); \
162 } \
9ae28727
DA
163} while (0)
164
3e4d5ba9
SA
165#define NL_SET_ERR_MSG_ATTR_POL_FMT(extack, attr, pol, fmt, args...) do { \
166 struct netlink_ext_ack *__extack = (extack); \
167 \
168 if (!__extack) \
169 break; \
170 \
171 if (snprintf(__extack->_msg_buf, NETLINK_MAX_FMTMSG_LEN, \
172 "%s" fmt "%s", "", ##args, "") >= \
173 NETLINK_MAX_FMTMSG_LEN) \
174 net_warn_ratelimited("%s" fmt "%s", "truncated extack: ", \
175 ##args, "\n"); \
176 \
177 do_trace_netlink_extack(__extack->_msg_buf); \
178 \
179 __extack->_msg = __extack->_msg_buf; \
180 __extack->bad_attr = (attr); \
181 __extack->policy = (pol); \
182} while (0)
183
44f3625b
JB
184#define NL_SET_ERR_MSG_ATTR(extack, attr, msg) \
185 NL_SET_ERR_MSG_ATTR_POL(extack, attr, NULL, msg)
186
3e4d5ba9
SA
187#define NL_SET_ERR_MSG_ATTR_FMT(extack, attr, msg, args...) \
188 NL_SET_ERR_MSG_ATTR_POL_FMT(extack, attr, NULL, msg, ##args)
189
690252f1
JK
190#define NL_SET_ERR_ATTR_MISS(extack, nest, type) do { \
191 struct netlink_ext_ack *__extack = (extack); \
192 \
193 if (__extack) { \
194 __extack->miss_nest = (nest); \
195 __extack->miss_type = (type); \
196 } \
197} while (0)
198
45dca157
JK
199#define NL_REQ_ATTR_CHECK(extack, nest, tb, type) ({ \
200 struct nlattr **__tb = (tb); \
201 u32 __attr = (type); \
202 int __retval; \
203 \
204 __retval = !__tb[__attr]; \
205 if (__retval) \
206 NL_SET_ERR_ATTR_MISS((extack), (nest), __attr); \
207 __retval; \
208})
209
801f8746
JB
210static inline void nl_set_extack_cookie_u64(struct netlink_ext_ack *extack,
211 u64 cookie)
212{
55b474c4
MK
213 if (!extack)
214 return;
c6400e3f
AD
215 memcpy(extack->cookie, &cookie, sizeof(cookie));
216 extack->cookie_len = sizeof(cookie);
801f8746
JB
217}
218
aa9d6e0f
SH
219void netlink_kernel_release(struct sock *sk);
220int __netlink_change_ngroups(struct sock *sk, unsigned int groups);
221int netlink_change_ngroups(struct sock *sk, unsigned int groups);
222void __netlink_clear_multicast_users(struct sock *sk, unsigned int group);
223void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err,
224 const struct netlink_ext_ack *extack);
225int netlink_has_listeners(struct sock *sk, unsigned int group);
59c28058 226bool netlink_strict_get_check(struct sk_buff *skb);
aa9d6e0f
SH
227
228int netlink_unicast(struct sock *ssk, struct sk_buff *skb, __u32 portid, int nonblock);
229int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, __u32 portid,
230 __u32 group, gfp_t allocation);
a3377386
AK
231int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb,
232 __u32 portid, __u32 group, gfp_t allocation,
233 int (*filter)(struct sock *dsk,
234 struct sk_buff *skb, void *data),
235 void *filter_data);
aa9d6e0f
SH
236int netlink_set_err(struct sock *ssk, __u32 portid, __u32 group, int code);
237int netlink_register_notifier(struct notifier_block *nb);
238int netlink_unregister_notifier(struct notifier_block *nb);
1da177e4
LT
239
240/* finegrained unicast helpers: */
241struct sock *netlink_getsockbyfilp(struct file *filp);
9457afee 242int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
c3d8d1e3 243 long *timeo, struct sock *ssk);
1da177e4 244void netlink_detachskb(struct sock *sk, struct sk_buff *skb);
7ee015e0 245int netlink_sendskb(struct sock *sk, struct sk_buff *skb);
1da177e4 246
3a36515f
PN
247static inline struct sk_buff *
248netlink_skb_clone(struct sk_buff *skb, gfp_t gfp_mask)
249{
250 struct sk_buff *nskb;
251
252 nskb = skb_clone(skb, gfp_mask);
253 if (!nskb)
254 return NULL;
255
256 /* This is a large skb, set destructor callback to release head */
257 if (is_vmalloc_addr(skb->head))
258 nskb->destructor = skb->destructor;
259
260 return nskb;
261}
262
1da177e4
LT
263/*
264 * skb should fit one page. This choice is good for headerless malloc.
fc910a27
DM
265 * But we should limit to 8K so that userspace does not have to
266 * use enormous buffer sizes on recvmsg() calls just to avoid
267 * MSG_TRUNC when PAGE_SIZE is very large.
1da177e4 268 */
fc910a27
DM
269#if PAGE_SIZE < 8192UL
270#define NLMSG_GOODSIZE SKB_WITH_OVERHEAD(PAGE_SIZE)
271#else
272#define NLMSG_GOODSIZE SKB_WITH_OVERHEAD(8192UL)
273#endif
274
339bf98f 275#define NLMSG_DEFAULT_SIZE (NLMSG_GOODSIZE - NLMSG_HDRLEN)
1da177e4
LT
276
277
d94d9fee 278struct netlink_callback {
3a6c2b41
PM
279 struct sk_buff *skb;
280 const struct nlmsghdr *nlh;
281 int (*dump)(struct sk_buff * skb,
282 struct netlink_callback *cb);
283 int (*done)(struct netlink_callback *cb);
7175c883 284 void *data;
6dc878a8
G
285 /* the module that dump function belong to */
286 struct module *module;
4a19edb6 287 struct netlink_ext_ack *extack;
c7ac8679 288 u16 family;
22e6c58b 289 u16 answer_flags;
085c20ca 290 u32 min_dump_alloc;
670dc283 291 unsigned int prev_seq, seq;
085c20ca 292 bool strict_check;
362b87f5
JD
293 union {
294 u8 ctx[48];
295
296 /* args is deprecated. Cast a struct over ctx instead
297 * for proper type safety.
298 */
299 long args[6];
300 };
1da177e4
LT
301};
302
ec8f7d49 303#define NL_ASSERT_DUMP_CTX_FITS(type_name) \
2c7bc10d
JK
304 BUILD_BUG_ON(sizeof(type_name) > \
305 sizeof_field(struct netlink_callback, ctx))
306
d94d9fee 307struct netlink_notify {
b4b51029 308 struct net *net;
0392d099 309 u32 portid;
1da177e4
LT
310 int protocol;
311};
312
a46621a3 313struct nlmsghdr *
15e47304 314__nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags);
1da177e4 315
80d326fa 316struct netlink_dump_control {
fc9e50f5 317 int (*start)(struct netlink_callback *);
80d326fa 318 int (*dump)(struct sk_buff *skb, struct netlink_callback *);
6dc878a8 319 int (*done)(struct netlink_callback *);
5ab8c41c 320 struct netlink_ext_ack *extack;
7175c883 321 void *data;
6dc878a8 322 struct module *module;
ebfe3c51 323 u32 min_dump_alloc;
80d326fa
PNA
324};
325
aa9d6e0f 326int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
6dc878a8
G
327 const struct nlmsghdr *nlh,
328 struct netlink_dump_control *control);
329static inline int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
330 const struct nlmsghdr *nlh,
331 struct netlink_dump_control *control)
332{
333 if (!control->module)
334 control->module = THIS_MODULE;
335
336 return __netlink_dump_start(ssk, skb, nlh, control);
337}
1da177e4 338
bcbde0d4
DB
339struct netlink_tap {
340 struct net_device *dev;
341 struct module *module;
342 struct list_head list;
343};
344
aa9d6e0f
SH
345int netlink_add_tap(struct netlink_tap *nt);
346int netlink_remove_tap(struct netlink_tap *nt);
bcbde0d4 347
aa4cf945
EB
348bool __netlink_ns_capable(const struct netlink_skb_parms *nsp,
349 struct user_namespace *ns, int cap);
350bool netlink_ns_capable(const struct sk_buff *skb,
351 struct user_namespace *ns, int cap);
352bool netlink_capable(const struct sk_buff *skb, int cap);
353bool netlink_net_capable(const struct sk_buff *skb, int cap);
354
1da177e4 355#endif /* __LINUX_NETLINK_H */