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 | |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 18 | enum netlink_skb_flags { |
| 19 | NETLINK_SKB_MMAPED = 0x1, /* Packet data is mmaped */ |
| 20 | NETLINK_SKB_TX = 0x2, /* Packet was sent by userspace */ |
| 21 | NETLINK_SKB_DELIVERED = 0x4, /* Packet was delivered */ |
| 22 | }; |
| 23 | |
Eric Dumazet | d94d9fe | 2009-11-04 09:50:58 -0800 | [diff] [blame] | 24 | struct netlink_skb_parms { |
Eric W. Biederman | dbe9a41 | 2012-09-06 18:20:01 +0000 | [diff] [blame] | 25 | struct scm_creds creds; /* Skb credentials */ |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 26 | __u32 portid; |
Patrick McHardy | d629b83 | 2005-08-14 19:27:50 -0700 | [diff] [blame] | 27 | __u32 dst_group; |
Patrick McHardy | 9652e93 | 2013-04-17 06:47:02 +0000 | [diff] [blame] | 28 | __u32 flags; |
Patrick McHardy | e32123e | 2013-04-17 06:46:57 +0000 | [diff] [blame] | 29 | struct sock *sk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | }; |
| 31 | |
| 32 | #define NETLINK_CB(skb) (*(struct netlink_skb_parms*)&((skb)->cb)) |
| 33 | #define NETLINK_CREDS(skb) (&NETLINK_CB((skb)).creds) |
| 34 | |
| 35 | |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 36 | extern void netlink_table_grab(void); |
| 37 | extern void netlink_table_ungrab(void); |
| 38 | |
Pablo Neira Ayuso | 9785e10 | 2012-09-08 02:53:53 +0000 | [diff] [blame] | 39 | #define NL_CFG_F_NONROOT_RECV (1 << 0) |
| 40 | #define NL_CFG_F_NONROOT_SEND (1 << 1) |
| 41 | |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 42 | /* optional Netlink kernel configuration parameters */ |
| 43 | struct netlink_kernel_cfg { |
| 44 | unsigned int groups; |
David S. Miller | c9d2ea9 | 2012-09-23 02:09:23 -0400 | [diff] [blame] | 45 | unsigned int flags; |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 46 | void (*input)(struct sk_buff *skb); |
| 47 | struct mutex *cb_mutex; |
Pablo Neira Ayuso | 0329274 | 2012-06-29 06:15:22 +0000 | [diff] [blame] | 48 | void (*bind)(int group); |
Gao feng | da12c90 | 2013-06-06 14:49:11 +0800 | [diff] [blame] | 49 | bool (*compare)(struct net *net, struct sock *sk); |
Pablo Neira Ayuso | a31f2d1 | 2012-06-29 06:15:21 +0000 | [diff] [blame] | 50 | }; |
| 51 | |
Pablo Neira Ayuso | 9f00d97 | 2012-09-08 02:53:54 +0000 | [diff] [blame] | 52 | extern struct sock *__netlink_kernel_create(struct net *net, int unit, |
| 53 | struct module *module, |
| 54 | struct netlink_kernel_cfg *cfg); |
| 55 | static inline struct sock * |
| 56 | netlink_kernel_create(struct net *net, int unit, struct netlink_kernel_cfg *cfg) |
| 57 | { |
| 58 | return __netlink_kernel_create(net, unit, THIS_MODULE, cfg); |
| 59 | } |
| 60 | |
Denis V. Lunev | b7c6ba6 | 2008-01-28 14:41:19 -0800 | [diff] [blame] | 61 | extern void netlink_kernel_release(struct sock *sk); |
Johannes Berg | d136f1b | 2009-09-12 03:03:15 +0000 | [diff] [blame] | 62 | extern int __netlink_change_ngroups(struct sock *sk, unsigned int groups); |
Johannes Berg | b4ff4f0 | 2007-07-18 15:46:06 -0700 | [diff] [blame] | 63 | extern int netlink_change_ngroups(struct sock *sk, unsigned int groups); |
Johannes Berg | b827357 | 2009-09-24 15:44:05 -0700 | [diff] [blame] | 64 | extern void __netlink_clear_multicast_users(struct sock *sk, unsigned int group); |
Johannes Berg | 84659eb | 2007-07-18 15:47:05 -0700 | [diff] [blame] | 65 | extern void netlink_clear_multicast_users(struct sock *sk, unsigned int group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | 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] | 67 | extern int netlink_has_listeners(struct sock *sk, unsigned int group); |
Patrick McHardy | f9c2288 | 2013-04-17 06:47:04 +0000 | [diff] [blame] | 68 | extern struct sk_buff *netlink_alloc_skb(struct sock *ssk, unsigned int size, |
| 69 | u32 dst_portid, gfp_t gfp_mask); |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 70 | extern int netlink_unicast(struct sock *ssk, struct sk_buff *skb, __u32 portid, int nonblock); |
| 71 | 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] | 72 | __u32 group, gfp_t allocation); |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 73 | 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] | 74 | __u32 portid, __u32 group, gfp_t allocation, |
Eric W. Biederman | 910a7e9 | 2010-05-04 17:36:46 -0700 | [diff] [blame] | 75 | int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data), |
| 76 | void *filter_data); |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 77 | 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] | 78 | extern int netlink_register_notifier(struct notifier_block *nb); |
| 79 | extern int netlink_unregister_notifier(struct notifier_block *nb); |
| 80 | |
| 81 | /* finegrained unicast helpers: */ |
| 82 | struct sock *netlink_getsockbyfilp(struct file *filp); |
Denis V. Lunev | 9457afe | 2008-06-05 11:23:39 -0700 | [diff] [blame] | 83 | int netlink_attachskb(struct sock *sk, struct sk_buff *skb, |
Patrick McHardy | c3d8d1e | 2007-11-07 02:42:09 -0800 | [diff] [blame] | 84 | long *timeo, struct sock *ssk); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | void netlink_detachskb(struct sock *sk, struct sk_buff *skb); |
Denis V. Lunev | 7ee015e | 2007-10-10 21:14:03 -0700 | [diff] [blame] | 86 | int netlink_sendskb(struct sock *sk, struct sk_buff *skb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
Pablo Neira | 3a36515 | 2013-06-28 03:04:23 +0200 | [diff] [blame] | 88 | static inline struct sk_buff * |
| 89 | netlink_skb_clone(struct sk_buff *skb, gfp_t gfp_mask) |
| 90 | { |
| 91 | struct sk_buff *nskb; |
| 92 | |
| 93 | nskb = skb_clone(skb, gfp_mask); |
| 94 | if (!nskb) |
| 95 | return NULL; |
| 96 | |
| 97 | /* This is a large skb, set destructor callback to release head */ |
| 98 | if (is_vmalloc_addr(skb->head)) |
| 99 | nskb->destructor = skb->destructor; |
| 100 | |
| 101 | return nskb; |
| 102 | } |
| 103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | /* |
| 105 | * 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] | 106 | * But we should limit to 8K so that userspace does not have to |
| 107 | * use enormous buffer sizes on recvmsg() calls just to avoid |
| 108 | * MSG_TRUNC when PAGE_SIZE is very large. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 109 | */ |
David S. Miller | fc910a2 | 2007-03-25 20:27:59 -0700 | [diff] [blame] | 110 | #if PAGE_SIZE < 8192UL |
| 111 | #define NLMSG_GOODSIZE SKB_WITH_OVERHEAD(PAGE_SIZE) |
| 112 | #else |
| 113 | #define NLMSG_GOODSIZE SKB_WITH_OVERHEAD(8192UL) |
| 114 | #endif |
| 115 | |
Thomas Graf | 339bf98 | 2006-11-10 14:10:15 -0800 | [diff] [blame] | 116 | #define NLMSG_DEFAULT_SIZE (NLMSG_GOODSIZE - NLMSG_HDRLEN) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
| 118 | |
Eric Dumazet | d94d9fe | 2009-11-04 09:50:58 -0800 | [diff] [blame] | 119 | struct netlink_callback { |
Patrick McHardy | 3a6c2b4 | 2009-08-25 16:07:40 +0200 | [diff] [blame] | 120 | struct sk_buff *skb; |
| 121 | const struct nlmsghdr *nlh; |
| 122 | int (*dump)(struct sk_buff * skb, |
| 123 | struct netlink_callback *cb); |
| 124 | int (*done)(struct netlink_callback *cb); |
Pablo Neira Ayuso | 7175c88 | 2012-02-24 14:30:16 +0000 | [diff] [blame] | 125 | void *data; |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 126 | /* the module that dump function belong to */ |
| 127 | struct module *module; |
Greg Rose | c7ac867 | 2011-06-10 01:27:09 +0000 | [diff] [blame] | 128 | u16 family; |
| 129 | u16 min_dump_alloc; |
Johannes Berg | 670dc28 | 2011-06-20 13:40:46 +0200 | [diff] [blame] | 130 | unsigned int prev_seq, seq; |
Patrick McHardy | 3a6c2b4 | 2009-08-25 16:07:40 +0200 | [diff] [blame] | 131 | long args[6]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | }; |
| 133 | |
Eric Dumazet | d94d9fe | 2009-11-04 09:50:58 -0800 | [diff] [blame] | 134 | struct netlink_notify { |
Eric W. Biederman | b4b5102 | 2007-09-12 13:05:38 +0200 | [diff] [blame] | 135 | struct net *net; |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 136 | int portid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | int protocol; |
| 138 | }; |
| 139 | |
Denys Vlasenko | a46621a | 2012-01-30 15:22:06 -0500 | [diff] [blame] | 140 | struct nlmsghdr * |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 141 | __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] | 142 | |
Pablo Neira Ayuso | 80d326f | 2012-02-24 14:30:15 +0000 | [diff] [blame] | 143 | struct netlink_dump_control { |
| 144 | int (*dump)(struct sk_buff *skb, struct netlink_callback *); |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 145 | int (*done)(struct netlink_callback *); |
Pablo Neira Ayuso | 7175c88 | 2012-02-24 14:30:16 +0000 | [diff] [blame] | 146 | void *data; |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 147 | struct module *module; |
Pablo Neira Ayuso | 80d326f | 2012-02-24 14:30:15 +0000 | [diff] [blame] | 148 | u16 min_dump_alloc; |
| 149 | }; |
| 150 | |
Gao feng | 6dc878a | 2012-10-04 20:15:48 +0000 | [diff] [blame] | 151 | extern int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb, |
| 152 | const struct nlmsghdr *nlh, |
| 153 | struct netlink_dump_control *control); |
| 154 | static inline int netlink_dump_start(struct sock *ssk, struct sk_buff *skb, |
| 155 | const struct nlmsghdr *nlh, |
| 156 | struct netlink_dump_control *control) |
| 157 | { |
| 158 | if (!control->module) |
| 159 | control->module = THIS_MODULE; |
| 160 | |
| 161 | return __netlink_dump_start(ssk, skb, nlh, control); |
| 162 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
Daniel Borkmann | bcbde0d | 2013-06-21 19:38:07 +0200 | [diff] [blame] | 164 | struct netlink_tap { |
| 165 | struct net_device *dev; |
| 166 | struct module *module; |
| 167 | struct list_head list; |
| 168 | }; |
| 169 | |
| 170 | extern int netlink_add_tap(struct netlink_tap *nt); |
| 171 | extern int __netlink_remove_tap(struct netlink_tap *nt); |
| 172 | extern int netlink_remove_tap(struct netlink_tap *nt); |
| 173 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | #endif /* __LINUX_NETLINK_H */ |