]>
Commit | Line | Data |
---|---|---|
b2441318 | 1 | // SPDX-License-Identifier: GPL-2.0 |
bfa83a9e TG |
2 | /* |
3 | * NETLINK Netlink attributes | |
4 | * | |
5 | * Authors: Thomas Graf <[email protected]> | |
6 | * Alexey Kuznetsov <[email protected]> | |
7 | */ | |
8 | ||
8bc3bcc9 | 9 | #include <linux/export.h> |
bfa83a9e TG |
10 | #include <linux/kernel.h> |
11 | #include <linux/errno.h> | |
12 | #include <linux/jiffies.h> | |
bfa83a9e TG |
13 | #include <linux/skbuff.h> |
14 | #include <linux/string.h> | |
15 | #include <linux/types.h> | |
16 | #include <net/netlink.h> | |
17 | ||
6e237d09 DA |
18 | /* For these data types, attribute length should be exactly the given |
19 | * size. However, to maintain compatibility with broken commands, if the | |
20 | * attribute length does not match the expected size a warning is emitted | |
21 | * to the user that the command is sending invalid data and needs to be fixed. | |
22 | */ | |
28033ae4 | 23 | static const u8 nla_attr_len[NLA_TYPE_MAX+1] = { |
bfa83a9e TG |
24 | [NLA_U8] = sizeof(u8), |
25 | [NLA_U16] = sizeof(u16), | |
26 | [NLA_U32] = sizeof(u32), | |
27 | [NLA_U64] = sizeof(u64), | |
9eca2eb9 JA |
28 | [NLA_S8] = sizeof(s8), |
29 | [NLA_S16] = sizeof(s16), | |
30 | [NLA_S32] = sizeof(s32), | |
31 | [NLA_S64] = sizeof(s64), | |
bfa83a9e TG |
32 | }; |
33 | ||
28033ae4 | 34 | static const u8 nla_attr_minlen[NLA_TYPE_MAX+1] = { |
6e237d09 DA |
35 | [NLA_U8] = sizeof(u8), |
36 | [NLA_U16] = sizeof(u16), | |
37 | [NLA_U32] = sizeof(u32), | |
38 | [NLA_U64] = sizeof(u64), | |
28033ae4 DA |
39 | [NLA_MSECS] = sizeof(u64), |
40 | [NLA_NESTED] = NLA_HDRLEN, | |
6e237d09 DA |
41 | [NLA_S8] = sizeof(s8), |
42 | [NLA_S16] = sizeof(s16), | |
43 | [NLA_S32] = sizeof(s32), | |
44 | [NLA_S64] = sizeof(s64), | |
28033ae4 DA |
45 | }; |
46 | ||
64c83d83 | 47 | static int validate_nla_bitfield32(const struct nlattr *nla, |
48fde90a | 48 | const u32 *valid_flags_mask) |
64c83d83 JHS |
49 | { |
50 | const struct nla_bitfield32 *bf = nla_data(nla); | |
64c83d83 | 51 | |
48fde90a | 52 | if (!valid_flags_mask) |
64c83d83 JHS |
53 | return -EINVAL; |
54 | ||
55 | /*disallow invalid bit selector */ | |
56 | if (bf->selector & ~*valid_flags_mask) | |
57 | return -EINVAL; | |
58 | ||
59 | /*disallow invalid bit values */ | |
60 | if (bf->value & ~*valid_flags_mask) | |
61 | return -EINVAL; | |
62 | ||
63 | /*disallow valid bit values that are not selected*/ | |
64 | if (bf->value & ~bf->selector) | |
65 | return -EINVAL; | |
66 | ||
67 | return 0; | |
68 | } | |
69 | ||
1501d135 JB |
70 | static int nla_validate_array(const struct nlattr *head, int len, int maxtype, |
71 | const struct nla_policy *policy, | |
72 | struct netlink_ext_ack *extack) | |
73 | { | |
74 | const struct nlattr *entry; | |
75 | int rem; | |
76 | ||
77 | nla_for_each_attr(entry, head, len, rem) { | |
78 | int ret; | |
79 | ||
80 | if (nla_len(entry) == 0) | |
81 | continue; | |
82 | ||
83 | if (nla_len(entry) < NLA_HDRLEN) { | |
84 | NL_SET_ERR_MSG_ATTR(extack, entry, | |
85 | "Array element too short"); | |
86 | return -ERANGE; | |
87 | } | |
88 | ||
89 | ret = nla_validate(nla_data(entry), nla_len(entry), | |
90 | maxtype, policy, extack); | |
91 | if (ret < 0) | |
92 | return ret; | |
93 | } | |
94 | ||
95 | return 0; | |
96 | } | |
97 | ||
3e48be05 JB |
98 | static int nla_validate_int_range(const struct nla_policy *pt, |
99 | const struct nlattr *nla, | |
100 | struct netlink_ext_ack *extack) | |
101 | { | |
102 | bool validate_min, validate_max; | |
103 | s64 value; | |
104 | ||
105 | validate_min = pt->validation_type == NLA_VALIDATE_RANGE || | |
106 | pt->validation_type == NLA_VALIDATE_MIN; | |
107 | validate_max = pt->validation_type == NLA_VALIDATE_RANGE || | |
108 | pt->validation_type == NLA_VALIDATE_MAX; | |
109 | ||
110 | switch (pt->type) { | |
111 | case NLA_U8: | |
112 | value = nla_get_u8(nla); | |
113 | break; | |
114 | case NLA_U16: | |
115 | value = nla_get_u16(nla); | |
116 | break; | |
117 | case NLA_U32: | |
118 | value = nla_get_u32(nla); | |
119 | break; | |
120 | case NLA_S8: | |
121 | value = nla_get_s8(nla); | |
122 | break; | |
123 | case NLA_S16: | |
124 | value = nla_get_s16(nla); | |
125 | break; | |
126 | case NLA_S32: | |
127 | value = nla_get_s32(nla); | |
128 | break; | |
129 | case NLA_S64: | |
130 | value = nla_get_s64(nla); | |
131 | break; | |
132 | case NLA_U64: | |
133 | /* treat this one specially, since it may not fit into s64 */ | |
134 | if ((validate_min && nla_get_u64(nla) < pt->min) || | |
135 | (validate_max && nla_get_u64(nla) > pt->max)) { | |
136 | NL_SET_ERR_MSG_ATTR(extack, nla, | |
137 | "integer out of range"); | |
138 | return -ERANGE; | |
139 | } | |
140 | return 0; | |
141 | default: | |
142 | WARN_ON(1); | |
143 | return -EINVAL; | |
144 | } | |
145 | ||
146 | if ((validate_min && value < pt->min) || | |
147 | (validate_max && value > pt->max)) { | |
148 | NL_SET_ERR_MSG_ATTR(extack, nla, | |
149 | "integer out of range"); | |
150 | return -ERANGE; | |
151 | } | |
152 | ||
153 | return 0; | |
154 | } | |
155 | ||
3654654f | 156 | static int validate_nla(const struct nlattr *nla, int maxtype, |
568b742a | 157 | const struct nla_policy *policy, |
c29f1845 | 158 | struct netlink_ext_ack *extack) |
bfa83a9e | 159 | { |
ef7c79ed | 160 | const struct nla_policy *pt; |
8f4c1f9b | 161 | int minlen = 0, attrlen = nla_len(nla), type = nla_type(nla); |
c29f1845 | 162 | int err = -ERANGE; |
bfa83a9e | 163 | |
8f4c1f9b | 164 | if (type <= 0 || type > maxtype) |
bfa83a9e TG |
165 | return 0; |
166 | ||
8f4c1f9b | 167 | pt = &policy[type]; |
bfa83a9e TG |
168 | |
169 | BUG_ON(pt->type > NLA_TYPE_MAX); | |
170 | ||
b60b87fc JB |
171 | if ((nla_attr_len[pt->type] && attrlen != nla_attr_len[pt->type]) || |
172 | (pt->type == NLA_EXACT_LEN_WARN && attrlen != pt->len)) { | |
6e237d09 DA |
173 | pr_warn_ratelimited("netlink: '%s': attribute type %d has an invalid length.\n", |
174 | current->comm, type); | |
28033ae4 DA |
175 | } |
176 | ||
a5531a5d | 177 | switch (pt->type) { |
b60b87fc JB |
178 | case NLA_EXACT_LEN: |
179 | if (attrlen != pt->len) | |
c29f1845 | 180 | goto out_err; |
b60b87fc JB |
181 | break; |
182 | ||
568b742a | 183 | case NLA_REJECT: |
c29f1845 JB |
184 | if (extack && pt->validation_data) { |
185 | NL_SET_BAD_ATTR(extack, nla); | |
186 | extack->_msg = pt->validation_data; | |
187 | return -EINVAL; | |
188 | } | |
189 | err = -EINVAL; | |
190 | goto out_err; | |
568b742a | 191 | |
a5531a5d TG |
192 | case NLA_FLAG: |
193 | if (attrlen > 0) | |
c29f1845 | 194 | goto out_err; |
a5531a5d | 195 | break; |
bfa83a9e | 196 | |
64c83d83 JHS |
197 | case NLA_BITFIELD32: |
198 | if (attrlen != sizeof(struct nla_bitfield32)) | |
c29f1845 | 199 | goto out_err; |
64c83d83 | 200 | |
c29f1845 JB |
201 | err = validate_nla_bitfield32(nla, pt->validation_data); |
202 | if (err) | |
203 | goto out_err; | |
204 | break; | |
64c83d83 | 205 | |
a5531a5d TG |
206 | case NLA_NUL_STRING: |
207 | if (pt->len) | |
208 | minlen = min_t(int, attrlen, pt->len + 1); | |
209 | else | |
210 | minlen = attrlen; | |
bfa83a9e | 211 | |
c29f1845 JB |
212 | if (!minlen || memchr(nla_data(nla), '\0', minlen) == NULL) { |
213 | err = -EINVAL; | |
214 | goto out_err; | |
215 | } | |
a5531a5d TG |
216 | /* fall through */ |
217 | ||
218 | case NLA_STRING: | |
219 | if (attrlen < 1) | |
c29f1845 | 220 | goto out_err; |
a5531a5d TG |
221 | |
222 | if (pt->len) { | |
223 | char *buf = nla_data(nla); | |
224 | ||
225 | if (buf[attrlen - 1] == '\0') | |
226 | attrlen--; | |
227 | ||
228 | if (attrlen > pt->len) | |
c29f1845 | 229 | goto out_err; |
a5531a5d TG |
230 | } |
231 | break; | |
232 | ||
d30045a0 JB |
233 | case NLA_BINARY: |
234 | if (pt->len && attrlen > pt->len) | |
c29f1845 | 235 | goto out_err; |
d30045a0 JB |
236 | break; |
237 | ||
ea5693cc PM |
238 | case NLA_NESTED: |
239 | /* a nested attributes is allowed to be empty; if its not, | |
240 | * it must have a size of at least NLA_HDRLEN. | |
241 | */ | |
242 | if (attrlen == 0) | |
243 | break; | |
9a659a35 JB |
244 | if (attrlen < NLA_HDRLEN) |
245 | goto out_err; | |
246 | if (pt->validation_data) { | |
247 | err = nla_validate(nla_data(nla), nla_len(nla), pt->len, | |
248 | pt->validation_data, extack); | |
249 | if (err < 0) { | |
250 | /* | |
251 | * return directly to preserve the inner | |
252 | * error message/attribute pointer | |
253 | */ | |
254 | return err; | |
255 | } | |
256 | } | |
257 | break; | |
1501d135 JB |
258 | case NLA_NESTED_ARRAY: |
259 | /* a nested array attribute is allowed to be empty; if its not, | |
260 | * it must have a size of at least NLA_HDRLEN. | |
261 | */ | |
262 | if (attrlen == 0) | |
263 | break; | |
264 | if (attrlen < NLA_HDRLEN) | |
265 | goto out_err; | |
266 | if (pt->validation_data) { | |
267 | int err; | |
268 | ||
269 | err = nla_validate_array(nla_data(nla), nla_len(nla), | |
270 | pt->len, pt->validation_data, | |
271 | extack); | |
272 | if (err < 0) { | |
273 | /* | |
274 | * return directly to preserve the inner | |
275 | * error message/attribute pointer | |
276 | */ | |
277 | return err; | |
278 | } | |
279 | } | |
280 | break; | |
a5531a5d TG |
281 | default: |
282 | if (pt->len) | |
283 | minlen = pt->len; | |
284 | else if (pt->type != NLA_UNSPEC) | |
285 | minlen = nla_attr_minlen[pt->type]; | |
286 | ||
287 | if (attrlen < minlen) | |
c29f1845 | 288 | goto out_err; |
a5531a5d | 289 | } |
bfa83a9e | 290 | |
3e48be05 JB |
291 | /* further validation */ |
292 | switch (pt->validation_type) { | |
293 | case NLA_VALIDATE_NONE: | |
294 | /* nothing to do */ | |
295 | break; | |
296 | case NLA_VALIDATE_RANGE: | |
297 | case NLA_VALIDATE_MIN: | |
298 | case NLA_VALIDATE_MAX: | |
299 | err = nla_validate_int_range(pt, nla, extack); | |
300 | if (err) | |
301 | return err; | |
302 | break; | |
33188bd6 JB |
303 | case NLA_VALIDATE_FUNCTION: |
304 | if (pt->validate) { | |
305 | err = pt->validate(nla, extack); | |
306 | if (err) | |
307 | return err; | |
308 | } | |
309 | break; | |
3e48be05 JB |
310 | } |
311 | ||
bfa83a9e | 312 | return 0; |
c29f1845 JB |
313 | out_err: |
314 | NL_SET_ERR_MSG_ATTR(extack, nla, "Attribute failed policy validation"); | |
315 | return err; | |
bfa83a9e TG |
316 | } |
317 | ||
318 | /** | |
319 | * nla_validate - Validate a stream of attributes | |
320 | * @head: head of attribute stream | |
321 | * @len: length of attribute stream | |
322 | * @maxtype: maximum attribute type to be expected | |
323 | * @policy: validation policy | |
fceb6435 | 324 | * @extack: extended ACK report struct |
bfa83a9e TG |
325 | * |
326 | * Validates all attributes in the specified attribute stream against the | |
327 | * specified policy. Attributes with a type exceeding maxtype will be | |
328 | * ignored. See documenation of struct nla_policy for more details. | |
329 | * | |
330 | * Returns 0 on success or a negative error code. | |
331 | */ | |
3654654f | 332 | int nla_validate(const struct nlattr *head, int len, int maxtype, |
fceb6435 JB |
333 | const struct nla_policy *policy, |
334 | struct netlink_ext_ack *extack) | |
bfa83a9e | 335 | { |
3654654f | 336 | const struct nlattr *nla; |
fceb6435 | 337 | int rem; |
bfa83a9e TG |
338 | |
339 | nla_for_each_attr(nla, head, len, rem) { | |
c29f1845 | 340 | int err = validate_nla(nla, maxtype, policy, extack); |
fceb6435 | 341 | |
c29f1845 | 342 | if (err < 0) |
fceb6435 | 343 | return err; |
bfa83a9e TG |
344 | } |
345 | ||
fceb6435 | 346 | return 0; |
bfa83a9e | 347 | } |
6d6a138f | 348 | EXPORT_SYMBOL(nla_validate); |
bfa83a9e | 349 | |
e487eb99 HE |
350 | /** |
351 | * nla_policy_len - Determin the max. length of a policy | |
352 | * @policy: policy to use | |
353 | * @n: number of policies | |
354 | * | |
355 | * Determines the max. length of the policy. It is currently used | |
356 | * to allocated Netlink buffers roughly the size of the actual | |
357 | * message. | |
358 | * | |
359 | * Returns 0 on success or a negative error code. | |
360 | */ | |
361 | int | |
362 | nla_policy_len(const struct nla_policy *p, int n) | |
363 | { | |
364 | int i, len = 0; | |
365 | ||
e3fa3aff | 366 | for (i = 0; i < n; i++, p++) { |
e487eb99 HE |
367 | if (p->len) |
368 | len += nla_total_size(p->len); | |
28033ae4 DA |
369 | else if (nla_attr_len[p->type]) |
370 | len += nla_total_size(nla_attr_len[p->type]); | |
e487eb99 HE |
371 | else if (nla_attr_minlen[p->type]) |
372 | len += nla_total_size(nla_attr_minlen[p->type]); | |
373 | } | |
374 | ||
375 | return len; | |
376 | } | |
6d6a138f | 377 | EXPORT_SYMBOL(nla_policy_len); |
e487eb99 | 378 | |
bfa83a9e TG |
379 | /** |
380 | * nla_parse - Parse a stream of attributes into a tb buffer | |
381 | * @tb: destination array with maxtype+1 elements | |
382 | * @maxtype: maximum attribute type to be expected | |
383 | * @head: head of attribute stream | |
384 | * @len: length of attribute stream | |
10b595af | 385 | * @policy: validation policy |
bfa83a9e TG |
386 | * |
387 | * Parses a stream of attributes and stores a pointer to each attribute in | |
b595076a | 388 | * the tb array accessible via the attribute type. Attributes with a type |
bfa83a9e TG |
389 | * exceeding maxtype will be silently ignored for backwards compatibility |
390 | * reasons. policy may be set to NULL if no validation is required. | |
391 | * | |
392 | * Returns 0 on success or a negative error code. | |
393 | */ | |
a5f6cba2 DA |
394 | static int __nla_parse(struct nlattr **tb, int maxtype, |
395 | const struct nlattr *head, int len, | |
396 | bool strict, const struct nla_policy *policy, | |
397 | struct netlink_ext_ack *extack) | |
bfa83a9e | 398 | { |
3654654f | 399 | const struct nlattr *nla; |
c29f1845 | 400 | int rem; |
bfa83a9e TG |
401 | |
402 | memset(tb, 0, sizeof(struct nlattr *) * (maxtype + 1)); | |
403 | ||
404 | nla_for_each_attr(nla, head, len, rem) { | |
8f4c1f9b | 405 | u16 type = nla_type(nla); |
bfa83a9e | 406 | |
a5f6cba2 DA |
407 | if (type == 0 || type > maxtype) { |
408 | if (strict) { | |
409 | NL_SET_ERR_MSG(extack, "Unknown attribute type"); | |
410 | return -EINVAL; | |
bfa83a9e | 411 | } |
a5f6cba2 DA |
412 | continue; |
413 | } | |
414 | if (policy) { | |
415 | int err = validate_nla(nla, maxtype, policy, extack); | |
bfa83a9e | 416 | |
a5f6cba2 DA |
417 | if (err < 0) |
418 | return err; | |
bfa83a9e | 419 | } |
a5f6cba2 DA |
420 | |
421 | tb[type] = (struct nlattr *)nla; | |
bfa83a9e TG |
422 | } |
423 | ||
a5f6cba2 | 424 | if (unlikely(rem > 0)) { |
bfc5184b MS |
425 | pr_warn_ratelimited("netlink: %d bytes leftover after parsing attributes in process `%s'.\n", |
426 | rem, current->comm); | |
a5f6cba2 DA |
427 | NL_SET_ERR_MSG(extack, "bytes leftover after parsing attributes"); |
428 | if (strict) | |
429 | return -EINVAL; | |
430 | } | |
bfa83a9e | 431 | |
c29f1845 | 432 | return 0; |
bfa83a9e | 433 | } |
a5f6cba2 DA |
434 | |
435 | int nla_parse(struct nlattr **tb, int maxtype, const struct nlattr *head, | |
436 | int len, const struct nla_policy *policy, | |
437 | struct netlink_ext_ack *extack) | |
438 | { | |
439 | return __nla_parse(tb, maxtype, head, len, false, policy, extack); | |
440 | } | |
6d6a138f | 441 | EXPORT_SYMBOL(nla_parse); |
bfa83a9e | 442 | |
a5f6cba2 DA |
443 | int nla_parse_strict(struct nlattr **tb, int maxtype, const struct nlattr *head, |
444 | int len, const struct nla_policy *policy, | |
445 | struct netlink_ext_ack *extack) | |
446 | { | |
447 | return __nla_parse(tb, maxtype, head, len, true, policy, extack); | |
448 | } | |
449 | EXPORT_SYMBOL(nla_parse_strict); | |
450 | ||
bfa83a9e TG |
451 | /** |
452 | * nla_find - Find a specific attribute in a stream of attributes | |
453 | * @head: head of attribute stream | |
454 | * @len: length of attribute stream | |
455 | * @attrtype: type of attribute to look for | |
456 | * | |
457 | * Returns the first attribute in the stream matching the specified type. | |
458 | */ | |
3654654f | 459 | struct nlattr *nla_find(const struct nlattr *head, int len, int attrtype) |
bfa83a9e | 460 | { |
3654654f | 461 | const struct nlattr *nla; |
bfa83a9e TG |
462 | int rem; |
463 | ||
464 | nla_for_each_attr(nla, head, len, rem) | |
8f4c1f9b | 465 | if (nla_type(nla) == attrtype) |
3654654f | 466 | return (struct nlattr *)nla; |
bfa83a9e TG |
467 | |
468 | return NULL; | |
469 | } | |
6d6a138f | 470 | EXPORT_SYMBOL(nla_find); |
bfa83a9e TG |
471 | |
472 | /** | |
473 | * nla_strlcpy - Copy string attribute payload into a sized buffer | |
474 | * @dst: where to copy the string to | |
10b595af | 475 | * @nla: attribute to copy the string from |
bfa83a9e TG |
476 | * @dstsize: size of destination buffer |
477 | * | |
478 | * Copies at most dstsize - 1 bytes into the destination buffer. | |
479 | * The result is always a valid NUL-terminated string. Unlike | |
480 | * strlcpy the destination buffer is always padded out. | |
481 | * | |
482 | * Returns the length of the source buffer. | |
483 | */ | |
484 | size_t nla_strlcpy(char *dst, const struct nlattr *nla, size_t dstsize) | |
485 | { | |
486 | size_t srclen = nla_len(nla); | |
487 | char *src = nla_data(nla); | |
488 | ||
489 | if (srclen > 0 && src[srclen - 1] == '\0') | |
490 | srclen--; | |
491 | ||
492 | if (dstsize > 0) { | |
493 | size_t len = (srclen >= dstsize) ? dstsize - 1 : srclen; | |
494 | ||
495 | memset(dst, 0, dstsize); | |
496 | memcpy(dst, src, len); | |
497 | } | |
498 | ||
499 | return srclen; | |
500 | } | |
6d6a138f | 501 | EXPORT_SYMBOL(nla_strlcpy); |
bfa83a9e | 502 | |
2cf0c8b3 PS |
503 | /** |
504 | * nla_strdup - Copy string attribute payload into a newly allocated buffer | |
505 | * @nla: attribute to copy the string from | |
506 | * @flags: the type of memory to allocate (see kmalloc). | |
507 | * | |
508 | * Returns a pointer to the allocated buffer or NULL on error. | |
509 | */ | |
510 | char *nla_strdup(const struct nlattr *nla, gfp_t flags) | |
511 | { | |
512 | size_t srclen = nla_len(nla); | |
513 | char *src = nla_data(nla), *dst; | |
514 | ||
515 | if (srclen > 0 && src[srclen - 1] == '\0') | |
516 | srclen--; | |
517 | ||
518 | dst = kmalloc(srclen + 1, flags); | |
519 | if (dst != NULL) { | |
520 | memcpy(dst, src, srclen); | |
521 | dst[srclen] = '\0'; | |
522 | } | |
523 | return dst; | |
524 | } | |
525 | EXPORT_SYMBOL(nla_strdup); | |
526 | ||
bfa83a9e TG |
527 | /** |
528 | * nla_memcpy - Copy a netlink attribute into another memory area | |
529 | * @dest: where to copy to memcpy | |
530 | * @src: netlink attribute to copy from | |
531 | * @count: size of the destination area | |
532 | * | |
533 | * Note: The number of bytes copied is limited by the length of | |
534 | * attribute's payload. memcpy | |
535 | * | |
536 | * Returns the number of bytes copied. | |
537 | */ | |
b057efd4 | 538 | int nla_memcpy(void *dest, const struct nlattr *src, int count) |
bfa83a9e TG |
539 | { |
540 | int minlen = min_t(int, count, nla_len(src)); | |
541 | ||
542 | memcpy(dest, nla_data(src), minlen); | |
5899f047 JB |
543 | if (count > minlen) |
544 | memset(dest + minlen, 0, count - minlen); | |
bfa83a9e TG |
545 | |
546 | return minlen; | |
547 | } | |
6d6a138f | 548 | EXPORT_SYMBOL(nla_memcpy); |
bfa83a9e TG |
549 | |
550 | /** | |
551 | * nla_memcmp - Compare an attribute with sized memory area | |
552 | * @nla: netlink attribute | |
553 | * @data: memory area | |
554 | * @size: size of memory area | |
555 | */ | |
556 | int nla_memcmp(const struct nlattr *nla, const void *data, | |
557 | size_t size) | |
558 | { | |
559 | int d = nla_len(nla) - size; | |
560 | ||
561 | if (d == 0) | |
562 | d = memcmp(nla_data(nla), data, size); | |
563 | ||
564 | return d; | |
565 | } | |
6d6a138f | 566 | EXPORT_SYMBOL(nla_memcmp); |
bfa83a9e TG |
567 | |
568 | /** | |
569 | * nla_strcmp - Compare a string attribute against a string | |
570 | * @nla: netlink string attribute | |
571 | * @str: another string | |
572 | */ | |
573 | int nla_strcmp(const struct nlattr *nla, const char *str) | |
574 | { | |
8b7b9324 PN |
575 | int len = strlen(str); |
576 | char *buf = nla_data(nla); | |
577 | int attrlen = nla_len(nla); | |
578 | int d; | |
bfa83a9e | 579 | |
8b7b9324 PN |
580 | if (attrlen > 0 && buf[attrlen - 1] == '\0') |
581 | attrlen--; | |
582 | ||
583 | d = attrlen - len; | |
bfa83a9e TG |
584 | if (d == 0) |
585 | d = memcmp(nla_data(nla), str, len); | |
586 | ||
587 | return d; | |
588 | } | |
6d6a138f | 589 | EXPORT_SYMBOL(nla_strcmp); |
bfa83a9e | 590 | |
90800216 | 591 | #ifdef CONFIG_NET |
bfa83a9e TG |
592 | /** |
593 | * __nla_reserve - reserve room for attribute on the skb | |
594 | * @skb: socket buffer to reserve room on | |
595 | * @attrtype: attribute type | |
596 | * @attrlen: length of attribute payload | |
597 | * | |
598 | * Adds a netlink attribute header to a socket buffer and reserves | |
599 | * room for the payload but does not copy it. | |
600 | * | |
601 | * The caller is responsible to ensure that the skb provides enough | |
602 | * tailroom for the attribute header and payload. | |
603 | */ | |
604 | struct nlattr *__nla_reserve(struct sk_buff *skb, int attrtype, int attrlen) | |
605 | { | |
606 | struct nlattr *nla; | |
607 | ||
4df864c1 | 608 | nla = skb_put(skb, nla_total_size(attrlen)); |
bfa83a9e TG |
609 | nla->nla_type = attrtype; |
610 | nla->nla_len = nla_attr_size(attrlen); | |
611 | ||
612 | memset((unsigned char *) nla + nla->nla_len, 0, nla_padlen(attrlen)); | |
613 | ||
614 | return nla; | |
615 | } | |
90800216 | 616 | EXPORT_SYMBOL(__nla_reserve); |
bfa83a9e | 617 | |
089bf1a6 ND |
618 | /** |
619 | * __nla_reserve_64bit - reserve room for attribute on the skb and align it | |
620 | * @skb: socket buffer to reserve room on | |
621 | * @attrtype: attribute type | |
622 | * @attrlen: length of attribute payload | |
11a99573 | 623 | * @padattr: attribute type for the padding |
089bf1a6 ND |
624 | * |
625 | * Adds a netlink attribute header to a socket buffer and reserves | |
626 | * room for the payload but does not copy it. It also ensure that this | |
11a99573 | 627 | * attribute will have a 64-bit aligned nla_data() area. |
089bf1a6 ND |
628 | * |
629 | * The caller is responsible to ensure that the skb provides enough | |
630 | * tailroom for the attribute header and payload. | |
631 | */ | |
632 | struct nlattr *__nla_reserve_64bit(struct sk_buff *skb, int attrtype, | |
633 | int attrlen, int padattr) | |
634 | { | |
635 | if (nla_need_padding_for_64bit(skb)) | |
636 | nla_align_64bit(skb, padattr); | |
637 | ||
638 | return __nla_reserve(skb, attrtype, attrlen); | |
639 | } | |
640 | EXPORT_SYMBOL(__nla_reserve_64bit); | |
641 | ||
fe4944e5 TG |
642 | /** |
643 | * __nla_reserve_nohdr - reserve room for attribute without header | |
644 | * @skb: socket buffer to reserve room on | |
645 | * @attrlen: length of attribute payload | |
646 | * | |
647 | * Reserves room for attribute payload without a header. | |
648 | * | |
649 | * The caller is responsible to ensure that the skb provides enough | |
650 | * tailroom for the payload. | |
651 | */ | |
652 | void *__nla_reserve_nohdr(struct sk_buff *skb, int attrlen) | |
653 | { | |
b952f4df | 654 | return skb_put_zero(skb, NLA_ALIGN(attrlen)); |
fe4944e5 | 655 | } |
90800216 | 656 | EXPORT_SYMBOL(__nla_reserve_nohdr); |
fe4944e5 | 657 | |
bfa83a9e TG |
658 | /** |
659 | * nla_reserve - reserve room for attribute on the skb | |
660 | * @skb: socket buffer to reserve room on | |
661 | * @attrtype: attribute type | |
662 | * @attrlen: length of attribute payload | |
663 | * | |
664 | * Adds a netlink attribute header to a socket buffer and reserves | |
665 | * room for the payload but does not copy it. | |
666 | * | |
667 | * Returns NULL if the tailroom of the skb is insufficient to store | |
668 | * the attribute header and payload. | |
669 | */ | |
670 | struct nlattr *nla_reserve(struct sk_buff *skb, int attrtype, int attrlen) | |
671 | { | |
672 | if (unlikely(skb_tailroom(skb) < nla_total_size(attrlen))) | |
673 | return NULL; | |
674 | ||
675 | return __nla_reserve(skb, attrtype, attrlen); | |
676 | } | |
90800216 | 677 | EXPORT_SYMBOL(nla_reserve); |
bfa83a9e | 678 | |
089bf1a6 ND |
679 | /** |
680 | * nla_reserve_64bit - reserve room for attribute on the skb and align it | |
681 | * @skb: socket buffer to reserve room on | |
682 | * @attrtype: attribute type | |
683 | * @attrlen: length of attribute payload | |
11a99573 | 684 | * @padattr: attribute type for the padding |
089bf1a6 ND |
685 | * |
686 | * Adds a netlink attribute header to a socket buffer and reserves | |
687 | * room for the payload but does not copy it. It also ensure that this | |
11a99573 | 688 | * attribute will have a 64-bit aligned nla_data() area. |
089bf1a6 ND |
689 | * |
690 | * Returns NULL if the tailroom of the skb is insufficient to store | |
691 | * the attribute header and payload. | |
692 | */ | |
693 | struct nlattr *nla_reserve_64bit(struct sk_buff *skb, int attrtype, int attrlen, | |
694 | int padattr) | |
695 | { | |
696 | size_t len; | |
697 | ||
698 | if (nla_need_padding_for_64bit(skb)) | |
699 | len = nla_total_size_64bit(attrlen); | |
700 | else | |
701 | len = nla_total_size(attrlen); | |
702 | if (unlikely(skb_tailroom(skb) < len)) | |
703 | return NULL; | |
704 | ||
705 | return __nla_reserve_64bit(skb, attrtype, attrlen, padattr); | |
706 | } | |
707 | EXPORT_SYMBOL(nla_reserve_64bit); | |
708 | ||
fe4944e5 | 709 | /** |
10b595af | 710 | * nla_reserve_nohdr - reserve room for attribute without header |
fe4944e5 | 711 | * @skb: socket buffer to reserve room on |
10b595af | 712 | * @attrlen: length of attribute payload |
fe4944e5 TG |
713 | * |
714 | * Reserves room for attribute payload without a header. | |
715 | * | |
716 | * Returns NULL if the tailroom of the skb is insufficient to store | |
717 | * the attribute payload. | |
718 | */ | |
719 | void *nla_reserve_nohdr(struct sk_buff *skb, int attrlen) | |
720 | { | |
721 | if (unlikely(skb_tailroom(skb) < NLA_ALIGN(attrlen))) | |
722 | return NULL; | |
723 | ||
724 | return __nla_reserve_nohdr(skb, attrlen); | |
725 | } | |
90800216 | 726 | EXPORT_SYMBOL(nla_reserve_nohdr); |
fe4944e5 | 727 | |
bfa83a9e TG |
728 | /** |
729 | * __nla_put - Add a netlink attribute to a socket buffer | |
730 | * @skb: socket buffer to add attribute to | |
731 | * @attrtype: attribute type | |
732 | * @attrlen: length of attribute payload | |
733 | * @data: head of attribute payload | |
734 | * | |
735 | * The caller is responsible to ensure that the skb provides enough | |
736 | * tailroom for the attribute header and payload. | |
737 | */ | |
738 | void __nla_put(struct sk_buff *skb, int attrtype, int attrlen, | |
739 | const void *data) | |
740 | { | |
741 | struct nlattr *nla; | |
742 | ||
743 | nla = __nla_reserve(skb, attrtype, attrlen); | |
744 | memcpy(nla_data(nla), data, attrlen); | |
745 | } | |
90800216 | 746 | EXPORT_SYMBOL(__nla_put); |
bfa83a9e | 747 | |
089bf1a6 ND |
748 | /** |
749 | * __nla_put_64bit - Add a netlink attribute to a socket buffer and align it | |
750 | * @skb: socket buffer to add attribute to | |
751 | * @attrtype: attribute type | |
752 | * @attrlen: length of attribute payload | |
753 | * @data: head of attribute payload | |
11a99573 | 754 | * @padattr: attribute type for the padding |
089bf1a6 ND |
755 | * |
756 | * The caller is responsible to ensure that the skb provides enough | |
757 | * tailroom for the attribute header and payload. | |
758 | */ | |
759 | void __nla_put_64bit(struct sk_buff *skb, int attrtype, int attrlen, | |
760 | const void *data, int padattr) | |
761 | { | |
762 | struct nlattr *nla; | |
763 | ||
764 | nla = __nla_reserve_64bit(skb, attrtype, attrlen, padattr); | |
765 | memcpy(nla_data(nla), data, attrlen); | |
766 | } | |
767 | EXPORT_SYMBOL(__nla_put_64bit); | |
768 | ||
fe4944e5 TG |
769 | /** |
770 | * __nla_put_nohdr - Add a netlink attribute without header | |
771 | * @skb: socket buffer to add attribute to | |
772 | * @attrlen: length of attribute payload | |
773 | * @data: head of attribute payload | |
774 | * | |
775 | * The caller is responsible to ensure that the skb provides enough | |
776 | * tailroom for the attribute payload. | |
777 | */ | |
778 | void __nla_put_nohdr(struct sk_buff *skb, int attrlen, const void *data) | |
779 | { | |
780 | void *start; | |
781 | ||
782 | start = __nla_reserve_nohdr(skb, attrlen); | |
783 | memcpy(start, data, attrlen); | |
784 | } | |
90800216 | 785 | EXPORT_SYMBOL(__nla_put_nohdr); |
bfa83a9e TG |
786 | |
787 | /** | |
788 | * nla_put - Add a netlink attribute to a socket buffer | |
789 | * @skb: socket buffer to add attribute to | |
790 | * @attrtype: attribute type | |
791 | * @attrlen: length of attribute payload | |
792 | * @data: head of attribute payload | |
793 | * | |
bc3ed28c | 794 | * Returns -EMSGSIZE if the tailroom of the skb is insufficient to store |
bfa83a9e TG |
795 | * the attribute header and payload. |
796 | */ | |
797 | int nla_put(struct sk_buff *skb, int attrtype, int attrlen, const void *data) | |
798 | { | |
799 | if (unlikely(skb_tailroom(skb) < nla_total_size(attrlen))) | |
bc3ed28c | 800 | return -EMSGSIZE; |
bfa83a9e TG |
801 | |
802 | __nla_put(skb, attrtype, attrlen, data); | |
803 | return 0; | |
804 | } | |
90800216 | 805 | EXPORT_SYMBOL(nla_put); |
bfa83a9e | 806 | |
089bf1a6 ND |
807 | /** |
808 | * nla_put_64bit - Add a netlink attribute to a socket buffer and align it | |
809 | * @skb: socket buffer to add attribute to | |
810 | * @attrtype: attribute type | |
811 | * @attrlen: length of attribute payload | |
812 | * @data: head of attribute payload | |
11a99573 | 813 | * @padattr: attribute type for the padding |
089bf1a6 ND |
814 | * |
815 | * Returns -EMSGSIZE if the tailroom of the skb is insufficient to store | |
816 | * the attribute header and payload. | |
817 | */ | |
818 | int nla_put_64bit(struct sk_buff *skb, int attrtype, int attrlen, | |
819 | const void *data, int padattr) | |
820 | { | |
821 | size_t len; | |
822 | ||
823 | if (nla_need_padding_for_64bit(skb)) | |
824 | len = nla_total_size_64bit(attrlen); | |
825 | else | |
826 | len = nla_total_size(attrlen); | |
827 | if (unlikely(skb_tailroom(skb) < len)) | |
828 | return -EMSGSIZE; | |
829 | ||
830 | __nla_put_64bit(skb, attrtype, attrlen, data, padattr); | |
831 | return 0; | |
832 | } | |
833 | EXPORT_SYMBOL(nla_put_64bit); | |
834 | ||
fe4944e5 TG |
835 | /** |
836 | * nla_put_nohdr - Add a netlink attribute without header | |
837 | * @skb: socket buffer to add attribute to | |
838 | * @attrlen: length of attribute payload | |
839 | * @data: head of attribute payload | |
840 | * | |
bc3ed28c | 841 | * Returns -EMSGSIZE if the tailroom of the skb is insufficient to store |
fe4944e5 TG |
842 | * the attribute payload. |
843 | */ | |
844 | int nla_put_nohdr(struct sk_buff *skb, int attrlen, const void *data) | |
845 | { | |
846 | if (unlikely(skb_tailroom(skb) < NLA_ALIGN(attrlen))) | |
bc3ed28c | 847 | return -EMSGSIZE; |
fe4944e5 TG |
848 | |
849 | __nla_put_nohdr(skb, attrlen, data); | |
850 | return 0; | |
851 | } | |
90800216 | 852 | EXPORT_SYMBOL(nla_put_nohdr); |
bfa83a9e | 853 | |
01480e1c PM |
854 | /** |
855 | * nla_append - Add a netlink attribute without header or padding | |
856 | * @skb: socket buffer to add attribute to | |
857 | * @attrlen: length of attribute payload | |
858 | * @data: head of attribute payload | |
859 | * | |
bc3ed28c | 860 | * Returns -EMSGSIZE if the tailroom of the skb is insufficient to store |
01480e1c PM |
861 | * the attribute payload. |
862 | */ | |
863 | int nla_append(struct sk_buff *skb, int attrlen, const void *data) | |
864 | { | |
865 | if (unlikely(skb_tailroom(skb) < NLA_ALIGN(attrlen))) | |
bc3ed28c | 866 | return -EMSGSIZE; |
01480e1c | 867 | |
59ae1d12 | 868 | skb_put_data(skb, data, attrlen); |
01480e1c PM |
869 | return 0; |
870 | } | |
90800216 HX |
871 | EXPORT_SYMBOL(nla_append); |
872 | #endif |