xref: /openbmc/linux/include/net/genetlink.h (revision 4fa86555d1cd338afc6e6308cc1ff890a014ec8c)
1b2441318SGreg Kroah-Hartman /* SPDX-License-Identifier: GPL-2.0 */
2482a8524SThomas Graf #ifndef __NET_GENERIC_NETLINK_H
3482a8524SThomas Graf #define __NET_GENERIC_NETLINK_H
4482a8524SThomas Graf 
5482a8524SThomas Graf #include <linux/genetlink.h>
6482a8524SThomas Graf #include <net/netlink.h>
7134e6375SJohannes Berg #include <net/net_namespace.h>
8482a8524SThomas Graf 
958050fceSThomas Graf #define GENLMSG_DEFAULT_SIZE (NLMSG_DEFAULT_SIZE - GENL_HDRLEN)
1058050fceSThomas Graf 
11482a8524SThomas Graf /**
122dbba6f7SJohannes Berg  * struct genl_multicast_group - generic netlink multicast group
132dbba6f7SJohannes Berg  * @name: name of the multicast group, names are per-family
145c221f0aSJakub Kicinski  * @flags: GENL_* flags (%GENL_ADMIN_PERM or %GENL_UNS_ADMIN_PERM)
152dbba6f7SJohannes Berg  */
16fd2c3ef7SEric Dumazet struct genl_multicast_group {
172dbba6f7SJohannes Berg 	char			name[GENL_NAMSIZ];
184d54cc32SFlorian Westphal 	u8			flags;
192dbba6f7SJohannes Berg };
202dbba6f7SJohannes Berg 
21ff4c92d8SJohannes Berg struct genl_ops;
22ff4c92d8SJohannes Berg struct genl_info;
23ff4c92d8SJohannes Berg 
242dbba6f7SJohannes Berg /**
25482a8524SThomas Graf  * struct genl_family - generic netlink family
26a07ea4d9SJohannes Berg  * @id: protocol family identifier (private)
27482a8524SThomas Graf  * @hdrsize: length of user specific header in bytes
28482a8524SThomas Graf  * @name: name of family
29482a8524SThomas Graf  * @version: protocol version
30482a8524SThomas Graf  * @maxattr: maximum number of attributes supported
313b0f31f2SJohannes Berg  * @policy: netlink policy
32134e6375SJohannes Berg  * @netnsok: set to true if the family can handle network
33134e6375SJohannes Berg  *	namespaces and should be presented in all of them
34f555f3d7SJohannes Berg  * @parallel_ops: operations can be called in parallel and aren't
35f555f3d7SJohannes Berg  *	synchronized by the core genetlink code
36ff4c92d8SJohannes Berg  * @pre_doit: called before an operation's doit callback, it may
37ff4c92d8SJohannes Berg  *	do additional, common, filtering and return an error
38ff4c92d8SJohannes Berg  * @post_doit: called after an operation's doit callback, it may
39ff4c92d8SJohannes Berg  *	undo operations done by pre_doit, for example release locks
40a1a824f4SJakub Kicinski  * @module: pointer to the owning module (set to THIS_MODULE)
41489111e5SJohannes Berg  * @mcgrps: multicast groups used by this family
42489111e5SJohannes Berg  * @n_mcgrps: number of multicast groups
439c5d03d3SJakub Kicinski  * @resv_start_op: first operation for which reserved fields of the header
44*4fa86555SJakub Kicinski  *	can be validated and policies are required (see below);
45*4fa86555SJakub Kicinski  *	new families should leave this field at zero
462a94fe48SJohannes Berg  * @mcgrp_offset: starting number of multicast group IDs in this family
47489111e5SJohannes Berg  *	(private)
48489111e5SJohannes Berg  * @ops: the operations supported by this family
49489111e5SJohannes Berg  * @n_ops: number of operations supported by this family
500b588afdSJakub Kicinski  * @small_ops: the small-struct operations supported by this family
510b588afdSJakub Kicinski  * @n_small_ops: number of small-struct operations supported by this family
52*4fa86555SJakub Kicinski  *
53*4fa86555SJakub Kicinski  * Attribute policies (the combination of @policy and @maxattr fields)
54*4fa86555SJakub Kicinski  * can be attached at the family level or at the operation level.
55*4fa86555SJakub Kicinski  * If both are present the per-operation policy takes precedence.
56*4fa86555SJakub Kicinski  * For operations before @resv_start_op lack of policy means that the core
57*4fa86555SJakub Kicinski  * will perform no attribute parsing or validation. For newer operations
58*4fa86555SJakub Kicinski  * if policy is not provided core will reject all TLV attributes.
59482a8524SThomas Graf  */
60fd2c3ef7SEric Dumazet struct genl_family {
6198e4321bSDavid S. Miller 	int			id;		/* private */
62482a8524SThomas Graf 	unsigned int		hdrsize;
63482a8524SThomas Graf 	char			name[GENL_NAMSIZ];
64482a8524SThomas Graf 	unsigned int		version;
65482a8524SThomas Graf 	unsigned int		maxattr;
66e5086736SJakub Kicinski 	unsigned int		mcgrp_offset;	/* private */
67e5086736SJakub Kicinski 	u8			netnsok:1;
68e5086736SJakub Kicinski 	u8			parallel_ops:1;
69e5086736SJakub Kicinski 	u8			n_ops;
700b588afdSJakub Kicinski 	u8			n_small_ops;
71e5086736SJakub Kicinski 	u8			n_mcgrps;
729c5d03d3SJakub Kicinski 	u8			resv_start_op;
733b0f31f2SJohannes Berg 	const struct nla_policy *policy;
74f84f771dSJohannes Berg 	int			(*pre_doit)(const struct genl_ops *ops,
75ff4c92d8SJohannes Berg 					    struct sk_buff *skb,
76ff4c92d8SJohannes Berg 					    struct genl_info *info);
77f84f771dSJohannes Berg 	void			(*post_doit)(const struct genl_ops *ops,
78ff4c92d8SJohannes Berg 					     struct sk_buff *skb,
79ff4c92d8SJohannes Berg 					     struct genl_info *info);
80489111e5SJohannes Berg 	const struct genl_ops *	ops;
810b588afdSJakub Kicinski 	const struct genl_small_ops *small_ops;
82489111e5SJohannes Berg 	const struct genl_multicast_group *mcgrps;
8333c6b1f6SPravin B Shelar 	struct module		*module;
84482a8524SThomas Graf };
85482a8524SThomas Graf 
86482a8524SThomas Graf /**
87482a8524SThomas Graf  * struct genl_info - receiving information
88482a8524SThomas Graf  * @snd_seq: sending sequence number
8915e47304SEric W. Biederman  * @snd_portid: netlink portid of sender
90482a8524SThomas Graf  * @nlhdr: netlink message header
91482a8524SThomas Graf  * @genlhdr: generic netlink message header
92482a8524SThomas Graf  * @userhdr: user specific header
93482a8524SThomas Graf  * @attrs: netlink attributes
94ff4c92d8SJohannes Berg  * @_net: network namespace
95ff4c92d8SJohannes Berg  * @user_ptr: user pointers
967ab606d1SJohannes Berg  * @extack: extended ACK report struct
97482a8524SThomas Graf  */
98fd2c3ef7SEric Dumazet struct genl_info {
99482a8524SThomas Graf 	u32			snd_seq;
10015e47304SEric W. Biederman 	u32			snd_portid;
101482a8524SThomas Graf 	struct nlmsghdr *	nlhdr;
102482a8524SThomas Graf 	struct genlmsghdr *	genlhdr;
103482a8524SThomas Graf 	void *			userhdr;
104482a8524SThomas Graf 	struct nlattr **	attrs;
1050c5c9fb5SEric W. Biederman 	possible_net_t		_net;
106ff4c92d8SJohannes Berg 	void *			user_ptr[2];
1077ab606d1SJohannes Berg 	struct netlink_ext_ack *extack;
108482a8524SThomas Graf };
109482a8524SThomas Graf 
110134e6375SJohannes Berg static inline struct net *genl_info_net(struct genl_info *info)
111134e6375SJohannes Berg {
112c2d9ba9bSEric Dumazet 	return read_pnet(&info->_net);
113134e6375SJohannes Berg }
114134e6375SJohannes Berg 
115134e6375SJohannes Berg static inline void genl_info_net_set(struct genl_info *info, struct net *net)
116134e6375SJohannes Berg {
117c2d9ba9bSEric Dumazet 	write_pnet(&info->_net, net);
118134e6375SJohannes Berg }
119134e6375SJohannes Berg 
1207ab606d1SJohannes Berg #define GENL_SET_ERR_MSG(info, msg) NL_SET_ERR_MSG((info)->extack, msg)
1217ab606d1SJohannes Berg 
12245dca157SJakub Kicinski /* Report that a root attribute is missing */
12345dca157SJakub Kicinski #define GENL_REQ_ATTR_CHECK(info, attr) ({				\
12445dca157SJakub Kicinski 	struct genl_info *__info = (info);				\
12545dca157SJakub Kicinski 									\
12645dca157SJakub Kicinski 	NL_REQ_ATTR_CHECK(__info->extack, NULL, __info->attrs, (attr)); \
12745dca157SJakub Kicinski })
12845dca157SJakub Kicinski 
129ef6243acSJohannes Berg enum genl_validate_flags {
130ef6243acSJohannes Berg 	GENL_DONT_VALIDATE_STRICT		= BIT(0),
131ef6243acSJohannes Berg 	GENL_DONT_VALIDATE_DUMP			= BIT(1),
132ef6243acSJohannes Berg 	GENL_DONT_VALIDATE_DUMP_STRICT		= BIT(2),
133ef6243acSJohannes Berg };
134ef6243acSJohannes Berg 
135482a8524SThomas Graf /**
1360b588afdSJakub Kicinski  * struct genl_small_ops - generic netlink operations (small version)
1370b588afdSJakub Kicinski  * @cmd: command identifier
1380b588afdSJakub Kicinski  * @internal_flags: flags used by the family
1395c221f0aSJakub Kicinski  * @flags: GENL_* flags (%GENL_ADMIN_PERM or %GENL_UNS_ADMIN_PERM)
1400b588afdSJakub Kicinski  * @validate: validation flags from enum genl_validate_flags
1410b588afdSJakub Kicinski  * @doit: standard command callback
1420b588afdSJakub Kicinski  * @dumpit: callback for dumpers
1430b588afdSJakub Kicinski  *
1440b588afdSJakub Kicinski  * This is a cut-down version of struct genl_ops for users who don't need
1450b588afdSJakub Kicinski  * most of the ancillary infra and want to save space.
1461927f41aSJiri Pirko  */
1470b588afdSJakub Kicinski struct genl_small_ops {
1480b588afdSJakub Kicinski 	int	(*doit)(struct sk_buff *skb, struct genl_info *info);
1490b588afdSJakub Kicinski 	int	(*dumpit)(struct sk_buff *skb, struct netlink_callback *cb);
1500b588afdSJakub Kicinski 	u8	cmd;
1510b588afdSJakub Kicinski 	u8	internal_flags;
1520b588afdSJakub Kicinski 	u8	flags;
1530b588afdSJakub Kicinski 	u8	validate;
1541927f41aSJiri Pirko };
1551927f41aSJiri Pirko 
1561927f41aSJiri Pirko /**
157482a8524SThomas Graf  * struct genl_ops - generic netlink operations
158482a8524SThomas Graf  * @cmd: command identifier
159ff4c92d8SJohannes Berg  * @internal_flags: flags used by the family
1605c221f0aSJakub Kicinski  * @flags: GENL_* flags (%GENL_ADMIN_PERM or %GENL_UNS_ADMIN_PERM)
16148526a0fSJakub Kicinski  * @maxattr: maximum number of attributes supported
16248526a0fSJakub Kicinski  * @policy: netlink policy (takes precedence over family policy)
1633ddf9b43SJakub Kicinski  * @validate: validation flags from enum genl_validate_flags
164482a8524SThomas Graf  * @doit: standard command callback
165fc9e50f5STom Herbert  * @start: start callback for dumps
166482a8524SThomas Graf  * @dumpit: callback for dumpers
167a4d1366dSJamal Hadi Salim  * @done: completion callback for dumps
168482a8524SThomas Graf  */
169fd2c3ef7SEric Dumazet struct genl_ops {
170482a8524SThomas Graf 	int		       (*doit)(struct sk_buff *skb,
171482a8524SThomas Graf 				       struct genl_info *info);
172fc9e50f5STom Herbert 	int		       (*start)(struct netlink_callback *cb);
173482a8524SThomas Graf 	int		       (*dumpit)(struct sk_buff *skb,
174482a8524SThomas Graf 					 struct netlink_callback *cb);
175a4d1366dSJamal Hadi Salim 	int		       (*done)(struct netlink_callback *cb);
17648526a0fSJakub Kicinski 	const struct nla_policy *policy;
17748526a0fSJakub Kicinski 	unsigned int		maxattr;
1783f5ccd06SJohannes Berg 	u8			cmd;
1793f5ccd06SJohannes Berg 	u8			internal_flags;
1803f5ccd06SJohannes Berg 	u8			flags;
181ef6243acSJohannes Berg 	u8			validate;
182482a8524SThomas Graf };
183482a8524SThomas Graf 
1840b588afdSJakub Kicinski /**
185a1a824f4SJakub Kicinski  * struct genl_dumpit_info - info that is available during dumpit op call
1860b588afdSJakub Kicinski  * @family: generic netlink family - for internal genl code usage
187a1a824f4SJakub Kicinski  * @op: generic netlink ops - for internal genl code usage
1880b588afdSJakub Kicinski  * @attrs: netlink attributes
1890b588afdSJakub Kicinski  */
1900b588afdSJakub Kicinski struct genl_dumpit_info {
1910b588afdSJakub Kicinski 	const struct genl_family *family;
1920b588afdSJakub Kicinski 	struct genl_ops op;
1930b588afdSJakub Kicinski 	struct nlattr **attrs;
1940b588afdSJakub Kicinski };
1950b588afdSJakub Kicinski 
1960b588afdSJakub Kicinski static inline const struct genl_dumpit_info *
1970b588afdSJakub Kicinski genl_dumpit_info(struct netlink_callback *cb)
1980b588afdSJakub Kicinski {
1990b588afdSJakub Kicinski 	return cb->data;
2000b588afdSJakub Kicinski }
2010b588afdSJakub Kicinski 
202489111e5SJohannes Berg int genl_register_family(struct genl_family *family);
2032ae0f17dSJohannes Berg int genl_unregister_family(const struct genl_family *family);
2042ae0f17dSJohannes Berg void genl_notify(const struct genl_family *family, struct sk_buff *skb,
20592c14d9bSJiri Benc 		 struct genl_info *info, u32 group, gfp_t flags);
206482a8524SThomas Graf 
20715e47304SEric W. Biederman void *genlmsg_put(struct sk_buff *skb, u32 portid, u32 seq,
2082ae0f17dSJohannes Berg 		  const struct genl_family *family, int flags, u8 cmd);
209482a8524SThomas Graf 
210482a8524SThomas Graf /**
211670dc283SJohannes Berg  * genlmsg_nlhdr - Obtain netlink header from user specified header
212670dc283SJohannes Berg  * @user_hdr: user header as returned from genlmsg_put()
213670dc283SJohannes Berg  *
214670dc283SJohannes Berg  * Returns pointer to netlink header.
215670dc283SJohannes Berg  */
2160a833c29SMichal Kubecek static inline struct nlmsghdr *genlmsg_nlhdr(void *user_hdr)
217670dc283SJohannes Berg {
218670dc283SJohannes Berg 	return (struct nlmsghdr *)((char *)user_hdr -
219670dc283SJohannes Berg 				   GENL_HDRLEN -
220670dc283SJohannes Berg 				   NLMSG_HDRLEN);
221670dc283SJohannes Berg }
222670dc283SJohannes Berg 
223670dc283SJohannes Berg /**
2248cb08174SJohannes Berg  * genlmsg_parse_deprecated - parse attributes of a genetlink message
2257b1883ceSJoe Stringer  * @nlh: netlink message header
2267b1883ceSJoe Stringer  * @family: genetlink message family
2277b1883ceSJoe Stringer  * @tb: destination array with maxtype+1 elements
2287b1883ceSJoe Stringer  * @maxtype: maximum attribute type to be expected
2297b1883ceSJoe Stringer  * @policy: validation policy
230fceb6435SJohannes Berg  * @extack: extended ACK report struct
231fceb6435SJohannes Berg  */
2328cb08174SJohannes Berg static inline int genlmsg_parse_deprecated(const struct nlmsghdr *nlh,
2337b1883ceSJoe Stringer 					   const struct genl_family *family,
2347b1883ceSJoe Stringer 					   struct nlattr *tb[], int maxtype,
235fceb6435SJohannes Berg 					   const struct nla_policy *policy,
236fceb6435SJohannes Berg 					   struct netlink_ext_ack *extack)
2377b1883ceSJoe Stringer {
2388cb08174SJohannes Berg 	return __nlmsg_parse(nlh, family->hdrsize + GENL_HDRLEN, tb, maxtype,
2398cb08174SJohannes Berg 			     policy, NL_VALIDATE_LIBERAL, extack);
2407b1883ceSJoe Stringer }
2417b1883ceSJoe Stringer 
2427b1883ceSJoe Stringer /**
2433de64403SJohannes Berg  * genlmsg_parse - parse attributes of a genetlink message
2443de64403SJohannes Berg  * @nlh: netlink message header
2453de64403SJohannes Berg  * @family: genetlink message family
2463de64403SJohannes Berg  * @tb: destination array with maxtype+1 elements
2473de64403SJohannes Berg  * @maxtype: maximum attribute type to be expected
2483de64403SJohannes Berg  * @policy: validation policy
2493de64403SJohannes Berg  * @extack: extended ACK report struct
2503de64403SJohannes Berg  */
2513de64403SJohannes Berg static inline int genlmsg_parse(const struct nlmsghdr *nlh,
2523de64403SJohannes Berg 				const struct genl_family *family,
2533de64403SJohannes Berg 				struct nlattr *tb[], int maxtype,
2543de64403SJohannes Berg 				const struct nla_policy *policy,
2553de64403SJohannes Berg 				struct netlink_ext_ack *extack)
2563de64403SJohannes Berg {
2573de64403SJohannes Berg 	return __nlmsg_parse(nlh, family->hdrsize + GENL_HDRLEN, tb, maxtype,
2583de64403SJohannes Berg 			     policy, NL_VALIDATE_STRICT, extack);
2593de64403SJohannes Berg }
2603de64403SJohannes Berg 
2613de64403SJohannes Berg /**
262670dc283SJohannes Berg  * genl_dump_check_consistent - check if sequence is consistent and advertise if not
263670dc283SJohannes Berg  * @cb: netlink callback structure that stores the sequence number
264670dc283SJohannes Berg  * @user_hdr: user header as returned from genlmsg_put()
265670dc283SJohannes Berg  *
266670dc283SJohannes Berg  * Cf. nl_dump_check_consistent(), this just provides a wrapper to make it
267670dc283SJohannes Berg  * simpler to use with generic netlink.
268670dc283SJohannes Berg  */
269670dc283SJohannes Berg static inline void genl_dump_check_consistent(struct netlink_callback *cb,
2700a833c29SMichal Kubecek 					      void *user_hdr)
271670dc283SJohannes Berg {
2720a833c29SMichal Kubecek 	nl_dump_check_consistent(cb, genlmsg_nlhdr(user_hdr));
273670dc283SJohannes Berg }
274670dc283SJohannes Berg 
275670dc283SJohannes Berg /**
27617c157c8SThomas Graf  * genlmsg_put_reply - Add generic netlink header to a reply message
27717c157c8SThomas Graf  * @skb: socket buffer holding the message
27817c157c8SThomas Graf  * @info: receiver info
27917c157c8SThomas Graf  * @family: generic netlink family
28017c157c8SThomas Graf  * @flags: netlink message flags
28117c157c8SThomas Graf  * @cmd: generic netlink command
28217c157c8SThomas Graf  *
28317c157c8SThomas Graf  * Returns pointer to user specific header
28417c157c8SThomas Graf  */
28517c157c8SThomas Graf static inline void *genlmsg_put_reply(struct sk_buff *skb,
28617c157c8SThomas Graf 				      struct genl_info *info,
2872ae0f17dSJohannes Berg 				      const struct genl_family *family,
28817c157c8SThomas Graf 				      int flags, u8 cmd)
28917c157c8SThomas Graf {
29015e47304SEric W. Biederman 	return genlmsg_put(skb, info->snd_portid, info->snd_seq, family,
29117c157c8SThomas Graf 			   flags, cmd);
29217c157c8SThomas Graf }
29317c157c8SThomas Graf 
29417c157c8SThomas Graf /**
295482a8524SThomas Graf  * genlmsg_end - Finalize a generic netlink message
296482a8524SThomas Graf  * @skb: socket buffer the message is stored in
297482a8524SThomas Graf  * @hdr: user specific header
298482a8524SThomas Graf  */
299053c095aSJohannes Berg static inline void genlmsg_end(struct sk_buff *skb, void *hdr)
300482a8524SThomas Graf {
301053c095aSJohannes Berg 	nlmsg_end(skb, hdr - GENL_HDRLEN - NLMSG_HDRLEN);
302482a8524SThomas Graf }
303482a8524SThomas Graf 
304482a8524SThomas Graf /**
305482a8524SThomas Graf  * genlmsg_cancel - Cancel construction of a generic netlink message
306482a8524SThomas Graf  * @skb: socket buffer the message is stored in
307482a8524SThomas Graf  * @hdr: generic netlink message header
308482a8524SThomas Graf  */
309bc3ed28cSThomas Graf static inline void genlmsg_cancel(struct sk_buff *skb, void *hdr)
310482a8524SThomas Graf {
31138db9e1dSJulia Lawall 	if (hdr)
312bc3ed28cSThomas Graf 		nlmsg_cancel(skb, hdr - GENL_HDRLEN - NLMSG_HDRLEN);
313482a8524SThomas Graf }
314482a8524SThomas Graf 
315482a8524SThomas Graf /**
316134e6375SJohannes Berg  * genlmsg_multicast_netns - multicast a netlink message to a specific netns
31768eb5503SJohannes Berg  * @family: the generic netlink family
318134e6375SJohannes Berg  * @net: the net namespace
319134e6375SJohannes Berg  * @skb: netlink message as socket buffer
32015e47304SEric W. Biederman  * @portid: own netlink portid to avoid sending to yourself
3212a94fe48SJohannes Berg  * @group: offset of multicast group in groups array
322134e6375SJohannes Berg  * @flags: allocation flags
323134e6375SJohannes Berg  */
3242ae0f17dSJohannes Berg static inline int genlmsg_multicast_netns(const struct genl_family *family,
32568eb5503SJohannes Berg 					  struct net *net, struct sk_buff *skb,
32615e47304SEric W. Biederman 					  u32 portid, unsigned int group, gfp_t flags)
327134e6375SJohannes Berg {
328220815a9SJohannes Berg 	if (WARN_ON_ONCE(group >= family->n_mcgrps))
3292a94fe48SJohannes Berg 		return -EINVAL;
3302a94fe48SJohannes Berg 	group = family->mcgrp_offset + group;
33115e47304SEric W. Biederman 	return nlmsg_multicast(net->genl_sock, skb, portid, group, flags);
332134e6375SJohannes Berg }
333134e6375SJohannes Berg 
334134e6375SJohannes Berg /**
335134e6375SJohannes Berg  * genlmsg_multicast - multicast a netlink message to the default netns
33668eb5503SJohannes Berg  * @family: the generic netlink family
337482a8524SThomas Graf  * @skb: netlink message as socket buffer
33815e47304SEric W. Biederman  * @portid: own netlink portid to avoid sending to yourself
3392a94fe48SJohannes Berg  * @group: offset of multicast group in groups array
340d387f6adSThomas Graf  * @flags: allocation flags
341482a8524SThomas Graf  */
3422ae0f17dSJohannes Berg static inline int genlmsg_multicast(const struct genl_family *family,
34368eb5503SJohannes Berg 				    struct sk_buff *skb, u32 portid,
344d387f6adSThomas Graf 				    unsigned int group, gfp_t flags)
345482a8524SThomas Graf {
34668eb5503SJohannes Berg 	return genlmsg_multicast_netns(family, &init_net, skb,
34768eb5503SJohannes Berg 				       portid, group, flags);
348482a8524SThomas Graf }
349482a8524SThomas Graf 
350482a8524SThomas Graf /**
351134e6375SJohannes Berg  * genlmsg_multicast_allns - multicast a netlink message to all net namespaces
35268eb5503SJohannes Berg  * @family: the generic netlink family
353134e6375SJohannes Berg  * @skb: netlink message as socket buffer
35415e47304SEric W. Biederman  * @portid: own netlink portid to avoid sending to yourself
3552a94fe48SJohannes Berg  * @group: offset of multicast group in groups array
356134e6375SJohannes Berg  * @flags: allocation flags
357134e6375SJohannes Berg  *
358134e6375SJohannes Berg  * This function must hold the RTNL or rcu_read_lock().
359134e6375SJohannes Berg  */
3602ae0f17dSJohannes Berg int genlmsg_multicast_allns(const struct genl_family *family,
36168eb5503SJohannes Berg 			    struct sk_buff *skb, u32 portid,
362134e6375SJohannes Berg 			    unsigned int group, gfp_t flags);
363134e6375SJohannes Berg 
364134e6375SJohannes Berg /**
365482a8524SThomas Graf  * genlmsg_unicast - unicast a netlink message
366a1a824f4SJakub Kicinski  * @net: network namespace to look up @portid in
367482a8524SThomas Graf  * @skb: netlink message as socket buffer
36815e47304SEric W. Biederman  * @portid: netlink portid of the destination socket
369482a8524SThomas Graf  */
37015e47304SEric W. Biederman static inline int genlmsg_unicast(struct net *net, struct sk_buff *skb, u32 portid)
371482a8524SThomas Graf {
37215e47304SEric W. Biederman 	return nlmsg_unicast(net->genl_sock, skb, portid);
373482a8524SThomas Graf }
374482a8524SThomas Graf 
375fb0ba6bdSBalbir Singh /**
37681878d27SThomas Graf  * genlmsg_reply - reply to a request
37781878d27SThomas Graf  * @skb: netlink message to be sent back
37881878d27SThomas Graf  * @info: receiver information
37981878d27SThomas Graf  */
38081878d27SThomas Graf static inline int genlmsg_reply(struct sk_buff *skb, struct genl_info *info)
38181878d27SThomas Graf {
38215e47304SEric W. Biederman 	return genlmsg_unicast(genl_info_net(info), skb, info->snd_portid);
38381878d27SThomas Graf }
38481878d27SThomas Graf 
38581878d27SThomas Graf /**
386a1a824f4SJakub Kicinski  * genlmsg_data - head of message payload
38770f23fd6SJustin P. Mattock  * @gnlh: genetlink message header
388fb0ba6bdSBalbir Singh  */
389fb0ba6bdSBalbir Singh static inline void *genlmsg_data(const struct genlmsghdr *gnlh)
390fb0ba6bdSBalbir Singh {
391fb0ba6bdSBalbir Singh 	return ((unsigned char *) gnlh + GENL_HDRLEN);
392fb0ba6bdSBalbir Singh }
393fb0ba6bdSBalbir Singh 
394fb0ba6bdSBalbir Singh /**
395fb0ba6bdSBalbir Singh  * genlmsg_len - length of message payload
396fb0ba6bdSBalbir Singh  * @gnlh: genetlink message header
397fb0ba6bdSBalbir Singh  */
398fb0ba6bdSBalbir Singh static inline int genlmsg_len(const struct genlmsghdr *gnlh)
399fb0ba6bdSBalbir Singh {
400fb0ba6bdSBalbir Singh 	struct nlmsghdr *nlh = (struct nlmsghdr *)((unsigned char *)gnlh -
401fb0ba6bdSBalbir Singh 							NLMSG_HDRLEN);
402fb0ba6bdSBalbir Singh 	return (nlh->nlmsg_len - GENL_HDRLEN - NLMSG_HDRLEN);
403fb0ba6bdSBalbir Singh }
404fb0ba6bdSBalbir Singh 
40517db952cSBalbir Singh /**
40617db952cSBalbir Singh  * genlmsg_msg_size - length of genetlink message not including padding
40717db952cSBalbir Singh  * @payload: length of message payload
40817db952cSBalbir Singh  */
40917db952cSBalbir Singh static inline int genlmsg_msg_size(int payload)
41017db952cSBalbir Singh {
41117db952cSBalbir Singh 	return GENL_HDRLEN + payload;
41217db952cSBalbir Singh }
41317db952cSBalbir Singh 
41417db952cSBalbir Singh /**
41517db952cSBalbir Singh  * genlmsg_total_size - length of genetlink message including padding
41617db952cSBalbir Singh  * @payload: length of message payload
41717db952cSBalbir Singh  */
41817db952cSBalbir Singh static inline int genlmsg_total_size(int payload)
41917db952cSBalbir Singh {
42017db952cSBalbir Singh 	return NLMSG_ALIGN(genlmsg_msg_size(payload));
42117db952cSBalbir Singh }
42217db952cSBalbir Singh 
4233dabc715SThomas Graf /**
4243dabc715SThomas Graf  * genlmsg_new - Allocate a new generic netlink message
4253dabc715SThomas Graf  * @payload: size of the message payload
4263dabc715SThomas Graf  * @flags: the type of memory to allocate.
4273dabc715SThomas Graf  */
4283dabc715SThomas Graf static inline struct sk_buff *genlmsg_new(size_t payload, gfp_t flags)
4293dabc715SThomas Graf {
4303dabc715SThomas Graf 	return nlmsg_new(genlmsg_total_size(payload), flags);
4313dabc715SThomas Graf }
4323dabc715SThomas Graf 
43362b68e99SJohannes Berg /**
43462b68e99SJohannes Berg  * genl_set_err - report error to genetlink broadcast listeners
43568eb5503SJohannes Berg  * @family: the generic netlink family
43662b68e99SJohannes Berg  * @net: the network namespace to report the error to
43762b68e99SJohannes Berg  * @portid: the PORTID of a process that we want to skip (if any)
43862b68e99SJohannes Berg  * @group: the broadcast group that will notice the error
4392a94fe48SJohannes Berg  * 	(this is the offset of the multicast group in the groups array)
44062b68e99SJohannes Berg  * @code: error code, must be negative (as usual in kernelspace)
44162b68e99SJohannes Berg  *
44262b68e99SJohannes Berg  * This function returns the number of broadcast listeners that have set the
44362b68e99SJohannes Berg  * NETLINK_RECV_NO_ENOBUFS socket option.
44462b68e99SJohannes Berg  */
4452ae0f17dSJohannes Berg static inline int genl_set_err(const struct genl_family *family,
4462ae0f17dSJohannes Berg 			       struct net *net, u32 portid,
4472ae0f17dSJohannes Berg 			       u32 group, int code)
44862b68e99SJohannes Berg {
44991398a09SJohannes Berg 	if (WARN_ON_ONCE(group >= family->n_mcgrps))
45091398a09SJohannes Berg 		return -EINVAL;
45191398a09SJohannes Berg 	group = family->mcgrp_offset + group;
45262b68e99SJohannes Berg 	return netlink_set_err(net->genl_sock, portid, group, code);
45362b68e99SJohannes Berg }
4543dabc715SThomas Graf 
4552ae0f17dSJohannes Berg static inline int genl_has_listeners(const struct genl_family *family,
456f8403a2eSJohannes Berg 				     struct net *net, unsigned int group)
4570d566379SNicolas Dichtel {
4580d566379SNicolas Dichtel 	if (WARN_ON_ONCE(group >= family->n_mcgrps))
4590d566379SNicolas Dichtel 		return -EINVAL;
4600d566379SNicolas Dichtel 	group = family->mcgrp_offset + group;
461f8403a2eSJohannes Berg 	return netlink_has_listeners(net->genl_sock, group);
4620d566379SNicolas Dichtel }
463482a8524SThomas Graf #endif	/* __NET_GENERIC_NETLINK_H */
464