Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __LINUX_NETLINK_H |
| 2 | #define __LINUX_NETLINK_H |
| 3 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | |
| 5 | #include <linux/capability.h> |
| 6 | #include <linux/skbuff.h> |
Pablo Neira Ayuso | abb17e6 | 2012-09-21 09:35:38 +0000 | [diff] [blame] | 7 | #include <linux/export.h> |
Eric W. Biederman | dbe9a41 | 2012-09-06 18:20:01 +0000 | [diff] [blame] | 8 | #include <net/scm.h> |
David Howells | 607ca46 | 2012-10-13 10:46:48 +0100 | [diff] [blame] | 9 | #include <uapi/linux/netlink.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | |
Ollie Wild | 56b49f4 | 2010-09-22 05:54:54 +0000 | [diff] [blame] | 11 | struct net; |
| 12 | |
Arnaldo Carvalho de Melo | b529ccf | 2007-04-25 19:08:35 -0700 | [diff] [blame] | 13 | static inline struct nlmsghdr *nlmsg_hdr(const struct sk_buff *skb) |
| 14 | { |
| 15 | return (struct nlmsghdr *)skb->data; |
| 16 | } |
| 17 | |
Eric Dumazet | d94d9fe | 2009-11-04 09:50:58 -0800 | [diff] [blame] | 18 | struct netlink_skb_parms { |
Eric W. Biederman | dbe9a41 | 2012-09-06 18:20:01 +0000 | [diff] [blame] | 19 | struct scm_creds creds; /* Skb credentials */ |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 20 | __u32 portid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 21 | __u32 dst_group; |
Eric W. Biederman | 3fbc290 | 2012-05-24 17:21:27 -0600 | [diff] [blame] | 22 | struct sock *ssk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | }; |
| 24 | |
| 25 | #define NETLINK_CB(skb) (*(struct netlink_skb_parms*)&((skb)->cb)) |
| 26 | #define NETLINK_CREDS(skb) (&NETLINK_CB((skb)).creds) |
| 27 | |
| 28 | |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 29 | extern void netlink_table_grab(void); |
| 30 | extern void netlink_table_ungrab(void); |
| 31 | |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 32 | #define NL_CFG_F_NONROOT_RECV (1 << 0) |
| 33 | #define NL_CFG_F_NONROOT_SEND (1 << 1) |
| 34 | |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 35 | /* optional Netlink kernel configuration parameters */ |
| 36 | struct netlink_kernel_cfg { |
| 37 | unsigned int groups; |
David S. Miller | c9d2ea9 | 2012-09-23 02:09:23 -0400 | [diff] [blame] | 38 | unsigned int flags; |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 39 | void (*input)(struct sk_buff *skb); |
| 40 | struct mutex *cb_mutex; |
Pablo Neira Ayuso | 0329274 | 2012-06-29 06:15:22 +0000 | [diff] [blame] | 41 | void (*bind)(int group); |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 42 | }; |
| 43 | |
Pablo Neira Ayuso | 9f00d97 | 2012-09-08 02:53:54 +0000 | [diff] [blame] | 44 | extern struct sock *__netlink_kernel_create(struct net *net, int unit, |
| 45 | struct module *module, |
| 46 | struct netlink_kernel_cfg *cfg); |
| 47 | static inline struct sock * |
| 48 | netlink_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. Lunev | b7c6ba6 | 2008-01-28 14:41:19 -0800 | [diff] [blame] | 53 | extern void netlink_kernel_release(struct sock *sk); |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 54 | extern int __netlink_change_ngroups(struct sock *sk, unsigned int groups); |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 55 | extern int netlink_change_ngroups(struct sock *sk, unsigned int groups); |
Johannes Berg | b827357 | 2009-09-24 15:44:05 -0700 | [diff] [blame] | 56 | extern void __netlink_clear_multicast_users(struct sock *sk, unsigned int group); |
Johannes Berg | 84659eb | 2007-07-18 15:47:05 -0700 | [diff] [blame] | 57 | extern void netlink_clear_multicast_users(struct sock *sk, unsigned int group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | extern void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err); |
Patrick McHardy | 4277a08 | 2006-03-20 18:52:01 -0800 | [diff] [blame] | 59 | extern int netlink_has_listeners(struct sock *sk, unsigned int group); |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 60 | extern int netlink_unicast(struct sock *ssk, struct sk_buff *skb, __u32 portid, int nonblock); |
| 61 | extern int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, __u32 portid, |
Al Viro | dd0fc66 | 2005-10-07 07:46:04 +0100 | [diff] [blame] | 62 | __u32 group, gfp_t allocation); |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 63 | extern int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 64 | __u32 portid, __u32 group, gfp_t allocation, |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 65 | int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data), |
| 66 | void *filter_data); |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 67 | extern int netlink_set_err(struct sock *ssk, __u32 portid, __u32 group, int code); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | extern int netlink_register_notifier(struct notifier_block *nb); |
| 69 | extern int netlink_unregister_notifier(struct notifier_block *nb); |
| 70 | |
| 71 | /* finegrained unicast helpers: */ |
| 72 | struct sock *netlink_getsockbyfilp(struct file *filp); |
Denis V. Lunev | 9457afe | 2008-06-05 11:23:39 -0700 | [diff] [blame] | 73 | int netlink_attachskb(struct sock *sk, struct sk_buff *skb, |
Patrick McHardy | c3d8d1e | 2007-11-07 02:42:09 -0800 | [diff] [blame] | 74 | long *timeo, struct sock *ssk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | void netlink_detachskb(struct sock *sk, struct sk_buff *skb); |
Denis V. Lunev | 7ee015e | 2007-10-10 21:14:03 -0700 | [diff] [blame] | 76 | int netlink_sendskb(struct sock *sk, struct sk_buff *skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | |
| 78 | /* |
| 79 | * skb should fit one page. This choice is good for headerless malloc. |
David S. Miller | fc910a2 | 2007-03-25 20:27:59 -0700 | [diff] [blame] | 80 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | */ |
David S. Miller | fc910a2 | 2007-03-25 20:27:59 -0700 | [diff] [blame] | 84 | #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 Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 90 | #define NLMSG_DEFAULT_SIZE (NLMSG_GOODSIZE - NLMSG_HDRLEN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
| 92 | |
Eric Dumazet | d94d9fe | 2009-11-04 09:50:58 -0800 | [diff] [blame] | 93 | struct netlink_callback { |
Patrick McHardy | 3a6c2b4 | 2009-08-25 16:07:40 +0200 | [diff] [blame] | 94 | 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 Ayuso | 7175c88 | 2012-02-24 14:30:16 +0000 | [diff] [blame] | 99 | void *data; |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 100 | /* the module that dump function belong to */ |
| 101 | struct module *module; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 102 | u16 family; |
| 103 | u16 min_dump_alloc; |
Johannes Berg | 670dc28 | 2011-06-20 13:40:46 +0200 | [diff] [blame] | 104 | unsigned int prev_seq, seq; |
Patrick McHardy | 3a6c2b4 | 2009-08-25 16:07:40 +0200 | [diff] [blame] | 105 | long args[6]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | }; |
| 107 | |
Eric Dumazet | d94d9fe | 2009-11-04 09:50:58 -0800 | [diff] [blame] | 108 | struct netlink_notify { |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 109 | struct net *net; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 110 | int portid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | int protocol; |
| 112 | }; |
| 113 | |
Denys Vlasenko | a46621a | 2012-01-30 15:22:06 -0500 | [diff] [blame] | 114 | struct nlmsghdr * |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 115 | __nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
Pablo Neira Ayuso | 80d326f | 2012-02-24 14:30:15 +0000 | [diff] [blame] | 117 | struct netlink_dump_control { |
| 118 | int (*dump)(struct sk_buff *skb, struct netlink_callback *); |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 119 | int (*done)(struct netlink_callback *); |
Pablo Neira Ayuso | 7175c88 | 2012-02-24 14:30:16 +0000 | [diff] [blame] | 120 | void *data; |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 121 | struct module *module; |
Pablo Neira Ayuso | 80d326f | 2012-02-24 14:30:15 +0000 | [diff] [blame] | 122 | u16 min_dump_alloc; |
| 123 | }; |
| 124 | |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 125 | extern int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb, |
| 126 | const struct nlmsghdr *nlh, |
| 127 | struct netlink_dump_control *control); |
| 128 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | #endif /* __LINUX_NETLINK_H */ |