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