blob: 9e572daa15d568cc0d7c82342a0d7fb3ad37c327 [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
Patrick McHardy9652e932013-04-17 06:47:02 +000018enum netlink_skb_flags {
Eric W. Biederman2d7a85f2014-05-30 11:04:00 -070019 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 McHardy9652e932013-04-17 06:47:02 +000023};
24
Eric Dumazetd94d9fe2009-11-04 09:50:58 -080025struct netlink_skb_parms {
Eric W. Biedermandbe9a412012-09-06 18:20:01 +000026 struct scm_creds creds; /* Skb credentials */
Eric W. Biederman15e47302012-09-07 20:12:54 +000027 __u32 portid;
Patrick McHardyd629b832005-08-14 19:27:50 -070028 __u32 dst_group;
Patrick McHardy9652e932013-04-17 06:47:02 +000029 __u32 flags;
Patrick McHardye32123e2013-04-17 06:46:57 +000030 struct sock *sk;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031};
32
33#define NETLINK_CB(skb) (*(struct netlink_skb_parms*)&((skb)->cb))
34#define NETLINK_CREDS(skb) (&NETLINK_CB((skb)).creds)
35
36
Johannes Bergd136f1b2009-09-12 03:03:15 +000037extern void netlink_table_grab(void);
38extern void netlink_table_ungrab(void);
39
Pablo Neira Ayuso9785e102012-09-08 02:53:53 +000040#define NL_CFG_F_NONROOT_RECV (1 << 0)
41#define NL_CFG_F_NONROOT_SEND (1 << 1)
42
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +000043/* optional Netlink kernel configuration parameters */
44struct netlink_kernel_cfg {
45 unsigned int groups;
David S. Millerc9d2ea92012-09-23 02:09:23 -040046 unsigned int flags;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +000047 void (*input)(struct sk_buff *skb);
48 struct mutex *cb_mutex;
Richard Guy Briggs4f520902014-04-22 21:31:54 -040049 int (*bind)(int group);
50 void (*unbind)(int group);
Gao fengda12c902013-06-06 14:49:11 +080051 bool (*compare)(struct net *net, struct sock *sk);
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +000052};
53
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +000054extern struct sock *__netlink_kernel_create(struct net *net, int unit,
55 struct module *module,
56 struct netlink_kernel_cfg *cfg);
57static inline struct sock *
58netlink_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. Lunevb7c6ba62008-01-28 14:41:19 -080063extern void netlink_kernel_release(struct sock *sk);
Johannes Bergd136f1b2009-09-12 03:03:15 +000064extern int __netlink_change_ngroups(struct sock *sk, unsigned int groups);
Johannes Bergb4ff4f02007-07-18 15:46:06 -070065extern int netlink_change_ngroups(struct sock *sk, unsigned int groups);
Johannes Bergb8273572009-09-24 15:44:05 -070066extern void __netlink_clear_multicast_users(struct sock *sk, unsigned int group);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067extern void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err);
Patrick McHardy4277a082006-03-20 18:52:01 -080068extern int netlink_has_listeners(struct sock *sk, unsigned int group);
Patrick McHardyf9c22882013-04-17 06:47:04 +000069extern struct sk_buff *netlink_alloc_skb(struct sock *ssk, unsigned int size,
70 u32 dst_portid, gfp_t gfp_mask);
Eric W. Biederman15e47302012-09-07 20:12:54 +000071extern int netlink_unicast(struct sock *ssk, struct sk_buff *skb, __u32 portid, int nonblock);
72extern int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, __u32 portid,
Al Virodd0fc662005-10-07 07:46:04 +010073 __u32 group, gfp_t allocation);
Eric W. Biederman910a7e92010-05-04 17:36:46 -070074extern int netlink_broadcast_filtered(struct sock *ssk, struct sk_buff *skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +000075 __u32 portid, __u32 group, gfp_t allocation,
Eric W. Biederman910a7e92010-05-04 17:36:46 -070076 int (*filter)(struct sock *dsk, struct sk_buff *skb, void *data),
77 void *filter_data);
Eric W. Biederman15e47302012-09-07 20:12:54 +000078extern int netlink_set_err(struct sock *ssk, __u32 portid, __u32 group, int code);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079extern int netlink_register_notifier(struct notifier_block *nb);
80extern int netlink_unregister_notifier(struct notifier_block *nb);
81
82/* finegrained unicast helpers: */
83struct sock *netlink_getsockbyfilp(struct file *filp);
Denis V. Lunev9457afe2008-06-05 11:23:39 -070084int netlink_attachskb(struct sock *sk, struct sk_buff *skb,
Patrick McHardyc3d8d1e2007-11-07 02:42:09 -080085 long *timeo, struct sock *ssk);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086void netlink_detachskb(struct sock *sk, struct sk_buff *skb);
Denis V. Lunev7ee015e2007-10-10 21:14:03 -070087int netlink_sendskb(struct sock *sk, struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Pablo Neira3a365152013-06-28 03:04:23 +020089static inline struct sk_buff *
90netlink_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 Torvalds1da177e2005-04-16 15:20:36 -0700105/*
106 * skb should fit one page. This choice is good for headerless malloc.
David S. Millerfc910a22007-03-25 20:27:59 -0700107 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700110 */
David S. Millerfc910a22007-03-25 20:27:59 -0700111#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 Graf339bf982006-11-10 14:10:15 -0800117#define NLMSG_DEFAULT_SIZE (NLMSG_GOODSIZE - NLMSG_HDRLEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
119
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800120struct netlink_callback {
Patrick McHardy3a6c2b42009-08-25 16:07:40 +0200121 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 Ayuso7175c882012-02-24 14:30:16 +0000126 void *data;
Gao feng6dc878a2012-10-04 20:15:48 +0000127 /* the module that dump function belong to */
128 struct module *module;
Greg Rosec7ac8672011-06-10 01:27:09 +0000129 u16 family;
130 u16 min_dump_alloc;
Johannes Berg670dc282011-06-20 13:40:46 +0200131 unsigned int prev_seq, seq;
Patrick McHardy3a6c2b42009-08-25 16:07:40 +0200132 long args[6];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133};
134
Eric Dumazetd94d9fe2009-11-04 09:50:58 -0800135struct netlink_notify {
Eric W. Biedermanb4b51022007-09-12 13:05:38 +0200136 struct net *net;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000137 int portid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 int protocol;
139};
140
Denys Vlasenkoa46621a2012-01-30 15:22:06 -0500141struct nlmsghdr *
Eric W. Biederman15e47302012-09-07 20:12:54 +0000142__nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000144struct netlink_dump_control {
145 int (*dump)(struct sk_buff *skb, struct netlink_callback *);
Gao feng6dc878a2012-10-04 20:15:48 +0000146 int (*done)(struct netlink_callback *);
Pablo Neira Ayuso7175c882012-02-24 14:30:16 +0000147 void *data;
Gao feng6dc878a2012-10-04 20:15:48 +0000148 struct module *module;
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +0000149 u16 min_dump_alloc;
150};
151
Gao feng6dc878a2012-10-04 20:15:48 +0000152extern int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb,
153 const struct nlmsghdr *nlh,
154 struct netlink_dump_control *control);
155static 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 Torvalds1da177e2005-04-16 15:20:36 -0700164
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200165struct netlink_tap {
166 struct net_device *dev;
167 struct module *module;
168 struct list_head list;
169};
170
171extern int netlink_add_tap(struct netlink_tap *nt);
Daniel Borkmannbcbde0d2013-06-21 19:38:07 +0200172extern int netlink_remove_tap(struct netlink_tap *nt);
173
Eric W. Biedermanaa4cf942014-04-23 14:28:03 -0700174bool __netlink_ns_capable(const struct netlink_skb_parms *nsp,
175 struct user_namespace *ns, int cap);
176bool netlink_ns_capable(const struct sk_buff *skb,
177 struct user_namespace *ns, int cap);
178bool netlink_capable(const struct sk_buff *skb, int cap);
179bool netlink_net_capable(const struct sk_buff *skb, int cap);
180
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181#endif /* __LINUX_NETLINK_H */