]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | /* xfrm_user.c: User interface to configure xfrm engine. |
2 | * | |
3 | * Copyright (C) 2002 David S. Miller ([email protected]) | |
4 | * | |
5 | * Changes: | |
6 | * Mitsuru KANDA @USAGI | |
7 | * Kazunori MIYAZAWA @USAGI | |
8 | * Kunihiro Ishiguro <[email protected]> | |
9 | * IPv6 support | |
df71837d | 10 | * |
1da177e4 LT |
11 | */ |
12 | ||
9409f38a | 13 | #include <linux/crypto.h> |
1da177e4 LT |
14 | #include <linux/module.h> |
15 | #include <linux/kernel.h> | |
16 | #include <linux/types.h> | |
17 | #include <linux/slab.h> | |
18 | #include <linux/socket.h> | |
19 | #include <linux/string.h> | |
20 | #include <linux/net.h> | |
21 | #include <linux/skbuff.h> | |
1da177e4 LT |
22 | #include <linux/pfkeyv2.h> |
23 | #include <linux/ipsec.h> | |
24 | #include <linux/init.h> | |
25 | #include <linux/security.h> | |
26 | #include <net/sock.h> | |
27 | #include <net/xfrm.h> | |
88fc2c84 | 28 | #include <net/netlink.h> |
fa6dd8a2 | 29 | #include <net/ah.h> |
7c0f6ba6 | 30 | #include <linux/uaccess.h> |
dfd56b8b | 31 | #if IS_ENABLED(CONFIG_IPV6) |
e23c7194 MN |
32 | #include <linux/in6.h> |
33 | #endif | |
e33d4f13 | 34 | #include <asm/unaligned.h> |
1da177e4 | 35 | |
5424f32e | 36 | static int verify_one_alg(struct nlattr **attrs, enum xfrm_attr_type_t type) |
1da177e4 | 37 | { |
5424f32e | 38 | struct nlattr *rt = attrs[type]; |
1da177e4 LT |
39 | struct xfrm_algo *algp; |
40 | ||
41 | if (!rt) | |
42 | return 0; | |
43 | ||
5424f32e | 44 | algp = nla_data(rt); |
06cd22f8 | 45 | if (nla_len(rt) < (int)xfrm_alg_len(algp)) |
31c26852 HX |
46 | return -EINVAL; |
47 | ||
1da177e4 LT |
48 | switch (type) { |
49 | case XFRMA_ALG_AUTH: | |
1da177e4 | 50 | case XFRMA_ALG_CRYPT: |
1da177e4 | 51 | case XFRMA_ALG_COMP: |
1da177e4 LT |
52 | break; |
53 | ||
54 | default: | |
55 | return -EINVAL; | |
3ff50b79 | 56 | } |
1da177e4 | 57 | |
633439f5 | 58 | algp->alg_name[sizeof(algp->alg_name) - 1] = '\0'; |
1da177e4 LT |
59 | return 0; |
60 | } | |
61 | ||
4447bb33 MW |
62 | static int verify_auth_trunc(struct nlattr **attrs) |
63 | { | |
64 | struct nlattr *rt = attrs[XFRMA_ALG_AUTH_TRUNC]; | |
65 | struct xfrm_algo_auth *algp; | |
66 | ||
67 | if (!rt) | |
68 | return 0; | |
69 | ||
70 | algp = nla_data(rt); | |
1bd963a7 | 71 | if (nla_len(rt) < (int)xfrm_alg_auth_len(algp)) |
4447bb33 MW |
72 | return -EINVAL; |
73 | ||
633439f5 | 74 | algp->alg_name[sizeof(algp->alg_name) - 1] = '\0'; |
4447bb33 MW |
75 | return 0; |
76 | } | |
77 | ||
1a6509d9 HX |
78 | static int verify_aead(struct nlattr **attrs) |
79 | { | |
80 | struct nlattr *rt = attrs[XFRMA_ALG_AEAD]; | |
81 | struct xfrm_algo_aead *algp; | |
82 | ||
83 | if (!rt) | |
84 | return 0; | |
85 | ||
86 | algp = nla_data(rt); | |
373b8eeb | 87 | if (nla_len(rt) < (int)aead_len(algp)) |
1a6509d9 HX |
88 | return -EINVAL; |
89 | ||
633439f5 | 90 | algp->alg_name[sizeof(algp->alg_name) - 1] = '\0'; |
1a6509d9 HX |
91 | return 0; |
92 | } | |
93 | ||
5424f32e | 94 | static void verify_one_addr(struct nlattr **attrs, enum xfrm_attr_type_t type, |
eb2971b6 MN |
95 | xfrm_address_t **addrp) |
96 | { | |
5424f32e | 97 | struct nlattr *rt = attrs[type]; |
eb2971b6 | 98 | |
cf5cb79f | 99 | if (rt && addrp) |
5424f32e | 100 | *addrp = nla_data(rt); |
eb2971b6 | 101 | } |
df71837d | 102 | |
5424f32e | 103 | static inline int verify_sec_ctx_len(struct nlattr **attrs) |
df71837d | 104 | { |
5424f32e | 105 | struct nlattr *rt = attrs[XFRMA_SEC_CTX]; |
df71837d | 106 | struct xfrm_user_sec_ctx *uctx; |
df71837d TJ |
107 | |
108 | if (!rt) | |
109 | return 0; | |
110 | ||
5424f32e | 111 | uctx = nla_data(rt); |
cf5cb79f | 112 | if (uctx->len != (sizeof(struct xfrm_user_sec_ctx) + uctx->ctx_len)) |
df71837d TJ |
113 | return -EINVAL; |
114 | ||
115 | return 0; | |
116 | } | |
117 | ||
d8647b79 SK |
118 | static inline int verify_replay(struct xfrm_usersa_info *p, |
119 | struct nlattr **attrs) | |
120 | { | |
121 | struct nlattr *rt = attrs[XFRMA_REPLAY_ESN_VAL]; | |
ecd79187 | 122 | struct xfrm_replay_state_esn *rs; |
d8647b79 | 123 | |
d97ca5d7 FW |
124 | if (!rt) |
125 | return (p->flags & XFRM_STATE_ESN) ? -EINVAL : 0; | |
ecd79187 | 126 | |
d97ca5d7 | 127 | rs = nla_data(rt); |
ecd79187 | 128 | |
d97ca5d7 FW |
129 | if (rs->bmp_len > XFRMA_REPLAY_ESN_MAX / sizeof(rs->bmp[0]) / 8) |
130 | return -EINVAL; | |
7833aa05 | 131 | |
d97ca5d7 FW |
132 | if (nla_len(rt) < (int)xfrm_replay_state_esn_len(rs) && |
133 | nla_len(rt) != sizeof(*rs)) | |
134 | return -EINVAL; | |
d8647b79 | 135 | |
01714109 FD |
136 | /* As only ESP and AH support ESN feature. */ |
137 | if ((p->id.proto != IPPROTO_ESP) && (p->id.proto != IPPROTO_AH)) | |
02aadf72 SK |
138 | return -EINVAL; |
139 | ||
d8647b79 SK |
140 | if (p->replay_window != 0) |
141 | return -EINVAL; | |
142 | ||
143 | return 0; | |
144 | } | |
df71837d | 145 | |
1da177e4 | 146 | static int verify_newsa_info(struct xfrm_usersa_info *p, |
5424f32e | 147 | struct nlattr **attrs) |
1da177e4 LT |
148 | { |
149 | int err; | |
150 | ||
151 | err = -EINVAL; | |
152 | switch (p->family) { | |
153 | case AF_INET: | |
154 | break; | |
155 | ||
156 | case AF_INET6: | |
dfd56b8b | 157 | #if IS_ENABLED(CONFIG_IPV6) |
1da177e4 LT |
158 | break; |
159 | #else | |
160 | err = -EAFNOSUPPORT; | |
161 | goto out; | |
162 | #endif | |
163 | ||
164 | default: | |
165 | goto out; | |
3ff50b79 | 166 | } |
1da177e4 LT |
167 | |
168 | err = -EINVAL; | |
169 | switch (p->id.proto) { | |
170 | case IPPROTO_AH: | |
4447bb33 MW |
171 | if ((!attrs[XFRMA_ALG_AUTH] && |
172 | !attrs[XFRMA_ALG_AUTH_TRUNC]) || | |
1a6509d9 | 173 | attrs[XFRMA_ALG_AEAD] || |
35a7aa08 | 174 | attrs[XFRMA_ALG_CRYPT] || |
35d2856b | 175 | attrs[XFRMA_ALG_COMP] || |
a0e5ef53 | 176 | attrs[XFRMA_TFCPAD]) |
1da177e4 LT |
177 | goto out; |
178 | break; | |
179 | ||
180 | case IPPROTO_ESP: | |
1a6509d9 HX |
181 | if (attrs[XFRMA_ALG_COMP]) |
182 | goto out; | |
183 | if (!attrs[XFRMA_ALG_AUTH] && | |
4447bb33 | 184 | !attrs[XFRMA_ALG_AUTH_TRUNC] && |
1a6509d9 HX |
185 | !attrs[XFRMA_ALG_CRYPT] && |
186 | !attrs[XFRMA_ALG_AEAD]) | |
187 | goto out; | |
188 | if ((attrs[XFRMA_ALG_AUTH] || | |
4447bb33 | 189 | attrs[XFRMA_ALG_AUTH_TRUNC] || |
1a6509d9 HX |
190 | attrs[XFRMA_ALG_CRYPT]) && |
191 | attrs[XFRMA_ALG_AEAD]) | |
1da177e4 | 192 | goto out; |
35d2856b MW |
193 | if (attrs[XFRMA_TFCPAD] && |
194 | p->mode != XFRM_MODE_TUNNEL) | |
195 | goto out; | |
1da177e4 LT |
196 | break; |
197 | ||
198 | case IPPROTO_COMP: | |
35a7aa08 | 199 | if (!attrs[XFRMA_ALG_COMP] || |
1a6509d9 | 200 | attrs[XFRMA_ALG_AEAD] || |
35a7aa08 | 201 | attrs[XFRMA_ALG_AUTH] || |
4447bb33 | 202 | attrs[XFRMA_ALG_AUTH_TRUNC] || |
35d2856b | 203 | attrs[XFRMA_ALG_CRYPT] || |
a0e5ef53 TB |
204 | attrs[XFRMA_TFCPAD] || |
205 | (ntohl(p->id.spi) >= 0x10000)) | |
1da177e4 LT |
206 | goto out; |
207 | break; | |
208 | ||
dfd56b8b | 209 | #if IS_ENABLED(CONFIG_IPV6) |
e23c7194 MN |
210 | case IPPROTO_DSTOPTS: |
211 | case IPPROTO_ROUTING: | |
35a7aa08 TG |
212 | if (attrs[XFRMA_ALG_COMP] || |
213 | attrs[XFRMA_ALG_AUTH] || | |
4447bb33 | 214 | attrs[XFRMA_ALG_AUTH_TRUNC] || |
1a6509d9 | 215 | attrs[XFRMA_ALG_AEAD] || |
35a7aa08 TG |
216 | attrs[XFRMA_ALG_CRYPT] || |
217 | attrs[XFRMA_ENCAP] || | |
218 | attrs[XFRMA_SEC_CTX] || | |
35d2856b | 219 | attrs[XFRMA_TFCPAD] || |
35a7aa08 | 220 | !attrs[XFRMA_COADDR]) |
e23c7194 MN |
221 | goto out; |
222 | break; | |
223 | #endif | |
224 | ||
1da177e4 LT |
225 | default: |
226 | goto out; | |
3ff50b79 | 227 | } |
1da177e4 | 228 | |
1a6509d9 HX |
229 | if ((err = verify_aead(attrs))) |
230 | goto out; | |
4447bb33 MW |
231 | if ((err = verify_auth_trunc(attrs))) |
232 | goto out; | |
35a7aa08 | 233 | if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH))) |
1da177e4 | 234 | goto out; |
35a7aa08 | 235 | if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT))) |
1da177e4 | 236 | goto out; |
35a7aa08 | 237 | if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP))) |
1da177e4 | 238 | goto out; |
35a7aa08 | 239 | if ((err = verify_sec_ctx_len(attrs))) |
df71837d | 240 | goto out; |
d8647b79 SK |
241 | if ((err = verify_replay(p, attrs))) |
242 | goto out; | |
1da177e4 LT |
243 | |
244 | err = -EINVAL; | |
245 | switch (p->mode) { | |
7e49e6de MN |
246 | case XFRM_MODE_TRANSPORT: |
247 | case XFRM_MODE_TUNNEL: | |
060f02a3 | 248 | case XFRM_MODE_ROUTEOPTIMIZATION: |
0a69452c | 249 | case XFRM_MODE_BEET: |
1da177e4 LT |
250 | break; |
251 | ||
252 | default: | |
253 | goto out; | |
3ff50b79 | 254 | } |
1da177e4 LT |
255 | |
256 | err = 0; | |
257 | ||
258 | out: | |
259 | return err; | |
260 | } | |
261 | ||
262 | static int attach_one_algo(struct xfrm_algo **algpp, u8 *props, | |
6f2f19ed | 263 | struct xfrm_algo_desc *(*get_byname)(const char *, int), |
5424f32e | 264 | struct nlattr *rta) |
1da177e4 | 265 | { |
1da177e4 LT |
266 | struct xfrm_algo *p, *ualg; |
267 | struct xfrm_algo_desc *algo; | |
268 | ||
269 | if (!rta) | |
270 | return 0; | |
271 | ||
5424f32e | 272 | ualg = nla_data(rta); |
1da177e4 LT |
273 | |
274 | algo = get_byname(ualg->alg_name, 1); | |
275 | if (!algo) | |
276 | return -ENOSYS; | |
277 | *props = algo->desc.sadb_alg_id; | |
278 | ||
0f99be0d | 279 | p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL); |
1da177e4 LT |
280 | if (!p) |
281 | return -ENOMEM; | |
282 | ||
04ff1260 | 283 | strcpy(p->alg_name, algo->name); |
1da177e4 LT |
284 | *algpp = p; |
285 | return 0; | |
286 | } | |
287 | ||
69b0137f HX |
288 | static int attach_crypt(struct xfrm_state *x, struct nlattr *rta) |
289 | { | |
290 | struct xfrm_algo *p, *ualg; | |
291 | struct xfrm_algo_desc *algo; | |
292 | ||
293 | if (!rta) | |
294 | return 0; | |
295 | ||
296 | ualg = nla_data(rta); | |
297 | ||
298 | algo = xfrm_ealg_get_byname(ualg->alg_name, 1); | |
299 | if (!algo) | |
300 | return -ENOSYS; | |
301 | x->props.ealgo = algo->desc.sadb_alg_id; | |
302 | ||
303 | p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL); | |
304 | if (!p) | |
305 | return -ENOMEM; | |
306 | ||
307 | strcpy(p->alg_name, algo->name); | |
308 | x->ealg = p; | |
309 | x->geniv = algo->uinfo.encr.geniv; | |
310 | return 0; | |
311 | } | |
312 | ||
4447bb33 MW |
313 | static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props, |
314 | struct nlattr *rta) | |
315 | { | |
316 | struct xfrm_algo *ualg; | |
317 | struct xfrm_algo_auth *p; | |
318 | struct xfrm_algo_desc *algo; | |
319 | ||
320 | if (!rta) | |
321 | return 0; | |
322 | ||
323 | ualg = nla_data(rta); | |
324 | ||
325 | algo = xfrm_aalg_get_byname(ualg->alg_name, 1); | |
326 | if (!algo) | |
327 | return -ENOSYS; | |
328 | *props = algo->desc.sadb_alg_id; | |
329 | ||
330 | p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL); | |
331 | if (!p) | |
332 | return -ENOMEM; | |
333 | ||
334 | strcpy(p->alg_name, algo->name); | |
335 | p->alg_key_len = ualg->alg_key_len; | |
336 | p->alg_trunc_len = algo->uinfo.auth.icv_truncbits; | |
337 | memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8); | |
338 | ||
339 | *algpp = p; | |
340 | return 0; | |
341 | } | |
342 | ||
343 | static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props, | |
344 | struct nlattr *rta) | |
345 | { | |
346 | struct xfrm_algo_auth *p, *ualg; | |
347 | struct xfrm_algo_desc *algo; | |
348 | ||
349 | if (!rta) | |
350 | return 0; | |
351 | ||
352 | ualg = nla_data(rta); | |
353 | ||
354 | algo = xfrm_aalg_get_byname(ualg->alg_name, 1); | |
355 | if (!algo) | |
356 | return -ENOSYS; | |
689f1c9d | 357 | if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits) |
4447bb33 MW |
358 | return -EINVAL; |
359 | *props = algo->desc.sadb_alg_id; | |
360 | ||
361 | p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL); | |
362 | if (!p) | |
363 | return -ENOMEM; | |
364 | ||
365 | strcpy(p->alg_name, algo->name); | |
366 | if (!p->alg_trunc_len) | |
367 | p->alg_trunc_len = algo->uinfo.auth.icv_truncbits; | |
368 | ||
369 | *algpp = p; | |
370 | return 0; | |
371 | } | |
372 | ||
69b0137f | 373 | static int attach_aead(struct xfrm_state *x, struct nlattr *rta) |
1a6509d9 HX |
374 | { |
375 | struct xfrm_algo_aead *p, *ualg; | |
376 | struct xfrm_algo_desc *algo; | |
377 | ||
378 | if (!rta) | |
379 | return 0; | |
380 | ||
381 | ualg = nla_data(rta); | |
382 | ||
383 | algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1); | |
384 | if (!algo) | |
385 | return -ENOSYS; | |
69b0137f | 386 | x->props.ealgo = algo->desc.sadb_alg_id; |
1a6509d9 HX |
387 | |
388 | p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL); | |
389 | if (!p) | |
390 | return -ENOMEM; | |
391 | ||
392 | strcpy(p->alg_name, algo->name); | |
69b0137f HX |
393 | x->aead = p; |
394 | x->geniv = algo->uinfo.aead.geniv; | |
1a6509d9 HX |
395 | return 0; |
396 | } | |
397 | ||
e2b19125 SK |
398 | static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn, |
399 | struct nlattr *rp) | |
400 | { | |
401 | struct xfrm_replay_state_esn *up; | |
5e708e47 | 402 | unsigned int ulen; |
e2b19125 SK |
403 | |
404 | if (!replay_esn || !rp) | |
405 | return 0; | |
406 | ||
407 | up = nla_data(rp); | |
ecd79187 | 408 | ulen = xfrm_replay_state_esn_len(up); |
e2b19125 | 409 | |
f843ee6d AW |
410 | /* Check the overall length and the internal bitmap length to avoid |
411 | * potential overflow. */ | |
5e708e47 | 412 | if (nla_len(rp) < (int)ulen || |
f843ee6d AW |
413 | xfrm_replay_state_esn_len(replay_esn) != ulen || |
414 | replay_esn->bmp_len != up->bmp_len) | |
e2b19125 SK |
415 | return -EINVAL; |
416 | ||
677e806d AW |
417 | if (up->replay_window > up->bmp_len * sizeof(__u32) * 8) |
418 | return -EINVAL; | |
419 | ||
e2b19125 SK |
420 | return 0; |
421 | } | |
422 | ||
d8647b79 SK |
423 | static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn, |
424 | struct xfrm_replay_state_esn **preplay_esn, | |
425 | struct nlattr *rta) | |
426 | { | |
427 | struct xfrm_replay_state_esn *p, *pp, *up; | |
5e708e47 | 428 | unsigned int klen, ulen; |
d8647b79 SK |
429 | |
430 | if (!rta) | |
431 | return 0; | |
432 | ||
433 | up = nla_data(rta); | |
ecd79187 | 434 | klen = xfrm_replay_state_esn_len(up); |
5e708e47 | 435 | ulen = nla_len(rta) >= (int)klen ? klen : sizeof(*up); |
d8647b79 | 436 | |
ecd79187 | 437 | p = kzalloc(klen, GFP_KERNEL); |
d8647b79 SK |
438 | if (!p) |
439 | return -ENOMEM; | |
440 | ||
ecd79187 | 441 | pp = kzalloc(klen, GFP_KERNEL); |
d8647b79 SK |
442 | if (!pp) { |
443 | kfree(p); | |
444 | return -ENOMEM; | |
445 | } | |
446 | ||
ecd79187 MK |
447 | memcpy(p, up, ulen); |
448 | memcpy(pp, up, ulen); | |
449 | ||
d8647b79 SK |
450 | *replay_esn = p; |
451 | *preplay_esn = pp; | |
452 | ||
453 | return 0; | |
454 | } | |
455 | ||
a1b831f2 | 456 | static inline unsigned int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx) |
df71837d | 457 | { |
a1b831f2 | 458 | unsigned int len = 0; |
df71837d TJ |
459 | |
460 | if (xfrm_ctx) { | |
461 | len += sizeof(struct xfrm_user_sec_ctx); | |
462 | len += xfrm_ctx->ctx_len; | |
463 | } | |
464 | return len; | |
465 | } | |
466 | ||
1da177e4 LT |
467 | static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p) |
468 | { | |
469 | memcpy(&x->id, &p->id, sizeof(x->id)); | |
470 | memcpy(&x->sel, &p->sel, sizeof(x->sel)); | |
471 | memcpy(&x->lft, &p->lft, sizeof(x->lft)); | |
472 | x->props.mode = p->mode; | |
33fce60d FD |
473 | x->props.replay_window = min_t(unsigned int, p->replay_window, |
474 | sizeof(x->replay.bitmap) * 8); | |
1da177e4 LT |
475 | x->props.reqid = p->reqid; |
476 | x->props.family = p->family; | |
54489c14 | 477 | memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr)); |
1da177e4 | 478 | x->props.flags = p->flags; |
196b0036 | 479 | |
ccf9b3b8 | 480 | if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC)) |
196b0036 | 481 | x->sel.family = p->family; |
1da177e4 LT |
482 | } |
483 | ||
d51d081d JHS |
484 | /* |
485 | * someday when pfkey also has support, we could have the code | |
486 | * somehow made shareable and move it to xfrm_state.c - JHS | |
487 | * | |
488 | */ | |
e3ac104d MK |
489 | static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs, |
490 | int update_esn) | |
d51d081d | 491 | { |
5424f32e | 492 | struct nlattr *rp = attrs[XFRMA_REPLAY_VAL]; |
e3ac104d | 493 | struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL; |
5424f32e TG |
494 | struct nlattr *lt = attrs[XFRMA_LTIME_VAL]; |
495 | struct nlattr *et = attrs[XFRMA_ETIMER_THRESH]; | |
496 | struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH]; | |
d51d081d | 497 | |
d8647b79 SK |
498 | if (re) { |
499 | struct xfrm_replay_state_esn *replay_esn; | |
500 | replay_esn = nla_data(re); | |
501 | memcpy(x->replay_esn, replay_esn, | |
502 | xfrm_replay_state_esn_len(replay_esn)); | |
503 | memcpy(x->preplay_esn, replay_esn, | |
504 | xfrm_replay_state_esn_len(replay_esn)); | |
505 | } | |
506 | ||
d51d081d JHS |
507 | if (rp) { |
508 | struct xfrm_replay_state *replay; | |
5424f32e | 509 | replay = nla_data(rp); |
d51d081d JHS |
510 | memcpy(&x->replay, replay, sizeof(*replay)); |
511 | memcpy(&x->preplay, replay, sizeof(*replay)); | |
512 | } | |
513 | ||
514 | if (lt) { | |
515 | struct xfrm_lifetime_cur *ltime; | |
5424f32e | 516 | ltime = nla_data(lt); |
d51d081d JHS |
517 | x->curlft.bytes = ltime->bytes; |
518 | x->curlft.packets = ltime->packets; | |
519 | x->curlft.add_time = ltime->add_time; | |
520 | x->curlft.use_time = ltime->use_time; | |
521 | } | |
522 | ||
cf5cb79f | 523 | if (et) |
5424f32e | 524 | x->replay_maxage = nla_get_u32(et); |
d51d081d | 525 | |
cf5cb79f | 526 | if (rt) |
5424f32e | 527 | x->replay_maxdiff = nla_get_u32(rt); |
d51d081d JHS |
528 | } |
529 | ||
fc34acd3 AD |
530 | static struct xfrm_state *xfrm_state_construct(struct net *net, |
531 | struct xfrm_usersa_info *p, | |
5424f32e | 532 | struct nlattr **attrs, |
1da177e4 LT |
533 | int *errp) |
534 | { | |
fc34acd3 | 535 | struct xfrm_state *x = xfrm_state_alloc(net); |
1da177e4 LT |
536 | int err = -ENOMEM; |
537 | ||
538 | if (!x) | |
539 | goto error_no_put; | |
540 | ||
541 | copy_from_user_state(x, p); | |
542 | ||
a947b0a9 ND |
543 | if (attrs[XFRMA_SA_EXTRA_FLAGS]) |
544 | x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]); | |
545 | ||
69b0137f | 546 | if ((err = attach_aead(x, attrs[XFRMA_ALG_AEAD]))) |
1a6509d9 | 547 | goto error; |
4447bb33 MW |
548 | if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo, |
549 | attrs[XFRMA_ALG_AUTH_TRUNC]))) | |
1da177e4 | 550 | goto error; |
4447bb33 MW |
551 | if (!x->props.aalgo) { |
552 | if ((err = attach_auth(&x->aalg, &x->props.aalgo, | |
553 | attrs[XFRMA_ALG_AUTH]))) | |
554 | goto error; | |
555 | } | |
69b0137f | 556 | if ((err = attach_crypt(x, attrs[XFRMA_ALG_CRYPT]))) |
1da177e4 LT |
557 | goto error; |
558 | if ((err = attach_one_algo(&x->calg, &x->props.calgo, | |
559 | xfrm_calg_get_byname, | |
35a7aa08 | 560 | attrs[XFRMA_ALG_COMP]))) |
1da177e4 | 561 | goto error; |
fd21150a TG |
562 | |
563 | if (attrs[XFRMA_ENCAP]) { | |
564 | x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]), | |
565 | sizeof(*x->encap), GFP_KERNEL); | |
566 | if (x->encap == NULL) | |
567 | goto error; | |
568 | } | |
569 | ||
35d2856b MW |
570 | if (attrs[XFRMA_TFCPAD]) |
571 | x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]); | |
572 | ||
fd21150a TG |
573 | if (attrs[XFRMA_COADDR]) { |
574 | x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]), | |
575 | sizeof(*x->coaddr), GFP_KERNEL); | |
576 | if (x->coaddr == NULL) | |
577 | goto error; | |
578 | } | |
579 | ||
6f26b61e JHS |
580 | xfrm_mark_get(attrs, &x->mark); |
581 | ||
077fbac4 LC |
582 | if (attrs[XFRMA_OUTPUT_MARK]) |
583 | x->props.output_mark = nla_get_u32(attrs[XFRMA_OUTPUT_MARK]); | |
584 | ||
ffdb5211 | 585 | err = __xfrm_init_state(x, false, attrs[XFRMA_OFFLOAD_DEV]); |
1da177e4 LT |
586 | if (err) |
587 | goto error; | |
588 | ||
2f30ea50 MK |
589 | if (attrs[XFRMA_SEC_CTX]) { |
590 | err = security_xfrm_state_alloc(x, | |
591 | nla_data(attrs[XFRMA_SEC_CTX])); | |
592 | if (err) | |
593 | goto error; | |
594 | } | |
df71837d | 595 | |
d8647b79 SK |
596 | if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn, |
597 | attrs[XFRMA_REPLAY_ESN_VAL]))) | |
598 | goto error; | |
599 | ||
1da177e4 | 600 | x->km.seq = p->seq; |
b27aeadb | 601 | x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth; |
d51d081d | 602 | /* sysctl_xfrm_aevent_etime is in 100ms units */ |
b27aeadb | 603 | x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M; |
d51d081d | 604 | |
9fdc4883 SK |
605 | if ((err = xfrm_init_replay(x))) |
606 | goto error; | |
d51d081d | 607 | |
9fdc4883 | 608 | /* override default values from above */ |
e3ac104d | 609 | xfrm_update_ae_params(x, attrs, 0); |
1da177e4 | 610 | |
cc01572e YK |
611 | /* configure the hardware if offload is requested */ |
612 | if (attrs[XFRMA_OFFLOAD_DEV]) { | |
613 | err = xfrm_dev_state_add(net, x, | |
614 | nla_data(attrs[XFRMA_OFFLOAD_DEV])); | |
615 | if (err) | |
616 | goto error; | |
617 | } | |
618 | ||
1da177e4 LT |
619 | return x; |
620 | ||
621 | error: | |
622 | x->km.state = XFRM_STATE_DEAD; | |
623 | xfrm_state_put(x); | |
624 | error_no_put: | |
625 | *errp = err; | |
626 | return NULL; | |
627 | } | |
628 | ||
22e70050 | 629 | static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh, |
5424f32e | 630 | struct nlattr **attrs) |
1da177e4 | 631 | { |
fc34acd3 | 632 | struct net *net = sock_net(skb->sk); |
7b67c857 | 633 | struct xfrm_usersa_info *p = nlmsg_data(nlh); |
1da177e4 LT |
634 | struct xfrm_state *x; |
635 | int err; | |
26b15dad | 636 | struct km_event c; |
1da177e4 | 637 | |
35a7aa08 | 638 | err = verify_newsa_info(p, attrs); |
1da177e4 LT |
639 | if (err) |
640 | return err; | |
641 | ||
fc34acd3 | 642 | x = xfrm_state_construct(net, p, attrs, &err); |
1da177e4 LT |
643 | if (!x) |
644 | return err; | |
645 | ||
26b15dad | 646 | xfrm_state_hold(x); |
1da177e4 LT |
647 | if (nlh->nlmsg_type == XFRM_MSG_NEWSA) |
648 | err = xfrm_state_add(x); | |
649 | else | |
650 | err = xfrm_state_update(x); | |
651 | ||
2e71029e | 652 | xfrm_audit_state_add(x, err ? 0 : 1, true); |
161a09e7 | 653 | |
1da177e4 LT |
654 | if (err < 0) { |
655 | x->km.state = XFRM_STATE_DEAD; | |
c5d4d7d8 | 656 | xfrm_dev_state_delete(x); |
21380b81 | 657 | __xfrm_state_put(x); |
7d6dfe1f | 658 | goto out; |
1da177e4 LT |
659 | } |
660 | ||
cc01572e YK |
661 | if (x->km.state == XFRM_STATE_VOID) |
662 | x->km.state = XFRM_STATE_VALID; | |
663 | ||
26b15dad | 664 | c.seq = nlh->nlmsg_seq; |
15e47304 | 665 | c.portid = nlh->nlmsg_pid; |
f60f6b8f | 666 | c.event = nlh->nlmsg_type; |
26b15dad JHS |
667 | |
668 | km_state_notify(x, &c); | |
7d6dfe1f | 669 | out: |
26b15dad | 670 | xfrm_state_put(x); |
1da177e4 LT |
671 | return err; |
672 | } | |
673 | ||
fc34acd3 AD |
674 | static struct xfrm_state *xfrm_user_state_lookup(struct net *net, |
675 | struct xfrm_usersa_id *p, | |
5424f32e | 676 | struct nlattr **attrs, |
eb2971b6 MN |
677 | int *errp) |
678 | { | |
679 | struct xfrm_state *x = NULL; | |
6f26b61e | 680 | struct xfrm_mark m; |
eb2971b6 | 681 | int err; |
6f26b61e | 682 | u32 mark = xfrm_mark_get(attrs, &m); |
eb2971b6 MN |
683 | |
684 | if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) { | |
685 | err = -ESRCH; | |
6f26b61e | 686 | x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family); |
eb2971b6 MN |
687 | } else { |
688 | xfrm_address_t *saddr = NULL; | |
689 | ||
35a7aa08 | 690 | verify_one_addr(attrs, XFRMA_SRCADDR, &saddr); |
eb2971b6 MN |
691 | if (!saddr) { |
692 | err = -EINVAL; | |
693 | goto out; | |
694 | } | |
695 | ||
9abbffee | 696 | err = -ESRCH; |
6f26b61e JHS |
697 | x = xfrm_state_lookup_byaddr(net, mark, |
698 | &p->daddr, saddr, | |
221df1ed | 699 | p->proto, p->family); |
eb2971b6 MN |
700 | } |
701 | ||
702 | out: | |
703 | if (!x && errp) | |
704 | *errp = err; | |
705 | return x; | |
706 | } | |
707 | ||
22e70050 | 708 | static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh, |
5424f32e | 709 | struct nlattr **attrs) |
1da177e4 | 710 | { |
fc34acd3 | 711 | struct net *net = sock_net(skb->sk); |
1da177e4 | 712 | struct xfrm_state *x; |
eb2971b6 | 713 | int err = -ESRCH; |
26b15dad | 714 | struct km_event c; |
7b67c857 | 715 | struct xfrm_usersa_id *p = nlmsg_data(nlh); |
1da177e4 | 716 | |
fc34acd3 | 717 | x = xfrm_user_state_lookup(net, p, attrs, &err); |
1da177e4 | 718 | if (x == NULL) |
eb2971b6 | 719 | return err; |
1da177e4 | 720 | |
6f68dc37 | 721 | if ((err = security_xfrm_state_delete(x)) != 0) |
c8c05a8e CZ |
722 | goto out; |
723 | ||
1da177e4 | 724 | if (xfrm_state_kern(x)) { |
c8c05a8e CZ |
725 | err = -EPERM; |
726 | goto out; | |
1da177e4 LT |
727 | } |
728 | ||
26b15dad | 729 | err = xfrm_state_delete(x); |
161a09e7 | 730 | |
c8c05a8e CZ |
731 | if (err < 0) |
732 | goto out; | |
26b15dad JHS |
733 | |
734 | c.seq = nlh->nlmsg_seq; | |
15e47304 | 735 | c.portid = nlh->nlmsg_pid; |
f60f6b8f | 736 | c.event = nlh->nlmsg_type; |
26b15dad | 737 | km_state_notify(x, &c); |
1da177e4 | 738 | |
c8c05a8e | 739 | out: |
2e71029e | 740 | xfrm_audit_state_delete(x, err ? 0 : 1, true); |
c8c05a8e | 741 | xfrm_state_put(x); |
26b15dad | 742 | return err; |
1da177e4 LT |
743 | } |
744 | ||
745 | static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p) | |
746 | { | |
f778a636 | 747 | memset(p, 0, sizeof(*p)); |
1da177e4 LT |
748 | memcpy(&p->id, &x->id, sizeof(p->id)); |
749 | memcpy(&p->sel, &x->sel, sizeof(p->sel)); | |
750 | memcpy(&p->lft, &x->lft, sizeof(p->lft)); | |
751 | memcpy(&p->curlft, &x->curlft, sizeof(p->curlft)); | |
e33d4f13 SV |
752 | put_unaligned(x->stats.replay_window, &p->stats.replay_window); |
753 | put_unaligned(x->stats.replay, &p->stats.replay); | |
754 | put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed); | |
54489c14 | 755 | memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr)); |
1da177e4 LT |
756 | p->mode = x->props.mode; |
757 | p->replay_window = x->props.replay_window; | |
758 | p->reqid = x->props.reqid; | |
759 | p->family = x->props.family; | |
760 | p->flags = x->props.flags; | |
761 | p->seq = x->km.seq; | |
762 | } | |
763 | ||
764 | struct xfrm_dump_info { | |
765 | struct sk_buff *in_skb; | |
766 | struct sk_buff *out_skb; | |
767 | u32 nlmsg_seq; | |
768 | u16 nlmsg_flags; | |
1da177e4 LT |
769 | }; |
770 | ||
c0144bea TG |
771 | static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb) |
772 | { | |
c0144bea TG |
773 | struct xfrm_user_sec_ctx *uctx; |
774 | struct nlattr *attr; | |
68325d3b | 775 | int ctx_size = sizeof(*uctx) + s->ctx_len; |
c0144bea TG |
776 | |
777 | attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size); | |
778 | if (attr == NULL) | |
779 | return -EMSGSIZE; | |
780 | ||
781 | uctx = nla_data(attr); | |
782 | uctx->exttype = XFRMA_SEC_CTX; | |
783 | uctx->len = ctx_size; | |
784 | uctx->ctx_doi = s->ctx_doi; | |
785 | uctx->ctx_alg = s->ctx_alg; | |
786 | uctx->ctx_len = s->ctx_len; | |
787 | memcpy(uctx + 1, s->ctx_str, s->ctx_len); | |
788 | ||
789 | return 0; | |
790 | } | |
791 | ||
d77e38e6 SK |
792 | static int copy_user_offload(struct xfrm_state_offload *xso, struct sk_buff *skb) |
793 | { | |
794 | struct xfrm_user_offload *xuo; | |
795 | struct nlattr *attr; | |
796 | ||
797 | attr = nla_reserve(skb, XFRMA_OFFLOAD_DEV, sizeof(*xuo)); | |
798 | if (attr == NULL) | |
799 | return -EMSGSIZE; | |
800 | ||
801 | xuo = nla_data(attr); | |
5fe0d4bd | 802 | memset(xuo, 0, sizeof(*xuo)); |
d77e38e6 SK |
803 | xuo->ifindex = xso->dev->ifindex; |
804 | xuo->flags = xso->flags; | |
805 | ||
806 | return 0; | |
807 | } | |
808 | ||
4447bb33 MW |
809 | static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb) |
810 | { | |
811 | struct xfrm_algo *algo; | |
812 | struct nlattr *nla; | |
813 | ||
814 | nla = nla_reserve(skb, XFRMA_ALG_AUTH, | |
815 | sizeof(*algo) + (auth->alg_key_len + 7) / 8); | |
816 | if (!nla) | |
817 | return -EMSGSIZE; | |
818 | ||
819 | algo = nla_data(nla); | |
4c87308b | 820 | strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name)); |
4447bb33 MW |
821 | memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8); |
822 | algo->alg_key_len = auth->alg_key_len; | |
823 | ||
824 | return 0; | |
825 | } | |
826 | ||
68325d3b HX |
827 | /* Don't change this without updating xfrm_sa_len! */ |
828 | static int copy_to_user_state_extra(struct xfrm_state *x, | |
829 | struct xfrm_usersa_info *p, | |
830 | struct sk_buff *skb) | |
1da177e4 | 831 | { |
1d1e34dd | 832 | int ret = 0; |
d0fde795 | 833 | |
1d1e34dd | 834 | copy_to_user_state(x, p); |
68325d3b | 835 | |
a947b0a9 ND |
836 | if (x->props.extra_flags) { |
837 | ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS, | |
838 | x->props.extra_flags); | |
839 | if (ret) | |
840 | goto out; | |
841 | } | |
842 | ||
1d1e34dd DM |
843 | if (x->coaddr) { |
844 | ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr); | |
845 | if (ret) | |
846 | goto out; | |
847 | } | |
848 | if (x->lastused) { | |
de95c4a4 ND |
849 | ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused, |
850 | XFRMA_PAD); | |
1d1e34dd DM |
851 | if (ret) |
852 | goto out; | |
853 | } | |
854 | if (x->aead) { | |
855 | ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead); | |
856 | if (ret) | |
857 | goto out; | |
858 | } | |
859 | if (x->aalg) { | |
860 | ret = copy_to_user_auth(x->aalg, skb); | |
861 | if (!ret) | |
862 | ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC, | |
863 | xfrm_alg_auth_len(x->aalg), x->aalg); | |
864 | if (ret) | |
865 | goto out; | |
866 | } | |
867 | if (x->ealg) { | |
868 | ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg); | |
869 | if (ret) | |
870 | goto out; | |
871 | } | |
872 | if (x->calg) { | |
873 | ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg); | |
874 | if (ret) | |
875 | goto out; | |
876 | } | |
877 | if (x->encap) { | |
878 | ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap); | |
879 | if (ret) | |
880 | goto out; | |
881 | } | |
882 | if (x->tfcpad) { | |
883 | ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad); | |
884 | if (ret) | |
885 | goto out; | |
886 | } | |
887 | ret = xfrm_mark_put(skb, &x->mark); | |
888 | if (ret) | |
889 | goto out; | |
f293a5e3 | 890 | if (x->replay_esn) |
1d1e34dd DM |
891 | ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL, |
892 | xfrm_replay_state_esn_len(x->replay_esn), | |
893 | x->replay_esn); | |
f293a5e3 | 894 | else |
895 | ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay), | |
896 | &x->replay); | |
897 | if (ret) | |
898 | goto out; | |
d77e38e6 SK |
899 | if(x->xso.dev) |
900 | ret = copy_user_offload(&x->xso, skb); | |
901 | if (ret) | |
902 | goto out; | |
077fbac4 LC |
903 | if (x->props.output_mark) { |
904 | ret = nla_put_u32(skb, XFRMA_OUTPUT_MARK, x->props.output_mark); | |
905 | if (ret) | |
906 | goto out; | |
907 | } | |
8598112d SK |
908 | if (x->security) |
909 | ret = copy_sec_ctx(x->security, skb); | |
1d1e34dd DM |
910 | out: |
911 | return ret; | |
68325d3b HX |
912 | } |
913 | ||
914 | static int dump_one_state(struct xfrm_state *x, int count, void *ptr) | |
915 | { | |
916 | struct xfrm_dump_info *sp = ptr; | |
917 | struct sk_buff *in_skb = sp->in_skb; | |
918 | struct sk_buff *skb = sp->out_skb; | |
919 | struct xfrm_usersa_info *p; | |
920 | struct nlmsghdr *nlh; | |
921 | int err; | |
922 | ||
15e47304 | 923 | nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq, |
68325d3b HX |
924 | XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags); |
925 | if (nlh == NULL) | |
926 | return -EMSGSIZE; | |
927 | ||
928 | p = nlmsg_data(nlh); | |
929 | ||
930 | err = copy_to_user_state_extra(x, p, skb); | |
1d1e34dd DM |
931 | if (err) { |
932 | nlmsg_cancel(skb, nlh); | |
933 | return err; | |
934 | } | |
9825069d | 935 | nlmsg_end(skb, nlh); |
1da177e4 | 936 | return 0; |
1da177e4 LT |
937 | } |
938 | ||
4c563f76 TT |
939 | static int xfrm_dump_sa_done(struct netlink_callback *cb) |
940 | { | |
941 | struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1]; | |
283bc9f3 FD |
942 | struct sock *sk = cb->skb->sk; |
943 | struct net *net = sock_net(sk); | |
944 | ||
1ba5bf99 VN |
945 | if (cb->args[0]) |
946 | xfrm_state_walk_done(walk, net); | |
4c563f76 TT |
947 | return 0; |
948 | } | |
949 | ||
d3623099 | 950 | static const struct nla_policy xfrma_policy[XFRMA_MAX+1]; |
1da177e4 LT |
951 | static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb) |
952 | { | |
fc34acd3 | 953 | struct net *net = sock_net(skb->sk); |
4c563f76 | 954 | struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1]; |
1da177e4 LT |
955 | struct xfrm_dump_info info; |
956 | ||
4c563f76 TT |
957 | BUILD_BUG_ON(sizeof(struct xfrm_state_walk) > |
958 | sizeof(cb->args) - sizeof(cb->args[0])); | |
959 | ||
1da177e4 LT |
960 | info.in_skb = cb->skb; |
961 | info.out_skb = skb; | |
962 | info.nlmsg_seq = cb->nlh->nlmsg_seq; | |
963 | info.nlmsg_flags = NLM_F_MULTI; | |
4c563f76 TT |
964 | |
965 | if (!cb->args[0]) { | |
d3623099 | 966 | struct nlattr *attrs[XFRMA_MAX+1]; |
870a2df4 | 967 | struct xfrm_address_filter *filter = NULL; |
d3623099 ND |
968 | u8 proto = 0; |
969 | int err; | |
970 | ||
fceb6435 JB |
971 | err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX, xfrma_policy, |
972 | NULL); | |
d3623099 ND |
973 | if (err < 0) |
974 | return err; | |
975 | ||
870a2df4 | 976 | if (attrs[XFRMA_ADDRESS_FILTER]) { |
df367561 AH |
977 | filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]), |
978 | sizeof(*filter), GFP_KERNEL); | |
d3623099 ND |
979 | if (filter == NULL) |
980 | return -ENOMEM; | |
d3623099 ND |
981 | } |
982 | ||
983 | if (attrs[XFRMA_PROTO]) | |
984 | proto = nla_get_u8(attrs[XFRMA_PROTO]); | |
985 | ||
986 | xfrm_state_walk_init(walk, proto, filter); | |
1ba5bf99 | 987 | cb->args[0] = 1; |
4c563f76 TT |
988 | } |
989 | ||
fc34acd3 | 990 | (void) xfrm_state_walk(net, walk, dump_one_state, &info); |
1da177e4 LT |
991 | |
992 | return skb->len; | |
993 | } | |
994 | ||
995 | static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb, | |
996 | struct xfrm_state *x, u32 seq) | |
997 | { | |
998 | struct xfrm_dump_info info; | |
999 | struct sk_buff *skb; | |
864745d2 | 1000 | int err; |
1da177e4 | 1001 | |
7deb2264 | 1002 | skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC); |
1da177e4 LT |
1003 | if (!skb) |
1004 | return ERR_PTR(-ENOMEM); | |
1005 | ||
1da177e4 LT |
1006 | info.in_skb = in_skb; |
1007 | info.out_skb = skb; | |
1008 | info.nlmsg_seq = seq; | |
1009 | info.nlmsg_flags = 0; | |
1da177e4 | 1010 | |
864745d2 MK |
1011 | err = dump_one_state(x, 0, &info); |
1012 | if (err) { | |
1da177e4 | 1013 | kfree_skb(skb); |
864745d2 | 1014 | return ERR_PTR(err); |
1da177e4 LT |
1015 | } |
1016 | ||
1017 | return skb; | |
1018 | } | |
1019 | ||
21ee543e MK |
1020 | /* A wrapper for nlmsg_multicast() checking that nlsk is still available. |
1021 | * Must be called with RCU read lock. | |
1022 | */ | |
1023 | static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb, | |
1024 | u32 pid, unsigned int group) | |
1025 | { | |
1026 | struct sock *nlsk = rcu_dereference(net->xfrm.nlsk); | |
1027 | ||
1028 | if (nlsk) | |
1029 | return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC); | |
1030 | else | |
1031 | return -1; | |
1032 | } | |
1033 | ||
a1b831f2 | 1034 | static inline unsigned int xfrm_spdinfo_msgsize(void) |
7deb2264 TG |
1035 | { |
1036 | return NLMSG_ALIGN(4) | |
1037 | + nla_total_size(sizeof(struct xfrmu_spdinfo)) | |
880a6fab CG |
1038 | + nla_total_size(sizeof(struct xfrmu_spdhinfo)) |
1039 | + nla_total_size(sizeof(struct xfrmu_spdhthresh)) | |
1040 | + nla_total_size(sizeof(struct xfrmu_spdhthresh)); | |
7deb2264 TG |
1041 | } |
1042 | ||
e071041b | 1043 | static int build_spdinfo(struct sk_buff *skb, struct net *net, |
15e47304 | 1044 | u32 portid, u32 seq, u32 flags) |
ecfd6b18 | 1045 | { |
5a6d3416 JHS |
1046 | struct xfrmk_spdinfo si; |
1047 | struct xfrmu_spdinfo spc; | |
1048 | struct xfrmu_spdhinfo sph; | |
880a6fab | 1049 | struct xfrmu_spdhthresh spt4, spt6; |
ecfd6b18 | 1050 | struct nlmsghdr *nlh; |
1d1e34dd | 1051 | int err; |
ecfd6b18 | 1052 | u32 *f; |
880a6fab | 1053 | unsigned lseq; |
ecfd6b18 | 1054 | |
15e47304 | 1055 | nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0); |
25985edc | 1056 | if (nlh == NULL) /* shouldn't really happen ... */ |
ecfd6b18 JHS |
1057 | return -EMSGSIZE; |
1058 | ||
1059 | f = nlmsg_data(nlh); | |
1060 | *f = flags; | |
e071041b | 1061 | xfrm_spd_getinfo(net, &si); |
5a6d3416 JHS |
1062 | spc.incnt = si.incnt; |
1063 | spc.outcnt = si.outcnt; | |
1064 | spc.fwdcnt = si.fwdcnt; | |
1065 | spc.inscnt = si.inscnt; | |
1066 | spc.outscnt = si.outscnt; | |
1067 | spc.fwdscnt = si.fwdscnt; | |
1068 | sph.spdhcnt = si.spdhcnt; | |
1069 | sph.spdhmcnt = si.spdhmcnt; | |
1070 | ||
880a6fab CG |
1071 | do { |
1072 | lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock); | |
1073 | ||
1074 | spt4.lbits = net->xfrm.policy_hthresh.lbits4; | |
1075 | spt4.rbits = net->xfrm.policy_hthresh.rbits4; | |
1076 | spt6.lbits = net->xfrm.policy_hthresh.lbits6; | |
1077 | spt6.rbits = net->xfrm.policy_hthresh.rbits6; | |
1078 | } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq)); | |
1079 | ||
1d1e34dd DM |
1080 | err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc); |
1081 | if (!err) | |
1082 | err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph); | |
880a6fab CG |
1083 | if (!err) |
1084 | err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4); | |
1085 | if (!err) | |
1086 | err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6); | |
1d1e34dd DM |
1087 | if (err) { |
1088 | nlmsg_cancel(skb, nlh); | |
1089 | return err; | |
1090 | } | |
ecfd6b18 | 1091 | |
053c095a JB |
1092 | nlmsg_end(skb, nlh); |
1093 | return 0; | |
ecfd6b18 JHS |
1094 | } |
1095 | ||
880a6fab CG |
1096 | static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh, |
1097 | struct nlattr **attrs) | |
1098 | { | |
1099 | struct net *net = sock_net(skb->sk); | |
1100 | struct xfrmu_spdhthresh *thresh4 = NULL; | |
1101 | struct xfrmu_spdhthresh *thresh6 = NULL; | |
1102 | ||
1103 | /* selector prefixlen thresholds to hash policies */ | |
1104 | if (attrs[XFRMA_SPD_IPV4_HTHRESH]) { | |
1105 | struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH]; | |
1106 | ||
1107 | if (nla_len(rta) < sizeof(*thresh4)) | |
1108 | return -EINVAL; | |
1109 | thresh4 = nla_data(rta); | |
1110 | if (thresh4->lbits > 32 || thresh4->rbits > 32) | |
1111 | return -EINVAL; | |
1112 | } | |
1113 | if (attrs[XFRMA_SPD_IPV6_HTHRESH]) { | |
1114 | struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH]; | |
1115 | ||
1116 | if (nla_len(rta) < sizeof(*thresh6)) | |
1117 | return -EINVAL; | |
1118 | thresh6 = nla_data(rta); | |
1119 | if (thresh6->lbits > 128 || thresh6->rbits > 128) | |
1120 | return -EINVAL; | |
1121 | } | |
1122 | ||
1123 | if (thresh4 || thresh6) { | |
1124 | write_seqlock(&net->xfrm.policy_hthresh.lock); | |
1125 | if (thresh4) { | |
1126 | net->xfrm.policy_hthresh.lbits4 = thresh4->lbits; | |
1127 | net->xfrm.policy_hthresh.rbits4 = thresh4->rbits; | |
1128 | } | |
1129 | if (thresh6) { | |
1130 | net->xfrm.policy_hthresh.lbits6 = thresh6->lbits; | |
1131 | net->xfrm.policy_hthresh.rbits6 = thresh6->rbits; | |
1132 | } | |
1133 | write_sequnlock(&net->xfrm.policy_hthresh.lock); | |
1134 | ||
1135 | xfrm_policy_hash_rebuild(net); | |
1136 | } | |
1137 | ||
1138 | return 0; | |
1139 | } | |
1140 | ||
ecfd6b18 | 1141 | static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh, |
5424f32e | 1142 | struct nlattr **attrs) |
ecfd6b18 | 1143 | { |
a6483b79 | 1144 | struct net *net = sock_net(skb->sk); |
ecfd6b18 | 1145 | struct sk_buff *r_skb; |
7b67c857 | 1146 | u32 *flags = nlmsg_data(nlh); |
15e47304 | 1147 | u32 sportid = NETLINK_CB(skb).portid; |
ecfd6b18 | 1148 | u32 seq = nlh->nlmsg_seq; |
2fc5f83b | 1149 | int err; |
ecfd6b18 | 1150 | |
7deb2264 | 1151 | r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC); |
ecfd6b18 JHS |
1152 | if (r_skb == NULL) |
1153 | return -ENOMEM; | |
1154 | ||
2fc5f83b GS |
1155 | err = build_spdinfo(r_skb, net, sportid, seq, *flags); |
1156 | BUG_ON(err < 0); | |
ecfd6b18 | 1157 | |
15e47304 | 1158 | return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid); |
ecfd6b18 JHS |
1159 | } |
1160 | ||
a1b831f2 | 1161 | static inline unsigned int xfrm_sadinfo_msgsize(void) |
7deb2264 TG |
1162 | { |
1163 | return NLMSG_ALIGN(4) | |
1164 | + nla_total_size(sizeof(struct xfrmu_sadhinfo)) | |
1165 | + nla_total_size(4); /* XFRMA_SAD_CNT */ | |
1166 | } | |
1167 | ||
e071041b | 1168 | static int build_sadinfo(struct sk_buff *skb, struct net *net, |
15e47304 | 1169 | u32 portid, u32 seq, u32 flags) |
28d8909b | 1170 | { |
af11e316 JHS |
1171 | struct xfrmk_sadinfo si; |
1172 | struct xfrmu_sadhinfo sh; | |
28d8909b | 1173 | struct nlmsghdr *nlh; |
1d1e34dd | 1174 | int err; |
28d8909b JHS |
1175 | u32 *f; |
1176 | ||
15e47304 | 1177 | nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0); |
25985edc | 1178 | if (nlh == NULL) /* shouldn't really happen ... */ |
28d8909b JHS |
1179 | return -EMSGSIZE; |
1180 | ||
1181 | f = nlmsg_data(nlh); | |
1182 | *f = flags; | |
e071041b | 1183 | xfrm_sad_getinfo(net, &si); |
28d8909b | 1184 | |
af11e316 JHS |
1185 | sh.sadhmcnt = si.sadhmcnt; |
1186 | sh.sadhcnt = si.sadhcnt; | |
1187 | ||
1d1e34dd DM |
1188 | err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt); |
1189 | if (!err) | |
1190 | err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh); | |
1191 | if (err) { | |
1192 | nlmsg_cancel(skb, nlh); | |
1193 | return err; | |
1194 | } | |
28d8909b | 1195 | |
053c095a JB |
1196 | nlmsg_end(skb, nlh); |
1197 | return 0; | |
28d8909b JHS |
1198 | } |
1199 | ||
1200 | static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh, | |
5424f32e | 1201 | struct nlattr **attrs) |
28d8909b | 1202 | { |
a6483b79 | 1203 | struct net *net = sock_net(skb->sk); |
28d8909b | 1204 | struct sk_buff *r_skb; |
7b67c857 | 1205 | u32 *flags = nlmsg_data(nlh); |
15e47304 | 1206 | u32 sportid = NETLINK_CB(skb).portid; |
28d8909b | 1207 | u32 seq = nlh->nlmsg_seq; |
2fc5f83b | 1208 | int err; |
28d8909b | 1209 | |
7deb2264 | 1210 | r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC); |
28d8909b JHS |
1211 | if (r_skb == NULL) |
1212 | return -ENOMEM; | |
1213 | ||
2fc5f83b GS |
1214 | err = build_sadinfo(r_skb, net, sportid, seq, *flags); |
1215 | BUG_ON(err < 0); | |
28d8909b | 1216 | |
15e47304 | 1217 | return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid); |
28d8909b JHS |
1218 | } |
1219 | ||
22e70050 | 1220 | static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh, |
5424f32e | 1221 | struct nlattr **attrs) |
1da177e4 | 1222 | { |
fc34acd3 | 1223 | struct net *net = sock_net(skb->sk); |
7b67c857 | 1224 | struct xfrm_usersa_id *p = nlmsg_data(nlh); |
1da177e4 LT |
1225 | struct xfrm_state *x; |
1226 | struct sk_buff *resp_skb; | |
eb2971b6 | 1227 | int err = -ESRCH; |
1da177e4 | 1228 | |
fc34acd3 | 1229 | x = xfrm_user_state_lookup(net, p, attrs, &err); |
1da177e4 LT |
1230 | if (x == NULL) |
1231 | goto out_noput; | |
1232 | ||
1233 | resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq); | |
1234 | if (IS_ERR(resp_skb)) { | |
1235 | err = PTR_ERR(resp_skb); | |
1236 | } else { | |
15e47304 | 1237 | err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid); |
1da177e4 LT |
1238 | } |
1239 | xfrm_state_put(x); | |
1240 | out_noput: | |
1241 | return err; | |
1242 | } | |
1243 | ||
22e70050 | 1244 | static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh, |
5424f32e | 1245 | struct nlattr **attrs) |
1da177e4 | 1246 | { |
fc34acd3 | 1247 | struct net *net = sock_net(skb->sk); |
1da177e4 LT |
1248 | struct xfrm_state *x; |
1249 | struct xfrm_userspi_info *p; | |
1250 | struct sk_buff *resp_skb; | |
1251 | xfrm_address_t *daddr; | |
1252 | int family; | |
1253 | int err; | |
6f26b61e JHS |
1254 | u32 mark; |
1255 | struct xfrm_mark m; | |
1da177e4 | 1256 | |
7b67c857 | 1257 | p = nlmsg_data(nlh); |
776e9dd9 | 1258 | err = verify_spi_info(p->info.id.proto, p->min, p->max); |
1da177e4 LT |
1259 | if (err) |
1260 | goto out_noput; | |
1261 | ||
1262 | family = p->info.family; | |
1263 | daddr = &p->info.id.daddr; | |
1264 | ||
1265 | x = NULL; | |
6f26b61e JHS |
1266 | |
1267 | mark = xfrm_mark_get(attrs, &m); | |
1da177e4 | 1268 | if (p->info.seq) { |
6f26b61e | 1269 | x = xfrm_find_acq_byseq(net, mark, p->info.seq); |
70e94e66 | 1270 | if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) { |
1da177e4 LT |
1271 | xfrm_state_put(x); |
1272 | x = NULL; | |
1273 | } | |
1274 | } | |
1275 | ||
1276 | if (!x) | |
6f26b61e | 1277 | x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid, |
1da177e4 LT |
1278 | p->info.id.proto, daddr, |
1279 | &p->info.saddr, 1, | |
1280 | family); | |
1281 | err = -ENOENT; | |
1282 | if (x == NULL) | |
1283 | goto out_noput; | |
1284 | ||
658b219e HX |
1285 | err = xfrm_alloc_spi(x, p->min, p->max); |
1286 | if (err) | |
1287 | goto out; | |
1da177e4 | 1288 | |
658b219e | 1289 | resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq); |
1da177e4 LT |
1290 | if (IS_ERR(resp_skb)) { |
1291 | err = PTR_ERR(resp_skb); | |
1292 | goto out; | |
1293 | } | |
1294 | ||
15e47304 | 1295 | err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid); |
1da177e4 LT |
1296 | |
1297 | out: | |
1298 | xfrm_state_put(x); | |
1299 | out_noput: | |
1300 | return err; | |
1301 | } | |
1302 | ||
b798a9ed | 1303 | static int verify_policy_dir(u8 dir) |
1da177e4 LT |
1304 | { |
1305 | switch (dir) { | |
1306 | case XFRM_POLICY_IN: | |
1307 | case XFRM_POLICY_OUT: | |
1308 | case XFRM_POLICY_FWD: | |
1309 | break; | |
1310 | ||
1311 | default: | |
1312 | return -EINVAL; | |
3ff50b79 | 1313 | } |
1da177e4 LT |
1314 | |
1315 | return 0; | |
1316 | } | |
1317 | ||
b798a9ed | 1318 | static int verify_policy_type(u8 type) |
f7b6983f MN |
1319 | { |
1320 | switch (type) { | |
1321 | case XFRM_POLICY_TYPE_MAIN: | |
1322 | #ifdef CONFIG_XFRM_SUB_POLICY | |
1323 | case XFRM_POLICY_TYPE_SUB: | |
1324 | #endif | |
1325 | break; | |
1326 | ||
1327 | default: | |
1328 | return -EINVAL; | |
3ff50b79 | 1329 | } |
f7b6983f MN |
1330 | |
1331 | return 0; | |
1332 | } | |
1333 | ||
1da177e4 LT |
1334 | static int verify_newpolicy_info(struct xfrm_userpolicy_info *p) |
1335 | { | |
e682adf0 FD |
1336 | int ret; |
1337 | ||
1da177e4 LT |
1338 | switch (p->share) { |
1339 | case XFRM_SHARE_ANY: | |
1340 | case XFRM_SHARE_SESSION: | |
1341 | case XFRM_SHARE_USER: | |
1342 | case XFRM_SHARE_UNIQUE: | |
1343 | break; | |
1344 | ||
1345 | default: | |
1346 | return -EINVAL; | |
3ff50b79 | 1347 | } |
1da177e4 LT |
1348 | |
1349 | switch (p->action) { | |
1350 | case XFRM_POLICY_ALLOW: | |
1351 | case XFRM_POLICY_BLOCK: | |
1352 | break; | |
1353 | ||
1354 | default: | |
1355 | return -EINVAL; | |
3ff50b79 | 1356 | } |
1da177e4 LT |
1357 | |
1358 | switch (p->sel.family) { | |
1359 | case AF_INET: | |
1360 | break; | |
1361 | ||
1362 | case AF_INET6: | |
dfd56b8b | 1363 | #if IS_ENABLED(CONFIG_IPV6) |
1da177e4 LT |
1364 | break; |
1365 | #else | |
1366 | return -EAFNOSUPPORT; | |
1367 | #endif | |
1368 | ||
1369 | default: | |
1370 | return -EINVAL; | |
3ff50b79 | 1371 | } |
1da177e4 | 1372 | |
e682adf0 FD |
1373 | ret = verify_policy_dir(p->dir); |
1374 | if (ret) | |
1375 | return ret; | |
1376 | if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir)) | |
1377 | return -EINVAL; | |
1378 | ||
1379 | return 0; | |
1da177e4 LT |
1380 | } |
1381 | ||
5424f32e | 1382 | static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs) |
df71837d | 1383 | { |
5424f32e | 1384 | struct nlattr *rt = attrs[XFRMA_SEC_CTX]; |
df71837d TJ |
1385 | struct xfrm_user_sec_ctx *uctx; |
1386 | ||
1387 | if (!rt) | |
1388 | return 0; | |
1389 | ||
5424f32e | 1390 | uctx = nla_data(rt); |
52a4c640 | 1391 | return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL); |
df71837d TJ |
1392 | } |
1393 | ||
1da177e4 LT |
1394 | static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut, |
1395 | int nr) | |
1396 | { | |
1397 | int i; | |
1398 | ||
1399 | xp->xfrm_nr = nr; | |
1400 | for (i = 0; i < nr; i++, ut++) { | |
1401 | struct xfrm_tmpl *t = &xp->xfrm_vec[i]; | |
1402 | ||
1403 | memcpy(&t->id, &ut->id, sizeof(struct xfrm_id)); | |
1404 | memcpy(&t->saddr, &ut->saddr, | |
1405 | sizeof(xfrm_address_t)); | |
1406 | t->reqid = ut->reqid; | |
1407 | t->mode = ut->mode; | |
1408 | t->share = ut->share; | |
1409 | t->optional = ut->optional; | |
1410 | t->aalgos = ut->aalgos; | |
1411 | t->ealgos = ut->ealgos; | |
1412 | t->calgos = ut->calgos; | |
c5d18e98 HX |
1413 | /* If all masks are ~0, then we allow all algorithms. */ |
1414 | t->allalgs = !~(t->aalgos & t->ealgos & t->calgos); | |
8511d01d | 1415 | t->encap_family = ut->family; |
1da177e4 LT |
1416 | } |
1417 | } | |
1418 | ||
b4ad86bf DM |
1419 | static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family) |
1420 | { | |
732706af | 1421 | u16 prev_family; |
b4ad86bf DM |
1422 | int i; |
1423 | ||
1424 | if (nr > XFRM_MAX_DEPTH) | |
1425 | return -EINVAL; | |
1426 | ||
732706af SK |
1427 | prev_family = family; |
1428 | ||
b4ad86bf DM |
1429 | for (i = 0; i < nr; i++) { |
1430 | /* We never validated the ut->family value, so many | |
1431 | * applications simply leave it at zero. The check was | |
1432 | * never made and ut->family was ignored because all | |
1433 | * templates could be assumed to have the same family as | |
1434 | * the policy itself. Now that we will have ipv4-in-ipv6 | |
1435 | * and ipv6-in-ipv4 tunnels, this is no longer true. | |
1436 | */ | |
1437 | if (!ut[i].family) | |
1438 | ut[i].family = family; | |
1439 | ||
732706af SK |
1440 | if ((ut[i].mode == XFRM_MODE_TRANSPORT) && |
1441 | (ut[i].family != prev_family)) | |
1442 | return -EINVAL; | |
1443 | ||
1444 | prev_family = ut[i].family; | |
1445 | ||
b4ad86bf DM |
1446 | switch (ut[i].family) { |
1447 | case AF_INET: | |
1448 | break; | |
dfd56b8b | 1449 | #if IS_ENABLED(CONFIG_IPV6) |
b4ad86bf DM |
1450 | case AF_INET6: |
1451 | break; | |
1452 | #endif | |
1453 | default: | |
1454 | return -EINVAL; | |
3ff50b79 | 1455 | } |
6a53b759 CW |
1456 | |
1457 | switch (ut[i].id.proto) { | |
1458 | case IPPROTO_AH: | |
1459 | case IPPROTO_ESP: | |
1460 | case IPPROTO_COMP: | |
1461 | #if IS_ENABLED(CONFIG_IPV6) | |
1462 | case IPPROTO_ROUTING: | |
1463 | case IPPROTO_DSTOPTS: | |
1464 | #endif | |
1465 | case IPSEC_PROTO_ANY: | |
1466 | break; | |
1467 | default: | |
1468 | return -EINVAL; | |
1469 | } | |
1470 | ||
b4ad86bf DM |
1471 | } |
1472 | ||
1473 | return 0; | |
1474 | } | |
1475 | ||
5424f32e | 1476 | static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs) |
1da177e4 | 1477 | { |
5424f32e | 1478 | struct nlattr *rt = attrs[XFRMA_TMPL]; |
1da177e4 LT |
1479 | |
1480 | if (!rt) { | |
1481 | pol->xfrm_nr = 0; | |
1482 | } else { | |
5424f32e TG |
1483 | struct xfrm_user_tmpl *utmpl = nla_data(rt); |
1484 | int nr = nla_len(rt) / sizeof(*utmpl); | |
b4ad86bf | 1485 | int err; |
1da177e4 | 1486 | |
b4ad86bf DM |
1487 | err = validate_tmpl(nr, utmpl, pol->family); |
1488 | if (err) | |
1489 | return err; | |
1da177e4 | 1490 | |
5424f32e | 1491 | copy_templates(pol, utmpl, nr); |
1da177e4 LT |
1492 | } |
1493 | return 0; | |
1494 | } | |
1495 | ||
5424f32e | 1496 | static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs) |
f7b6983f | 1497 | { |
5424f32e | 1498 | struct nlattr *rt = attrs[XFRMA_POLICY_TYPE]; |
f7b6983f | 1499 | struct xfrm_userpolicy_type *upt; |
b798a9ed | 1500 | u8 type = XFRM_POLICY_TYPE_MAIN; |
f7b6983f MN |
1501 | int err; |
1502 | ||
1503 | if (rt) { | |
5424f32e | 1504 | upt = nla_data(rt); |
f7b6983f MN |
1505 | type = upt->type; |
1506 | } | |
1507 | ||
1508 | err = verify_policy_type(type); | |
1509 | if (err) | |
1510 | return err; | |
1511 | ||
1512 | *tp = type; | |
1513 | return 0; | |
1514 | } | |
1515 | ||
1da177e4 LT |
1516 | static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p) |
1517 | { | |
1518 | xp->priority = p->priority; | |
1519 | xp->index = p->index; | |
1520 | memcpy(&xp->selector, &p->sel, sizeof(xp->selector)); | |
1521 | memcpy(&xp->lft, &p->lft, sizeof(xp->lft)); | |
1522 | xp->action = p->action; | |
1523 | xp->flags = p->flags; | |
1524 | xp->family = p->sel.family; | |
1525 | /* XXX xp->share = p->share; */ | |
1526 | } | |
1527 | ||
1528 | static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir) | |
1529 | { | |
7b789836 | 1530 | memset(p, 0, sizeof(*p)); |
1da177e4 LT |
1531 | memcpy(&p->sel, &xp->selector, sizeof(p->sel)); |
1532 | memcpy(&p->lft, &xp->lft, sizeof(p->lft)); | |
1533 | memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft)); | |
1534 | p->priority = xp->priority; | |
1535 | p->index = xp->index; | |
1536 | p->sel.family = xp->family; | |
1537 | p->dir = dir; | |
1538 | p->action = xp->action; | |
1539 | p->flags = xp->flags; | |
1540 | p->share = XFRM_SHARE_ANY; /* XXX xp->share */ | |
1541 | } | |
1542 | ||
fc34acd3 | 1543 | static struct xfrm_policy *xfrm_policy_construct(struct net *net, struct xfrm_userpolicy_info *p, struct nlattr **attrs, int *errp) |
1da177e4 | 1544 | { |
fc34acd3 | 1545 | struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL); |
1da177e4 LT |
1546 | int err; |
1547 | ||
1548 | if (!xp) { | |
1549 | *errp = -ENOMEM; | |
1550 | return NULL; | |
1551 | } | |
1552 | ||
1553 | copy_from_user_policy(xp, p); | |
df71837d | 1554 | |
35a7aa08 | 1555 | err = copy_from_user_policy_type(&xp->type, attrs); |
f7b6983f MN |
1556 | if (err) |
1557 | goto error; | |
1558 | ||
35a7aa08 TG |
1559 | if (!(err = copy_from_user_tmpl(xp, attrs))) |
1560 | err = copy_from_user_sec_ctx(xp, attrs); | |
f7b6983f MN |
1561 | if (err) |
1562 | goto error; | |
1da177e4 | 1563 | |
295fae56 JHS |
1564 | xfrm_mark_get(attrs, &xp->mark); |
1565 | ||
1da177e4 | 1566 | return xp; |
f7b6983f MN |
1567 | error: |
1568 | *errp = err; | |
12a169e7 | 1569 | xp->walk.dead = 1; |
64c31b3f | 1570 | xfrm_policy_destroy(xp); |
f7b6983f | 1571 | return NULL; |
1da177e4 LT |
1572 | } |
1573 | ||
22e70050 | 1574 | static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh, |
5424f32e | 1575 | struct nlattr **attrs) |
1da177e4 | 1576 | { |
fc34acd3 | 1577 | struct net *net = sock_net(skb->sk); |
7b67c857 | 1578 | struct xfrm_userpolicy_info *p = nlmsg_data(nlh); |
1da177e4 | 1579 | struct xfrm_policy *xp; |
26b15dad | 1580 | struct km_event c; |
1da177e4 LT |
1581 | int err; |
1582 | int excl; | |
1583 | ||
1584 | err = verify_newpolicy_info(p); | |
df71837d TJ |
1585 | if (err) |
1586 | return err; | |
35a7aa08 | 1587 | err = verify_sec_ctx_len(attrs); |
1da177e4 LT |
1588 | if (err) |
1589 | return err; | |
1590 | ||
fc34acd3 | 1591 | xp = xfrm_policy_construct(net, p, attrs, &err); |
1da177e4 LT |
1592 | if (!xp) |
1593 | return err; | |
1594 | ||
25985edc | 1595 | /* shouldn't excl be based on nlh flags?? |
26b15dad JHS |
1596 | * Aha! this is anti-netlink really i.e more pfkey derived |
1597 | * in netlink excl is a flag and you wouldnt need | |
1598 | * a type XFRM_MSG_UPDPOLICY - JHS */ | |
1da177e4 LT |
1599 | excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY; |
1600 | err = xfrm_policy_insert(p->dir, xp, excl); | |
2e71029e | 1601 | xfrm_audit_policy_add(xp, err ? 0 : 1, true); |
161a09e7 | 1602 | |
1da177e4 | 1603 | if (err) { |
03e1ad7b | 1604 | security_xfrm_policy_free(xp->security); |
1da177e4 LT |
1605 | kfree(xp); |
1606 | return err; | |
1607 | } | |
1608 | ||
f60f6b8f | 1609 | c.event = nlh->nlmsg_type; |
26b15dad | 1610 | c.seq = nlh->nlmsg_seq; |
15e47304 | 1611 | c.portid = nlh->nlmsg_pid; |
26b15dad JHS |
1612 | km_policy_notify(xp, p->dir, &c); |
1613 | ||
1da177e4 LT |
1614 | xfrm_pol_put(xp); |
1615 | ||
1616 | return 0; | |
1617 | } | |
1618 | ||
1619 | static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb) | |
1620 | { | |
1621 | struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH]; | |
1622 | int i; | |
1623 | ||
1624 | if (xp->xfrm_nr == 0) | |
1625 | return 0; | |
1626 | ||
1627 | for (i = 0; i < xp->xfrm_nr; i++) { | |
1628 | struct xfrm_user_tmpl *up = &vec[i]; | |
1629 | struct xfrm_tmpl *kp = &xp->xfrm_vec[i]; | |
1630 | ||
1f86840f | 1631 | memset(up, 0, sizeof(*up)); |
1da177e4 | 1632 | memcpy(&up->id, &kp->id, sizeof(up->id)); |
8511d01d | 1633 | up->family = kp->encap_family; |
1da177e4 LT |
1634 | memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr)); |
1635 | up->reqid = kp->reqid; | |
1636 | up->mode = kp->mode; | |
1637 | up->share = kp->share; | |
1638 | up->optional = kp->optional; | |
1639 | up->aalgos = kp->aalgos; | |
1640 | up->ealgos = kp->ealgos; | |
1641 | up->calgos = kp->calgos; | |
1642 | } | |
df71837d | 1643 | |
c0144bea TG |
1644 | return nla_put(skb, XFRMA_TMPL, |
1645 | sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec); | |
0d681623 SH |
1646 | } |
1647 | ||
1648 | static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb) | |
1649 | { | |
1650 | if (x->security) { | |
1651 | return copy_sec_ctx(x->security, skb); | |
df71837d TJ |
1652 | } |
1653 | return 0; | |
0d681623 | 1654 | } |
df71837d | 1655 | |
0d681623 SH |
1656 | static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb) |
1657 | { | |
1d1e34dd | 1658 | if (xp->security) |
0d681623 | 1659 | return copy_sec_ctx(xp->security, skb); |
0d681623 | 1660 | return 0; |
df71837d | 1661 | } |
a1b831f2 | 1662 | static inline unsigned int userpolicy_type_attrsize(void) |
cfbfd45a TG |
1663 | { |
1664 | #ifdef CONFIG_XFRM_SUB_POLICY | |
1665 | return nla_total_size(sizeof(struct xfrm_userpolicy_type)); | |
1666 | #else | |
1667 | return 0; | |
1668 | #endif | |
1669 | } | |
df71837d | 1670 | |
f7b6983f | 1671 | #ifdef CONFIG_XFRM_SUB_POLICY |
b798a9ed | 1672 | static int copy_to_user_policy_type(u8 type, struct sk_buff *skb) |
f7b6983f | 1673 | { |
c0144bea TG |
1674 | struct xfrm_userpolicy_type upt = { |
1675 | .type = type, | |
1676 | }; | |
f7b6983f | 1677 | |
c0144bea | 1678 | return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt); |
f7b6983f MN |
1679 | } |
1680 | ||
1681 | #else | |
b798a9ed | 1682 | static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb) |
f7b6983f MN |
1683 | { |
1684 | return 0; | |
1685 | } | |
1686 | #endif | |
1687 | ||
1da177e4 LT |
1688 | static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr) |
1689 | { | |
1690 | struct xfrm_dump_info *sp = ptr; | |
1691 | struct xfrm_userpolicy_info *p; | |
1692 | struct sk_buff *in_skb = sp->in_skb; | |
1693 | struct sk_buff *skb = sp->out_skb; | |
1694 | struct nlmsghdr *nlh; | |
1d1e34dd | 1695 | int err; |
1da177e4 | 1696 | |
15e47304 | 1697 | nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq, |
79b8b7f4 TG |
1698 | XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags); |
1699 | if (nlh == NULL) | |
1700 | return -EMSGSIZE; | |
1da177e4 | 1701 | |
7b67c857 | 1702 | p = nlmsg_data(nlh); |
1da177e4 | 1703 | copy_to_user_policy(xp, p, dir); |
1d1e34dd DM |
1704 | err = copy_to_user_tmpl(xp, skb); |
1705 | if (!err) | |
1706 | err = copy_to_user_sec_ctx(xp, skb); | |
1707 | if (!err) | |
1708 | err = copy_to_user_policy_type(xp->type, skb); | |
1709 | if (!err) | |
1710 | err = xfrm_mark_put(skb, &xp->mark); | |
1711 | if (err) { | |
1712 | nlmsg_cancel(skb, nlh); | |
1713 | return err; | |
1714 | } | |
9825069d | 1715 | nlmsg_end(skb, nlh); |
1da177e4 | 1716 | return 0; |
1da177e4 LT |
1717 | } |
1718 | ||
4c563f76 TT |
1719 | static int xfrm_dump_policy_done(struct netlink_callback *cb) |
1720 | { | |
1137b5e2 | 1721 | struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args; |
283bc9f3 | 1722 | struct net *net = sock_net(cb->skb->sk); |
4c563f76 | 1723 | |
283bc9f3 | 1724 | xfrm_policy_walk_done(walk, net); |
4c563f76 TT |
1725 | return 0; |
1726 | } | |
1727 | ||
1137b5e2 HX |
1728 | static int xfrm_dump_policy_start(struct netlink_callback *cb) |
1729 | { | |
1730 | struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args; | |
1731 | ||
1732 | BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args)); | |
1733 | ||
1734 | xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY); | |
1735 | return 0; | |
1736 | } | |
1737 | ||
1da177e4 LT |
1738 | static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb) |
1739 | { | |
fc34acd3 | 1740 | struct net *net = sock_net(skb->sk); |
1137b5e2 | 1741 | struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args; |
1da177e4 LT |
1742 | struct xfrm_dump_info info; |
1743 | ||
1744 | info.in_skb = cb->skb; | |
1745 | info.out_skb = skb; | |
1746 | info.nlmsg_seq = cb->nlh->nlmsg_seq; | |
1747 | info.nlmsg_flags = NLM_F_MULTI; | |
4c563f76 | 1748 | |
fc34acd3 | 1749 | (void) xfrm_policy_walk(net, walk, dump_one_policy, &info); |
1da177e4 LT |
1750 | |
1751 | return skb->len; | |
1752 | } | |
1753 | ||
1754 | static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb, | |
1755 | struct xfrm_policy *xp, | |
1756 | int dir, u32 seq) | |
1757 | { | |
1758 | struct xfrm_dump_info info; | |
1759 | struct sk_buff *skb; | |
c2546372 | 1760 | int err; |
1da177e4 | 1761 | |
7deb2264 | 1762 | skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); |
1da177e4 LT |
1763 | if (!skb) |
1764 | return ERR_PTR(-ENOMEM); | |
1765 | ||
1da177e4 LT |
1766 | info.in_skb = in_skb; |
1767 | info.out_skb = skb; | |
1768 | info.nlmsg_seq = seq; | |
1769 | info.nlmsg_flags = 0; | |
1da177e4 | 1770 | |
c2546372 MK |
1771 | err = dump_one_policy(xp, dir, 0, &info); |
1772 | if (err) { | |
1da177e4 | 1773 | kfree_skb(skb); |
c2546372 | 1774 | return ERR_PTR(err); |
1da177e4 LT |
1775 | } |
1776 | ||
1777 | return skb; | |
1778 | } | |
1779 | ||
22e70050 | 1780 | static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh, |
5424f32e | 1781 | struct nlattr **attrs) |
1da177e4 | 1782 | { |
fc34acd3 | 1783 | struct net *net = sock_net(skb->sk); |
1da177e4 LT |
1784 | struct xfrm_policy *xp; |
1785 | struct xfrm_userpolicy_id *p; | |
b798a9ed | 1786 | u8 type = XFRM_POLICY_TYPE_MAIN; |
1da177e4 | 1787 | int err; |
26b15dad | 1788 | struct km_event c; |
1da177e4 | 1789 | int delete; |
295fae56 JHS |
1790 | struct xfrm_mark m; |
1791 | u32 mark = xfrm_mark_get(attrs, &m); | |
1da177e4 | 1792 | |
7b67c857 | 1793 | p = nlmsg_data(nlh); |
1da177e4 LT |
1794 | delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY; |
1795 | ||
35a7aa08 | 1796 | err = copy_from_user_policy_type(&type, attrs); |
f7b6983f MN |
1797 | if (err) |
1798 | return err; | |
1799 | ||
1da177e4 LT |
1800 | err = verify_policy_dir(p->dir); |
1801 | if (err) | |
1802 | return err; | |
1803 | ||
1804 | if (p->index) | |
295fae56 | 1805 | xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err); |
df71837d | 1806 | else { |
5424f32e | 1807 | struct nlattr *rt = attrs[XFRMA_SEC_CTX]; |
03e1ad7b | 1808 | struct xfrm_sec_ctx *ctx; |
df71837d | 1809 | |
35a7aa08 | 1810 | err = verify_sec_ctx_len(attrs); |
df71837d TJ |
1811 | if (err) |
1812 | return err; | |
1813 | ||
2c8dd116 | 1814 | ctx = NULL; |
df71837d | 1815 | if (rt) { |
5424f32e | 1816 | struct xfrm_user_sec_ctx *uctx = nla_data(rt); |
df71837d | 1817 | |
52a4c640 | 1818 | err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL); |
03e1ad7b | 1819 | if (err) |
df71837d | 1820 | return err; |
2c8dd116 | 1821 | } |
295fae56 | 1822 | xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel, |
6f26b61e | 1823 | ctx, delete, &err); |
03e1ad7b | 1824 | security_xfrm_policy_free(ctx); |
df71837d | 1825 | } |
1da177e4 LT |
1826 | if (xp == NULL) |
1827 | return -ENOENT; | |
1828 | ||
1829 | if (!delete) { | |
1830 | struct sk_buff *resp_skb; | |
1831 | ||
1832 | resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq); | |
1833 | if (IS_ERR(resp_skb)) { | |
1834 | err = PTR_ERR(resp_skb); | |
1835 | } else { | |
a6483b79 | 1836 | err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, |
15e47304 | 1837 | NETLINK_CB(skb).portid); |
1da177e4 | 1838 | } |
26b15dad | 1839 | } else { |
2e71029e | 1840 | xfrm_audit_policy_delete(xp, err ? 0 : 1, true); |
13fcfbb0 DM |
1841 | |
1842 | if (err != 0) | |
c8c05a8e | 1843 | goto out; |
13fcfbb0 | 1844 | |
e7443892 | 1845 | c.data.byid = p->index; |
f60f6b8f | 1846 | c.event = nlh->nlmsg_type; |
26b15dad | 1847 | c.seq = nlh->nlmsg_seq; |
15e47304 | 1848 | c.portid = nlh->nlmsg_pid; |
26b15dad | 1849 | km_policy_notify(xp, p->dir, &c); |
1da177e4 LT |
1850 | } |
1851 | ||
c8c05a8e | 1852 | out: |
ef41aaa0 | 1853 | xfrm_pol_put(xp); |
1da177e4 LT |
1854 | return err; |
1855 | } | |
1856 | ||
22e70050 | 1857 | static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh, |
5424f32e | 1858 | struct nlattr **attrs) |
1da177e4 | 1859 | { |
fc34acd3 | 1860 | struct net *net = sock_net(skb->sk); |
26b15dad | 1861 | struct km_event c; |
7b67c857 | 1862 | struct xfrm_usersa_flush *p = nlmsg_data(nlh); |
4aa2e62c | 1863 | int err; |
1da177e4 | 1864 | |
2e71029e | 1865 | err = xfrm_state_flush(net, p->proto, true); |
9e64cc95 JHS |
1866 | if (err) { |
1867 | if (err == -ESRCH) /* empty table */ | |
1868 | return 0; | |
069c474e | 1869 | return err; |
9e64cc95 | 1870 | } |
bf08867f | 1871 | c.data.proto = p->proto; |
f60f6b8f | 1872 | c.event = nlh->nlmsg_type; |
26b15dad | 1873 | c.seq = nlh->nlmsg_seq; |
15e47304 | 1874 | c.portid = nlh->nlmsg_pid; |
7067802e | 1875 | c.net = net; |
26b15dad JHS |
1876 | km_state_notify(NULL, &c); |
1877 | ||
1da177e4 LT |
1878 | return 0; |
1879 | } | |
1880 | ||
a1b831f2 | 1881 | static inline unsigned int xfrm_aevent_msgsize(struct xfrm_state *x) |
7deb2264 | 1882 | { |
a1b831f2 | 1883 | unsigned int replay_size = x->replay_esn ? |
d8647b79 SK |
1884 | xfrm_replay_state_esn_len(x->replay_esn) : |
1885 | sizeof(struct xfrm_replay_state); | |
1886 | ||
7deb2264 | 1887 | return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id)) |
d8647b79 | 1888 | + nla_total_size(replay_size) |
de95c4a4 | 1889 | + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur)) |
6f26b61e | 1890 | + nla_total_size(sizeof(struct xfrm_mark)) |
7deb2264 TG |
1891 | + nla_total_size(4) /* XFRM_AE_RTHR */ |
1892 | + nla_total_size(4); /* XFRM_AE_ETHR */ | |
1893 | } | |
d51d081d | 1894 | |
214e005b | 1895 | static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c) |
d51d081d JHS |
1896 | { |
1897 | struct xfrm_aevent_id *id; | |
1898 | struct nlmsghdr *nlh; | |
1d1e34dd | 1899 | int err; |
d51d081d | 1900 | |
15e47304 | 1901 | nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0); |
79b8b7f4 TG |
1902 | if (nlh == NULL) |
1903 | return -EMSGSIZE; | |
d51d081d | 1904 | |
7b67c857 | 1905 | id = nlmsg_data(nlh); |
931e79d7 | 1906 | memset(&id->sa_id, 0, sizeof(id->sa_id)); |
9b7a787d | 1907 | memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr)); |
d51d081d JHS |
1908 | id->sa_id.spi = x->id.spi; |
1909 | id->sa_id.family = x->props.family; | |
1910 | id->sa_id.proto = x->id.proto; | |
9b7a787d | 1911 | memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr)); |
2b5f6dcc | 1912 | id->reqid = x->props.reqid; |
d51d081d JHS |
1913 | id->flags = c->data.aevent; |
1914 | ||
d0fde795 | 1915 | if (x->replay_esn) { |
1d1e34dd DM |
1916 | err = nla_put(skb, XFRMA_REPLAY_ESN_VAL, |
1917 | xfrm_replay_state_esn_len(x->replay_esn), | |
1918 | x->replay_esn); | |
d0fde795 | 1919 | } else { |
1d1e34dd DM |
1920 | err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay), |
1921 | &x->replay); | |
d0fde795 | 1922 | } |
1d1e34dd DM |
1923 | if (err) |
1924 | goto out_cancel; | |
de95c4a4 ND |
1925 | err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft, |
1926 | XFRMA_PAD); | |
1d1e34dd DM |
1927 | if (err) |
1928 | goto out_cancel; | |
d51d081d | 1929 | |
1d1e34dd DM |
1930 | if (id->flags & XFRM_AE_RTHR) { |
1931 | err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff); | |
1932 | if (err) | |
1933 | goto out_cancel; | |
1934 | } | |
1935 | if (id->flags & XFRM_AE_ETHR) { | |
1936 | err = nla_put_u32(skb, XFRMA_ETIMER_THRESH, | |
1937 | x->replay_maxage * 10 / HZ); | |
1938 | if (err) | |
1939 | goto out_cancel; | |
1940 | } | |
1941 | err = xfrm_mark_put(skb, &x->mark); | |
1942 | if (err) | |
1943 | goto out_cancel; | |
6f26b61e | 1944 | |
053c095a JB |
1945 | nlmsg_end(skb, nlh); |
1946 | return 0; | |
d51d081d | 1947 | |
1d1e34dd | 1948 | out_cancel: |
9825069d | 1949 | nlmsg_cancel(skb, nlh); |
1d1e34dd | 1950 | return err; |
d51d081d JHS |
1951 | } |
1952 | ||
22e70050 | 1953 | static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh, |
5424f32e | 1954 | struct nlattr **attrs) |
d51d081d | 1955 | { |
fc34acd3 | 1956 | struct net *net = sock_net(skb->sk); |
d51d081d JHS |
1957 | struct xfrm_state *x; |
1958 | struct sk_buff *r_skb; | |
1959 | int err; | |
1960 | struct km_event c; | |
6f26b61e JHS |
1961 | u32 mark; |
1962 | struct xfrm_mark m; | |
7b67c857 | 1963 | struct xfrm_aevent_id *p = nlmsg_data(nlh); |
d51d081d JHS |
1964 | struct xfrm_usersa_id *id = &p->sa_id; |
1965 | ||
6f26b61e JHS |
1966 | mark = xfrm_mark_get(attrs, &m); |
1967 | ||
1968 | x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family); | |
d8647b79 | 1969 | if (x == NULL) |
d51d081d | 1970 | return -ESRCH; |
d8647b79 SK |
1971 | |
1972 | r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC); | |
1973 | if (r_skb == NULL) { | |
1974 | xfrm_state_put(x); | |
1975 | return -ENOMEM; | |
d51d081d JHS |
1976 | } |
1977 | ||
1978 | /* | |
1979 | * XXX: is this lock really needed - none of the other | |
1980 | * gets lock (the concern is things getting updated | |
1981 | * while we are still reading) - jhs | |
1982 | */ | |
1983 | spin_lock_bh(&x->lock); | |
1984 | c.data.aevent = p->flags; | |
1985 | c.seq = nlh->nlmsg_seq; | |
15e47304 | 1986 | c.portid = nlh->nlmsg_pid; |
d51d081d | 1987 | |
2fc5f83b GS |
1988 | err = build_aevent(r_skb, x, &c); |
1989 | BUG_ON(err < 0); | |
1990 | ||
15e47304 | 1991 | err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid); |
d51d081d JHS |
1992 | spin_unlock_bh(&x->lock); |
1993 | xfrm_state_put(x); | |
1994 | return err; | |
1995 | } | |
1996 | ||
22e70050 | 1997 | static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh, |
5424f32e | 1998 | struct nlattr **attrs) |
d51d081d | 1999 | { |
fc34acd3 | 2000 | struct net *net = sock_net(skb->sk); |
d51d081d JHS |
2001 | struct xfrm_state *x; |
2002 | struct km_event c; | |
02d0892f | 2003 | int err = -EINVAL; |
6f26b61e JHS |
2004 | u32 mark = 0; |
2005 | struct xfrm_mark m; | |
7b67c857 | 2006 | struct xfrm_aevent_id *p = nlmsg_data(nlh); |
5424f32e | 2007 | struct nlattr *rp = attrs[XFRMA_REPLAY_VAL]; |
d8647b79 | 2008 | struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL]; |
5424f32e | 2009 | struct nlattr *lt = attrs[XFRMA_LTIME_VAL]; |
4e077237 MR |
2010 | struct nlattr *et = attrs[XFRMA_ETIMER_THRESH]; |
2011 | struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH]; | |
d51d081d | 2012 | |
4e077237 | 2013 | if (!lt && !rp && !re && !et && !rt) |
d51d081d JHS |
2014 | return err; |
2015 | ||
2016 | /* pedantic mode - thou shalt sayeth replaceth */ | |
2017 | if (!(nlh->nlmsg_flags&NLM_F_REPLACE)) | |
2018 | return err; | |
2019 | ||
6f26b61e JHS |
2020 | mark = xfrm_mark_get(attrs, &m); |
2021 | ||
2022 | x = xfrm_state_lookup(net, mark, &p->sa_id.daddr, p->sa_id.spi, p->sa_id.proto, p->sa_id.family); | |
d51d081d JHS |
2023 | if (x == NULL) |
2024 | return -ESRCH; | |
2025 | ||
2026 | if (x->km.state != XFRM_STATE_VALID) | |
2027 | goto out; | |
2028 | ||
4479ff76 | 2029 | err = xfrm_replay_verify_len(x->replay_esn, re); |
e2b19125 SK |
2030 | if (err) |
2031 | goto out; | |
2032 | ||
d51d081d | 2033 | spin_lock_bh(&x->lock); |
e3ac104d | 2034 | xfrm_update_ae_params(x, attrs, 1); |
d51d081d | 2035 | spin_unlock_bh(&x->lock); |
d51d081d JHS |
2036 | |
2037 | c.event = nlh->nlmsg_type; | |
2038 | c.seq = nlh->nlmsg_seq; | |
15e47304 | 2039 | c.portid = nlh->nlmsg_pid; |
d51d081d JHS |
2040 | c.data.aevent = XFRM_AE_CU; |
2041 | km_state_notify(x, &c); | |
2042 | err = 0; | |
2043 | out: | |
2044 | xfrm_state_put(x); | |
2045 | return err; | |
2046 | } | |
2047 | ||
22e70050 | 2048 | static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh, |
5424f32e | 2049 | struct nlattr **attrs) |
1da177e4 | 2050 | { |
fc34acd3 | 2051 | struct net *net = sock_net(skb->sk); |
f7b6983f | 2052 | struct km_event c; |
b798a9ed | 2053 | u8 type = XFRM_POLICY_TYPE_MAIN; |
f7b6983f MN |
2054 | int err; |
2055 | ||
35a7aa08 | 2056 | err = copy_from_user_policy_type(&type, attrs); |
f7b6983f MN |
2057 | if (err) |
2058 | return err; | |
26b15dad | 2059 | |
2e71029e | 2060 | err = xfrm_policy_flush(net, type, true); |
2f1eb65f JHS |
2061 | if (err) { |
2062 | if (err == -ESRCH) /* empty table */ | |
2063 | return 0; | |
069c474e | 2064 | return err; |
2f1eb65f JHS |
2065 | } |
2066 | ||
f7b6983f | 2067 | c.data.type = type; |
f60f6b8f | 2068 | c.event = nlh->nlmsg_type; |
26b15dad | 2069 | c.seq = nlh->nlmsg_seq; |
15e47304 | 2070 | c.portid = nlh->nlmsg_pid; |
7067802e | 2071 | c.net = net; |
26b15dad | 2072 | km_policy_notify(NULL, 0, &c); |
1da177e4 LT |
2073 | return 0; |
2074 | } | |
2075 | ||
22e70050 | 2076 | static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh, |
5424f32e | 2077 | struct nlattr **attrs) |
6c5c8ca7 | 2078 | { |
fc34acd3 | 2079 | struct net *net = sock_net(skb->sk); |
6c5c8ca7 | 2080 | struct xfrm_policy *xp; |
7b67c857 | 2081 | struct xfrm_user_polexpire *up = nlmsg_data(nlh); |
6c5c8ca7 | 2082 | struct xfrm_userpolicy_info *p = &up->pol; |
b798a9ed | 2083 | u8 type = XFRM_POLICY_TYPE_MAIN; |
6c5c8ca7 | 2084 | int err = -ENOENT; |
295fae56 JHS |
2085 | struct xfrm_mark m; |
2086 | u32 mark = xfrm_mark_get(attrs, &m); | |
6c5c8ca7 | 2087 | |
35a7aa08 | 2088 | err = copy_from_user_policy_type(&type, attrs); |
f7b6983f MN |
2089 | if (err) |
2090 | return err; | |
2091 | ||
c8bf4d04 TT |
2092 | err = verify_policy_dir(p->dir); |
2093 | if (err) | |
2094 | return err; | |
2095 | ||
6c5c8ca7 | 2096 | if (p->index) |
295fae56 | 2097 | xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err); |
6c5c8ca7 | 2098 | else { |
5424f32e | 2099 | struct nlattr *rt = attrs[XFRMA_SEC_CTX]; |
03e1ad7b | 2100 | struct xfrm_sec_ctx *ctx; |
6c5c8ca7 | 2101 | |
35a7aa08 | 2102 | err = verify_sec_ctx_len(attrs); |
6c5c8ca7 JHS |
2103 | if (err) |
2104 | return err; | |
2105 | ||
2c8dd116 | 2106 | ctx = NULL; |
6c5c8ca7 | 2107 | if (rt) { |
5424f32e | 2108 | struct xfrm_user_sec_ctx *uctx = nla_data(rt); |
6c5c8ca7 | 2109 | |
52a4c640 | 2110 | err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL); |
03e1ad7b | 2111 | if (err) |
6c5c8ca7 | 2112 | return err; |
2c8dd116 | 2113 | } |
295fae56 | 2114 | xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, |
6f26b61e | 2115 | &p->sel, ctx, 0, &err); |
03e1ad7b | 2116 | security_xfrm_policy_free(ctx); |
6c5c8ca7 | 2117 | } |
6c5c8ca7 | 2118 | if (xp == NULL) |
ef41aaa0 | 2119 | return -ENOENT; |
03e1ad7b | 2120 | |
ea2dea9d | 2121 | if (unlikely(xp->walk.dead)) |
6c5c8ca7 | 2122 | goto out; |
6c5c8ca7 | 2123 | |
6c5c8ca7 JHS |
2124 | err = 0; |
2125 | if (up->hard) { | |
2126 | xfrm_policy_delete(xp, p->dir); | |
2e71029e | 2127 | xfrm_audit_policy_delete(xp, 1, true); |
6c5c8ca7 | 2128 | } |
c6bb8136 | 2129 | km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid); |
6c5c8ca7 JHS |
2130 | |
2131 | out: | |
2132 | xfrm_pol_put(xp); | |
2133 | return err; | |
2134 | } | |
2135 | ||
22e70050 | 2136 | static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh, |
5424f32e | 2137 | struct nlattr **attrs) |
53bc6b4d | 2138 | { |
fc34acd3 | 2139 | struct net *net = sock_net(skb->sk); |
53bc6b4d JHS |
2140 | struct xfrm_state *x; |
2141 | int err; | |
7b67c857 | 2142 | struct xfrm_user_expire *ue = nlmsg_data(nlh); |
53bc6b4d | 2143 | struct xfrm_usersa_info *p = &ue->state; |
6f26b61e | 2144 | struct xfrm_mark m; |
928497f0 | 2145 | u32 mark = xfrm_mark_get(attrs, &m); |
53bc6b4d | 2146 | |
6f26b61e | 2147 | x = xfrm_state_lookup(net, mark, &p->id.daddr, p->id.spi, p->id.proto, p->family); |
53bc6b4d | 2148 | |
3a765aa5 | 2149 | err = -ENOENT; |
53bc6b4d JHS |
2150 | if (x == NULL) |
2151 | return err; | |
2152 | ||
53bc6b4d | 2153 | spin_lock_bh(&x->lock); |
3a765aa5 | 2154 | err = -EINVAL; |
53bc6b4d JHS |
2155 | if (x->km.state != XFRM_STATE_VALID) |
2156 | goto out; | |
c6bb8136 | 2157 | km_state_expired(x, ue->hard, nlh->nlmsg_pid); |
53bc6b4d | 2158 | |
161a09e7 | 2159 | if (ue->hard) { |
53bc6b4d | 2160 | __xfrm_state_delete(x); |
2e71029e | 2161 | xfrm_audit_state_delete(x, 1, true); |
161a09e7 | 2162 | } |
3a765aa5 | 2163 | err = 0; |
53bc6b4d JHS |
2164 | out: |
2165 | spin_unlock_bh(&x->lock); | |
2166 | xfrm_state_put(x); | |
2167 | return err; | |
2168 | } | |
2169 | ||
22e70050 | 2170 | static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh, |
5424f32e | 2171 | struct nlattr **attrs) |
980ebd25 | 2172 | { |
fc34acd3 | 2173 | struct net *net = sock_net(skb->sk); |
980ebd25 JHS |
2174 | struct xfrm_policy *xp; |
2175 | struct xfrm_user_tmpl *ut; | |
2176 | int i; | |
5424f32e | 2177 | struct nlattr *rt = attrs[XFRMA_TMPL]; |
6f26b61e | 2178 | struct xfrm_mark mark; |
980ebd25 | 2179 | |
7b67c857 | 2180 | struct xfrm_user_acquire *ua = nlmsg_data(nlh); |
fc34acd3 | 2181 | struct xfrm_state *x = xfrm_state_alloc(net); |
980ebd25 JHS |
2182 | int err = -ENOMEM; |
2183 | ||
2184 | if (!x) | |
d8eb9307 | 2185 | goto nomem; |
980ebd25 | 2186 | |
6f26b61e JHS |
2187 | xfrm_mark_get(attrs, &mark); |
2188 | ||
980ebd25 | 2189 | err = verify_newpolicy_info(&ua->policy); |
d8eb9307 | 2190 | if (err) |
73efc324 | 2191 | goto free_state; |
980ebd25 JHS |
2192 | |
2193 | /* build an XP */ | |
fc34acd3 | 2194 | xp = xfrm_policy_construct(net, &ua->policy, attrs, &err); |
d8eb9307 IJ |
2195 | if (!xp) |
2196 | goto free_state; | |
980ebd25 JHS |
2197 | |
2198 | memcpy(&x->id, &ua->id, sizeof(ua->id)); | |
2199 | memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr)); | |
2200 | memcpy(&x->sel, &ua->sel, sizeof(ua->sel)); | |
6f26b61e JHS |
2201 | xp->mark.m = x->mark.m = mark.m; |
2202 | xp->mark.v = x->mark.v = mark.v; | |
5424f32e | 2203 | ut = nla_data(rt); |
980ebd25 JHS |
2204 | /* extract the templates and for each call km_key */ |
2205 | for (i = 0; i < xp->xfrm_nr; i++, ut++) { | |
2206 | struct xfrm_tmpl *t = &xp->xfrm_vec[i]; | |
2207 | memcpy(&x->id, &t->id, sizeof(x->id)); | |
2208 | x->props.mode = t->mode; | |
2209 | x->props.reqid = t->reqid; | |
2210 | x->props.family = ut->family; | |
2211 | t->aalgos = ua->aalgos; | |
2212 | t->ealgos = ua->ealgos; | |
2213 | t->calgos = ua->calgos; | |
2214 | err = km_query(x, t, xp); | |
2215 | ||
2216 | } | |
2217 | ||
2218 | kfree(x); | |
2219 | kfree(xp); | |
2220 | ||
2221 | return 0; | |
d8eb9307 | 2222 | |
d8eb9307 IJ |
2223 | free_state: |
2224 | kfree(x); | |
2225 | nomem: | |
2226 | return err; | |
980ebd25 JHS |
2227 | } |
2228 | ||
5c79de6e | 2229 | #ifdef CONFIG_XFRM_MIGRATE |
5c79de6e | 2230 | static int copy_from_user_migrate(struct xfrm_migrate *ma, |
13c1d189 | 2231 | struct xfrm_kmaddress *k, |
5424f32e | 2232 | struct nlattr **attrs, int *num) |
5c79de6e | 2233 | { |
5424f32e | 2234 | struct nlattr *rt = attrs[XFRMA_MIGRATE]; |
5c79de6e SS |
2235 | struct xfrm_user_migrate *um; |
2236 | int i, num_migrate; | |
2237 | ||
13c1d189 AE |
2238 | if (k != NULL) { |
2239 | struct xfrm_user_kmaddress *uk; | |
2240 | ||
2241 | uk = nla_data(attrs[XFRMA_KMADDRESS]); | |
2242 | memcpy(&k->local, &uk->local, sizeof(k->local)); | |
2243 | memcpy(&k->remote, &uk->remote, sizeof(k->remote)); | |
2244 | k->family = uk->family; | |
2245 | k->reserved = uk->reserved; | |
2246 | } | |
2247 | ||
5424f32e TG |
2248 | um = nla_data(rt); |
2249 | num_migrate = nla_len(rt) / sizeof(*um); | |
5c79de6e SS |
2250 | |
2251 | if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH) | |
2252 | return -EINVAL; | |
2253 | ||
2254 | for (i = 0; i < num_migrate; i++, um++, ma++) { | |
2255 | memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr)); | |
2256 | memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr)); | |
2257 | memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr)); | |
2258 | memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr)); | |
2259 | ||
2260 | ma->proto = um->proto; | |
2261 | ma->mode = um->mode; | |
2262 | ma->reqid = um->reqid; | |
2263 | ||
2264 | ma->old_family = um->old_family; | |
2265 | ma->new_family = um->new_family; | |
2266 | } | |
2267 | ||
2268 | *num = i; | |
2269 | return 0; | |
2270 | } | |
2271 | ||
2272 | static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh, | |
5424f32e | 2273 | struct nlattr **attrs) |
5c79de6e | 2274 | { |
7b67c857 | 2275 | struct xfrm_userpolicy_id *pi = nlmsg_data(nlh); |
5c79de6e | 2276 | struct xfrm_migrate m[XFRM_MAX_DEPTH]; |
13c1d189 | 2277 | struct xfrm_kmaddress km, *kmp; |
5c79de6e SS |
2278 | u8 type; |
2279 | int err; | |
2280 | int n = 0; | |
8d549c4f | 2281 | struct net *net = sock_net(skb->sk); |
4ab47d47 | 2282 | struct xfrm_encap_tmpl *encap = NULL; |
5c79de6e | 2283 | |
35a7aa08 | 2284 | if (attrs[XFRMA_MIGRATE] == NULL) |
cf5cb79f | 2285 | return -EINVAL; |
5c79de6e | 2286 | |
13c1d189 AE |
2287 | kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL; |
2288 | ||
5424f32e | 2289 | err = copy_from_user_policy_type(&type, attrs); |
5c79de6e SS |
2290 | if (err) |
2291 | return err; | |
2292 | ||
13c1d189 | 2293 | err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n); |
5c79de6e SS |
2294 | if (err) |
2295 | return err; | |
2296 | ||
2297 | if (!n) | |
2298 | return 0; | |
2299 | ||
4ab47d47 AA |
2300 | if (attrs[XFRMA_ENCAP]) { |
2301 | encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]), | |
2302 | sizeof(*encap), GFP_KERNEL); | |
2303 | if (!encap) | |
2304 | return 0; | |
2305 | } | |
5c79de6e | 2306 | |
4ab47d47 AA |
2307 | err = xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net, encap); |
2308 | ||
2309 | kfree(encap); | |
2310 | ||
2311 | return err; | |
5c79de6e SS |
2312 | } |
2313 | #else | |
2314 | static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh, | |
5424f32e | 2315 | struct nlattr **attrs) |
5c79de6e SS |
2316 | { |
2317 | return -ENOPROTOOPT; | |
2318 | } | |
2319 | #endif | |
2320 | ||
2321 | #ifdef CONFIG_XFRM_MIGRATE | |
183cad12 | 2322 | static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb) |
5c79de6e SS |
2323 | { |
2324 | struct xfrm_user_migrate um; | |
2325 | ||
2326 | memset(&um, 0, sizeof(um)); | |
2327 | um.proto = m->proto; | |
2328 | um.mode = m->mode; | |
2329 | um.reqid = m->reqid; | |
2330 | um.old_family = m->old_family; | |
2331 | memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr)); | |
2332 | memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr)); | |
2333 | um.new_family = m->new_family; | |
2334 | memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr)); | |
2335 | memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr)); | |
2336 | ||
c0144bea | 2337 | return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um); |
5c79de6e SS |
2338 | } |
2339 | ||
183cad12 | 2340 | static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb) |
13c1d189 AE |
2341 | { |
2342 | struct xfrm_user_kmaddress uk; | |
2343 | ||
2344 | memset(&uk, 0, sizeof(uk)); | |
2345 | uk.family = k->family; | |
2346 | uk.reserved = k->reserved; | |
2347 | memcpy(&uk.local, &k->local, sizeof(uk.local)); | |
a1caa322 | 2348 | memcpy(&uk.remote, &k->remote, sizeof(uk.remote)); |
13c1d189 AE |
2349 | |
2350 | return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk); | |
2351 | } | |
2352 | ||
a1b831f2 AD |
2353 | static inline unsigned int xfrm_migrate_msgsize(int num_migrate, int with_kma, |
2354 | int with_encp) | |
7deb2264 TG |
2355 | { |
2356 | return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id)) | |
13c1d189 | 2357 | + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0) |
8bafd730 | 2358 | + (with_encp ? nla_total_size(sizeof(struct xfrm_encap_tmpl)) : 0) |
13c1d189 AE |
2359 | + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate) |
2360 | + userpolicy_type_attrsize(); | |
7deb2264 TG |
2361 | } |
2362 | ||
183cad12 DM |
2363 | static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m, |
2364 | int num_migrate, const struct xfrm_kmaddress *k, | |
8bafd730 AA |
2365 | const struct xfrm_selector *sel, |
2366 | const struct xfrm_encap_tmpl *encap, u8 dir, u8 type) | |
5c79de6e | 2367 | { |
183cad12 | 2368 | const struct xfrm_migrate *mp; |
5c79de6e SS |
2369 | struct xfrm_userpolicy_id *pol_id; |
2370 | struct nlmsghdr *nlh; | |
1d1e34dd | 2371 | int i, err; |
5c79de6e | 2372 | |
79b8b7f4 TG |
2373 | nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0); |
2374 | if (nlh == NULL) | |
2375 | return -EMSGSIZE; | |
5c79de6e | 2376 | |
7b67c857 | 2377 | pol_id = nlmsg_data(nlh); |
5c79de6e SS |
2378 | /* copy data from selector, dir, and type to the pol_id */ |
2379 | memset(pol_id, 0, sizeof(*pol_id)); | |
2380 | memcpy(&pol_id->sel, sel, sizeof(pol_id->sel)); | |
2381 | pol_id->dir = dir; | |
2382 | ||
1d1e34dd DM |
2383 | if (k != NULL) { |
2384 | err = copy_to_user_kmaddress(k, skb); | |
2385 | if (err) | |
2386 | goto out_cancel; | |
2387 | } | |
8bafd730 AA |
2388 | if (encap) { |
2389 | err = nla_put(skb, XFRMA_ENCAP, sizeof(*encap), encap); | |
2390 | if (err) | |
2391 | goto out_cancel; | |
2392 | } | |
1d1e34dd DM |
2393 | err = copy_to_user_policy_type(type, skb); |
2394 | if (err) | |
2395 | goto out_cancel; | |
5c79de6e | 2396 | for (i = 0, mp = m ; i < num_migrate; i++, mp++) { |
1d1e34dd DM |
2397 | err = copy_to_user_migrate(mp, skb); |
2398 | if (err) | |
2399 | goto out_cancel; | |
5c79de6e SS |
2400 | } |
2401 | ||
053c095a JB |
2402 | nlmsg_end(skb, nlh); |
2403 | return 0; | |
1d1e34dd DM |
2404 | |
2405 | out_cancel: | |
9825069d | 2406 | nlmsg_cancel(skb, nlh); |
1d1e34dd | 2407 | return err; |
5c79de6e SS |
2408 | } |
2409 | ||
183cad12 DM |
2410 | static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type, |
2411 | const struct xfrm_migrate *m, int num_migrate, | |
8bafd730 AA |
2412 | const struct xfrm_kmaddress *k, |
2413 | const struct xfrm_encap_tmpl *encap) | |
5c79de6e | 2414 | { |
a6483b79 | 2415 | struct net *net = &init_net; |
5c79de6e | 2416 | struct sk_buff *skb; |
2fc5f83b | 2417 | int err; |
5c79de6e | 2418 | |
8bafd730 AA |
2419 | skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k, !!encap), |
2420 | GFP_ATOMIC); | |
5c79de6e SS |
2421 | if (skb == NULL) |
2422 | return -ENOMEM; | |
2423 | ||
2424 | /* build migrate */ | |
2fc5f83b GS |
2425 | err = build_migrate(skb, m, num_migrate, k, sel, encap, dir, type); |
2426 | BUG_ON(err < 0); | |
5c79de6e | 2427 | |
21ee543e | 2428 | return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE); |
5c79de6e SS |
2429 | } |
2430 | #else | |
183cad12 DM |
2431 | static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type, |
2432 | const struct xfrm_migrate *m, int num_migrate, | |
8bafd730 AA |
2433 | const struct xfrm_kmaddress *k, |
2434 | const struct xfrm_encap_tmpl *encap) | |
5c79de6e SS |
2435 | { |
2436 | return -ENOPROTOOPT; | |
2437 | } | |
2438 | #endif | |
d51d081d | 2439 | |
a7bd9a45 | 2440 | #define XMSGSIZE(type) sizeof(struct type) |
492b558b TG |
2441 | |
2442 | static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = { | |
66f9a259 | 2443 | [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info), |
492b558b TG |
2444 | [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id), |
2445 | [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id), | |
2446 | [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info), | |
2447 | [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id), | |
2448 | [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id), | |
2449 | [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info), | |
980ebd25 | 2450 | [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire), |
53bc6b4d | 2451 | [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire), |
492b558b | 2452 | [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info), |
66f9a259 | 2453 | [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info), |
6c5c8ca7 | 2454 | [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire), |
492b558b | 2455 | [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush), |
a7bd9a45 | 2456 | [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0, |
d51d081d JHS |
2457 | [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id), |
2458 | [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id), | |
97a64b45 | 2459 | [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report), |
5c79de6e | 2460 | [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id), |
a7bd9a45 | 2461 | [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32), |
880a6fab | 2462 | [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32), |
a7bd9a45 | 2463 | [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32), |
1da177e4 LT |
2464 | }; |
2465 | ||
492b558b TG |
2466 | #undef XMSGSIZE |
2467 | ||
cf5cb79f | 2468 | static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = { |
c28e9304 | 2469 | [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)}, |
2470 | [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)}, | |
2471 | [XFRMA_LASTUSED] = { .type = NLA_U64}, | |
2472 | [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)}, | |
1a6509d9 | 2473 | [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) }, |
cf5cb79f TG |
2474 | [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) }, |
2475 | [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) }, | |
2476 | [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) }, | |
2477 | [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) }, | |
2478 | [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) }, | |
2479 | [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) }, | |
2480 | [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) }, | |
2481 | [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) }, | |
2482 | [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 }, | |
2483 | [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 }, | |
2484 | [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) }, | |
2485 | [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) }, | |
2486 | [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)}, | |
2487 | [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) }, | |
13c1d189 | 2488 | [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) }, |
6f26b61e | 2489 | [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) }, |
35d2856b | 2490 | [XFRMA_TFCPAD] = { .type = NLA_U32 }, |
d8647b79 | 2491 | [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) }, |
a947b0a9 | 2492 | [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 }, |
d3623099 | 2493 | [XFRMA_PROTO] = { .type = NLA_U8 }, |
870a2df4 | 2494 | [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) }, |
d77e38e6 | 2495 | [XFRMA_OFFLOAD_DEV] = { .len = sizeof(struct xfrm_user_offload) }, |
e7191358 | 2496 | [XFRMA_OUTPUT_MARK] = { .type = NLA_U32 }, |
cf5cb79f TG |
2497 | }; |
2498 | ||
880a6fab CG |
2499 | static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = { |
2500 | [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) }, | |
2501 | [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) }, | |
2502 | }; | |
2503 | ||
05600a79 | 2504 | static const struct xfrm_link { |
5424f32e | 2505 | int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **); |
1137b5e2 | 2506 | int (*start)(struct netlink_callback *); |
1da177e4 | 2507 | int (*dump)(struct sk_buff *, struct netlink_callback *); |
4c563f76 | 2508 | int (*done)(struct netlink_callback *); |
880a6fab CG |
2509 | const struct nla_policy *nla_pol; |
2510 | int nla_max; | |
492b558b TG |
2511 | } xfrm_dispatch[XFRM_NR_MSGTYPES] = { |
2512 | [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa }, | |
2513 | [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa }, | |
2514 | [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa, | |
4c563f76 TT |
2515 | .dump = xfrm_dump_sa, |
2516 | .done = xfrm_dump_sa_done }, | |
492b558b TG |
2517 | [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy }, |
2518 | [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy }, | |
2519 | [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy, | |
1137b5e2 | 2520 | .start = xfrm_dump_policy_start, |
4c563f76 TT |
2521 | .dump = xfrm_dump_policy, |
2522 | .done = xfrm_dump_policy_done }, | |
492b558b | 2523 | [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi }, |
980ebd25 | 2524 | [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire }, |
53bc6b4d | 2525 | [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire }, |
492b558b TG |
2526 | [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy }, |
2527 | [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa }, | |
6c5c8ca7 | 2528 | [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire}, |
492b558b TG |
2529 | [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa }, |
2530 | [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy }, | |
d51d081d JHS |
2531 | [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae }, |
2532 | [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae }, | |
5c79de6e | 2533 | [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate }, |
566ec034 | 2534 | [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo }, |
880a6fab CG |
2535 | [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo, |
2536 | .nla_pol = xfrma_spd_policy, | |
2537 | .nla_max = XFRMA_SPD_MAX }, | |
ecfd6b18 | 2538 | [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo }, |
1da177e4 LT |
2539 | }; |
2540 | ||
2d4bc933 JB |
2541 | static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, |
2542 | struct netlink_ext_ack *extack) | |
1da177e4 | 2543 | { |
a6483b79 | 2544 | struct net *net = sock_net(skb->sk); |
35a7aa08 | 2545 | struct nlattr *attrs[XFRMA_MAX+1]; |
05600a79 | 2546 | const struct xfrm_link *link; |
a7bd9a45 | 2547 | int type, err; |
1da177e4 | 2548 | |
74005991 | 2549 | #ifdef CONFIG_COMPAT |
2bf8c476 | 2550 | if (in_compat_syscall()) |
83e2d058 | 2551 | return -EOPNOTSUPP; |
74005991 FD |
2552 | #endif |
2553 | ||
1da177e4 | 2554 | type = nlh->nlmsg_type; |
1da177e4 | 2555 | if (type > XFRM_MSG_MAX) |
1d00a4eb | 2556 | return -EINVAL; |
1da177e4 LT |
2557 | |
2558 | type -= XFRM_MSG_BASE; | |
2559 | link = &xfrm_dispatch[type]; | |
2560 | ||
2561 | /* All operations require privileges, even GET */ | |
90f62cf3 | 2562 | if (!netlink_net_capable(skb, CAP_NET_ADMIN)) |
1d00a4eb | 2563 | return -EPERM; |
1da177e4 | 2564 | |
492b558b TG |
2565 | if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) || |
2566 | type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) && | |
b8f3ab42 | 2567 | (nlh->nlmsg_flags & NLM_F_DUMP)) { |
1da177e4 | 2568 | if (link->dump == NULL) |
1d00a4eb | 2569 | return -EINVAL; |
88fc2c84 | 2570 | |
80d326fa PNA |
2571 | { |
2572 | struct netlink_dump_control c = { | |
1137b5e2 | 2573 | .start = link->start, |
80d326fa PNA |
2574 | .dump = link->dump, |
2575 | .done = link->done, | |
2576 | }; | |
2577 | return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c); | |
2578 | } | |
1da177e4 LT |
2579 | } |
2580 | ||
880a6fab CG |
2581 | err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs, |
2582 | link->nla_max ? : XFRMA_MAX, | |
fe52145f | 2583 | link->nla_pol ? : xfrma_policy, extack); |
a7bd9a45 TG |
2584 | if (err < 0) |
2585 | return err; | |
1da177e4 LT |
2586 | |
2587 | if (link->doit == NULL) | |
1d00a4eb | 2588 | return -EINVAL; |
1da177e4 | 2589 | |
5424f32e | 2590 | return link->doit(skb, nlh, attrs); |
1da177e4 LT |
2591 | } |
2592 | ||
cd40b7d3 | 2593 | static void xfrm_netlink_rcv(struct sk_buff *skb) |
1da177e4 | 2594 | { |
283bc9f3 FD |
2595 | struct net *net = sock_net(skb->sk); |
2596 | ||
2597 | mutex_lock(&net->xfrm.xfrm_cfg_mutex); | |
cd40b7d3 | 2598 | netlink_rcv_skb(skb, &xfrm_user_rcv_msg); |
283bc9f3 | 2599 | mutex_unlock(&net->xfrm.xfrm_cfg_mutex); |
1da177e4 LT |
2600 | } |
2601 | ||
a1b831f2 | 2602 | static inline unsigned int xfrm_expire_msgsize(void) |
7deb2264 | 2603 | { |
6f26b61e JHS |
2604 | return NLMSG_ALIGN(sizeof(struct xfrm_user_expire)) |
2605 | + nla_total_size(sizeof(struct xfrm_mark)); | |
7deb2264 TG |
2606 | } |
2607 | ||
214e005b | 2608 | static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c) |
1da177e4 LT |
2609 | { |
2610 | struct xfrm_user_expire *ue; | |
2611 | struct nlmsghdr *nlh; | |
1d1e34dd | 2612 | int err; |
1da177e4 | 2613 | |
15e47304 | 2614 | nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0); |
79b8b7f4 TG |
2615 | if (nlh == NULL) |
2616 | return -EMSGSIZE; | |
1da177e4 | 2617 | |
7b67c857 | 2618 | ue = nlmsg_data(nlh); |
1da177e4 | 2619 | copy_to_user_state(x, &ue->state); |
d51d081d | 2620 | ue->hard = (c->data.hard != 0) ? 1 : 0; |
e3e5fc16 MK |
2621 | /* clear the padding bytes */ |
2622 | memset(&ue->hard + 1, 0, sizeof(*ue) - offsetofend(typeof(*ue), hard)); | |
1da177e4 | 2623 | |
1d1e34dd DM |
2624 | err = xfrm_mark_put(skb, &x->mark); |
2625 | if (err) | |
2626 | return err; | |
6f26b61e | 2627 | |
053c095a JB |
2628 | nlmsg_end(skb, nlh); |
2629 | return 0; | |
1da177e4 LT |
2630 | } |
2631 | ||
214e005b | 2632 | static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c) |
1da177e4 | 2633 | { |
fc34acd3 | 2634 | struct net *net = xs_net(x); |
1da177e4 LT |
2635 | struct sk_buff *skb; |
2636 | ||
7deb2264 | 2637 | skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC); |
1da177e4 LT |
2638 | if (skb == NULL) |
2639 | return -ENOMEM; | |
2640 | ||
6f26b61e JHS |
2641 | if (build_expire(skb, x, c) < 0) { |
2642 | kfree_skb(skb); | |
2643 | return -EMSGSIZE; | |
2644 | } | |
1da177e4 | 2645 | |
21ee543e | 2646 | return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE); |
1da177e4 LT |
2647 | } |
2648 | ||
214e005b | 2649 | static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c) |
d51d081d | 2650 | { |
fc34acd3 | 2651 | struct net *net = xs_net(x); |
d51d081d | 2652 | struct sk_buff *skb; |
2fc5f83b | 2653 | int err; |
d51d081d | 2654 | |
d8647b79 | 2655 | skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC); |
d51d081d JHS |
2656 | if (skb == NULL) |
2657 | return -ENOMEM; | |
2658 | ||
2fc5f83b GS |
2659 | err = build_aevent(skb, x, c); |
2660 | BUG_ON(err < 0); | |
d51d081d | 2661 | |
21ee543e | 2662 | return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS); |
d51d081d JHS |
2663 | } |
2664 | ||
214e005b | 2665 | static int xfrm_notify_sa_flush(const struct km_event *c) |
26b15dad | 2666 | { |
7067802e | 2667 | struct net *net = c->net; |
26b15dad JHS |
2668 | struct xfrm_usersa_flush *p; |
2669 | struct nlmsghdr *nlh; | |
2670 | struct sk_buff *skb; | |
7deb2264 | 2671 | int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush)); |
26b15dad | 2672 | |
7deb2264 | 2673 | skb = nlmsg_new(len, GFP_ATOMIC); |
26b15dad JHS |
2674 | if (skb == NULL) |
2675 | return -ENOMEM; | |
26b15dad | 2676 | |
15e47304 | 2677 | nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0); |
79b8b7f4 TG |
2678 | if (nlh == NULL) { |
2679 | kfree_skb(skb); | |
2680 | return -EMSGSIZE; | |
2681 | } | |
26b15dad | 2682 | |
7b67c857 | 2683 | p = nlmsg_data(nlh); |
bf08867f | 2684 | p->proto = c->data.proto; |
26b15dad | 2685 | |
9825069d | 2686 | nlmsg_end(skb, nlh); |
26b15dad | 2687 | |
21ee543e | 2688 | return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA); |
26b15dad JHS |
2689 | } |
2690 | ||
a1b831f2 | 2691 | static inline unsigned int xfrm_sa_len(struct xfrm_state *x) |
26b15dad | 2692 | { |
a1b831f2 | 2693 | unsigned int l = 0; |
1a6509d9 HX |
2694 | if (x->aead) |
2695 | l += nla_total_size(aead_len(x->aead)); | |
4447bb33 MW |
2696 | if (x->aalg) { |
2697 | l += nla_total_size(sizeof(struct xfrm_algo) + | |
2698 | (x->aalg->alg_key_len + 7) / 8); | |
2699 | l += nla_total_size(xfrm_alg_auth_len(x->aalg)); | |
2700 | } | |
26b15dad | 2701 | if (x->ealg) |
0f99be0d | 2702 | l += nla_total_size(xfrm_alg_len(x->ealg)); |
26b15dad | 2703 | if (x->calg) |
7deb2264 | 2704 | l += nla_total_size(sizeof(*x->calg)); |
26b15dad | 2705 | if (x->encap) |
7deb2264 | 2706 | l += nla_total_size(sizeof(*x->encap)); |
35d2856b MW |
2707 | if (x->tfcpad) |
2708 | l += nla_total_size(sizeof(x->tfcpad)); | |
d8647b79 SK |
2709 | if (x->replay_esn) |
2710 | l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn)); | |
f293a5e3 | 2711 | else |
2712 | l += nla_total_size(sizeof(struct xfrm_replay_state)); | |
68325d3b HX |
2713 | if (x->security) |
2714 | l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) + | |
2715 | x->security->ctx_len); | |
2716 | if (x->coaddr) | |
2717 | l += nla_total_size(sizeof(*x->coaddr)); | |
a947b0a9 ND |
2718 | if (x->props.extra_flags) |
2719 | l += nla_total_size(sizeof(x->props.extra_flags)); | |
d77e38e6 SK |
2720 | if (x->xso.dev) |
2721 | l += nla_total_size(sizeof(x->xso)); | |
077fbac4 LC |
2722 | if (x->props.output_mark) |
2723 | l += nla_total_size(sizeof(x->props.output_mark)); | |
68325d3b | 2724 | |
d26f3984 | 2725 | /* Must count x->lastused as it may become non-zero behind our back. */ |
de95c4a4 | 2726 | l += nla_total_size_64bit(sizeof(u64)); |
26b15dad JHS |
2727 | |
2728 | return l; | |
2729 | } | |
2730 | ||
214e005b | 2731 | static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c) |
26b15dad | 2732 | { |
fc34acd3 | 2733 | struct net *net = xs_net(x); |
26b15dad | 2734 | struct xfrm_usersa_info *p; |
0603eac0 | 2735 | struct xfrm_usersa_id *id; |
26b15dad JHS |
2736 | struct nlmsghdr *nlh; |
2737 | struct sk_buff *skb; | |
a1b831f2 AD |
2738 | unsigned int len = xfrm_sa_len(x); |
2739 | unsigned int headlen; | |
2740 | int err; | |
0603eac0 HX |
2741 | |
2742 | headlen = sizeof(*p); | |
2743 | if (c->event == XFRM_MSG_DELSA) { | |
7deb2264 | 2744 | len += nla_total_size(headlen); |
0603eac0 | 2745 | headlen = sizeof(*id); |
6f26b61e | 2746 | len += nla_total_size(sizeof(struct xfrm_mark)); |
0603eac0 | 2747 | } |
7deb2264 | 2748 | len += NLMSG_ALIGN(headlen); |
26b15dad | 2749 | |
7deb2264 | 2750 | skb = nlmsg_new(len, GFP_ATOMIC); |
26b15dad JHS |
2751 | if (skb == NULL) |
2752 | return -ENOMEM; | |
26b15dad | 2753 | |
15e47304 | 2754 | nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0); |
1d1e34dd | 2755 | err = -EMSGSIZE; |
79b8b7f4 | 2756 | if (nlh == NULL) |
1d1e34dd | 2757 | goto out_free_skb; |
26b15dad | 2758 | |
7b67c857 | 2759 | p = nlmsg_data(nlh); |
0603eac0 | 2760 | if (c->event == XFRM_MSG_DELSA) { |
c0144bea TG |
2761 | struct nlattr *attr; |
2762 | ||
7b67c857 | 2763 | id = nlmsg_data(nlh); |
50329c8a | 2764 | memset(id, 0, sizeof(*id)); |
0603eac0 HX |
2765 | memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr)); |
2766 | id->spi = x->id.spi; | |
2767 | id->family = x->props.family; | |
2768 | id->proto = x->id.proto; | |
2769 | ||
c0144bea | 2770 | attr = nla_reserve(skb, XFRMA_SA, sizeof(*p)); |
1d1e34dd | 2771 | err = -EMSGSIZE; |
c0144bea | 2772 | if (attr == NULL) |
1d1e34dd | 2773 | goto out_free_skb; |
c0144bea TG |
2774 | |
2775 | p = nla_data(attr); | |
0603eac0 | 2776 | } |
1d1e34dd DM |
2777 | err = copy_to_user_state_extra(x, p, skb); |
2778 | if (err) | |
2779 | goto out_free_skb; | |
26b15dad | 2780 | |
9825069d | 2781 | nlmsg_end(skb, nlh); |
26b15dad | 2782 | |
21ee543e | 2783 | return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA); |
26b15dad | 2784 | |
1d1e34dd | 2785 | out_free_skb: |
26b15dad | 2786 | kfree_skb(skb); |
1d1e34dd | 2787 | return err; |
26b15dad JHS |
2788 | } |
2789 | ||
214e005b | 2790 | static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c) |
26b15dad JHS |
2791 | { |
2792 | ||
2793 | switch (c->event) { | |
f60f6b8f | 2794 | case XFRM_MSG_EXPIRE: |
26b15dad | 2795 | return xfrm_exp_state_notify(x, c); |
d51d081d JHS |
2796 | case XFRM_MSG_NEWAE: |
2797 | return xfrm_aevent_state_notify(x, c); | |
f60f6b8f HX |
2798 | case XFRM_MSG_DELSA: |
2799 | case XFRM_MSG_UPDSA: | |
2800 | case XFRM_MSG_NEWSA: | |
26b15dad | 2801 | return xfrm_notify_sa(x, c); |
f60f6b8f | 2802 | case XFRM_MSG_FLUSHSA: |
26b15dad JHS |
2803 | return xfrm_notify_sa_flush(c); |
2804 | default: | |
62db5cfd | 2805 | printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n", |
2806 | c->event); | |
2807 | break; | |
26b15dad JHS |
2808 | } |
2809 | ||
2810 | return 0; | |
2811 | ||
2812 | } | |
2813 | ||
a1b831f2 AD |
2814 | static inline unsigned int xfrm_acquire_msgsize(struct xfrm_state *x, |
2815 | struct xfrm_policy *xp) | |
7deb2264 TG |
2816 | { |
2817 | return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire)) | |
2818 | + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr) | |
6f26b61e | 2819 | + nla_total_size(sizeof(struct xfrm_mark)) |
7deb2264 TG |
2820 | + nla_total_size(xfrm_user_sec_ctx_size(x->security)) |
2821 | + userpolicy_type_attrsize(); | |
2822 | } | |
2823 | ||
1da177e4 | 2824 | static int build_acquire(struct sk_buff *skb, struct xfrm_state *x, |
65e0736b | 2825 | struct xfrm_tmpl *xt, struct xfrm_policy *xp) |
1da177e4 | 2826 | { |
1d1e34dd | 2827 | __u32 seq = xfrm_get_acqseq(); |
1da177e4 LT |
2828 | struct xfrm_user_acquire *ua; |
2829 | struct nlmsghdr *nlh; | |
1d1e34dd | 2830 | int err; |
1da177e4 | 2831 | |
79b8b7f4 TG |
2832 | nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0); |
2833 | if (nlh == NULL) | |
2834 | return -EMSGSIZE; | |
1da177e4 | 2835 | |
7b67c857 | 2836 | ua = nlmsg_data(nlh); |
1da177e4 LT |
2837 | memcpy(&ua->id, &x->id, sizeof(ua->id)); |
2838 | memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr)); | |
2839 | memcpy(&ua->sel, &x->sel, sizeof(ua->sel)); | |
65e0736b | 2840 | copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT); |
1da177e4 LT |
2841 | ua->aalgos = xt->aalgos; |
2842 | ua->ealgos = xt->ealgos; | |
2843 | ua->calgos = xt->calgos; | |
2844 | ua->seq = x->km.seq = seq; | |
2845 | ||
1d1e34dd DM |
2846 | err = copy_to_user_tmpl(xp, skb); |
2847 | if (!err) | |
2848 | err = copy_to_user_state_sec_ctx(x, skb); | |
2849 | if (!err) | |
2850 | err = copy_to_user_policy_type(xp->type, skb); | |
2851 | if (!err) | |
2852 | err = xfrm_mark_put(skb, &xp->mark); | |
2853 | if (err) { | |
2854 | nlmsg_cancel(skb, nlh); | |
2855 | return err; | |
2856 | } | |
1da177e4 | 2857 | |
053c095a JB |
2858 | nlmsg_end(skb, nlh); |
2859 | return 0; | |
1da177e4 LT |
2860 | } |
2861 | ||
2862 | static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt, | |
65e0736b | 2863 | struct xfrm_policy *xp) |
1da177e4 | 2864 | { |
a6483b79 | 2865 | struct net *net = xs_net(x); |
1da177e4 | 2866 | struct sk_buff *skb; |
2fc5f83b | 2867 | int err; |
1da177e4 | 2868 | |
7deb2264 | 2869 | skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC); |
1da177e4 LT |
2870 | if (skb == NULL) |
2871 | return -ENOMEM; | |
2872 | ||
2fc5f83b GS |
2873 | err = build_acquire(skb, x, xt, xp); |
2874 | BUG_ON(err < 0); | |
1da177e4 | 2875 | |
21ee543e | 2876 | return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE); |
1da177e4 LT |
2877 | } |
2878 | ||
2879 | /* User gives us xfrm_user_policy_info followed by an array of 0 | |
2880 | * or more templates. | |
2881 | */ | |
cb969f07 | 2882 | static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt, |
1da177e4 LT |
2883 | u8 *data, int len, int *dir) |
2884 | { | |
fc34acd3 | 2885 | struct net *net = sock_net(sk); |
1da177e4 LT |
2886 | struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data; |
2887 | struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1); | |
2888 | struct xfrm_policy *xp; | |
2889 | int nr; | |
2890 | ||
cb969f07 | 2891 | switch (sk->sk_family) { |
1da177e4 LT |
2892 | case AF_INET: |
2893 | if (opt != IP_XFRM_POLICY) { | |
2894 | *dir = -EOPNOTSUPP; | |
2895 | return NULL; | |
2896 | } | |
2897 | break; | |
dfd56b8b | 2898 | #if IS_ENABLED(CONFIG_IPV6) |
1da177e4 LT |
2899 | case AF_INET6: |
2900 | if (opt != IPV6_XFRM_POLICY) { | |
2901 | *dir = -EOPNOTSUPP; | |
2902 | return NULL; | |
2903 | } | |
2904 | break; | |
2905 | #endif | |
2906 | default: | |
2907 | *dir = -EINVAL; | |
2908 | return NULL; | |
2909 | } | |
2910 | ||
2911 | *dir = -EINVAL; | |
2912 | ||
2913 | if (len < sizeof(*p) || | |
2914 | verify_newpolicy_info(p)) | |
2915 | return NULL; | |
2916 | ||
2917 | nr = ((len - sizeof(*p)) / sizeof(*ut)); | |
b4ad86bf | 2918 | if (validate_tmpl(nr, ut, p->sel.family)) |
1da177e4 LT |
2919 | return NULL; |
2920 | ||
a4f1bac6 HX |
2921 | if (p->dir > XFRM_POLICY_OUT) |
2922 | return NULL; | |
2923 | ||
2f09a4d5 | 2924 | xp = xfrm_policy_alloc(net, GFP_ATOMIC); |
1da177e4 LT |
2925 | if (xp == NULL) { |
2926 | *dir = -ENOBUFS; | |
2927 | return NULL; | |
2928 | } | |
2929 | ||
2930 | copy_from_user_policy(xp, p); | |
f7b6983f | 2931 | xp->type = XFRM_POLICY_TYPE_MAIN; |
1da177e4 LT |
2932 | copy_templates(xp, ut, nr); |
2933 | ||
2934 | *dir = p->dir; | |
2935 | ||
2936 | return xp; | |
2937 | } | |
2938 | ||
a1b831f2 | 2939 | static inline unsigned int xfrm_polexpire_msgsize(struct xfrm_policy *xp) |
7deb2264 TG |
2940 | { |
2941 | return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire)) | |
2942 | + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr) | |
2943 | + nla_total_size(xfrm_user_sec_ctx_size(xp->security)) | |
295fae56 | 2944 | + nla_total_size(sizeof(struct xfrm_mark)) |
7deb2264 TG |
2945 | + userpolicy_type_attrsize(); |
2946 | } | |
2947 | ||
1da177e4 | 2948 | static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp, |
214e005b | 2949 | int dir, const struct km_event *c) |
1da177e4 LT |
2950 | { |
2951 | struct xfrm_user_polexpire *upe; | |
d51d081d | 2952 | int hard = c->data.hard; |
1d1e34dd DM |
2953 | struct nlmsghdr *nlh; |
2954 | int err; | |
1da177e4 | 2955 | |
15e47304 | 2956 | nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0); |
79b8b7f4 TG |
2957 | if (nlh == NULL) |
2958 | return -EMSGSIZE; | |
1da177e4 | 2959 | |
7b67c857 | 2960 | upe = nlmsg_data(nlh); |
1da177e4 | 2961 | copy_to_user_policy(xp, &upe->pol, dir); |
1d1e34dd DM |
2962 | err = copy_to_user_tmpl(xp, skb); |
2963 | if (!err) | |
2964 | err = copy_to_user_sec_ctx(xp, skb); | |
2965 | if (!err) | |
2966 | err = copy_to_user_policy_type(xp->type, skb); | |
2967 | if (!err) | |
2968 | err = xfrm_mark_put(skb, &xp->mark); | |
2969 | if (err) { | |
2970 | nlmsg_cancel(skb, nlh); | |
2971 | return err; | |
2972 | } | |
1da177e4 LT |
2973 | upe->hard = !!hard; |
2974 | ||
053c095a JB |
2975 | nlmsg_end(skb, nlh); |
2976 | return 0; | |
1da177e4 LT |
2977 | } |
2978 | ||
214e005b | 2979 | static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c) |
1da177e4 | 2980 | { |
fc34acd3 | 2981 | struct net *net = xp_net(xp); |
1da177e4 | 2982 | struct sk_buff *skb; |
2fc5f83b | 2983 | int err; |
1da177e4 | 2984 | |
7deb2264 | 2985 | skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC); |
1da177e4 LT |
2986 | if (skb == NULL) |
2987 | return -ENOMEM; | |
2988 | ||
2fc5f83b GS |
2989 | err = build_polexpire(skb, xp, dir, c); |
2990 | BUG_ON(err < 0); | |
1da177e4 | 2991 | |
21ee543e | 2992 | return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE); |
1da177e4 LT |
2993 | } |
2994 | ||
214e005b | 2995 | static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c) |
26b15dad | 2996 | { |
a1b831f2 | 2997 | unsigned int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr); |
fc34acd3 | 2998 | struct net *net = xp_net(xp); |
26b15dad | 2999 | struct xfrm_userpolicy_info *p; |
0603eac0 | 3000 | struct xfrm_userpolicy_id *id; |
26b15dad JHS |
3001 | struct nlmsghdr *nlh; |
3002 | struct sk_buff *skb; | |
a1b831f2 AD |
3003 | unsigned int headlen; |
3004 | int err; | |
0603eac0 HX |
3005 | |
3006 | headlen = sizeof(*p); | |
3007 | if (c->event == XFRM_MSG_DELPOLICY) { | |
7deb2264 | 3008 | len += nla_total_size(headlen); |
0603eac0 HX |
3009 | headlen = sizeof(*id); |
3010 | } | |
cfbfd45a | 3011 | len += userpolicy_type_attrsize(); |
295fae56 | 3012 | len += nla_total_size(sizeof(struct xfrm_mark)); |
7deb2264 | 3013 | len += NLMSG_ALIGN(headlen); |
26b15dad | 3014 | |
7deb2264 | 3015 | skb = nlmsg_new(len, GFP_ATOMIC); |
26b15dad JHS |
3016 | if (skb == NULL) |
3017 | return -ENOMEM; | |
26b15dad | 3018 | |
15e47304 | 3019 | nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0); |
1d1e34dd | 3020 | err = -EMSGSIZE; |
79b8b7f4 | 3021 | if (nlh == NULL) |
1d1e34dd | 3022 | goto out_free_skb; |
26b15dad | 3023 | |
7b67c857 | 3024 | p = nlmsg_data(nlh); |
0603eac0 | 3025 | if (c->event == XFRM_MSG_DELPOLICY) { |
c0144bea TG |
3026 | struct nlattr *attr; |
3027 | ||
7b67c857 | 3028 | id = nlmsg_data(nlh); |
0603eac0 HX |
3029 | memset(id, 0, sizeof(*id)); |
3030 | id->dir = dir; | |
3031 | if (c->data.byid) | |
3032 | id->index = xp->index; | |
3033 | else | |
3034 | memcpy(&id->sel, &xp->selector, sizeof(id->sel)); | |
3035 | ||
c0144bea | 3036 | attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p)); |
1d1e34dd | 3037 | err = -EMSGSIZE; |
c0144bea | 3038 | if (attr == NULL) |
1d1e34dd | 3039 | goto out_free_skb; |
c0144bea TG |
3040 | |
3041 | p = nla_data(attr); | |
0603eac0 | 3042 | } |
26b15dad | 3043 | |
26b15dad | 3044 | copy_to_user_policy(xp, p, dir); |
1d1e34dd DM |
3045 | err = copy_to_user_tmpl(xp, skb); |
3046 | if (!err) | |
3047 | err = copy_to_user_policy_type(xp->type, skb); | |
3048 | if (!err) | |
3049 | err = xfrm_mark_put(skb, &xp->mark); | |
3050 | if (err) | |
3051 | goto out_free_skb; | |
295fae56 | 3052 | |
9825069d | 3053 | nlmsg_end(skb, nlh); |
26b15dad | 3054 | |
21ee543e | 3055 | return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY); |
26b15dad | 3056 | |
1d1e34dd | 3057 | out_free_skb: |
26b15dad | 3058 | kfree_skb(skb); |
1d1e34dd | 3059 | return err; |
26b15dad JHS |
3060 | } |
3061 | ||
214e005b | 3062 | static int xfrm_notify_policy_flush(const struct km_event *c) |
26b15dad | 3063 | { |
7067802e | 3064 | struct net *net = c->net; |
26b15dad JHS |
3065 | struct nlmsghdr *nlh; |
3066 | struct sk_buff *skb; | |
1d1e34dd | 3067 | int err; |
26b15dad | 3068 | |
7deb2264 | 3069 | skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC); |
26b15dad JHS |
3070 | if (skb == NULL) |
3071 | return -ENOMEM; | |
26b15dad | 3072 | |
15e47304 | 3073 | nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0); |
1d1e34dd | 3074 | err = -EMSGSIZE; |
79b8b7f4 | 3075 | if (nlh == NULL) |
1d1e34dd DM |
3076 | goto out_free_skb; |
3077 | err = copy_to_user_policy_type(c->data.type, skb); | |
3078 | if (err) | |
3079 | goto out_free_skb; | |
26b15dad | 3080 | |
9825069d | 3081 | nlmsg_end(skb, nlh); |
26b15dad | 3082 | |
21ee543e | 3083 | return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY); |
26b15dad | 3084 | |
1d1e34dd | 3085 | out_free_skb: |
26b15dad | 3086 | kfree_skb(skb); |
1d1e34dd | 3087 | return err; |
26b15dad JHS |
3088 | } |
3089 | ||
214e005b | 3090 | static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c) |
26b15dad JHS |
3091 | { |
3092 | ||
3093 | switch (c->event) { | |
f60f6b8f HX |
3094 | case XFRM_MSG_NEWPOLICY: |
3095 | case XFRM_MSG_UPDPOLICY: | |
3096 | case XFRM_MSG_DELPOLICY: | |
26b15dad | 3097 | return xfrm_notify_policy(xp, dir, c); |
f60f6b8f | 3098 | case XFRM_MSG_FLUSHPOLICY: |
26b15dad | 3099 | return xfrm_notify_policy_flush(c); |
f60f6b8f | 3100 | case XFRM_MSG_POLEXPIRE: |
26b15dad JHS |
3101 | return xfrm_exp_policy_notify(xp, dir, c); |
3102 | default: | |
62db5cfd | 3103 | printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n", |
3104 | c->event); | |
26b15dad JHS |
3105 | } |
3106 | ||
3107 | return 0; | |
3108 | ||
3109 | } | |
3110 | ||
a1b831f2 | 3111 | static inline unsigned int xfrm_report_msgsize(void) |
7deb2264 TG |
3112 | { |
3113 | return NLMSG_ALIGN(sizeof(struct xfrm_user_report)); | |
3114 | } | |
3115 | ||
97a64b45 MN |
3116 | static int build_report(struct sk_buff *skb, u8 proto, |
3117 | struct xfrm_selector *sel, xfrm_address_t *addr) | |
3118 | { | |
3119 | struct xfrm_user_report *ur; | |
3120 | struct nlmsghdr *nlh; | |
97a64b45 | 3121 | |
79b8b7f4 TG |
3122 | nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0); |
3123 | if (nlh == NULL) | |
3124 | return -EMSGSIZE; | |
97a64b45 | 3125 | |
7b67c857 | 3126 | ur = nlmsg_data(nlh); |
97a64b45 MN |
3127 | ur->proto = proto; |
3128 | memcpy(&ur->sel, sel, sizeof(ur->sel)); | |
3129 | ||
1d1e34dd DM |
3130 | if (addr) { |
3131 | int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr); | |
3132 | if (err) { | |
3133 | nlmsg_cancel(skb, nlh); | |
3134 | return err; | |
3135 | } | |
3136 | } | |
053c095a JB |
3137 | nlmsg_end(skb, nlh); |
3138 | return 0; | |
97a64b45 MN |
3139 | } |
3140 | ||
db983c11 AD |
3141 | static int xfrm_send_report(struct net *net, u8 proto, |
3142 | struct xfrm_selector *sel, xfrm_address_t *addr) | |
97a64b45 MN |
3143 | { |
3144 | struct sk_buff *skb; | |
2fc5f83b | 3145 | int err; |
97a64b45 | 3146 | |
7deb2264 | 3147 | skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC); |
97a64b45 MN |
3148 | if (skb == NULL) |
3149 | return -ENOMEM; | |
3150 | ||
2fc5f83b GS |
3151 | err = build_report(skb, proto, sel, addr); |
3152 | BUG_ON(err < 0); | |
97a64b45 | 3153 | |
21ee543e | 3154 | return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT); |
97a64b45 MN |
3155 | } |
3156 | ||
a1b831f2 | 3157 | static inline unsigned int xfrm_mapping_msgsize(void) |
3a2dfbe8 MW |
3158 | { |
3159 | return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping)); | |
3160 | } | |
3161 | ||
3162 | static int build_mapping(struct sk_buff *skb, struct xfrm_state *x, | |
3163 | xfrm_address_t *new_saddr, __be16 new_sport) | |
3164 | { | |
3165 | struct xfrm_user_mapping *um; | |
3166 | struct nlmsghdr *nlh; | |
3167 | ||
3168 | nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0); | |
3169 | if (nlh == NULL) | |
3170 | return -EMSGSIZE; | |
3171 | ||
3172 | um = nlmsg_data(nlh); | |
3173 | ||
3174 | memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr)); | |
3175 | um->id.spi = x->id.spi; | |
3176 | um->id.family = x->props.family; | |
3177 | um->id.proto = x->id.proto; | |
3178 | memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr)); | |
3179 | memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr)); | |
3180 | um->new_sport = new_sport; | |
3181 | um->old_sport = x->encap->encap_sport; | |
3182 | um->reqid = x->props.reqid; | |
3183 | ||
053c095a JB |
3184 | nlmsg_end(skb, nlh); |
3185 | return 0; | |
3a2dfbe8 MW |
3186 | } |
3187 | ||
3188 | static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr, | |
3189 | __be16 sport) | |
3190 | { | |
a6483b79 | 3191 | struct net *net = xs_net(x); |
3a2dfbe8 | 3192 | struct sk_buff *skb; |
2fc5f83b | 3193 | int err; |
3a2dfbe8 MW |
3194 | |
3195 | if (x->id.proto != IPPROTO_ESP) | |
3196 | return -EINVAL; | |
3197 | ||
3198 | if (!x->encap) | |
3199 | return -EINVAL; | |
3200 | ||
3201 | skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC); | |
3202 | if (skb == NULL) | |
3203 | return -ENOMEM; | |
3204 | ||
2fc5f83b GS |
3205 | err = build_mapping(skb, x, ipaddr, sport); |
3206 | BUG_ON(err < 0); | |
3a2dfbe8 | 3207 | |
21ee543e | 3208 | return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING); |
3a2dfbe8 MW |
3209 | } |
3210 | ||
0f24558e HG |
3211 | static bool xfrm_is_alive(const struct km_event *c) |
3212 | { | |
3213 | return (bool)xfrm_acquire_is_on(c->net); | |
3214 | } | |
3215 | ||
1da177e4 | 3216 | static struct xfrm_mgr netlink_mgr = { |
1da177e4 LT |
3217 | .notify = xfrm_send_state_notify, |
3218 | .acquire = xfrm_send_acquire, | |
3219 | .compile_policy = xfrm_compile_policy, | |
3220 | .notify_policy = xfrm_send_policy_notify, | |
97a64b45 | 3221 | .report = xfrm_send_report, |
5c79de6e | 3222 | .migrate = xfrm_send_migrate, |
3a2dfbe8 | 3223 | .new_mapping = xfrm_send_mapping, |
0f24558e | 3224 | .is_alive = xfrm_is_alive, |
1da177e4 LT |
3225 | }; |
3226 | ||
a6483b79 | 3227 | static int __net_init xfrm_user_net_init(struct net *net) |
1da177e4 | 3228 | { |
be33690d | 3229 | struct sock *nlsk; |
a31f2d17 PNA |
3230 | struct netlink_kernel_cfg cfg = { |
3231 | .groups = XFRMNLGRP_MAX, | |
3232 | .input = xfrm_netlink_rcv, | |
3233 | }; | |
be33690d | 3234 | |
9f00d977 | 3235 | nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg); |
be33690d | 3236 | if (nlsk == NULL) |
1da177e4 | 3237 | return -ENOMEM; |
d79d792e | 3238 | net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */ |
cf778b00 | 3239 | rcu_assign_pointer(net->xfrm.nlsk, nlsk); |
1da177e4 LT |
3240 | return 0; |
3241 | } | |
3242 | ||
d79d792e | 3243 | static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list) |
1da177e4 | 3244 | { |
d79d792e EB |
3245 | struct net *net; |
3246 | list_for_each_entry(net, net_exit_list, exit_list) | |
a9b3cd7f | 3247 | RCU_INIT_POINTER(net->xfrm.nlsk, NULL); |
d79d792e EB |
3248 | synchronize_net(); |
3249 | list_for_each_entry(net, net_exit_list, exit_list) | |
3250 | netlink_kernel_release(net->xfrm.nlsk_stash); | |
1da177e4 LT |
3251 | } |
3252 | ||
a6483b79 | 3253 | static struct pernet_operations xfrm_user_net_ops = { |
d79d792e EB |
3254 | .init = xfrm_user_net_init, |
3255 | .exit_batch = xfrm_user_net_exit, | |
a6483b79 AD |
3256 | }; |
3257 | ||
3258 | static int __init xfrm_user_init(void) | |
3259 | { | |
3260 | int rv; | |
3261 | ||
3262 | printk(KERN_INFO "Initializing XFRM netlink socket\n"); | |
3263 | ||
3264 | rv = register_pernet_subsys(&xfrm_user_net_ops); | |
3265 | if (rv < 0) | |
3266 | return rv; | |
3267 | rv = xfrm_register_km(&netlink_mgr); | |
3268 | if (rv < 0) | |
3269 | unregister_pernet_subsys(&xfrm_user_net_ops); | |
3270 | return rv; | |
3271 | } | |
3272 | ||
3273 | static void __exit xfrm_user_exit(void) | |
3274 | { | |
3275 | xfrm_unregister_km(&netlink_mgr); | |
3276 | unregister_pernet_subsys(&xfrm_user_net_ops); | |
3277 | } | |
3278 | ||
1da177e4 LT |
3279 | module_init(xfrm_user_init); |
3280 | module_exit(xfrm_user_exit); | |
3281 | MODULE_LICENSE("GPL"); | |
4fdb3bb7 | 3282 | MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM); |
f8cd5488 | 3283 |