blob: 84dd85ceeeeae537c0e1cf826de764e419ce136a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* xfrm_user.c: User interface to configure xfrm engine.
2 *
3 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
4 *
5 * Changes:
6 * Mitsuru KANDA @USAGI
7 * Kazunori MIYAZAWA @USAGI
8 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
9 * IPv6 support
Trent Jaegerdf718372005-12-13 23:12:27 -080010 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
Herbert Xu9409f382006-08-06 19:49:12 +100013#include <linux/crypto.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#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>
Thomas Graf88fc2c82005-11-10 02:25:54 +010028#include <net/netlink.h>
Nicolas Dichtelfa6dd8a2011-01-11 08:04:12 +000029#include <net/ah.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/uaccess.h>
Eric Dumazetdfd56b82011-12-10 09:48:31 +000031#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -070032#include <linux/in6.h>
33#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Herbert Xu1a6509d2008-01-28 19:37:29 -080035static inline int aead_len(struct xfrm_algo_aead *alg)
36{
37 return sizeof(*alg) + ((alg->alg_key_len + 7) / 8);
38}
39
Thomas Graf5424f322007-08-22 14:01:33 -070040static int verify_one_alg(struct nlattr **attrs, enum xfrm_attr_type_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
Thomas Graf5424f322007-08-22 14:01:33 -070042 struct nlattr *rt = attrs[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 struct xfrm_algo *algp;
44
45 if (!rt)
46 return 0;
47
Thomas Graf5424f322007-08-22 14:01:33 -070048 algp = nla_data(rt);
Eric Dumazet0f99be02008-01-08 23:39:06 -080049 if (nla_len(rt) < xfrm_alg_len(algp))
Herbert Xu31c26852005-05-19 12:39:49 -070050 return -EINVAL;
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 switch (type) {
53 case XFRMA_ALG_AUTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 case XFRMA_ALG_CRYPT:
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 case XFRMA_ALG_COMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 break;
57
58 default:
59 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
63 return 0;
64}
65
Martin Willi4447bb32009-11-25 00:29:52 +000066static int verify_auth_trunc(struct nlattr **attrs)
67{
68 struct nlattr *rt = attrs[XFRMA_ALG_AUTH_TRUNC];
69 struct xfrm_algo_auth *algp;
70
71 if (!rt)
72 return 0;
73
74 algp = nla_data(rt);
75 if (nla_len(rt) < xfrm_alg_auth_len(algp))
76 return -EINVAL;
77
78 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
79 return 0;
80}
81
Herbert Xu1a6509d2008-01-28 19:37:29 -080082static int verify_aead(struct nlattr **attrs)
83{
84 struct nlattr *rt = attrs[XFRMA_ALG_AEAD];
85 struct xfrm_algo_aead *algp;
86
87 if (!rt)
88 return 0;
89
90 algp = nla_data(rt);
91 if (nla_len(rt) < aead_len(algp))
92 return -EINVAL;
93
94 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
95 return 0;
96}
97
Thomas Graf5424f322007-08-22 14:01:33 -070098static void verify_one_addr(struct nlattr **attrs, enum xfrm_attr_type_t type,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070099 xfrm_address_t **addrp)
100{
Thomas Graf5424f322007-08-22 14:01:33 -0700101 struct nlattr *rt = attrs[type];
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700102
Thomas Grafcf5cb792007-08-22 13:59:04 -0700103 if (rt && addrp)
Thomas Graf5424f322007-08-22 14:01:33 -0700104 *addrp = nla_data(rt);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700105}
Trent Jaegerdf718372005-12-13 23:12:27 -0800106
Thomas Graf5424f322007-08-22 14:01:33 -0700107static inline int verify_sec_ctx_len(struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -0800108{
Thomas Graf5424f322007-08-22 14:01:33 -0700109 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -0800110 struct xfrm_user_sec_ctx *uctx;
Trent Jaegerdf718372005-12-13 23:12:27 -0800111
112 if (!rt)
113 return 0;
114
Thomas Graf5424f322007-08-22 14:01:33 -0700115 uctx = nla_data(rt);
Thomas Grafcf5cb792007-08-22 13:59:04 -0700116 if (uctx->len != (sizeof(struct xfrm_user_sec_ctx) + uctx->ctx_len))
Trent Jaegerdf718372005-12-13 23:12:27 -0800117 return -EINVAL;
118
119 return 0;
120}
121
Steffen Klassertd8647b72011-03-08 00:10:27 +0000122static inline int verify_replay(struct xfrm_usersa_info *p,
123 struct nlattr **attrs)
124{
125 struct nlattr *rt = attrs[XFRMA_REPLAY_ESN_VAL];
126
Steffen Klassert7833aa02011-04-25 19:41:21 +0000127 if ((p->flags & XFRM_STATE_ESN) && !rt)
128 return -EINVAL;
129
Steffen Klassertd8647b72011-03-08 00:10:27 +0000130 if (!rt)
131 return 0;
132
Steffen Klassert02aadf72011-03-28 19:48:09 +0000133 if (p->id.proto != IPPROTO_ESP)
134 return -EINVAL;
135
Steffen Klassertd8647b72011-03-08 00:10:27 +0000136 if (p->replay_window != 0)
137 return -EINVAL;
138
139 return 0;
140}
Trent Jaegerdf718372005-12-13 23:12:27 -0800141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142static int verify_newsa_info(struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700143 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
145 int err;
146
147 err = -EINVAL;
148 switch (p->family) {
149 case AF_INET:
150 break;
151
152 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000153#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 break;
155#else
156 err = -EAFNOSUPPORT;
157 goto out;
158#endif
159
160 default:
161 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 err = -EINVAL;
165 switch (p->id.proto) {
166 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000167 if ((!attrs[XFRMA_ALG_AUTH] &&
168 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800169 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700170 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000171 attrs[XFRMA_ALG_COMP] ||
172 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 goto out;
174 break;
175
176 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800177 if (attrs[XFRMA_ALG_COMP])
178 goto out;
179 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000180 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800181 !attrs[XFRMA_ALG_CRYPT] &&
182 !attrs[XFRMA_ALG_AEAD])
183 goto out;
184 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000185 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800186 attrs[XFRMA_ALG_CRYPT]) &&
187 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000189 if (attrs[XFRMA_TFCPAD] &&
190 p->mode != XFRM_MODE_TUNNEL)
191 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 break;
193
194 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700195 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800196 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700197 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000198 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000199 attrs[XFRMA_ALG_CRYPT] ||
200 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 goto out;
202 break;
203
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000204#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700205 case IPPROTO_DSTOPTS:
206 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700207 if (attrs[XFRMA_ALG_COMP] ||
208 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000209 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800210 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700211 attrs[XFRMA_ALG_CRYPT] ||
212 attrs[XFRMA_ENCAP] ||
213 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000214 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700215 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700216 goto out;
217 break;
218#endif
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 default:
221 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Herbert Xu1a6509d2008-01-28 19:37:29 -0800224 if ((err = verify_aead(attrs)))
225 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000226 if ((err = verify_auth_trunc(attrs)))
227 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700228 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700230 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700232 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700234 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800235 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000236 if ((err = verify_replay(p, attrs)))
237 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 err = -EINVAL;
240 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700241 case XFRM_MODE_TRANSPORT:
242 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700243 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a69452c2006-10-03 23:47:05 -0700244 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 break;
246
247 default:
248 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 err = 0;
252
253out:
254 return err;
255}
256
257static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800258 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700259 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 struct xfrm_algo *p, *ualg;
262 struct xfrm_algo_desc *algo;
263
264 if (!rta)
265 return 0;
266
Thomas Graf5424f322007-08-22 14:01:33 -0700267 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 algo = get_byname(ualg->alg_name, 1);
270 if (!algo)
271 return -ENOSYS;
272 *props = algo->desc.sadb_alg_id;
273
Eric Dumazet0f99be02008-01-08 23:39:06 -0800274 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (!p)
276 return -ENOMEM;
277
Herbert Xu04ff1262006-08-13 08:50:00 +1000278 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 *algpp = p;
280 return 0;
281}
282
Martin Willi4447bb32009-11-25 00:29:52 +0000283static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
284 struct nlattr *rta)
285{
286 struct xfrm_algo *ualg;
287 struct xfrm_algo_auth *p;
288 struct xfrm_algo_desc *algo;
289
290 if (!rta)
291 return 0;
292
293 ualg = nla_data(rta);
294
295 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
296 if (!algo)
297 return -ENOSYS;
298 *props = algo->desc.sadb_alg_id;
299
300 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
301 if (!p)
302 return -ENOMEM;
303
304 strcpy(p->alg_name, algo->name);
305 p->alg_key_len = ualg->alg_key_len;
306 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
307 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
308
309 *algpp = p;
310 return 0;
311}
312
313static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
314 struct nlattr *rta)
315{
316 struct xfrm_algo_auth *p, *ualg;
317 struct xfrm_algo_desc *algo;
318
319 if (!rta)
320 return 0;
321
322 ualg = nla_data(rta);
323
324 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
325 if (!algo)
326 return -ENOSYS;
Nicolas Dichtelfa6dd8a2011-01-11 08:04:12 +0000327 if ((ualg->alg_trunc_len / 8) > MAX_AH_AUTH_LEN ||
328 ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000329 return -EINVAL;
330 *props = algo->desc.sadb_alg_id;
331
332 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
333 if (!p)
334 return -ENOMEM;
335
336 strcpy(p->alg_name, algo->name);
337 if (!p->alg_trunc_len)
338 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
339
340 *algpp = p;
341 return 0;
342}
343
Herbert Xu1a6509d2008-01-28 19:37:29 -0800344static int attach_aead(struct xfrm_algo_aead **algpp, u8 *props,
345 struct nlattr *rta)
346{
347 struct xfrm_algo_aead *p, *ualg;
348 struct xfrm_algo_desc *algo;
349
350 if (!rta)
351 return 0;
352
353 ualg = nla_data(rta);
354
355 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
356 if (!algo)
357 return -ENOSYS;
358 *props = algo->desc.sadb_alg_id;
359
360 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
361 if (!p)
362 return -ENOMEM;
363
364 strcpy(p->alg_name, algo->name);
365 *algpp = p;
366 return 0;
367}
368
Steffen Klasserte2b19122011-03-28 19:47:30 +0000369static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
370 struct nlattr *rp)
371{
372 struct xfrm_replay_state_esn *up;
373
374 if (!replay_esn || !rp)
375 return 0;
376
377 up = nla_data(rp);
378
379 if (xfrm_replay_state_esn_len(replay_esn) !=
380 xfrm_replay_state_esn_len(up))
381 return -EINVAL;
382
383 return 0;
384}
385
Steffen Klassertd8647b72011-03-08 00:10:27 +0000386static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
387 struct xfrm_replay_state_esn **preplay_esn,
388 struct nlattr *rta)
389{
390 struct xfrm_replay_state_esn *p, *pp, *up;
391
392 if (!rta)
393 return 0;
394
395 up = nla_data(rta);
396
397 p = kmemdup(up, xfrm_replay_state_esn_len(up), GFP_KERNEL);
398 if (!p)
399 return -ENOMEM;
400
401 pp = kmemdup(up, xfrm_replay_state_esn_len(up), GFP_KERNEL);
402 if (!pp) {
403 kfree(p);
404 return -ENOMEM;
405 }
406
407 *replay_esn = p;
408 *preplay_esn = pp;
409
410 return 0;
411}
412
Joy Latten661697f2007-04-13 16:14:35 -0700413static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800414{
Trent Jaegerdf718372005-12-13 23:12:27 -0800415 int len = 0;
416
417 if (xfrm_ctx) {
418 len += sizeof(struct xfrm_user_sec_ctx);
419 len += xfrm_ctx->ctx_len;
420 }
421 return len;
422}
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
425{
426 memcpy(&x->id, &p->id, sizeof(x->id));
427 memcpy(&x->sel, &p->sel, sizeof(x->sel));
428 memcpy(&x->lft, &p->lft, sizeof(x->lft));
429 x->props.mode = p->mode;
430 x->props.replay_window = p->replay_window;
431 x->props.reqid = p->reqid;
432 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700433 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700435
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700436 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700437 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800440/*
441 * someday when pfkey also has support, we could have the code
442 * somehow made shareable and move it to xfrm_state.c - JHS
443 *
444*/
Thomas Graf5424f322007-08-22 14:01:33 -0700445static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800446{
Thomas Graf5424f322007-08-22 14:01:33 -0700447 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +0000448 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -0700449 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
450 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
451 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800452
Steffen Klassertd8647b72011-03-08 00:10:27 +0000453 if (re) {
454 struct xfrm_replay_state_esn *replay_esn;
455 replay_esn = nla_data(re);
456 memcpy(x->replay_esn, replay_esn,
457 xfrm_replay_state_esn_len(replay_esn));
458 memcpy(x->preplay_esn, replay_esn,
459 xfrm_replay_state_esn_len(replay_esn));
460 }
461
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800462 if (rp) {
463 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700464 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800465 memcpy(&x->replay, replay, sizeof(*replay));
466 memcpy(&x->preplay, replay, sizeof(*replay));
467 }
468
469 if (lt) {
470 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700471 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800472 x->curlft.bytes = ltime->bytes;
473 x->curlft.packets = ltime->packets;
474 x->curlft.add_time = ltime->add_time;
475 x->curlft.use_time = ltime->use_time;
476 }
477
Thomas Grafcf5cb792007-08-22 13:59:04 -0700478 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700479 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800480
Thomas Grafcf5cb792007-08-22 13:59:04 -0700481 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700482 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800483}
484
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800485static struct xfrm_state *xfrm_state_construct(struct net *net,
486 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700487 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 int *errp)
489{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800490 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 int err = -ENOMEM;
492
493 if (!x)
494 goto error_no_put;
495
496 copy_from_user_state(x, p);
497
Herbert Xu1a6509d2008-01-28 19:37:29 -0800498 if ((err = attach_aead(&x->aead, &x->props.ealgo,
499 attrs[XFRMA_ALG_AEAD])))
500 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000501 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
502 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000504 if (!x->props.aalgo) {
505 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
506 attrs[XFRMA_ALG_AUTH])))
507 goto error;
508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if ((err = attach_one_algo(&x->ealg, &x->props.ealgo,
510 xfrm_ealg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700511 attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 goto error;
513 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
514 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700515 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700517
518 if (attrs[XFRMA_ENCAP]) {
519 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
520 sizeof(*x->encap), GFP_KERNEL);
521 if (x->encap == NULL)
522 goto error;
523 }
524
Martin Willi35d28562010-12-08 04:37:49 +0000525 if (attrs[XFRMA_TFCPAD])
526 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
527
Thomas Graffd211502007-09-06 03:28:08 -0700528 if (attrs[XFRMA_COADDR]) {
529 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
530 sizeof(*x->coaddr), GFP_KERNEL);
531 if (x->coaddr == NULL)
532 goto error;
533 }
534
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000535 xfrm_mark_get(attrs, &x->mark);
536
Wei Yongjuna454f0c2011-03-21 18:08:28 -0700537 err = __xfrm_init_state(x, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (err)
539 goto error;
540
Thomas Graffd211502007-09-06 03:28:08 -0700541 if (attrs[XFRMA_SEC_CTX] &&
542 security_xfrm_state_alloc(x, nla_data(attrs[XFRMA_SEC_CTX])))
Trent Jaegerdf718372005-12-13 23:12:27 -0800543 goto error;
544
Steffen Klassertd8647b72011-03-08 00:10:27 +0000545 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
546 attrs[XFRMA_REPLAY_ESN_VAL])))
547 goto error;
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800550 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800551 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800552 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800553
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000554 if ((err = xfrm_init_replay(x)))
555 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800556
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000557 /* override default values from above */
Thomas Graf5424f322007-08-22 14:01:33 -0700558 xfrm_update_ae_params(x, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 return x;
561
562error:
563 x->km.state = XFRM_STATE_DEAD;
564 xfrm_state_put(x);
565error_no_put:
566 *errp = err;
567 return NULL;
568}
569
Christoph Hellwig22e70052007-01-02 15:22:30 -0800570static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700571 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800573 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700574 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 struct xfrm_state *x;
576 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700577 struct km_event c;
Patrick McHardyc53fa1e2011-03-03 10:55:40 -0800578 uid_t loginuid = audit_get_loginuid(current);
579 u32 sessionid = audit_get_sessionid(current);
580 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Thomas Graf35a7aa02007-08-22 14:00:40 -0700582 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (err)
584 return err;
585
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800586 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (!x)
588 return err;
589
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700590 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
592 err = xfrm_state_add(x);
593 else
594 err = xfrm_state_update(x);
595
Patrick McHardyc53fa1e2011-03-03 10:55:40 -0800596 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -0400597 xfrm_audit_state_add(x, err ? 0 : 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -0600598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (err < 0) {
600 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800601 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700602 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
604
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700605 c.seq = nlh->nlmsg_seq;
606 c.pid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700607 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700608
609 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700610out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700611 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return err;
613}
614
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800615static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
616 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700617 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700618 int *errp)
619{
620 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000621 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700622 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000623 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700624
625 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
626 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000627 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700628 } else {
629 xfrm_address_t *saddr = NULL;
630
Thomas Graf35a7aa02007-08-22 14:00:40 -0700631 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700632 if (!saddr) {
633 err = -EINVAL;
634 goto out;
635 }
636
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800637 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000638 x = xfrm_state_lookup_byaddr(net, mark,
639 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800640 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700641 }
642
643 out:
644 if (!x && errp)
645 *errp = err;
646 return x;
647}
648
Christoph Hellwig22e70052007-01-02 15:22:30 -0800649static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700650 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800652 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700654 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700655 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700656 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -0800657 uid_t loginuid = audit_get_loginuid(current);
658 u32 sessionid = audit_get_sessionid(current);
659 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800661 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700663 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
David S. Miller6f68dc32006-06-08 23:58:52 -0700665 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700666 goto out;
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700669 err = -EPERM;
670 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 }
672
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700673 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600674
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700675 if (err < 0)
676 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700677
678 c.seq = nlh->nlmsg_seq;
679 c.pid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700680 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700681 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700683out:
Patrick McHardyc53fa1e2011-03-03 10:55:40 -0800684 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -0400685 xfrm_audit_state_delete(x, err ? 0 : 1, loginuid, sessionid, sid);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700686 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700687 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
690static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
691{
Mathias Krausef778a632012-09-19 11:33:39 +0000692 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 memcpy(&p->id, &x->id, sizeof(p->id));
694 memcpy(&p->sel, &x->sel, sizeof(p->sel));
695 memcpy(&p->lft, &x->lft, sizeof(p->lft));
696 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
697 memcpy(&p->stats, &x->stats, sizeof(p->stats));
David S. Miller54489c142006-10-27 15:29:47 -0700698 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 p->mode = x->props.mode;
700 p->replay_window = x->props.replay_window;
701 p->reqid = x->props.reqid;
702 p->family = x->props.family;
703 p->flags = x->props.flags;
704 p->seq = x->km.seq;
705}
706
707struct xfrm_dump_info {
708 struct sk_buff *in_skb;
709 struct sk_buff *out_skb;
710 u32 nlmsg_seq;
711 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712};
713
Thomas Grafc0144be2007-08-22 13:55:43 -0700714static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
715{
Thomas Grafc0144be2007-08-22 13:55:43 -0700716 struct xfrm_user_sec_ctx *uctx;
717 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700718 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700719
720 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
721 if (attr == NULL)
722 return -EMSGSIZE;
723
724 uctx = nla_data(attr);
725 uctx->exttype = XFRMA_SEC_CTX;
726 uctx->len = ctx_size;
727 uctx->ctx_doi = s->ctx_doi;
728 uctx->ctx_alg = s->ctx_alg;
729 uctx->ctx_len = s->ctx_len;
730 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
731
732 return 0;
733}
734
Martin Willi4447bb32009-11-25 00:29:52 +0000735static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
736{
737 struct xfrm_algo *algo;
738 struct nlattr *nla;
739
740 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
741 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
742 if (!nla)
743 return -EMSGSIZE;
744
745 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000746 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000747 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
748 algo->alg_key_len = auth->alg_key_len;
749
750 return 0;
751}
752
Herbert Xu68325d32007-10-09 13:30:57 -0700753/* Don't change this without updating xfrm_sa_len! */
754static int copy_to_user_state_extra(struct xfrm_state *x,
755 struct xfrm_usersa_info *p,
756 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700758 int ret = 0;
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 copy_to_user_state(x, p);
761
David S. Miller1d1e34d2012-06-27 21:57:03 -0700762 if (x->coaddr) {
763 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
764 if (ret)
765 goto out;
766 }
767 if (x->lastused) {
768 ret = nla_put_u64(skb, XFRMA_LASTUSED, x->lastused);
769 if (ret)
770 goto out;
771 }
772 if (x->aead) {
773 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
774 if (ret)
775 goto out;
776 }
777 if (x->aalg) {
778 ret = copy_to_user_auth(x->aalg, skb);
779 if (!ret)
780 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
781 xfrm_alg_auth_len(x->aalg), x->aalg);
782 if (ret)
783 goto out;
784 }
785 if (x->ealg) {
786 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
787 if (ret)
788 goto out;
789 }
790 if (x->calg) {
791 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
792 if (ret)
793 goto out;
794 }
795 if (x->encap) {
796 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
797 if (ret)
798 goto out;
799 }
800 if (x->tfcpad) {
801 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
802 if (ret)
803 goto out;
804 }
805 ret = xfrm_mark_put(skb, &x->mark);
806 if (ret)
807 goto out;
808 if (x->replay_esn) {
809 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
810 xfrm_replay_state_esn_len(x->replay_esn),
811 x->replay_esn);
812 if (ret)
813 goto out;
814 }
815 if (x->security)
816 ret = copy_sec_ctx(x->security, skb);
817out:
818 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700819}
820
821static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
822{
823 struct xfrm_dump_info *sp = ptr;
824 struct sk_buff *in_skb = sp->in_skb;
825 struct sk_buff *skb = sp->out_skb;
826 struct xfrm_usersa_info *p;
827 struct nlmsghdr *nlh;
828 int err;
829
Herbert Xu68325d32007-10-09 13:30:57 -0700830 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).pid, sp->nlmsg_seq,
831 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
832 if (nlh == NULL)
833 return -EMSGSIZE;
834
835 p = nlmsg_data(nlh);
836
837 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700838 if (err) {
839 nlmsg_cancel(skb, nlh);
840 return err;
841 }
Thomas Graf98250692007-08-22 12:47:26 -0700842 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
845
Timo Teras4c563f72008-02-28 21:31:08 -0800846static int xfrm_dump_sa_done(struct netlink_callback *cb)
847{
848 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
849 xfrm_state_walk_done(walk);
850 return 0;
851}
852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
854{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800855 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800856 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 struct xfrm_dump_info info;
858
Timo Teras4c563f72008-02-28 21:31:08 -0800859 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
860 sizeof(cb->args) - sizeof(cb->args[0]));
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 info.in_skb = cb->skb;
863 info.out_skb = skb;
864 info.nlmsg_seq = cb->nlh->nlmsg_seq;
865 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800866
867 if (!cb->args[0]) {
868 cb->args[0] = 1;
869 xfrm_state_walk_init(walk, 0);
870 }
871
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800872 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 return skb->len;
875}
876
877static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
878 struct xfrm_state *x, u32 seq)
879{
880 struct xfrm_dump_info info;
881 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +0000882 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Thomas Graf7deb2262007-08-22 13:57:39 -0700884 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if (!skb)
886 return ERR_PTR(-ENOMEM);
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 info.in_skb = in_skb;
889 info.out_skb = skb;
890 info.nlmsg_seq = seq;
891 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Mathias Krause864745d2012-09-13 11:41:26 +0000893 err = dump_one_state(x, 0, &info);
894 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +0000896 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
898
899 return skb;
900}
901
Thomas Graf7deb2262007-08-22 13:57:39 -0700902static inline size_t xfrm_spdinfo_msgsize(void)
903{
904 return NLMSG_ALIGN(4)
905 + nla_total_size(sizeof(struct xfrmu_spdinfo))
906 + nla_total_size(sizeof(struct xfrmu_spdhinfo));
907}
908
Alexey Dobriyane0710412010-01-23 13:37:10 +0000909static int build_spdinfo(struct sk_buff *skb, struct net *net,
910 u32 pid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700911{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700912 struct xfrmk_spdinfo si;
913 struct xfrmu_spdinfo spc;
914 struct xfrmu_spdhinfo sph;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700915 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700916 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700917 u32 *f;
918
919 nlh = nlmsg_put(skb, pid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300920 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700921 return -EMSGSIZE;
922
923 f = nlmsg_data(nlh);
924 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +0000925 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700926 spc.incnt = si.incnt;
927 spc.outcnt = si.outcnt;
928 spc.fwdcnt = si.fwdcnt;
929 spc.inscnt = si.inscnt;
930 spc.outscnt = si.outscnt;
931 spc.fwdscnt = si.fwdscnt;
932 sph.spdhcnt = si.spdhcnt;
933 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700934
David S. Miller1d1e34d2012-06-27 21:57:03 -0700935 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
936 if (!err)
937 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
938 if (err) {
939 nlmsg_cancel(skb, nlh);
940 return err;
941 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700942
943 return nlmsg_end(skb, nlh);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700944}
945
946static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700947 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700948{
Alexey Dobriyana6483b72008-11-25 17:38:20 -0800949 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700950 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -0700951 u32 *flags = nlmsg_data(nlh);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700952 u32 spid = NETLINK_CB(skb).pid;
953 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700954
Thomas Graf7deb2262007-08-22 13:57:39 -0700955 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700956 if (r_skb == NULL)
957 return -ENOMEM;
958
Alexey Dobriyane0710412010-01-23 13:37:10 +0000959 if (build_spdinfo(r_skb, net, spid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700960 BUG();
961
Alexey Dobriyana6483b72008-11-25 17:38:20 -0800962 return nlmsg_unicast(net->xfrm.nlsk, r_skb, spid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700963}
964
Thomas Graf7deb2262007-08-22 13:57:39 -0700965static inline size_t xfrm_sadinfo_msgsize(void)
966{
967 return NLMSG_ALIGN(4)
968 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
969 + nla_total_size(4); /* XFRMA_SAD_CNT */
970}
971
Alexey Dobriyane0710412010-01-23 13:37:10 +0000972static int build_sadinfo(struct sk_buff *skb, struct net *net,
973 u32 pid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700974{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -0700975 struct xfrmk_sadinfo si;
976 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700977 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700978 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700979 u32 *f;
980
981 nlh = nlmsg_put(skb, pid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300982 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700983 return -EMSGSIZE;
984
985 f = nlmsg_data(nlh);
986 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +0000987 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700988
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -0700989 sh.sadhmcnt = si.sadhmcnt;
990 sh.sadhcnt = si.sadhcnt;
991
David S. Miller1d1e34d2012-06-27 21:57:03 -0700992 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
993 if (!err)
994 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
995 if (err) {
996 nlmsg_cancel(skb, nlh);
997 return err;
998 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700999
1000 return nlmsg_end(skb, nlh);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001001}
1002
1003static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001004 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001005{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001006 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001007 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001008 u32 *flags = nlmsg_data(nlh);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001009 u32 spid = NETLINK_CB(skb).pid;
1010 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001011
Thomas Graf7deb2262007-08-22 13:57:39 -07001012 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001013 if (r_skb == NULL)
1014 return -ENOMEM;
1015
Alexey Dobriyane0710412010-01-23 13:37:10 +00001016 if (build_sadinfo(r_skb, net, spid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001017 BUG();
1018
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001019 return nlmsg_unicast(net->xfrm.nlsk, r_skb, spid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001020}
1021
Christoph Hellwig22e70052007-01-02 15:22:30 -08001022static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001023 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001025 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001026 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 struct xfrm_state *x;
1028 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001029 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001031 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (x == NULL)
1033 goto out_noput;
1034
1035 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1036 if (IS_ERR(resp_skb)) {
1037 err = PTR_ERR(resp_skb);
1038 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001039 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
1041 xfrm_state_put(x);
1042out_noput:
1043 return err;
1044}
1045
1046static int verify_userspi_info(struct xfrm_userspi_info *p)
1047{
1048 switch (p->info.id.proto) {
1049 case IPPROTO_AH:
1050 case IPPROTO_ESP:
1051 break;
1052
1053 case IPPROTO_COMP:
1054 /* IPCOMP spi is 16-bits. */
1055 if (p->max >= 0x10000)
1056 return -EINVAL;
1057 break;
1058
1059 default:
1060 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
1063 if (p->min > p->max)
1064 return -EINVAL;
1065
1066 return 0;
1067}
1068
Christoph Hellwig22e70052007-01-02 15:22:30 -08001069static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001070 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001072 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 struct xfrm_state *x;
1074 struct xfrm_userspi_info *p;
1075 struct sk_buff *resp_skb;
1076 xfrm_address_t *daddr;
1077 int family;
1078 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001079 u32 mark;
1080 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
Thomas Graf7b67c852007-08-22 13:53:52 -07001082 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 err = verify_userspi_info(p);
1084 if (err)
1085 goto out_noput;
1086
1087 family = p->info.family;
1088 daddr = &p->info.id.daddr;
1089
1090 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001091
1092 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001094 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 if (x && xfrm_addr_cmp(&x->id.daddr, daddr, family)) {
1096 xfrm_state_put(x);
1097 x = NULL;
1098 }
1099 }
1100
1101 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001102 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 p->info.id.proto, daddr,
1104 &p->info.saddr, 1,
1105 family);
1106 err = -ENOENT;
1107 if (x == NULL)
1108 goto out_noput;
1109
Herbert Xu658b2192007-10-09 13:29:52 -07001110 err = xfrm_alloc_spi(x, p->min, p->max);
1111 if (err)
1112 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Herbert Xu658b2192007-10-09 13:29:52 -07001114 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 if (IS_ERR(resp_skb)) {
1116 err = PTR_ERR(resp_skb);
1117 goto out;
1118 }
1119
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001120 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122out:
1123 xfrm_state_put(x);
1124out_noput:
1125 return err;
1126}
1127
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001128static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129{
1130 switch (dir) {
1131 case XFRM_POLICY_IN:
1132 case XFRM_POLICY_OUT:
1133 case XFRM_POLICY_FWD:
1134 break;
1135
1136 default:
1137 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 return 0;
1141}
1142
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001143static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001144{
1145 switch (type) {
1146 case XFRM_POLICY_TYPE_MAIN:
1147#ifdef CONFIG_XFRM_SUB_POLICY
1148 case XFRM_POLICY_TYPE_SUB:
1149#endif
1150 break;
1151
1152 default:
1153 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001154 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001155
1156 return 0;
1157}
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1160{
1161 switch (p->share) {
1162 case XFRM_SHARE_ANY:
1163 case XFRM_SHARE_SESSION:
1164 case XFRM_SHARE_USER:
1165 case XFRM_SHARE_UNIQUE:
1166 break;
1167
1168 default:
1169 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 switch (p->action) {
1173 case XFRM_POLICY_ALLOW:
1174 case XFRM_POLICY_BLOCK:
1175 break;
1176
1177 default:
1178 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
1181 switch (p->sel.family) {
1182 case AF_INET:
1183 break;
1184
1185 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001186#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 break;
1188#else
1189 return -EAFNOSUPPORT;
1190#endif
1191
1192 default:
1193 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
1196 return verify_policy_dir(p->dir);
1197}
1198
Thomas Graf5424f322007-08-22 14:01:33 -07001199static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001200{
Thomas Graf5424f322007-08-22 14:01:33 -07001201 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001202 struct xfrm_user_sec_ctx *uctx;
1203
1204 if (!rt)
1205 return 0;
1206
Thomas Graf5424f322007-08-22 14:01:33 -07001207 uctx = nla_data(rt);
Paul Moore03e1ad72008-04-12 19:07:52 -07001208 return security_xfrm_policy_alloc(&pol->security, uctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001209}
1210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1212 int nr)
1213{
1214 int i;
1215
1216 xp->xfrm_nr = nr;
1217 for (i = 0; i < nr; i++, ut++) {
1218 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1219
1220 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1221 memcpy(&t->saddr, &ut->saddr,
1222 sizeof(xfrm_address_t));
1223 t->reqid = ut->reqid;
1224 t->mode = ut->mode;
1225 t->share = ut->share;
1226 t->optional = ut->optional;
1227 t->aalgos = ut->aalgos;
1228 t->ealgos = ut->ealgos;
1229 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001230 /* If all masks are ~0, then we allow all algorithms. */
1231 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001232 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
1234}
1235
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001236static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1237{
1238 int i;
1239
1240 if (nr > XFRM_MAX_DEPTH)
1241 return -EINVAL;
1242
1243 for (i = 0; i < nr; i++) {
1244 /* We never validated the ut->family value, so many
1245 * applications simply leave it at zero. The check was
1246 * never made and ut->family was ignored because all
1247 * templates could be assumed to have the same family as
1248 * the policy itself. Now that we will have ipv4-in-ipv6
1249 * and ipv6-in-ipv4 tunnels, this is no longer true.
1250 */
1251 if (!ut[i].family)
1252 ut[i].family = family;
1253
1254 switch (ut[i].family) {
1255 case AF_INET:
1256 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001257#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001258 case AF_INET6:
1259 break;
1260#endif
1261 default:
1262 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001263 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001264 }
1265
1266 return 0;
1267}
1268
Thomas Graf5424f322007-08-22 14:01:33 -07001269static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
Thomas Graf5424f322007-08-22 14:01:33 -07001271 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 if (!rt) {
1274 pol->xfrm_nr = 0;
1275 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001276 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1277 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001278 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001280 err = validate_tmpl(nr, utmpl, pol->family);
1281 if (err)
1282 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Thomas Graf5424f322007-08-22 14:01:33 -07001284 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 }
1286 return 0;
1287}
1288
Thomas Graf5424f322007-08-22 14:01:33 -07001289static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001290{
Thomas Graf5424f322007-08-22 14:01:33 -07001291 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001292 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001293 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001294 int err;
1295
1296 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001297 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001298 type = upt->type;
1299 }
1300
1301 err = verify_policy_type(type);
1302 if (err)
1303 return err;
1304
1305 *tp = type;
1306 return 0;
1307}
1308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1310{
1311 xp->priority = p->priority;
1312 xp->index = p->index;
1313 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1314 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1315 xp->action = p->action;
1316 xp->flags = p->flags;
1317 xp->family = p->sel.family;
1318 /* XXX xp->share = p->share; */
1319}
1320
1321static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1322{
Mathias Krause7b789832012-09-19 11:33:40 +00001323 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1325 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1326 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1327 p->priority = xp->priority;
1328 p->index = xp->index;
1329 p->sel.family = xp->family;
1330 p->dir = dir;
1331 p->action = xp->action;
1332 p->flags = xp->flags;
1333 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1334}
1335
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001336static struct xfrm_policy *xfrm_policy_construct(struct net *net, struct xfrm_userpolicy_info *p, struct nlattr **attrs, int *errp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001338 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 int err;
1340
1341 if (!xp) {
1342 *errp = -ENOMEM;
1343 return NULL;
1344 }
1345
1346 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001347
Thomas Graf35a7aa02007-08-22 14:00:40 -07001348 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001349 if (err)
1350 goto error;
1351
Thomas Graf35a7aa02007-08-22 14:00:40 -07001352 if (!(err = copy_from_user_tmpl(xp, attrs)))
1353 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001354 if (err)
1355 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001357 xfrm_mark_get(attrs, &xp->mark);
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001360 error:
1361 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001362 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001363 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001364 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365}
1366
Christoph Hellwig22e70052007-01-02 15:22:30 -08001367static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001368 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001370 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001371 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001373 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 int err;
1375 int excl;
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001376 uid_t loginuid = audit_get_loginuid(current);
1377 u32 sessionid = audit_get_sessionid(current);
1378 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 err = verify_newpolicy_info(p);
1381 if (err)
1382 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001383 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001384 if (err)
1385 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001387 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 if (!xp)
1389 return err;
1390
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001391 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001392 * Aha! this is anti-netlink really i.e more pfkey derived
1393 * in netlink excl is a flag and you wouldnt need
1394 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1396 err = xfrm_policy_insert(p->dir, xp, excl);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001397 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -04001398 xfrm_audit_policy_add(xp, err ? 0 : 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001401 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 kfree(xp);
1403 return err;
1404 }
1405
Herbert Xuf60f6b82005-06-18 22:44:37 -07001406 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001407 c.seq = nlh->nlmsg_seq;
1408 c.pid = nlh->nlmsg_pid;
1409 km_policy_notify(xp, p->dir, &c);
1410
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 xfrm_pol_put(xp);
1412
1413 return 0;
1414}
1415
1416static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1417{
1418 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1419 int i;
1420
1421 if (xp->xfrm_nr == 0)
1422 return 0;
1423
1424 for (i = 0; i < xp->xfrm_nr; i++) {
1425 struct xfrm_user_tmpl *up = &vec[i];
1426 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1427
1428 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001429 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1431 up->reqid = kp->reqid;
1432 up->mode = kp->mode;
1433 up->share = kp->share;
1434 up->optional = kp->optional;
1435 up->aalgos = kp->aalgos;
1436 up->ealgos = kp->ealgos;
1437 up->calgos = kp->calgos;
1438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Thomas Grafc0144be2007-08-22 13:55:43 -07001440 return nla_put(skb, XFRMA_TMPL,
1441 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001442}
1443
Serge Hallyn0d681622006-07-24 23:30:44 -07001444static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1445{
1446 if (x->security) {
1447 return copy_sec_ctx(x->security, skb);
1448 }
1449 return 0;
1450}
1451
1452static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1453{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001454 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001455 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001456 return 0;
1457}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001458static inline size_t userpolicy_type_attrsize(void)
1459{
1460#ifdef CONFIG_XFRM_SUB_POLICY
1461 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1462#else
1463 return 0;
1464#endif
1465}
Serge Hallyn0d681622006-07-24 23:30:44 -07001466
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001467#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001468static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001469{
Thomas Grafc0144be2007-08-22 13:55:43 -07001470 struct xfrm_userpolicy_type upt = {
1471 .type = type,
1472 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001473
Thomas Grafc0144be2007-08-22 13:55:43 -07001474 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001475}
1476
1477#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001478static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001479{
1480 return 0;
1481}
1482#endif
1483
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1485{
1486 struct xfrm_dump_info *sp = ptr;
1487 struct xfrm_userpolicy_info *p;
1488 struct sk_buff *in_skb = sp->in_skb;
1489 struct sk_buff *skb = sp->out_skb;
1490 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001491 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001493 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).pid, sp->nlmsg_seq,
1494 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1495 if (nlh == NULL)
1496 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Thomas Graf7b67c852007-08-22 13:53:52 -07001498 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001500 err = copy_to_user_tmpl(xp, skb);
1501 if (!err)
1502 err = copy_to_user_sec_ctx(xp, skb);
1503 if (!err)
1504 err = copy_to_user_policy_type(xp->type, skb);
1505 if (!err)
1506 err = xfrm_mark_put(skb, &xp->mark);
1507 if (err) {
1508 nlmsg_cancel(skb, nlh);
1509 return err;
1510 }
Thomas Graf98250692007-08-22 12:47:26 -07001511 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513}
1514
Timo Teras4c563f72008-02-28 21:31:08 -08001515static int xfrm_dump_policy_done(struct netlink_callback *cb)
1516{
1517 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
1518
1519 xfrm_policy_walk_done(walk);
1520 return 0;
1521}
1522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1524{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001525 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001526 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 struct xfrm_dump_info info;
1528
Timo Teras4c563f72008-02-28 21:31:08 -08001529 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) >
1530 sizeof(cb->args) - sizeof(cb->args[0]));
1531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 info.in_skb = cb->skb;
1533 info.out_skb = skb;
1534 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1535 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001536
1537 if (!cb->args[0]) {
1538 cb->args[0] = 1;
1539 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1540 }
1541
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001542 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543
1544 return skb->len;
1545}
1546
1547static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1548 struct xfrm_policy *xp,
1549 int dir, u32 seq)
1550{
1551 struct xfrm_dump_info info;
1552 struct sk_buff *skb;
Mathias Krausec25463722012-09-14 09:58:32 +00001553 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554
Thomas Graf7deb2262007-08-22 13:57:39 -07001555 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 if (!skb)
1557 return ERR_PTR(-ENOMEM);
1558
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 info.in_skb = in_skb;
1560 info.out_skb = skb;
1561 info.nlmsg_seq = seq;
1562 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Mathias Krausec25463722012-09-14 09:58:32 +00001564 err = dump_one_policy(xp, dir, 0, &info);
1565 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 kfree_skb(skb);
Mathias Krausec25463722012-09-14 09:58:32 +00001567 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 }
1569
1570 return skb;
1571}
1572
Christoph Hellwig22e70052007-01-02 15:22:30 -08001573static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001574 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001576 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 struct xfrm_policy *xp;
1578 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001579 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001581 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001583 struct xfrm_mark m;
1584 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Thomas Graf7b67c852007-08-22 13:53:52 -07001586 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1588
Thomas Graf35a7aa02007-08-22 14:00:40 -07001589 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001590 if (err)
1591 return err;
1592
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 err = verify_policy_dir(p->dir);
1594 if (err)
1595 return err;
1596
1597 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001598 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001599 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001600 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001601 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001602
Thomas Graf35a7aa02007-08-22 14:00:40 -07001603 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001604 if (err)
1605 return err;
1606
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001607 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001608 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001609 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001610
Paul Moore03e1ad72008-04-12 19:07:52 -07001611 err = security_xfrm_policy_alloc(&ctx, uctx);
1612 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001613 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001614 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001615 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001616 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001617 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001618 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 if (xp == NULL)
1620 return -ENOENT;
1621
1622 if (!delete) {
1623 struct sk_buff *resp_skb;
1624
1625 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1626 if (IS_ERR(resp_skb)) {
1627 err = PTR_ERR(resp_skb);
1628 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001629 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Thomas Graf082a1ad2007-08-22 13:54:36 -07001630 NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001632 } else {
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001633 uid_t loginuid = audit_get_loginuid(current);
1634 u32 sessionid = audit_get_sessionid(current);
1635 u32 sid;
Eric Paris25323862008-04-18 10:09:25 -04001636
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001637 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -04001638 xfrm_audit_policy_delete(xp, err ? 0 : 1, loginuid, sessionid,
1639 sid);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001640
1641 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001642 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001643
Herbert Xue7443892005-06-18 22:44:18 -07001644 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001645 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001646 c.seq = nlh->nlmsg_seq;
1647 c.pid = nlh->nlmsg_pid;
1648 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 }
1650
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001651out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001652 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 return err;
1654}
1655
Christoph Hellwig22e70052007-01-02 15:22:30 -08001656static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001657 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001659 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001660 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001661 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten161a09e2006-11-27 13:11:54 -06001662 struct xfrm_audit audit_info;
Joy Latten4aa2e622007-06-04 19:05:57 -04001663 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001665 audit_info.loginuid = audit_get_loginuid(current);
1666 audit_info.sessionid = audit_get_sessionid(current);
1667 security_task_getsecid(current, &audit_info.secid);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001668 err = xfrm_state_flush(net, p->proto, &audit_info);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001669 if (err) {
1670 if (err == -ESRCH) /* empty table */
1671 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001672 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001673 }
Herbert Xubf08867f92005-06-18 22:44:00 -07001674 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001675 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001676 c.seq = nlh->nlmsg_seq;
1677 c.pid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001678 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001679 km_state_notify(NULL, &c);
1680
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 return 0;
1682}
1683
Steffen Klassertd8647b72011-03-08 00:10:27 +00001684static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001685{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001686 size_t replay_size = x->replay_esn ?
1687 xfrm_replay_state_esn_len(x->replay_esn) :
1688 sizeof(struct xfrm_replay_state);
1689
Thomas Graf7deb2262007-08-22 13:57:39 -07001690 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001691 + nla_total_size(replay_size)
Thomas Graf7deb2262007-08-22 13:57:39 -07001692 + nla_total_size(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001693 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001694 + nla_total_size(4) /* XFRM_AE_RTHR */
1695 + nla_total_size(4); /* XFRM_AE_ETHR */
1696}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001697
David S. Miller214e0052011-02-24 00:02:38 -05001698static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001699{
1700 struct xfrm_aevent_id *id;
1701 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001702 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001703
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001704 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
1705 if (nlh == NULL)
1706 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001707
Thomas Graf7b67c852007-08-22 13:53:52 -07001708 id = nlmsg_data(nlh);
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001709 memcpy(&id->sa_id.daddr, &x->id.daddr,sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001710 id->sa_id.spi = x->id.spi;
1711 id->sa_id.family = x->props.family;
1712 id->sa_id.proto = x->id.proto;
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001713 memcpy(&id->saddr, &x->props.saddr,sizeof(x->props.saddr));
1714 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001715 id->flags = c->data.aevent;
1716
David S. Millerd0fde792012-03-29 04:02:26 -04001717 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001718 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1719 xfrm_replay_state_esn_len(x->replay_esn),
1720 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001721 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001722 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1723 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001724 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001725 if (err)
1726 goto out_cancel;
1727 err = nla_put(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft);
1728 if (err)
1729 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001730
David S. Miller1d1e34d2012-06-27 21:57:03 -07001731 if (id->flags & XFRM_AE_RTHR) {
1732 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1733 if (err)
1734 goto out_cancel;
1735 }
1736 if (id->flags & XFRM_AE_ETHR) {
1737 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1738 x->replay_maxage * 10 / HZ);
1739 if (err)
1740 goto out_cancel;
1741 }
1742 err = xfrm_mark_put(skb, &x->mark);
1743 if (err)
1744 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001745
Thomas Graf98250692007-08-22 12:47:26 -07001746 return nlmsg_end(skb, nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001747
David S. Miller1d1e34d2012-06-27 21:57:03 -07001748out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001749 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001750 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001751}
1752
Christoph Hellwig22e70052007-01-02 15:22:30 -08001753static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001754 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001755{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001756 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001757 struct xfrm_state *x;
1758 struct sk_buff *r_skb;
1759 int err;
1760 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001761 u32 mark;
1762 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001763 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001764 struct xfrm_usersa_id *id = &p->sa_id;
1765
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001766 mark = xfrm_mark_get(attrs, &m);
1767
1768 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001769 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001770 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001771
1772 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1773 if (r_skb == NULL) {
1774 xfrm_state_put(x);
1775 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001776 }
1777
1778 /*
1779 * XXX: is this lock really needed - none of the other
1780 * gets lock (the concern is things getting updated
1781 * while we are still reading) - jhs
1782 */
1783 spin_lock_bh(&x->lock);
1784 c.data.aevent = p->flags;
1785 c.seq = nlh->nlmsg_seq;
1786 c.pid = nlh->nlmsg_pid;
1787
1788 if (build_aevent(r_skb, x, &c) < 0)
1789 BUG();
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001790 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).pid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001791 spin_unlock_bh(&x->lock);
1792 xfrm_state_put(x);
1793 return err;
1794}
1795
Christoph Hellwig22e70052007-01-02 15:22:30 -08001796static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001797 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001798{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001799 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001800 struct xfrm_state *x;
1801 struct km_event c;
1802 int err = - EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001803 u32 mark = 0;
1804 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001805 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001806 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001807 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001808 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001809
Steffen Klassertd8647b72011-03-08 00:10:27 +00001810 if (!lt && !rp && !re)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001811 return err;
1812
1813 /* pedantic mode - thou shalt sayeth replaceth */
1814 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1815 return err;
1816
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001817 mark = xfrm_mark_get(attrs, &m);
1818
1819 x = xfrm_state_lookup(net, mark, &p->sa_id.daddr, p->sa_id.spi, p->sa_id.proto, p->sa_id.family);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001820 if (x == NULL)
1821 return -ESRCH;
1822
1823 if (x->km.state != XFRM_STATE_VALID)
1824 goto out;
1825
Steffen Klasserte2b19122011-03-28 19:47:30 +00001826 err = xfrm_replay_verify_len(x->replay_esn, rp);
1827 if (err)
1828 goto out;
1829
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001830 spin_lock_bh(&x->lock);
Thomas Graf35a7aa02007-08-22 14:00:40 -07001831 xfrm_update_ae_params(x, attrs);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001832 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001833
1834 c.event = nlh->nlmsg_type;
1835 c.seq = nlh->nlmsg_seq;
1836 c.pid = nlh->nlmsg_pid;
1837 c.data.aevent = XFRM_AE_CU;
1838 km_state_notify(x, &c);
1839 err = 0;
1840out:
1841 xfrm_state_put(x);
1842 return err;
1843}
1844
Christoph Hellwig22e70052007-01-02 15:22:30 -08001845static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001846 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001848 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001849 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001850 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001851 int err;
Joy Latten161a09e2006-11-27 13:11:54 -06001852 struct xfrm_audit audit_info;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001853
Thomas Graf35a7aa02007-08-22 14:00:40 -07001854 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001855 if (err)
1856 return err;
1857
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001858 audit_info.loginuid = audit_get_loginuid(current);
1859 audit_info.sessionid = audit_get_sessionid(current);
1860 security_task_getsecid(current, &audit_info.secid);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001861 err = xfrm_policy_flush(net, type, &audit_info);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001862 if (err) {
1863 if (err == -ESRCH) /* empty table */
1864 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001865 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001866 }
1867
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001868 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001869 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001870 c.seq = nlh->nlmsg_seq;
1871 c.pid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001872 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001873 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 return 0;
1875}
1876
Christoph Hellwig22e70052007-01-02 15:22:30 -08001877static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001878 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001879{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001880 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001881 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07001882 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001883 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001884 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001885 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001886 struct xfrm_mark m;
1887 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001888
Thomas Graf35a7aa02007-08-22 14:00:40 -07001889 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001890 if (err)
1891 return err;
1892
Timo Teräsc8bf4d02010-03-31 00:17:04 +00001893 err = verify_policy_dir(p->dir);
1894 if (err)
1895 return err;
1896
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001897 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001898 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001899 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001900 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001901 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001902
Thomas Graf35a7aa02007-08-22 14:00:40 -07001903 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001904 if (err)
1905 return err;
1906
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001907 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001908 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001909 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001910
Paul Moore03e1ad72008-04-12 19:07:52 -07001911 err = security_xfrm_policy_alloc(&ctx, uctx);
1912 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001913 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001914 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001915 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001916 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001917 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001918 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001919 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08001920 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07001921
Timo Teräsea2dea9d2010-03-31 00:17:05 +00001922 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001923 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001924
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001925 err = 0;
1926 if (up->hard) {
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001927 uid_t loginuid = audit_get_loginuid(current);
1928 u32 sessionid = audit_get_sessionid(current);
1929 u32 sid;
1930
1931 security_task_getsecid(current, &sid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001932 xfrm_policy_delete(xp, p->dir);
Eric Paris25323862008-04-18 10:09:25 -04001933 xfrm_audit_policy_delete(xp, 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001934
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001935 } else {
1936 // reset the timers here?
stephen hemminger62db5cf2010-05-12 06:37:06 +00001937 WARN(1, "Dont know what to do with soft policy expire\n");
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001938 }
1939 km_policy_expired(xp, p->dir, up->hard, current->pid);
1940
1941out:
1942 xfrm_pol_put(xp);
1943 return err;
1944}
1945
Christoph Hellwig22e70052007-01-02 15:22:30 -08001946static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001947 struct nlattr **attrs)
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08001948{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001949 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08001950 struct xfrm_state *x;
1951 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07001952 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08001953 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001954 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00001955 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08001956
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001957 x = xfrm_state_lookup(net, mark, &p->id.daddr, p->id.spi, p->id.proto, p->family);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08001958
David S. Miller3a765aa2007-02-26 14:52:21 -08001959 err = -ENOENT;
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08001960 if (x == NULL)
1961 return err;
1962
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08001963 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08001964 err = -EINVAL;
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08001965 if (x->km.state != XFRM_STATE_VALID)
1966 goto out;
1967 km_state_expired(x, ue->hard, current->pid);
1968
Joy Latten161a09e2006-11-27 13:11:54 -06001969 if (ue->hard) {
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001970 uid_t loginuid = audit_get_loginuid(current);
1971 u32 sessionid = audit_get_sessionid(current);
1972 u32 sid;
1973
1974 security_task_getsecid(current, &sid);
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08001975 __xfrm_state_delete(x);
Eric Paris25323862008-04-18 10:09:25 -04001976 xfrm_audit_state_delete(x, 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001977 }
David S. Miller3a765aa2007-02-26 14:52:21 -08001978 err = 0;
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08001979out:
1980 spin_unlock_bh(&x->lock);
1981 xfrm_state_put(x);
1982 return err;
1983}
1984
Christoph Hellwig22e70052007-01-02 15:22:30 -08001985static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001986 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001987{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001988 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001989 struct xfrm_policy *xp;
1990 struct xfrm_user_tmpl *ut;
1991 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07001992 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001993 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001994
Thomas Graf7b67c852007-08-22 13:53:52 -07001995 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001996 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001997 int err = -ENOMEM;
1998
1999 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002000 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002001
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002002 xfrm_mark_get(attrs, &mark);
2003
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002004 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002005 if (err)
2006 goto bad_policy;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002007
2008 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002009 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002010 if (!xp)
2011 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002012
2013 memcpy(&x->id, &ua->id, sizeof(ua->id));
2014 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2015 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002016 xp->mark.m = x->mark.m = mark.m;
2017 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002018 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002019 /* extract the templates and for each call km_key */
2020 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2021 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2022 memcpy(&x->id, &t->id, sizeof(x->id));
2023 x->props.mode = t->mode;
2024 x->props.reqid = t->reqid;
2025 x->props.family = ut->family;
2026 t->aalgos = ua->aalgos;
2027 t->ealgos = ua->ealgos;
2028 t->calgos = ua->calgos;
2029 err = km_query(x, t, xp);
2030
2031 }
2032
2033 kfree(x);
2034 kfree(xp);
2035
2036 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002037
2038bad_policy:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002039 WARN(1, "BAD policy passed\n");
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002040free_state:
2041 kfree(x);
2042nomem:
2043 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002044}
2045
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002046#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002047static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002048 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002049 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002050{
Thomas Graf5424f322007-08-22 14:01:33 -07002051 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002052 struct xfrm_user_migrate *um;
2053 int i, num_migrate;
2054
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002055 if (k != NULL) {
2056 struct xfrm_user_kmaddress *uk;
2057
2058 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2059 memcpy(&k->local, &uk->local, sizeof(k->local));
2060 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2061 k->family = uk->family;
2062 k->reserved = uk->reserved;
2063 }
2064
Thomas Graf5424f322007-08-22 14:01:33 -07002065 um = nla_data(rt);
2066 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002067
2068 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2069 return -EINVAL;
2070
2071 for (i = 0; i < num_migrate; i++, um++, ma++) {
2072 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2073 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2074 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2075 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2076
2077 ma->proto = um->proto;
2078 ma->mode = um->mode;
2079 ma->reqid = um->reqid;
2080
2081 ma->old_family = um->old_family;
2082 ma->new_family = um->new_family;
2083 }
2084
2085 *num = i;
2086 return 0;
2087}
2088
2089static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002090 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002091{
Thomas Graf7b67c852007-08-22 13:53:52 -07002092 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002093 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002094 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002095 u8 type;
2096 int err;
2097 int n = 0;
2098
Thomas Graf35a7aa02007-08-22 14:00:40 -07002099 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002100 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002101
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002102 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2103
Thomas Graf5424f322007-08-22 14:01:33 -07002104 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002105 if (err)
2106 return err;
2107
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002108 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002109 if (err)
2110 return err;
2111
2112 if (!n)
2113 return 0;
2114
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002115 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002116
2117 return 0;
2118}
2119#else
2120static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002121 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002122{
2123 return -ENOPROTOOPT;
2124}
2125#endif
2126
2127#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002128static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002129{
2130 struct xfrm_user_migrate um;
2131
2132 memset(&um, 0, sizeof(um));
2133 um.proto = m->proto;
2134 um.mode = m->mode;
2135 um.reqid = m->reqid;
2136 um.old_family = m->old_family;
2137 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2138 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2139 um.new_family = m->new_family;
2140 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2141 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2142
Thomas Grafc0144be2007-08-22 13:55:43 -07002143 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002144}
2145
David S. Miller183cad12011-02-24 00:28:01 -05002146static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002147{
2148 struct xfrm_user_kmaddress uk;
2149
2150 memset(&uk, 0, sizeof(uk));
2151 uk.family = k->family;
2152 uk.reserved = k->reserved;
2153 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002154 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002155
2156 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2157}
2158
2159static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002160{
2161 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002162 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2163 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2164 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002165}
2166
David S. Miller183cad12011-02-24 00:28:01 -05002167static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2168 int num_migrate, const struct xfrm_kmaddress *k,
2169 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002170{
David S. Miller183cad12011-02-24 00:28:01 -05002171 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002172 struct xfrm_userpolicy_id *pol_id;
2173 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002174 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002175
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002176 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2177 if (nlh == NULL)
2178 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002179
Thomas Graf7b67c852007-08-22 13:53:52 -07002180 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002181 /* copy data from selector, dir, and type to the pol_id */
2182 memset(pol_id, 0, sizeof(*pol_id));
2183 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2184 pol_id->dir = dir;
2185
David S. Miller1d1e34d2012-06-27 21:57:03 -07002186 if (k != NULL) {
2187 err = copy_to_user_kmaddress(k, skb);
2188 if (err)
2189 goto out_cancel;
2190 }
2191 err = copy_to_user_policy_type(type, skb);
2192 if (err)
2193 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002194 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002195 err = copy_to_user_migrate(mp, skb);
2196 if (err)
2197 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002198 }
2199
Thomas Graf98250692007-08-22 12:47:26 -07002200 return nlmsg_end(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002201
2202out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002203 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002204 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002205}
2206
David S. Miller183cad12011-02-24 00:28:01 -05002207static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2208 const struct xfrm_migrate *m, int num_migrate,
2209 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002210{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002211 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002212 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002213
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002214 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002215 if (skb == NULL)
2216 return -ENOMEM;
2217
2218 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002219 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002220 BUG();
2221
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002222 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MIGRATE, GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002223}
2224#else
David S. Miller183cad12011-02-24 00:28:01 -05002225static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2226 const struct xfrm_migrate *m, int num_migrate,
2227 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002228{
2229 return -ENOPROTOOPT;
2230}
2231#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002232
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002233#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002234
2235static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002236 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002237 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2238 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2239 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2240 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2241 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2242 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002243 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002244 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002245 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002246 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002247 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002248 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002249 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002250 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2251 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002252 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002253 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002254 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
2255 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256};
2257
Thomas Graf492b5582005-05-03 14:26:40 -07002258#undef XMSGSIZE
2259
Thomas Grafcf5cb792007-08-22 13:59:04 -07002260static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002261 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2262 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2263 [XFRMA_LASTUSED] = { .type = NLA_U64},
2264 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002265 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002266 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2267 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2268 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2269 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2270 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2271 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2272 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2273 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2274 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2275 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2276 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2277 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2278 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2279 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002280 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002281 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002282 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002283 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002284};
2285
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286static struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002287 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002289 int (*done)(struct netlink_callback *);
Thomas Graf492b5582005-05-03 14:26:40 -07002290} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2291 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2292 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2293 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002294 .dump = xfrm_dump_sa,
2295 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002296 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2297 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2298 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Timo Teras4c563f72008-02-28 21:31:08 -08002299 .dump = xfrm_dump_policy,
2300 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002301 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002302 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b4d2006-03-20 19:17:03 -08002303 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002304 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2305 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002306 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002307 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2308 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002309 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2310 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002311 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002312 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002313 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314};
2315
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002316static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002318 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002319 struct nlattr *attrs[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002321 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002325 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326
2327 type -= XFRM_MSG_BASE;
2328 link = &xfrm_dispatch[type];
2329
2330 /* All operations require privileges, even GET */
Eric Parisfd778462012-01-03 12:25:16 -05002331 if (!capable(CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002332 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Thomas Graf492b5582005-05-03 14:26:40 -07002334 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2335 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002336 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002338 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002340 {
2341 struct netlink_dump_control c = {
2342 .dump = link->dump,
2343 .done = link->done,
2344 };
2345 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 }
2348
Thomas Graf35a7aa02007-08-22 14:00:40 -07002349 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs, XFRMA_MAX,
Thomas Grafcf5cb792007-08-22 13:59:04 -07002350 xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002351 if (err < 0)
2352 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
2354 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002355 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
Thomas Graf5424f322007-08-22 14:01:33 -07002357 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358}
2359
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002360static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002362 mutex_lock(&xfrm_cfg_mutex);
2363 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
2364 mutex_unlock(&xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365}
2366
Thomas Graf7deb2262007-08-22 13:57:39 -07002367static inline size_t xfrm_expire_msgsize(void)
2368{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002369 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2370 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002371}
2372
David S. Miller214e0052011-02-24 00:02:38 -05002373static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374{
2375 struct xfrm_user_expire *ue;
2376 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002377 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002379 nlh = nlmsg_put(skb, c->pid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
2380 if (nlh == NULL)
2381 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
Thomas Graf7b67c852007-08-22 13:53:52 -07002383 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002385 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
David S. Miller1d1e34d2012-06-27 21:57:03 -07002387 err = xfrm_mark_put(skb, &x->mark);
2388 if (err)
2389 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002390
Thomas Graf98250692007-08-22 12:47:26 -07002391 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392}
2393
David S. Miller214e0052011-02-24 00:02:38 -05002394static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002396 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 struct sk_buff *skb;
2398
Thomas Graf7deb2262007-08-22 13:57:39 -07002399 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 if (skb == NULL)
2401 return -ENOMEM;
2402
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002403 if (build_expire(skb, x, c) < 0) {
2404 kfree_skb(skb);
2405 return -EMSGSIZE;
2406 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002408 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409}
2410
David S. Miller214e0052011-02-24 00:02:38 -05002411static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002412{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002413 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002414 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002415
Steffen Klassertd8647b72011-03-08 00:10:27 +00002416 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002417 if (skb == NULL)
2418 return -ENOMEM;
2419
2420 if (build_aevent(skb, x, c) < 0)
2421 BUG();
2422
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002423 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_AEVENTS, GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002424}
2425
David S. Miller214e0052011-02-24 00:02:38 -05002426static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002427{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002428 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002429 struct xfrm_usersa_flush *p;
2430 struct nlmsghdr *nlh;
2431 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002432 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002433
Thomas Graf7deb2262007-08-22 13:57:39 -07002434 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002435 if (skb == NULL)
2436 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002437
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002438 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
2439 if (nlh == NULL) {
2440 kfree_skb(skb);
2441 return -EMSGSIZE;
2442 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002443
Thomas Graf7b67c852007-08-22 13:53:52 -07002444 p = nlmsg_data(nlh);
Herbert Xubf08867f92005-06-18 22:44:00 -07002445 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002446
Thomas Graf98250692007-08-22 12:47:26 -07002447 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002448
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002449 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002450}
2451
Thomas Graf7deb2262007-08-22 13:57:39 -07002452static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002453{
Thomas Graf7deb2262007-08-22 13:57:39 -07002454 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002455 if (x->aead)
2456 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002457 if (x->aalg) {
2458 l += nla_total_size(sizeof(struct xfrm_algo) +
2459 (x->aalg->alg_key_len + 7) / 8);
2460 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2461 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002462 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002463 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002464 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002465 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002466 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002467 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002468 if (x->tfcpad)
2469 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002470 if (x->replay_esn)
2471 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
Herbert Xu68325d32007-10-09 13:30:57 -07002472 if (x->security)
2473 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2474 x->security->ctx_len);
2475 if (x->coaddr)
2476 l += nla_total_size(sizeof(*x->coaddr));
2477
Herbert Xud26f3982007-11-13 21:47:08 -08002478 /* Must count x->lastused as it may become non-zero behind our back. */
2479 l += nla_total_size(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002480
2481 return l;
2482}
2483
David S. Miller214e0052011-02-24 00:02:38 -05002484static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002485{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002486 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002487 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002488 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002489 struct nlmsghdr *nlh;
2490 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002491 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002492 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002493
2494 headlen = sizeof(*p);
2495 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002496 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002497 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002498 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002499 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002500 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002501
Thomas Graf7deb2262007-08-22 13:57:39 -07002502 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002503 if (skb == NULL)
2504 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002505
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002506 nlh = nlmsg_put(skb, c->pid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002507 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002508 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002509 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002510
Thomas Graf7b67c852007-08-22 13:53:52 -07002511 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002512 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002513 struct nlattr *attr;
2514
Thomas Graf7b67c852007-08-22 13:53:52 -07002515 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002516 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2517 id->spi = x->id.spi;
2518 id->family = x->props.family;
2519 id->proto = x->id.proto;
2520
Thomas Grafc0144be2007-08-22 13:55:43 -07002521 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002522 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002523 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002524 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002525
2526 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002527 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002528 err = copy_to_user_state_extra(x, p, skb);
2529 if (err)
2530 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002531
Thomas Graf98250692007-08-22 12:47:26 -07002532 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002533
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002534 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002535
David S. Miller1d1e34d2012-06-27 21:57:03 -07002536out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002537 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002538 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002539}
2540
David S. Miller214e0052011-02-24 00:02:38 -05002541static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002542{
2543
2544 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002545 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002546 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002547 case XFRM_MSG_NEWAE:
2548 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002549 case XFRM_MSG_DELSA:
2550 case XFRM_MSG_UPDSA:
2551 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002552 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002553 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002554 return xfrm_notify_sa_flush(c);
2555 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002556 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2557 c->event);
2558 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002559 }
2560
2561 return 0;
2562
2563}
2564
Thomas Graf7deb2262007-08-22 13:57:39 -07002565static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2566 struct xfrm_policy *xp)
2567{
2568 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2569 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002570 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002571 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2572 + userpolicy_type_attrsize();
2573}
2574
Linus Torvalds1da177e2005-04-16 15:20:36 -07002575static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
2576 struct xfrm_tmpl *xt, struct xfrm_policy *xp,
2577 int dir)
2578{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002579 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 struct xfrm_user_acquire *ua;
2581 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002582 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002584 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2585 if (nlh == NULL)
2586 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
Thomas Graf7b67c852007-08-22 13:53:52 -07002588 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 memcpy(&ua->id, &x->id, sizeof(ua->id));
2590 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2591 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
2592 copy_to_user_policy(xp, &ua->policy, dir);
2593 ua->aalgos = xt->aalgos;
2594 ua->ealgos = xt->ealgos;
2595 ua->calgos = xt->calgos;
2596 ua->seq = x->km.seq = seq;
2597
David S. Miller1d1e34d2012-06-27 21:57:03 -07002598 err = copy_to_user_tmpl(xp, skb);
2599 if (!err)
2600 err = copy_to_user_state_sec_ctx(x, skb);
2601 if (!err)
2602 err = copy_to_user_policy_type(xp->type, skb);
2603 if (!err)
2604 err = xfrm_mark_put(skb, &xp->mark);
2605 if (err) {
2606 nlmsg_cancel(skb, nlh);
2607 return err;
2608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
Thomas Graf98250692007-08-22 12:47:26 -07002610 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611}
2612
2613static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
2614 struct xfrm_policy *xp, int dir)
2615{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002616 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618
Thomas Graf7deb2262007-08-22 13:57:39 -07002619 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 if (skb == NULL)
2621 return -ENOMEM;
2622
2623 if (build_acquire(skb, x, xt, xp, dir) < 0)
2624 BUG();
2625
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002626 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_ACQUIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627}
2628
2629/* User gives us xfrm_user_policy_info followed by an array of 0
2630 * or more templates.
2631 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002632static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 u8 *data, int len, int *dir)
2634{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002635 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2637 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2638 struct xfrm_policy *xp;
2639 int nr;
2640
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002641 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 case AF_INET:
2643 if (opt != IP_XFRM_POLICY) {
2644 *dir = -EOPNOTSUPP;
2645 return NULL;
2646 }
2647 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002648#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 case AF_INET6:
2650 if (opt != IPV6_XFRM_POLICY) {
2651 *dir = -EOPNOTSUPP;
2652 return NULL;
2653 }
2654 break;
2655#endif
2656 default:
2657 *dir = -EINVAL;
2658 return NULL;
2659 }
2660
2661 *dir = -EINVAL;
2662
2663 if (len < sizeof(*p) ||
2664 verify_newpolicy_info(p))
2665 return NULL;
2666
2667 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002668 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 return NULL;
2670
Herbert Xua4f1bac2005-07-26 15:43:17 -07002671 if (p->dir > XFRM_POLICY_OUT)
2672 return NULL;
2673
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002674 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 if (xp == NULL) {
2676 *dir = -ENOBUFS;
2677 return NULL;
2678 }
2679
2680 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002681 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 copy_templates(xp, ut, nr);
2683
2684 *dir = p->dir;
2685
2686 return xp;
2687}
2688
Thomas Graf7deb2262007-08-22 13:57:39 -07002689static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2690{
2691 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2692 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2693 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002694 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002695 + userpolicy_type_attrsize();
2696}
2697
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002699 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700{
2701 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002702 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002703 struct nlmsghdr *nlh;
2704 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002706 nlh = nlmsg_put(skb, c->pid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
2707 if (nlh == NULL)
2708 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Thomas Graf7b67c852007-08-22 13:53:52 -07002710 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002712 err = copy_to_user_tmpl(xp, skb);
2713 if (!err)
2714 err = copy_to_user_sec_ctx(xp, skb);
2715 if (!err)
2716 err = copy_to_user_policy_type(xp->type, skb);
2717 if (!err)
2718 err = xfrm_mark_put(skb, &xp->mark);
2719 if (err) {
2720 nlmsg_cancel(skb, nlh);
2721 return err;
2722 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 upe->hard = !!hard;
2724
Thomas Graf98250692007-08-22 12:47:26 -07002725 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726}
2727
David S. Miller214e0052011-02-24 00:02:38 -05002728static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002730 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
Thomas Graf7deb2262007-08-22 13:57:39 -07002733 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 if (skb == NULL)
2735 return -ENOMEM;
2736
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002737 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 BUG();
2739
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002740 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741}
2742
David S. Miller214e0052011-02-24 00:02:38 -05002743static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002744{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002745 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002746 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002747 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002748 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002749 struct nlmsghdr *nlh;
2750 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002751 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002752
2753 headlen = sizeof(*p);
2754 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002755 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002756 headlen = sizeof(*id);
2757 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002758 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002759 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002760 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002761
Thomas Graf7deb2262007-08-22 13:57:39 -07002762 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002763 if (skb == NULL)
2764 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002765
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002766 nlh = nlmsg_put(skb, c->pid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002767 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002768 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002769 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002770
Thomas Graf7b67c852007-08-22 13:53:52 -07002771 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002772 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002773 struct nlattr *attr;
2774
Thomas Graf7b67c852007-08-22 13:53:52 -07002775 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002776 memset(id, 0, sizeof(*id));
2777 id->dir = dir;
2778 if (c->data.byid)
2779 id->index = xp->index;
2780 else
2781 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2782
Thomas Grafc0144be2007-08-22 13:55:43 -07002783 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002784 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002785 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002786 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002787
2788 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002789 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002790
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002791 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002792 err = copy_to_user_tmpl(xp, skb);
2793 if (!err)
2794 err = copy_to_user_policy_type(xp->type, skb);
2795 if (!err)
2796 err = xfrm_mark_put(skb, &xp->mark);
2797 if (err)
2798 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002799
Thomas Graf98250692007-08-22 12:47:26 -07002800 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002801
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002802 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002803
David S. Miller1d1e34d2012-06-27 21:57:03 -07002804out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002805 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002806 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002807}
2808
David S. Miller214e0052011-02-24 00:02:38 -05002809static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002810{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002811 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002812 struct nlmsghdr *nlh;
2813 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002814 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002815
Thomas Graf7deb2262007-08-22 13:57:39 -07002816 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002817 if (skb == NULL)
2818 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002819
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002820 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002821 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002822 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002823 goto out_free_skb;
2824 err = copy_to_user_policy_type(c->data.type, skb);
2825 if (err)
2826 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002827
Thomas Graf98250692007-08-22 12:47:26 -07002828 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002829
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002830 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002831
David S. Miller1d1e34d2012-06-27 21:57:03 -07002832out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002833 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002834 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002835}
2836
David S. Miller214e0052011-02-24 00:02:38 -05002837static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002838{
2839
2840 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002841 case XFRM_MSG_NEWPOLICY:
2842 case XFRM_MSG_UPDPOLICY:
2843 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002844 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002845 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002846 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002847 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002848 return xfrm_exp_policy_notify(xp, dir, c);
2849 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002850 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
2851 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002852 }
2853
2854 return 0;
2855
2856}
2857
Thomas Graf7deb2262007-08-22 13:57:39 -07002858static inline size_t xfrm_report_msgsize(void)
2859{
2860 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
2861}
2862
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002863static int build_report(struct sk_buff *skb, u8 proto,
2864 struct xfrm_selector *sel, xfrm_address_t *addr)
2865{
2866 struct xfrm_user_report *ur;
2867 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002868
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002869 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
2870 if (nlh == NULL)
2871 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002872
Thomas Graf7b67c852007-08-22 13:53:52 -07002873 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002874 ur->proto = proto;
2875 memcpy(&ur->sel, sel, sizeof(ur->sel));
2876
David S. Miller1d1e34d2012-06-27 21:57:03 -07002877 if (addr) {
2878 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
2879 if (err) {
2880 nlmsg_cancel(skb, nlh);
2881 return err;
2882 }
2883 }
Thomas Graf98250692007-08-22 12:47:26 -07002884 return nlmsg_end(skb, nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002885}
2886
Alexey Dobriyandb983c12008-11-25 17:51:01 -08002887static int xfrm_send_report(struct net *net, u8 proto,
2888 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002889{
2890 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002891
Thomas Graf7deb2262007-08-22 13:57:39 -07002892 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002893 if (skb == NULL)
2894 return -ENOMEM;
2895
2896 if (build_report(skb, proto, sel, addr) < 0)
2897 BUG();
2898
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002899 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_REPORT, GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002900}
2901
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002902static inline size_t xfrm_mapping_msgsize(void)
2903{
2904 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
2905}
2906
2907static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
2908 xfrm_address_t *new_saddr, __be16 new_sport)
2909{
2910 struct xfrm_user_mapping *um;
2911 struct nlmsghdr *nlh;
2912
2913 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
2914 if (nlh == NULL)
2915 return -EMSGSIZE;
2916
2917 um = nlmsg_data(nlh);
2918
2919 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
2920 um->id.spi = x->id.spi;
2921 um->id.family = x->props.family;
2922 um->id.proto = x->id.proto;
2923 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
2924 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
2925 um->new_sport = new_sport;
2926 um->old_sport = x->encap->encap_sport;
2927 um->reqid = x->props.reqid;
2928
2929 return nlmsg_end(skb, nlh);
2930}
2931
2932static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
2933 __be16 sport)
2934{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002935 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002936 struct sk_buff *skb;
2937
2938 if (x->id.proto != IPPROTO_ESP)
2939 return -EINVAL;
2940
2941 if (!x->encap)
2942 return -EINVAL;
2943
2944 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
2945 if (skb == NULL)
2946 return -ENOMEM;
2947
2948 if (build_mapping(skb, x, ipaddr, sport) < 0)
2949 BUG();
2950
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002951 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MAPPING, GFP_ATOMIC);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002952}
2953
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954static struct xfrm_mgr netlink_mgr = {
2955 .id = "netlink",
2956 .notify = xfrm_send_state_notify,
2957 .acquire = xfrm_send_acquire,
2958 .compile_policy = xfrm_compile_policy,
2959 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002960 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002961 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002962 .new_mapping = xfrm_send_mapping,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963};
2964
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002965static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966{
Patrick McHardybe336902006-03-20 22:40:54 -08002967 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002968 struct netlink_kernel_cfg cfg = {
2969 .groups = XFRMNLGRP_MAX,
2970 .input = xfrm_netlink_rcv,
2971 };
Patrick McHardybe336902006-03-20 22:40:54 -08002972
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002973 nlsk = netlink_kernel_create(net, NETLINK_XFRM, THIS_MODULE, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08002974 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002976 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00002977 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 return 0;
2979}
2980
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002981static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002982{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002983 struct net *net;
2984 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002985 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002986 synchronize_net();
2987 list_for_each_entry(net, net_exit_list, exit_list)
2988 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002989}
2990
2991static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002992 .init = xfrm_user_net_init,
2993 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002994};
2995
2996static int __init xfrm_user_init(void)
2997{
2998 int rv;
2999
3000 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3001
3002 rv = register_pernet_subsys(&xfrm_user_net_ops);
3003 if (rv < 0)
3004 return rv;
3005 rv = xfrm_register_km(&netlink_mgr);
3006 if (rv < 0)
3007 unregister_pernet_subsys(&xfrm_user_net_ops);
3008 return rv;
3009}
3010
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011static void __exit xfrm_user_exit(void)
3012{
3013 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003014 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015}
3016
3017module_init(xfrm_user_init);
3018module_exit(xfrm_user_exit);
3019MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003020MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003021