blob: e0f746b7b95c5292b03ca073b02ee2aa905de21a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __LINUX_NETLINK_H
2#define __LINUX_NETLINK_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004
5#include <linux/capability.h>
6#include <linux/skbuff.h>
Pablo Neira Ayusoabb17e62012-09-21 09:35:38 +00007#include <linux/export.h>
Eric W. Biedermandbe9a412012-09-06 18:20:01 +00008#include <net/scm.h>
David Howells607ca462012-10-13 10:46:48 +01009#include <uapi/linux/netlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
Ollie Wild56b49f42010-09-22 05:54:54 +000011struct net;
12
Arnaldo Carvalho de Melob529ccf2007-04-25 19:08:35 -070013static inline struct nlmsghdr *nlmsg_hdr(const struct sk_buff *skb)
14{
15 return (struct nlmsghdr *)skb->data;
16}
17
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080018struct netlink_skb_parms {
Eric W. Biedermandbe9a412012-09-06 18:20:01 +000019 struct scm_creds creds; /* Skb credentials */
Eric W. Biederman15e47302012-09-07 20:12:54 +000020 __u32 portid;
Patrick McHardyd629b832005-08-14 19:27:50 -070021 __u32 dst_group;
Eric W. Biederman3fbc2902012-05-24 17:21:27 -060022 struct sock *ssk;
Linus Torvalds1da177e2005-04-16 15:20:36 -070023};
24
25#define NETLINK_CB(skb) (*(struct netlink_skb_parms*)&((skb)->cb))
26#define NETLINK_CREDS(skb) (&NETLINK_CB((skb)).creds)
27
28
Johannes Bergd136f1b2009-09-12 03:03:15 +000029extern void netlink_table_grab(void);
30extern void netlink_table_ungrab(void);
31
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +000032#define NL_CFG_F_NONROOT_RECV (1 << 0)
33#define NL_CFG_F_NONROOT_SEND (1 << 1)
34
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +000035/* optional Netlink kernel configuration parameters */
36struct netlink_kernel_cfg {
37 unsigned int groups;
David S. Millerc9d2ea92012-09-23 02:09:23 -040038 unsigned int flags;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +000039 void (*input)(struct sk_buff *skb);
40 struct mutex *cb_mutex;
Pablo Neira Ayuso03292742012-06-29 06:15:22 +000041 void (*bind)(int group);
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +000042};
43
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +000044extern struct sock *__netlink_kernel_create(struct net *net, int unit,
45 struct module *module,
46 struct netlink_kernel_cfg *cfg);
47static inline struct sock *
48netlink_kernel_create(struct net *net, int unit, struct netlink_kernel_cfg *cfg)
49{
50 return __netlink_kernel_create(net, unit, THIS_MODULE, cfg);
51}
52
Denis V. Lunevb7c6ba62008-01-28 14:41:19 -080053extern void netlink_kernel_release(struct sock *sk);
Johannes Bergd136f1b2009-09-12 03:03:15 +000054extern int __netlink_change_ngroups(struct sock *sk, unsigned int groups);
Johannes Bergb4ff4f02007-07-18 15:46:06 -070055extern int netlink_change_ngroups(struct sock *sk, unsigned int groups);
Johannes Bergb8273572009-09-24 15:44:05 -070056extern void __netlink_clear_multicast_users(struct sock *sk, unsigned int group);
Johannes Berg84659eb2007-07-18 15:47:05 -070057extern void netlink_clear_multicast_users(struct sock *sk, unsigned int group);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058extern void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err);
Patrick McHardy4277a082006-03-20 18:52:01 -080059extern int netlink_has_listeners(struct sock *sk, unsigned int group);
Eric W. Biederman15e47302012-09-07 20:12:54 +000060extern int netlink_unicast(struct sock *ssk, struct sk_buff *skb, __u32 portid, int nonblock);
61extern int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, __u32 portid,
Al Virodd0fc662005-10-07 07:46:04 +010062 __u32 group, gfp_t allocation);
Eric W. Biederman910a7e92010-05-04 17:36:46 -070063extern int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +000064 __u32 portid, __u32 group, gfp_t allocation,
Eric W. Biederman910a7e92010-05-04 17:36:46 -070065 int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
66 void *filter_data);
Eric W. Biederman15e47302012-09-07 20:12:54 +000067extern int netlink_set_err(struct sock *ssk, __u32 portid, __u32 group, int code);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068extern int netlink_register_notifier(struct notifier_block *nb);
69extern int netlink_unregister_notifier(struct notifier_block *nb);
70
71/* finegrained unicast helpers: */
72struct sock *netlink_getsockbyfilp(struct file *filp);
Denis V. Lunev9457afe2008-06-05 11:23:39 -070073int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -080074 long *timeo, struct sock *ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075void netlink_detachskb(struct sock *sk, struct sk_buff *skb);
Denis V. Lunev7ee015e2007-10-10 21:14:03 -070076int netlink_sendskb(struct sock *sk, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78/*
79 * skb should fit one page. This choice is good for headerless malloc.
David S. Millerfc910a22007-03-25 20:27:59 -070080 * But we should limit to 8K so that userspace does not have to
81 * use enormous buffer sizes on recvmsg() calls just to avoid
82 * MSG_TRUNC when PAGE_SIZE is very large.
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 */
David S. Millerfc910a22007-03-25 20:27:59 -070084#if PAGE_SIZE < 8192UL
85#define NLMSG_GOODSIZE SKB_WITH_OVERHEAD(PAGE_SIZE)
86#else
87#define NLMSG_GOODSIZE SKB_WITH_OVERHEAD(8192UL)
88#endif
89
Thomas Graf339bf982006-11-10 14:10:15 -080090#define NLMSG_DEFAULT_SIZE (NLMSG_GOODSIZE - NLMSG_HDRLEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080093struct netlink_callback {
Patrick McHardy3a6c2b42009-08-25 16:07:40 +020094 struct sk_buff *skb;
95 const struct nlmsghdr *nlh;
96 int (*dump)(struct sk_buff * skb,
97 struct netlink_callback *cb);
98 int (*done)(struct netlink_callback *cb);
Pablo Neira Ayuso7175c882012-02-24 14:30:16 +000099 void *data;
Gao feng6dc878a2012-10-04 20:15:48 +0000100 /* the module that dump function belong to */
101 struct module *module;
Greg Rosec7ac8672011-06-10 01:27:09 +0000102 u16 family;
103 u16 min_dump_alloc;
Johannes Berg670dc282011-06-20 13:40:46 +0200104 unsigned int prev_seq, seq;
Patrick McHardy3a6c2b42009-08-25 16:07:40 +0200105 long args[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106};
107
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800108struct netlink_notify {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200109 struct net *net;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000110 int portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 int protocol;
112};
113
Denys Vlasenkoa46621a2012-01-30 15:22:06 -0500114struct nlmsghdr *
Eric W. Biederman15e47302012-09-07 20:12:54 +0000115__nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000117struct netlink_dump_control {
118 int (*dump)(struct sk_buff *skb, struct netlink_callback *);
Gao feng6dc878a2012-10-04 20:15:48 +0000119 int (*done)(struct netlink_callback *);
Pablo Neira Ayuso7175c882012-02-24 14:30:16 +0000120 void *data;
Gao feng6dc878a2012-10-04 20:15:48 +0000121 struct module *module;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000122 u16 min_dump_alloc;
123};
124
Gao feng6dc878a2012-10-04 20:15:48 +0000125extern int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
126 const struct nlmsghdr *nlh,
127 struct netlink_dump_control *control);
128static inline int netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
129 const struct nlmsghdr *nlh,
130 struct netlink_dump_control *control)
131{
132 if (!control->module)
133 control->module = THIS_MODULE;
134
135 return __netlink_dump_start(ssk, skb, nlh, control);
136}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#endif /* __LINUX_NETLINK_H */