1 /* SPDX-License-Identifier: GPL-2.0 */ 2 #ifndef __LINUX_NETLINK_H 3 #define __LINUX_NETLINK_H 4 5 6 #include <linux/capability.h> 7 #include <linux/skbuff.h> 8 #include <linux/export.h> 9 #include <net/scm.h> 10 #include <uapi/linux/netlink.h> 11 12 struct net; 13 14 void do_trace_netlink_extack(const char *msg); 15 16 static inline struct nlmsghdr *nlmsg_hdr(const struct sk_buff *skb) 17 { 18 return (struct nlmsghdr *)skb->data; 19 } 20 21 enum netlink_skb_flags { 22 NETLINK_SKB_DST = 0x8, /* Dst set in sendto or sendmsg */ 23 }; 24 25 struct netlink_skb_parms { 26 struct scm_creds creds; /* Skb credentials */ 27 __u32 portid; 28 __u32 dst_group; 29 __u32 flags; 30 struct sock *sk; 31 bool nsid_is_set; 32 int nsid; 33 }; 34 35 #define NETLINK_CB(skb) (*(struct netlink_skb_parms*)&((skb)->cb)) 36 #define NETLINK_CREDS(skb) (&NETLINK_CB((skb)).creds) 37 38 39 void netlink_table_grab(void); 40 void netlink_table_ungrab(void); 41 42 #define NL_CFG_F_NONROOT_RECV (1 << 0) 43 #define NL_CFG_F_NONROOT_SEND (1 << 1) 44 45 /* optional Netlink kernel configuration parameters */ 46 struct netlink_kernel_cfg { 47 unsigned int groups; 48 unsigned int flags; 49 void (*input)(struct sk_buff *skb); 50 struct mutex *cb_mutex; 51 int (*bind)(struct net *net, int group); 52 void (*unbind)(struct net *net, int group); 53 }; 54 55 struct sock *__netlink_kernel_create(struct net *net, int unit, 56 struct module *module, 57 struct netlink_kernel_cfg *cfg); 58 static inline struct sock * 59 netlink_kernel_create(struct net *net, int unit, struct netlink_kernel_cfg *cfg) 60 { 61 return __netlink_kernel_create(net, unit, THIS_MODULE, cfg); 62 } 63 64 /* this can be increased when necessary - don't expose to userland */ 65 #define NETLINK_MAX_COOKIE_LEN 20 66 #define NETLINK_MAX_FMTMSG_LEN 80 67 68 /** 69 * struct netlink_ext_ack - netlink extended ACK report struct 70 * @_msg: message string to report - don't access directly, use 71 * %NL_SET_ERR_MSG 72 * @bad_attr: attribute with error 73 * @policy: policy for a bad attribute 74 * @miss_type: attribute type which was missing 75 * @miss_nest: nest missing an attribute (%NULL if missing top level attr) 76 * @cookie: cookie data to return to userspace (for success) 77 * @cookie_len: actual cookie data length 78 * @_msg_buf: output buffer for formatted message strings - don't access 79 * directly, use %NL_SET_ERR_MSG_FMT 80 */ 81 struct netlink_ext_ack { 82 const char *_msg; 83 const struct nlattr *bad_attr; 84 const struct nla_policy *policy; 85 const struct nlattr *miss_nest; 86 u16 miss_type; 87 u8 cookie[NETLINK_MAX_COOKIE_LEN]; 88 u8 cookie_len; 89 char _msg_buf[NETLINK_MAX_FMTMSG_LEN]; 90 }; 91 92 /* Always use this macro, this allows later putting the 93 * message into a separate section or such for things 94 * like translation or listing all possible messages. 95 * If string formatting is needed use NL_SET_ERR_MSG_FMT. 96 */ 97 #define NL_SET_ERR_MSG(extack, msg) do { \ 98 static const char __msg[] = msg; \ 99 struct netlink_ext_ack *__extack = (extack); \ 100 \ 101 do_trace_netlink_extack(__msg); \ 102 \ 103 if (__extack) \ 104 __extack->_msg = __msg; \ 105 } while (0) 106 107 /* We splice fmt with %s at each end even in the snprintf so that both calls 108 * can use the same string constant, avoiding its duplication in .ro 109 */ 110 #define NL_SET_ERR_MSG_FMT(extack, fmt, args...) do { \ 111 struct netlink_ext_ack *__extack = (extack); \ 112 \ 113 if (!__extack) \ 114 break; \ 115 if (snprintf(__extack->_msg_buf, NETLINK_MAX_FMTMSG_LEN, \ 116 "%s" fmt "%s", "", ##args, "") >= \ 117 NETLINK_MAX_FMTMSG_LEN) \ 118 net_warn_ratelimited("%s" fmt "%s", "truncated extack: ", \ 119 ##args, "\n"); \ 120 \ 121 do_trace_netlink_extack(__extack->_msg_buf); \ 122 \ 123 __extack->_msg = __extack->_msg_buf; \ 124 } while (0) 125 126 #define NL_SET_ERR_MSG_MOD(extack, msg) \ 127 NL_SET_ERR_MSG((extack), KBUILD_MODNAME ": " msg) 128 129 #define NL_SET_ERR_MSG_FMT_MOD(extack, fmt, args...) \ 130 NL_SET_ERR_MSG_FMT((extack), KBUILD_MODNAME ": " fmt, ##args) 131 132 #define NL_SET_ERR_MSG_WEAK(extack, msg) do { \ 133 if ((extack) && !(extack)->_msg) \ 134 NL_SET_ERR_MSG((extack), msg); \ 135 } while (0) 136 137 #define NL_SET_ERR_MSG_WEAK_MOD(extack, msg) do { \ 138 if ((extack) && !(extack)->_msg) \ 139 NL_SET_ERR_MSG_MOD((extack), msg); \ 140 } while (0) 141 142 #define NL_SET_BAD_ATTR_POLICY(extack, attr, pol) do { \ 143 if ((extack)) { \ 144 (extack)->bad_attr = (attr); \ 145 (extack)->policy = (pol); \ 146 } \ 147 } while (0) 148 149 #define NL_SET_BAD_ATTR(extack, attr) NL_SET_BAD_ATTR_POLICY(extack, attr, NULL) 150 151 #define NL_SET_ERR_MSG_ATTR_POL(extack, attr, pol, msg) do { \ 152 static const char __msg[] = msg; \ 153 struct netlink_ext_ack *__extack = (extack); \ 154 \ 155 do_trace_netlink_extack(__msg); \ 156 \ 157 if (__extack) { \ 158 __extack->_msg = __msg; \ 159 __extack->bad_attr = (attr); \ 160 __extack->policy = (pol); \ 161 } \ 162 } while (0) 163 164 #define NL_SET_ERR_MSG_ATTR(extack, attr, msg) \ 165 NL_SET_ERR_MSG_ATTR_POL(extack, attr, NULL, msg) 166 167 #define NL_SET_ERR_ATTR_MISS(extack, nest, type) do { \ 168 struct netlink_ext_ack *__extack = (extack); \ 169 \ 170 if (__extack) { \ 171 __extack->miss_nest = (nest); \ 172 __extack->miss_type = (type); \ 173 } \ 174 } while (0) 175 176 #define NL_REQ_ATTR_CHECK(extack, nest, tb, type) ({ \ 177 struct nlattr **__tb = (tb); \ 178 u32 __attr = (type); \ 179 int __retval; \ 180 \ 181 __retval = !__tb[__attr]; \ 182 if (__retval) \ 183 NL_SET_ERR_ATTR_MISS((extack), (nest), __attr); \ 184 __retval; \ 185 }) 186 187 static inline void nl_set_extack_cookie_u64(struct netlink_ext_ack *extack, 188 u64 cookie) 189 { 190 if (!extack) 191 return; 192 memcpy(extack->cookie, &cookie, sizeof(cookie)); 193 extack->cookie_len = sizeof(cookie); 194 } 195 196 void netlink_kernel_release(struct sock *sk); 197 int __netlink_change_ngroups(struct sock *sk, unsigned int groups); 198 int netlink_change_ngroups(struct sock *sk, unsigned int groups); 199 void __netlink_clear_multicast_users(struct sock *sk, unsigned int group); 200 void netlink_ack(struct sk_buff *in_skb, struct nlmsghdr *nlh, int err, 201 const struct netlink_ext_ack *extack); 202 int netlink_has_listeners(struct sock *sk, unsigned int group); 203 bool netlink_strict_get_check(struct sk_buff *skb); 204 205 int netlink_unicast(struct sock *ssk, struct sk_buff *skb, __u32 portid, int nonblock); 206 int netlink_broadcast(struct sock *ssk, struct sk_buff *skb, __u32 portid, 207 __u32 group, gfp_t allocation); 208 int netlink_set_err(struct sock *ssk, __u32 portid, __u32 group, int code); 209 int netlink_register_notifier(struct notifier_block *nb); 210 int netlink_unregister_notifier(struct notifier_block *nb); 211 212 /* finegrained unicast helpers: */ 213 struct sock *netlink_getsockbyfilp(struct file *filp); 214 int netlink_attachskb(struct sock *sk, struct sk_buff *skb, 215 long *timeo, struct sock *ssk); 216 void netlink_detachskb(struct sock *sk, struct sk_buff *skb); 217 int netlink_sendskb(struct sock *sk, struct sk_buff *skb); 218 219 static inline struct sk_buff * 220 netlink_skb_clone(struct sk_buff *skb, gfp_t gfp_mask) 221 { 222 struct sk_buff *nskb; 223 224 nskb = skb_clone(skb, gfp_mask); 225 if (!nskb) 226 return NULL; 227 228 /* This is a large skb, set destructor callback to release head */ 229 if (is_vmalloc_addr(skb->head)) 230 nskb->destructor = skb->destructor; 231 232 return nskb; 233 } 234 235 /* 236 * skb should fit one page. This choice is good for headerless malloc. 237 * But we should limit to 8K so that userspace does not have to 238 * use enormous buffer sizes on recvmsg() calls just to avoid 239 * MSG_TRUNC when PAGE_SIZE is very large. 240 */ 241 #if PAGE_SIZE < 8192UL 242 #define NLMSG_GOODSIZE SKB_WITH_OVERHEAD(PAGE_SIZE) 243 #else 244 #define NLMSG_GOODSIZE SKB_WITH_OVERHEAD(8192UL) 245 #endif 246 247 #define NLMSG_DEFAULT_SIZE (NLMSG_GOODSIZE - NLMSG_HDRLEN) 248 249 250 struct netlink_callback { 251 struct sk_buff *skb; 252 const struct nlmsghdr *nlh; 253 int (*dump)(struct sk_buff * skb, 254 struct netlink_callback *cb); 255 int (*done)(struct netlink_callback *cb); 256 void *data; 257 /* the module that dump function belong to */ 258 struct module *module; 259 struct netlink_ext_ack *extack; 260 u16 family; 261 u16 answer_flags; 262 u32 min_dump_alloc; 263 unsigned int prev_seq, seq; 264 bool strict_check; 265 union { 266 u8 ctx[48]; 267 268 /* args is deprecated. Cast a struct over ctx instead 269 * for proper type safety. 270 */ 271 long args[6]; 272 }; 273 }; 274 275 #define NL_ASSERT_DUMP_CTX_FITS(type_name) \ 276 BUILD_BUG_ON(sizeof(type_name) > \ 277 sizeof_field(struct netlink_callback, ctx)) 278 279 struct netlink_notify { 280 struct net *net; 281 u32 portid; 282 int protocol; 283 }; 284 285 struct nlmsghdr * 286 __nlmsg_put(struct sk_buff *skb, u32 portid, u32 seq, int type, int len, int flags); 287 288 struct netlink_dump_control { 289 int (*start)(struct netlink_callback *); 290 int (*dump)(struct sk_buff *skb, struct netlink_callback *); 291 int (*done)(struct netlink_callback *); 292 void *data; 293 struct module *module; 294 u32 min_dump_alloc; 295 }; 296 297 int __netlink_dump_start(struct sock *ssk, struct sk_buff *skb, 298 const struct nlmsghdr *nlh, 299 struct netlink_dump_control *control); 300 static inline int netlink_dump_start(struct sock *ssk, struct sk_buff *skb, 301 const struct nlmsghdr *nlh, 302 struct netlink_dump_control *control) 303 { 304 if (!control->module) 305 control->module = THIS_MODULE; 306 307 return __netlink_dump_start(ssk, skb, nlh, control); 308 } 309 310 struct netlink_tap { 311 struct net_device *dev; 312 struct module *module; 313 struct list_head list; 314 }; 315 316 int netlink_add_tap(struct netlink_tap *nt); 317 int netlink_remove_tap(struct netlink_tap *nt); 318 319 bool __netlink_ns_capable(const struct netlink_skb_parms *nsp, 320 struct user_namespace *ns, int cap); 321 bool netlink_ns_capable(const struct sk_buff *skb, 322 struct user_namespace *ns, int cap); 323 bool netlink_capable(const struct sk_buff *skb, int cap); 324 bool netlink_net_capable(const struct sk_buff *skb, int cap); 325 326 #endif /* __LINUX_NETLINK_H */ 327