blob: dac08e2a5a93e69648e3210b59a333d8c62195fb [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 Beltrami0a694522006-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{
692 memcpy(&p->id, &x->id, sizeof(p->id));
693 memcpy(&p->sel, &x->sel, sizeof(p->sel));
694 memcpy(&p->lft, &x->lft, sizeof(p->lft));
695 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
696 memcpy(&p->stats, &x->stats, sizeof(p->stats));
David S. Miller54489c142006-10-27 15:29:47 -0700697 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 p->mode = x->props.mode;
699 p->replay_window = x->props.replay_window;
700 p->reqid = x->props.reqid;
701 p->family = x->props.family;
702 p->flags = x->props.flags;
703 p->seq = x->km.seq;
704}
705
706struct xfrm_dump_info {
707 struct sk_buff *in_skb;
708 struct sk_buff *out_skb;
709 u32 nlmsg_seq;
710 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711};
712
Thomas Grafc0144be2007-08-22 13:55:43 -0700713static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
714{
Thomas Grafc0144be2007-08-22 13:55:43 -0700715 struct xfrm_user_sec_ctx *uctx;
716 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700717 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700718
719 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
720 if (attr == NULL)
721 return -EMSGSIZE;
722
723 uctx = nla_data(attr);
724 uctx->exttype = XFRMA_SEC_CTX;
725 uctx->len = ctx_size;
726 uctx->ctx_doi = s->ctx_doi;
727 uctx->ctx_alg = s->ctx_alg;
728 uctx->ctx_len = s->ctx_len;
729 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
730
731 return 0;
732}
733
Martin Willi4447bb32009-11-25 00:29:52 +0000734static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
735{
736 struct xfrm_algo *algo;
737 struct nlattr *nla;
738
739 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
740 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
741 if (!nla)
742 return -EMSGSIZE;
743
744 algo = nla_data(nla);
745 strcpy(algo->alg_name, auth->alg_name);
746 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
747 algo->alg_key_len = auth->alg_key_len;
748
749 return 0;
750}
751
Herbert Xu68325d32007-10-09 13:30:57 -0700752/* Don't change this without updating xfrm_sa_len! */
753static int copy_to_user_state_extra(struct xfrm_state *x,
754 struct xfrm_usersa_info *p,
755 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700757 int ret = 0;
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 copy_to_user_state(x, p);
760
David S. Miller1d1e34d2012-06-27 21:57:03 -0700761 if (x->coaddr) {
762 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
763 if (ret)
764 goto out;
765 }
766 if (x->lastused) {
767 ret = nla_put_u64(skb, XFRMA_LASTUSED, x->lastused);
768 if (ret)
769 goto out;
770 }
771 if (x->aead) {
772 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
773 if (ret)
774 goto out;
775 }
776 if (x->aalg) {
777 ret = copy_to_user_auth(x->aalg, skb);
778 if (!ret)
779 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
780 xfrm_alg_auth_len(x->aalg), x->aalg);
781 if (ret)
782 goto out;
783 }
784 if (x->ealg) {
785 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
786 if (ret)
787 goto out;
788 }
789 if (x->calg) {
790 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
791 if (ret)
792 goto out;
793 }
794 if (x->encap) {
795 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
796 if (ret)
797 goto out;
798 }
799 if (x->tfcpad) {
800 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
801 if (ret)
802 goto out;
803 }
804 ret = xfrm_mark_put(skb, &x->mark);
805 if (ret)
806 goto out;
807 if (x->replay_esn) {
808 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
809 xfrm_replay_state_esn_len(x->replay_esn),
810 x->replay_esn);
811 if (ret)
812 goto out;
813 }
814 if (x->security)
815 ret = copy_sec_ctx(x->security, skb);
816out:
817 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700818}
819
820static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
821{
822 struct xfrm_dump_info *sp = ptr;
823 struct sk_buff *in_skb = sp->in_skb;
824 struct sk_buff *skb = sp->out_skb;
825 struct xfrm_usersa_info *p;
826 struct nlmsghdr *nlh;
827 int err;
828
Herbert Xu68325d32007-10-09 13:30:57 -0700829 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).pid, sp->nlmsg_seq,
830 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
831 if (nlh == NULL)
832 return -EMSGSIZE;
833
834 p = nlmsg_data(nlh);
835
836 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700837 if (err) {
838 nlmsg_cancel(skb, nlh);
839 return err;
840 }
Thomas Graf98250692007-08-22 12:47:26 -0700841 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
Timo Teras4c563f72008-02-28 21:31:08 -0800845static int xfrm_dump_sa_done(struct netlink_callback *cb)
846{
847 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
848 xfrm_state_walk_done(walk);
849 return 0;
850}
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
853{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800854 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800855 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 struct xfrm_dump_info info;
857
Timo Teras4c563f72008-02-28 21:31:08 -0800858 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
859 sizeof(cb->args) - sizeof(cb->args[0]));
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 info.in_skb = cb->skb;
862 info.out_skb = skb;
863 info.nlmsg_seq = cb->nlh->nlmsg_seq;
864 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800865
866 if (!cb->args[0]) {
867 cb->args[0] = 1;
868 xfrm_state_walk_init(walk, 0);
869 }
870
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800871 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 return skb->len;
874}
875
876static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
877 struct xfrm_state *x, u32 seq)
878{
879 struct xfrm_dump_info info;
880 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +0000881 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Thomas Graf7deb2262007-08-22 13:57:39 -0700883 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 if (!skb)
885 return ERR_PTR(-ENOMEM);
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 info.in_skb = in_skb;
888 info.out_skb = skb;
889 info.nlmsg_seq = seq;
890 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Mathias Krause864745d2012-09-13 11:41:26 +0000892 err = dump_one_state(x, 0, &info);
893 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +0000895 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
897
898 return skb;
899}
900
Thomas Graf7deb2262007-08-22 13:57:39 -0700901static inline size_t xfrm_spdinfo_msgsize(void)
902{
903 return NLMSG_ALIGN(4)
904 + nla_total_size(sizeof(struct xfrmu_spdinfo))
905 + nla_total_size(sizeof(struct xfrmu_spdhinfo));
906}
907
Alexey Dobriyane0710412010-01-23 13:37:10 +0000908static int build_spdinfo(struct sk_buff *skb, struct net *net,
909 u32 pid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700910{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700911 struct xfrmk_spdinfo si;
912 struct xfrmu_spdinfo spc;
913 struct xfrmu_spdhinfo sph;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700914 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700915 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700916 u32 *f;
917
918 nlh = nlmsg_put(skb, pid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300919 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700920 return -EMSGSIZE;
921
922 f = nlmsg_data(nlh);
923 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +0000924 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700925 spc.incnt = si.incnt;
926 spc.outcnt = si.outcnt;
927 spc.fwdcnt = si.fwdcnt;
928 spc.inscnt = si.inscnt;
929 spc.outscnt = si.outscnt;
930 spc.fwdscnt = si.fwdscnt;
931 sph.spdhcnt = si.spdhcnt;
932 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700933
David S. Miller1d1e34d2012-06-27 21:57:03 -0700934 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
935 if (!err)
936 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
937 if (err) {
938 nlmsg_cancel(skb, nlh);
939 return err;
940 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700941
942 return nlmsg_end(skb, nlh);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700943}
944
945static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700946 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700947{
Alexey Dobriyana6483b72008-11-25 17:38:20 -0800948 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700949 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -0700950 u32 *flags = nlmsg_data(nlh);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700951 u32 spid = NETLINK_CB(skb).pid;
952 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700953
Thomas Graf7deb2262007-08-22 13:57:39 -0700954 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700955 if (r_skb == NULL)
956 return -ENOMEM;
957
Alexey Dobriyane0710412010-01-23 13:37:10 +0000958 if (build_spdinfo(r_skb, net, spid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700959 BUG();
960
Alexey Dobriyana6483b72008-11-25 17:38:20 -0800961 return nlmsg_unicast(net->xfrm.nlsk, r_skb, spid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700962}
963
Thomas Graf7deb2262007-08-22 13:57:39 -0700964static inline size_t xfrm_sadinfo_msgsize(void)
965{
966 return NLMSG_ALIGN(4)
967 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
968 + nla_total_size(4); /* XFRMA_SAD_CNT */
969}
970
Alexey Dobriyane0710412010-01-23 13:37:10 +0000971static int build_sadinfo(struct sk_buff *skb, struct net *net,
972 u32 pid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700973{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -0700974 struct xfrmk_sadinfo si;
975 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700976 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700977 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700978 u32 *f;
979
980 nlh = nlmsg_put(skb, pid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300981 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700982 return -EMSGSIZE;
983
984 f = nlmsg_data(nlh);
985 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +0000986 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700987
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -0700988 sh.sadhmcnt = si.sadhmcnt;
989 sh.sadhcnt = si.sadhcnt;
990
David S. Miller1d1e34d2012-06-27 21:57:03 -0700991 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
992 if (!err)
993 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
994 if (err) {
995 nlmsg_cancel(skb, nlh);
996 return err;
997 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700998
999 return nlmsg_end(skb, nlh);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001000}
1001
1002static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001003 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001004{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001005 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001006 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001007 u32 *flags = nlmsg_data(nlh);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001008 u32 spid = NETLINK_CB(skb).pid;
1009 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001010
Thomas Graf7deb2262007-08-22 13:57:39 -07001011 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001012 if (r_skb == NULL)
1013 return -ENOMEM;
1014
Alexey Dobriyane0710412010-01-23 13:37:10 +00001015 if (build_sadinfo(r_skb, net, spid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001016 BUG();
1017
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001018 return nlmsg_unicast(net->xfrm.nlsk, r_skb, spid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001019}
1020
Christoph Hellwig22e70052007-01-02 15:22:30 -08001021static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001022 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001024 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001025 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 struct xfrm_state *x;
1027 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001028 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001030 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 if (x == NULL)
1032 goto out_noput;
1033
1034 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1035 if (IS_ERR(resp_skb)) {
1036 err = PTR_ERR(resp_skb);
1037 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001038 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 }
1040 xfrm_state_put(x);
1041out_noput:
1042 return err;
1043}
1044
1045static int verify_userspi_info(struct xfrm_userspi_info *p)
1046{
1047 switch (p->info.id.proto) {
1048 case IPPROTO_AH:
1049 case IPPROTO_ESP:
1050 break;
1051
1052 case IPPROTO_COMP:
1053 /* IPCOMP spi is 16-bits. */
1054 if (p->max >= 0x10000)
1055 return -EINVAL;
1056 break;
1057
1058 default:
1059 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061
1062 if (p->min > p->max)
1063 return -EINVAL;
1064
1065 return 0;
1066}
1067
Christoph Hellwig22e70052007-01-02 15:22:30 -08001068static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001069 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001071 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 struct xfrm_state *x;
1073 struct xfrm_userspi_info *p;
1074 struct sk_buff *resp_skb;
1075 xfrm_address_t *daddr;
1076 int family;
1077 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001078 u32 mark;
1079 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
Thomas Graf7b67c852007-08-22 13:53:52 -07001081 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 err = verify_userspi_info(p);
1083 if (err)
1084 goto out_noput;
1085
1086 family = p->info.family;
1087 daddr = &p->info.id.daddr;
1088
1089 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001090
1091 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001093 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 if (x && xfrm_addr_cmp(&x->id.daddr, daddr, family)) {
1095 xfrm_state_put(x);
1096 x = NULL;
1097 }
1098 }
1099
1100 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001101 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 p->info.id.proto, daddr,
1103 &p->info.saddr, 1,
1104 family);
1105 err = -ENOENT;
1106 if (x == NULL)
1107 goto out_noput;
1108
Herbert Xu658b2192007-10-09 13:29:52 -07001109 err = xfrm_alloc_spi(x, p->min, p->max);
1110 if (err)
1111 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112
Herbert Xu658b2192007-10-09 13:29:52 -07001113 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114 if (IS_ERR(resp_skb)) {
1115 err = PTR_ERR(resp_skb);
1116 goto out;
1117 }
1118
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001119 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
1121out:
1122 xfrm_state_put(x);
1123out_noput:
1124 return err;
1125}
1126
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001127static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
1129 switch (dir) {
1130 case XFRM_POLICY_IN:
1131 case XFRM_POLICY_OUT:
1132 case XFRM_POLICY_FWD:
1133 break;
1134
1135 default:
1136 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001137 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139 return 0;
1140}
1141
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001142static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001143{
1144 switch (type) {
1145 case XFRM_POLICY_TYPE_MAIN:
1146#ifdef CONFIG_XFRM_SUB_POLICY
1147 case XFRM_POLICY_TYPE_SUB:
1148#endif
1149 break;
1150
1151 default:
1152 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001153 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001154
1155 return 0;
1156}
1157
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1159{
1160 switch (p->share) {
1161 case XFRM_SHARE_ANY:
1162 case XFRM_SHARE_SESSION:
1163 case XFRM_SHARE_USER:
1164 case XFRM_SHARE_UNIQUE:
1165 break;
1166
1167 default:
1168 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170
1171 switch (p->action) {
1172 case XFRM_POLICY_ALLOW:
1173 case XFRM_POLICY_BLOCK:
1174 break;
1175
1176 default:
1177 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001178 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179
1180 switch (p->sel.family) {
1181 case AF_INET:
1182 break;
1183
1184 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001185#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 break;
1187#else
1188 return -EAFNOSUPPORT;
1189#endif
1190
1191 default:
1192 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001193 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194
1195 return verify_policy_dir(p->dir);
1196}
1197
Thomas Graf5424f322007-08-22 14:01:33 -07001198static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001199{
Thomas Graf5424f322007-08-22 14:01:33 -07001200 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001201 struct xfrm_user_sec_ctx *uctx;
1202
1203 if (!rt)
1204 return 0;
1205
Thomas Graf5424f322007-08-22 14:01:33 -07001206 uctx = nla_data(rt);
Paul Moore03e1ad72008-04-12 19:07:52 -07001207 return security_xfrm_policy_alloc(&pol->security, uctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001208}
1209
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1211 int nr)
1212{
1213 int i;
1214
1215 xp->xfrm_nr = nr;
1216 for (i = 0; i < nr; i++, ut++) {
1217 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1218
1219 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1220 memcpy(&t->saddr, &ut->saddr,
1221 sizeof(xfrm_address_t));
1222 t->reqid = ut->reqid;
1223 t->mode = ut->mode;
1224 t->share = ut->share;
1225 t->optional = ut->optional;
1226 t->aalgos = ut->aalgos;
1227 t->ealgos = ut->ealgos;
1228 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001229 /* If all masks are ~0, then we allow all algorithms. */
1230 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001231 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 }
1233}
1234
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001235static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1236{
1237 int i;
1238
1239 if (nr > XFRM_MAX_DEPTH)
1240 return -EINVAL;
1241
1242 for (i = 0; i < nr; i++) {
1243 /* We never validated the ut->family value, so many
1244 * applications simply leave it at zero. The check was
1245 * never made and ut->family was ignored because all
1246 * templates could be assumed to have the same family as
1247 * the policy itself. Now that we will have ipv4-in-ipv6
1248 * and ipv6-in-ipv4 tunnels, this is no longer true.
1249 */
1250 if (!ut[i].family)
1251 ut[i].family = family;
1252
1253 switch (ut[i].family) {
1254 case AF_INET:
1255 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001256#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001257 case AF_INET6:
1258 break;
1259#endif
1260 default:
1261 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001262 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001263 }
1264
1265 return 0;
1266}
1267
Thomas Graf5424f322007-08-22 14:01:33 -07001268static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269{
Thomas Graf5424f322007-08-22 14:01:33 -07001270 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
1272 if (!rt) {
1273 pol->xfrm_nr = 0;
1274 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001275 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1276 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001277 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001279 err = validate_tmpl(nr, utmpl, pol->family);
1280 if (err)
1281 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Thomas Graf5424f322007-08-22 14:01:33 -07001283 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 }
1285 return 0;
1286}
1287
Thomas Graf5424f322007-08-22 14:01:33 -07001288static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001289{
Thomas Graf5424f322007-08-22 14:01:33 -07001290 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001291 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001292 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001293 int err;
1294
1295 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001296 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001297 type = upt->type;
1298 }
1299
1300 err = verify_policy_type(type);
1301 if (err)
1302 return err;
1303
1304 *tp = type;
1305 return 0;
1306}
1307
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1309{
1310 xp->priority = p->priority;
1311 xp->index = p->index;
1312 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1313 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1314 xp->action = p->action;
1315 xp->flags = p->flags;
1316 xp->family = p->sel.family;
1317 /* XXX xp->share = p->share; */
1318}
1319
1320static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1321{
1322 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1323 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1324 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1325 p->priority = xp->priority;
1326 p->index = xp->index;
1327 p->sel.family = xp->family;
1328 p->dir = dir;
1329 p->action = xp->action;
1330 p->flags = xp->flags;
1331 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1332}
1333
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001334static 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 -07001335{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001336 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 int err;
1338
1339 if (!xp) {
1340 *errp = -ENOMEM;
1341 return NULL;
1342 }
1343
1344 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001345
Thomas Graf35a7aa02007-08-22 14:00:40 -07001346 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001347 if (err)
1348 goto error;
1349
Thomas Graf35a7aa02007-08-22 14:00:40 -07001350 if (!(err = copy_from_user_tmpl(xp, attrs)))
1351 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001352 if (err)
1353 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001355 xfrm_mark_get(attrs, &xp->mark);
1356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001358 error:
1359 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001360 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001361 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001362 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363}
1364
Christoph Hellwig22e70052007-01-02 15:22:30 -08001365static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001366 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001368 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001369 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001371 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 int err;
1373 int excl;
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001374 uid_t loginuid = audit_get_loginuid(current);
1375 u32 sessionid = audit_get_sessionid(current);
1376 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
1378 err = verify_newpolicy_info(p);
1379 if (err)
1380 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001381 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001382 if (err)
1383 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001385 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 if (!xp)
1387 return err;
1388
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001389 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001390 * Aha! this is anti-netlink really i.e more pfkey derived
1391 * in netlink excl is a flag and you wouldnt need
1392 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1394 err = xfrm_policy_insert(p->dir, xp, excl);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001395 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -04001396 xfrm_audit_policy_add(xp, err ? 0 : 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001397
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001399 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 kfree(xp);
1401 return err;
1402 }
1403
Herbert Xuf60f6b82005-06-18 22:44:37 -07001404 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001405 c.seq = nlh->nlmsg_seq;
1406 c.pid = nlh->nlmsg_pid;
1407 km_policy_notify(xp, p->dir, &c);
1408
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 xfrm_pol_put(xp);
1410
1411 return 0;
1412}
1413
1414static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1415{
1416 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1417 int i;
1418
1419 if (xp->xfrm_nr == 0)
1420 return 0;
1421
1422 for (i = 0; i < xp->xfrm_nr; i++) {
1423 struct xfrm_user_tmpl *up = &vec[i];
1424 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1425
1426 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001427 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1429 up->reqid = kp->reqid;
1430 up->mode = kp->mode;
1431 up->share = kp->share;
1432 up->optional = kp->optional;
1433 up->aalgos = kp->aalgos;
1434 up->ealgos = kp->ealgos;
1435 up->calgos = kp->calgos;
1436 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437
Thomas Grafc0144be2007-08-22 13:55:43 -07001438 return nla_put(skb, XFRMA_TMPL,
1439 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001440}
1441
Serge Hallyn0d681622006-07-24 23:30:44 -07001442static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1443{
1444 if (x->security) {
1445 return copy_sec_ctx(x->security, skb);
1446 }
1447 return 0;
1448}
1449
1450static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1451{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001452 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001453 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001454 return 0;
1455}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001456static inline size_t userpolicy_type_attrsize(void)
1457{
1458#ifdef CONFIG_XFRM_SUB_POLICY
1459 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1460#else
1461 return 0;
1462#endif
1463}
Serge Hallyn0d681622006-07-24 23:30:44 -07001464
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001465#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001466static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001467{
Thomas Grafc0144be2007-08-22 13:55:43 -07001468 struct xfrm_userpolicy_type upt = {
1469 .type = type,
1470 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001471
Thomas Grafc0144be2007-08-22 13:55:43 -07001472 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001473}
1474
1475#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001476static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001477{
1478 return 0;
1479}
1480#endif
1481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1483{
1484 struct xfrm_dump_info *sp = ptr;
1485 struct xfrm_userpolicy_info *p;
1486 struct sk_buff *in_skb = sp->in_skb;
1487 struct sk_buff *skb = sp->out_skb;
1488 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001489 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001491 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).pid, sp->nlmsg_seq,
1492 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1493 if (nlh == NULL)
1494 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Thomas Graf7b67c852007-08-22 13:53:52 -07001496 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001498 err = copy_to_user_tmpl(xp, skb);
1499 if (!err)
1500 err = copy_to_user_sec_ctx(xp, skb);
1501 if (!err)
1502 err = copy_to_user_policy_type(xp->type, skb);
1503 if (!err)
1504 err = xfrm_mark_put(skb, &xp->mark);
1505 if (err) {
1506 nlmsg_cancel(skb, nlh);
1507 return err;
1508 }
Thomas Graf98250692007-08-22 12:47:26 -07001509 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511}
1512
Timo Teras4c563f72008-02-28 21:31:08 -08001513static int xfrm_dump_policy_done(struct netlink_callback *cb)
1514{
1515 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
1516
1517 xfrm_policy_walk_done(walk);
1518 return 0;
1519}
1520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1522{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001523 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001524 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 struct xfrm_dump_info info;
1526
Timo Teras4c563f72008-02-28 21:31:08 -08001527 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) >
1528 sizeof(cb->args) - sizeof(cb->args[0]));
1529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 info.in_skb = cb->skb;
1531 info.out_skb = skb;
1532 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1533 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001534
1535 if (!cb->args[0]) {
1536 cb->args[0] = 1;
1537 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1538 }
1539
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001540 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542 return skb->len;
1543}
1544
1545static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1546 struct xfrm_policy *xp,
1547 int dir, u32 seq)
1548{
1549 struct xfrm_dump_info info;
1550 struct sk_buff *skb;
1551
Thomas Graf7deb2262007-08-22 13:57:39 -07001552 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 if (!skb)
1554 return ERR_PTR(-ENOMEM);
1555
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 info.in_skb = in_skb;
1557 info.out_skb = skb;
1558 info.nlmsg_seq = seq;
1559 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561 if (dump_one_policy(xp, dir, 0, &info) < 0) {
1562 kfree_skb(skb);
1563 return NULL;
1564 }
1565
1566 return skb;
1567}
1568
Christoph Hellwig22e70052007-01-02 15:22:30 -08001569static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001570 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001572 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 struct xfrm_policy *xp;
1574 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001575 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001577 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001579 struct xfrm_mark m;
1580 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Thomas Graf7b67c852007-08-22 13:53:52 -07001582 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1584
Thomas Graf35a7aa02007-08-22 14:00:40 -07001585 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001586 if (err)
1587 return err;
1588
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 err = verify_policy_dir(p->dir);
1590 if (err)
1591 return err;
1592
1593 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001594 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001595 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001596 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001597 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001598
Thomas Graf35a7aa02007-08-22 14:00:40 -07001599 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001600 if (err)
1601 return err;
1602
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001603 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001604 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001605 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001606
Paul Moore03e1ad72008-04-12 19:07:52 -07001607 err = security_xfrm_policy_alloc(&ctx, uctx);
1608 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001609 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001610 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001611 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001612 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001613 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001614 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 if (xp == NULL)
1616 return -ENOENT;
1617
1618 if (!delete) {
1619 struct sk_buff *resp_skb;
1620
1621 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1622 if (IS_ERR(resp_skb)) {
1623 err = PTR_ERR(resp_skb);
1624 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001625 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Thomas Graf082a1ad2007-08-22 13:54:36 -07001626 NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001628 } else {
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001629 uid_t loginuid = audit_get_loginuid(current);
1630 u32 sessionid = audit_get_sessionid(current);
1631 u32 sid;
Eric Paris25323862008-04-18 10:09:25 -04001632
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001633 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -04001634 xfrm_audit_policy_delete(xp, err ? 0 : 1, loginuid, sessionid,
1635 sid);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001636
1637 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001638 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001639
Herbert Xue7443892005-06-18 22:44:18 -07001640 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001641 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001642 c.seq = nlh->nlmsg_seq;
1643 c.pid = nlh->nlmsg_pid;
1644 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 }
1646
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001647out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001648 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649 return err;
1650}
1651
Christoph Hellwig22e70052007-01-02 15:22:30 -08001652static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001653 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001655 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001656 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001657 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten161a09e2006-11-27 13:11:54 -06001658 struct xfrm_audit audit_info;
Joy Latten4aa2e622007-06-04 19:05:57 -04001659 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001661 audit_info.loginuid = audit_get_loginuid(current);
1662 audit_info.sessionid = audit_get_sessionid(current);
1663 security_task_getsecid(current, &audit_info.secid);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001664 err = xfrm_state_flush(net, p->proto, &audit_info);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001665 if (err) {
1666 if (err == -ESRCH) /* empty table */
1667 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001668 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001669 }
Herbert Xubf088672005-06-18 22:44:00 -07001670 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001671 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001672 c.seq = nlh->nlmsg_seq;
1673 c.pid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001674 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001675 km_state_notify(NULL, &c);
1676
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 return 0;
1678}
1679
Steffen Klassertd8647b72011-03-08 00:10:27 +00001680static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001681{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001682 size_t replay_size = x->replay_esn ?
1683 xfrm_replay_state_esn_len(x->replay_esn) :
1684 sizeof(struct xfrm_replay_state);
1685
Thomas Graf7deb2262007-08-22 13:57:39 -07001686 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001687 + nla_total_size(replay_size)
Thomas Graf7deb2262007-08-22 13:57:39 -07001688 + nla_total_size(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001689 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001690 + nla_total_size(4) /* XFRM_AE_RTHR */
1691 + nla_total_size(4); /* XFRM_AE_ETHR */
1692}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001693
David S. Miller214e0052011-02-24 00:02:38 -05001694static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001695{
1696 struct xfrm_aevent_id *id;
1697 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001698 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001699
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001700 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
1701 if (nlh == NULL)
1702 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001703
Thomas Graf7b67c852007-08-22 13:53:52 -07001704 id = nlmsg_data(nlh);
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001705 memcpy(&id->sa_id.daddr, &x->id.daddr,sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001706 id->sa_id.spi = x->id.spi;
1707 id->sa_id.family = x->props.family;
1708 id->sa_id.proto = x->id.proto;
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001709 memcpy(&id->saddr, &x->props.saddr,sizeof(x->props.saddr));
1710 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001711 id->flags = c->data.aevent;
1712
David S. Millerd0fde792012-03-29 04:02:26 -04001713 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001714 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1715 xfrm_replay_state_esn_len(x->replay_esn),
1716 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001717 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001718 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1719 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001720 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001721 if (err)
1722 goto out_cancel;
1723 err = nla_put(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft);
1724 if (err)
1725 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001726
David S. Miller1d1e34d2012-06-27 21:57:03 -07001727 if (id->flags & XFRM_AE_RTHR) {
1728 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1729 if (err)
1730 goto out_cancel;
1731 }
1732 if (id->flags & XFRM_AE_ETHR) {
1733 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1734 x->replay_maxage * 10 / HZ);
1735 if (err)
1736 goto out_cancel;
1737 }
1738 err = xfrm_mark_put(skb, &x->mark);
1739 if (err)
1740 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001741
Thomas Graf98250692007-08-22 12:47:26 -07001742 return nlmsg_end(skb, nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001743
David S. Miller1d1e34d2012-06-27 21:57:03 -07001744out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001745 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001746 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001747}
1748
Christoph Hellwig22e70052007-01-02 15:22:30 -08001749static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001750 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001751{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001752 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001753 struct xfrm_state *x;
1754 struct sk_buff *r_skb;
1755 int err;
1756 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001757 u32 mark;
1758 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001759 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001760 struct xfrm_usersa_id *id = &p->sa_id;
1761
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001762 mark = xfrm_mark_get(attrs, &m);
1763
1764 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001765 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001766 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001767
1768 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1769 if (r_skb == NULL) {
1770 xfrm_state_put(x);
1771 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001772 }
1773
1774 /*
1775 * XXX: is this lock really needed - none of the other
1776 * gets lock (the concern is things getting updated
1777 * while we are still reading) - jhs
1778 */
1779 spin_lock_bh(&x->lock);
1780 c.data.aevent = p->flags;
1781 c.seq = nlh->nlmsg_seq;
1782 c.pid = nlh->nlmsg_pid;
1783
1784 if (build_aevent(r_skb, x, &c) < 0)
1785 BUG();
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001786 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).pid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001787 spin_unlock_bh(&x->lock);
1788 xfrm_state_put(x);
1789 return err;
1790}
1791
Christoph Hellwig22e70052007-01-02 15:22:30 -08001792static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001793 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001794{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001795 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001796 struct xfrm_state *x;
1797 struct km_event c;
1798 int err = - EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001799 u32 mark = 0;
1800 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001801 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001802 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001803 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001804 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001805
Steffen Klassertd8647b72011-03-08 00:10:27 +00001806 if (!lt && !rp && !re)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001807 return err;
1808
1809 /* pedantic mode - thou shalt sayeth replaceth */
1810 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1811 return err;
1812
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001813 mark = xfrm_mark_get(attrs, &m);
1814
1815 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 -08001816 if (x == NULL)
1817 return -ESRCH;
1818
1819 if (x->km.state != XFRM_STATE_VALID)
1820 goto out;
1821
Steffen Klasserte2b19122011-03-28 19:47:30 +00001822 err = xfrm_replay_verify_len(x->replay_esn, rp);
1823 if (err)
1824 goto out;
1825
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001826 spin_lock_bh(&x->lock);
Thomas Graf35a7aa02007-08-22 14:00:40 -07001827 xfrm_update_ae_params(x, attrs);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001828 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001829
1830 c.event = nlh->nlmsg_type;
1831 c.seq = nlh->nlmsg_seq;
1832 c.pid = nlh->nlmsg_pid;
1833 c.data.aevent = XFRM_AE_CU;
1834 km_state_notify(x, &c);
1835 err = 0;
1836out:
1837 xfrm_state_put(x);
1838 return err;
1839}
1840
Christoph Hellwig22e70052007-01-02 15:22:30 -08001841static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001842 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001844 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001845 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001846 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001847 int err;
Joy Latten161a09e2006-11-27 13:11:54 -06001848 struct xfrm_audit audit_info;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001849
Thomas Graf35a7aa02007-08-22 14:00:40 -07001850 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001851 if (err)
1852 return err;
1853
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001854 audit_info.loginuid = audit_get_loginuid(current);
1855 audit_info.sessionid = audit_get_sessionid(current);
1856 security_task_getsecid(current, &audit_info.secid);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001857 err = xfrm_policy_flush(net, type, &audit_info);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001858 if (err) {
1859 if (err == -ESRCH) /* empty table */
1860 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001861 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001862 }
1863
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001864 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001865 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001866 c.seq = nlh->nlmsg_seq;
1867 c.pid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001868 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001869 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 return 0;
1871}
1872
Christoph Hellwig22e70052007-01-02 15:22:30 -08001873static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001874 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001875{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001876 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001877 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07001878 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001879 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001880 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001881 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001882 struct xfrm_mark m;
1883 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001884
Thomas Graf35a7aa02007-08-22 14:00:40 -07001885 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001886 if (err)
1887 return err;
1888
Timo Teräsc8bf4d02010-03-31 00:17:04 +00001889 err = verify_policy_dir(p->dir);
1890 if (err)
1891 return err;
1892
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001893 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001894 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001895 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001896 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001897 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001898
Thomas Graf35a7aa02007-08-22 14:00:40 -07001899 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001900 if (err)
1901 return err;
1902
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001903 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001904 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001905 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001906
Paul Moore03e1ad72008-04-12 19:07:52 -07001907 err = security_xfrm_policy_alloc(&ctx, uctx);
1908 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001909 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001910 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001911 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001912 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001913 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001914 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001915 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08001916 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07001917
Timo Teräsea2dea92010-03-31 00:17:05 +00001918 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001919 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001920
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001921 err = 0;
1922 if (up->hard) {
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001923 uid_t loginuid = audit_get_loginuid(current);
1924 u32 sessionid = audit_get_sessionid(current);
1925 u32 sid;
1926
1927 security_task_getsecid(current, &sid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001928 xfrm_policy_delete(xp, p->dir);
Eric Paris25323862008-04-18 10:09:25 -04001929 xfrm_audit_policy_delete(xp, 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001930
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001931 } else {
1932 // reset the timers here?
stephen hemminger62db5cf2010-05-12 06:37:06 +00001933 WARN(1, "Dont know what to do with soft policy expire\n");
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001934 }
1935 km_policy_expired(xp, p->dir, up->hard, current->pid);
1936
1937out:
1938 xfrm_pol_put(xp);
1939 return err;
1940}
1941
Christoph Hellwig22e70052007-01-02 15:22:30 -08001942static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001943 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001944{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001945 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001946 struct xfrm_state *x;
1947 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07001948 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001949 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001950 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00001951 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001952
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001953 x = xfrm_state_lookup(net, mark, &p->id.daddr, p->id.spi, p->id.proto, p->family);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001954
David S. Miller3a765aa2007-02-26 14:52:21 -08001955 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001956 if (x == NULL)
1957 return err;
1958
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001959 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08001960 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001961 if (x->km.state != XFRM_STATE_VALID)
1962 goto out;
1963 km_state_expired(x, ue->hard, current->pid);
1964
Joy Latten161a09e2006-11-27 13:11:54 -06001965 if (ue->hard) {
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001966 uid_t loginuid = audit_get_loginuid(current);
1967 u32 sessionid = audit_get_sessionid(current);
1968 u32 sid;
1969
1970 security_task_getsecid(current, &sid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001971 __xfrm_state_delete(x);
Eric Paris25323862008-04-18 10:09:25 -04001972 xfrm_audit_state_delete(x, 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001973 }
David S. Miller3a765aa2007-02-26 14:52:21 -08001974 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001975out:
1976 spin_unlock_bh(&x->lock);
1977 xfrm_state_put(x);
1978 return err;
1979}
1980
Christoph Hellwig22e70052007-01-02 15:22:30 -08001981static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001982 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001983{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001984 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001985 struct xfrm_policy *xp;
1986 struct xfrm_user_tmpl *ut;
1987 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07001988 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001989 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001990
Thomas Graf7b67c852007-08-22 13:53:52 -07001991 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001992 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001993 int err = -ENOMEM;
1994
1995 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08001996 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001997
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001998 xfrm_mark_get(attrs, &mark);
1999
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002000 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002001 if (err)
2002 goto bad_policy;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002003
2004 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002005 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002006 if (!xp)
2007 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002008
2009 memcpy(&x->id, &ua->id, sizeof(ua->id));
2010 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2011 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002012 xp->mark.m = x->mark.m = mark.m;
2013 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002014 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002015 /* extract the templates and for each call km_key */
2016 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2017 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2018 memcpy(&x->id, &t->id, sizeof(x->id));
2019 x->props.mode = t->mode;
2020 x->props.reqid = t->reqid;
2021 x->props.family = ut->family;
2022 t->aalgos = ua->aalgos;
2023 t->ealgos = ua->ealgos;
2024 t->calgos = ua->calgos;
2025 err = km_query(x, t, xp);
2026
2027 }
2028
2029 kfree(x);
2030 kfree(xp);
2031
2032 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002033
2034bad_policy:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002035 WARN(1, "BAD policy passed\n");
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002036free_state:
2037 kfree(x);
2038nomem:
2039 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002040}
2041
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002042#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002043static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002044 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002045 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002046{
Thomas Graf5424f322007-08-22 14:01:33 -07002047 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002048 struct xfrm_user_migrate *um;
2049 int i, num_migrate;
2050
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002051 if (k != NULL) {
2052 struct xfrm_user_kmaddress *uk;
2053
2054 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2055 memcpy(&k->local, &uk->local, sizeof(k->local));
2056 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2057 k->family = uk->family;
2058 k->reserved = uk->reserved;
2059 }
2060
Thomas Graf5424f322007-08-22 14:01:33 -07002061 um = nla_data(rt);
2062 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002063
2064 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2065 return -EINVAL;
2066
2067 for (i = 0; i < num_migrate; i++, um++, ma++) {
2068 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2069 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2070 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2071 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2072
2073 ma->proto = um->proto;
2074 ma->mode = um->mode;
2075 ma->reqid = um->reqid;
2076
2077 ma->old_family = um->old_family;
2078 ma->new_family = um->new_family;
2079 }
2080
2081 *num = i;
2082 return 0;
2083}
2084
2085static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002086 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002087{
Thomas Graf7b67c852007-08-22 13:53:52 -07002088 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002089 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002090 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002091 u8 type;
2092 int err;
2093 int n = 0;
2094
Thomas Graf35a7aa02007-08-22 14:00:40 -07002095 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002096 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002097
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002098 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2099
Thomas Graf5424f322007-08-22 14:01:33 -07002100 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002101 if (err)
2102 return err;
2103
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002104 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002105 if (err)
2106 return err;
2107
2108 if (!n)
2109 return 0;
2110
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002111 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002112
2113 return 0;
2114}
2115#else
2116static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002117 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002118{
2119 return -ENOPROTOOPT;
2120}
2121#endif
2122
2123#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002124static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002125{
2126 struct xfrm_user_migrate um;
2127
2128 memset(&um, 0, sizeof(um));
2129 um.proto = m->proto;
2130 um.mode = m->mode;
2131 um.reqid = m->reqid;
2132 um.old_family = m->old_family;
2133 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2134 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2135 um.new_family = m->new_family;
2136 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2137 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2138
Thomas Grafc0144be2007-08-22 13:55:43 -07002139 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002140}
2141
David S. Miller183cad12011-02-24 00:28:01 -05002142static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002143{
2144 struct xfrm_user_kmaddress uk;
2145
2146 memset(&uk, 0, sizeof(uk));
2147 uk.family = k->family;
2148 uk.reserved = k->reserved;
2149 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002150 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002151
2152 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2153}
2154
2155static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002156{
2157 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002158 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2159 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2160 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002161}
2162
David S. Miller183cad12011-02-24 00:28:01 -05002163static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2164 int num_migrate, const struct xfrm_kmaddress *k,
2165 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002166{
David S. Miller183cad12011-02-24 00:28:01 -05002167 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002168 struct xfrm_userpolicy_id *pol_id;
2169 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002170 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002171
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002172 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2173 if (nlh == NULL)
2174 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002175
Thomas Graf7b67c852007-08-22 13:53:52 -07002176 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002177 /* copy data from selector, dir, and type to the pol_id */
2178 memset(pol_id, 0, sizeof(*pol_id));
2179 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2180 pol_id->dir = dir;
2181
David S. Miller1d1e34d2012-06-27 21:57:03 -07002182 if (k != NULL) {
2183 err = copy_to_user_kmaddress(k, skb);
2184 if (err)
2185 goto out_cancel;
2186 }
2187 err = copy_to_user_policy_type(type, skb);
2188 if (err)
2189 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002190 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002191 err = copy_to_user_migrate(mp, skb);
2192 if (err)
2193 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002194 }
2195
Thomas Graf98250692007-08-22 12:47:26 -07002196 return nlmsg_end(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002197
2198out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002199 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002200 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002201}
2202
David S. Miller183cad12011-02-24 00:28:01 -05002203static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2204 const struct xfrm_migrate *m, int num_migrate,
2205 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002206{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002207 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002208 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002209
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002210 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002211 if (skb == NULL)
2212 return -ENOMEM;
2213
2214 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002215 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002216 BUG();
2217
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002218 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MIGRATE, GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002219}
2220#else
David S. Miller183cad12011-02-24 00:28:01 -05002221static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2222 const struct xfrm_migrate *m, int num_migrate,
2223 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002224{
2225 return -ENOPROTOOPT;
2226}
2227#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002228
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002229#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002230
2231static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002232 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002233 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2234 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2235 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2236 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2237 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2238 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002239 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002240 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002241 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002242 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002243 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002244 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002245 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002246 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2247 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002248 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002249 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002250 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
2251 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252};
2253
Thomas Graf492b5582005-05-03 14:26:40 -07002254#undef XMSGSIZE
2255
Thomas Grafcf5cb792007-08-22 13:59:04 -07002256static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002257 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2258 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2259 [XFRMA_LASTUSED] = { .type = NLA_U64},
2260 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002261 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002262 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2263 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2264 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2265 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2266 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2267 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2268 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2269 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2270 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2271 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2272 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2273 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2274 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2275 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002276 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002277 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002278 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002279 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002280};
2281
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282static struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002283 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002285 int (*done)(struct netlink_callback *);
Thomas Graf492b5582005-05-03 14:26:40 -07002286} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2287 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2288 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2289 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002290 .dump = xfrm_dump_sa,
2291 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002292 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2293 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2294 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Timo Teras4c563f72008-02-28 21:31:08 -08002295 .dump = xfrm_dump_policy,
2296 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002297 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002298 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002299 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002300 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2301 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002302 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002303 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2304 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002305 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2306 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002307 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002308 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002309 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310};
2311
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002312static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002314 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002315 struct nlattr *attrs[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002317 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002321 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322
2323 type -= XFRM_MSG_BASE;
2324 link = &xfrm_dispatch[type];
2325
2326 /* All operations require privileges, even GET */
Eric Parisfd778462012-01-03 12:25:16 -05002327 if (!capable(CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002328 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329
Thomas Graf492b5582005-05-03 14:26:40 -07002330 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2331 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002332 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002334 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002336 {
2337 struct netlink_dump_control c = {
2338 .dump = link->dump,
2339 .done = link->done,
2340 };
2341 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 }
2344
Thomas Graf35a7aa02007-08-22 14:00:40 -07002345 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs, XFRMA_MAX,
Thomas Grafcf5cb792007-08-22 13:59:04 -07002346 xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002347 if (err < 0)
2348 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
2350 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002351 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
Thomas Graf5424f322007-08-22 14:01:33 -07002353 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354}
2355
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002356static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002358 mutex_lock(&xfrm_cfg_mutex);
2359 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
2360 mutex_unlock(&xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361}
2362
Thomas Graf7deb2262007-08-22 13:57:39 -07002363static inline size_t xfrm_expire_msgsize(void)
2364{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002365 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2366 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002367}
2368
David S. Miller214e0052011-02-24 00:02:38 -05002369static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370{
2371 struct xfrm_user_expire *ue;
2372 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002373 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002375 nlh = nlmsg_put(skb, c->pid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
2376 if (nlh == NULL)
2377 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378
Thomas Graf7b67c852007-08-22 13:53:52 -07002379 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002381 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382
David S. Miller1d1e34d2012-06-27 21:57:03 -07002383 err = xfrm_mark_put(skb, &x->mark);
2384 if (err)
2385 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002386
Thomas Graf98250692007-08-22 12:47:26 -07002387 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388}
2389
David S. Miller214e0052011-02-24 00:02:38 -05002390static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002392 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 struct sk_buff *skb;
2394
Thomas Graf7deb2262007-08-22 13:57:39 -07002395 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 if (skb == NULL)
2397 return -ENOMEM;
2398
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002399 if (build_expire(skb, x, c) < 0) {
2400 kfree_skb(skb);
2401 return -EMSGSIZE;
2402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002404 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405}
2406
David S. Miller214e0052011-02-24 00:02:38 -05002407static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002408{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002409 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002410 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002411
Steffen Klassertd8647b72011-03-08 00:10:27 +00002412 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002413 if (skb == NULL)
2414 return -ENOMEM;
2415
2416 if (build_aevent(skb, x, c) < 0)
2417 BUG();
2418
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002419 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_AEVENTS, GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002420}
2421
David S. Miller214e0052011-02-24 00:02:38 -05002422static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002423{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002424 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002425 struct xfrm_usersa_flush *p;
2426 struct nlmsghdr *nlh;
2427 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002428 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002429
Thomas Graf7deb2262007-08-22 13:57:39 -07002430 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002431 if (skb == NULL)
2432 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002433
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002434 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
2435 if (nlh == NULL) {
2436 kfree_skb(skb);
2437 return -EMSGSIZE;
2438 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002439
Thomas Graf7b67c852007-08-22 13:53:52 -07002440 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002441 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002442
Thomas Graf98250692007-08-22 12:47:26 -07002443 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002444
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002445 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002446}
2447
Thomas Graf7deb2262007-08-22 13:57:39 -07002448static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002449{
Thomas Graf7deb2262007-08-22 13:57:39 -07002450 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002451 if (x->aead)
2452 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002453 if (x->aalg) {
2454 l += nla_total_size(sizeof(struct xfrm_algo) +
2455 (x->aalg->alg_key_len + 7) / 8);
2456 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2457 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002458 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002459 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002460 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002461 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002462 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002463 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002464 if (x->tfcpad)
2465 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002466 if (x->replay_esn)
2467 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
Herbert Xu68325d32007-10-09 13:30:57 -07002468 if (x->security)
2469 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2470 x->security->ctx_len);
2471 if (x->coaddr)
2472 l += nla_total_size(sizeof(*x->coaddr));
2473
Herbert Xud26f3982007-11-13 21:47:08 -08002474 /* Must count x->lastused as it may become non-zero behind our back. */
2475 l += nla_total_size(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002476
2477 return l;
2478}
2479
David S. Miller214e0052011-02-24 00:02:38 -05002480static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002481{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002482 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002483 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002484 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002485 struct nlmsghdr *nlh;
2486 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002487 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002488 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002489
2490 headlen = sizeof(*p);
2491 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002492 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002493 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002494 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002495 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002496 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002497
Thomas Graf7deb2262007-08-22 13:57:39 -07002498 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002499 if (skb == NULL)
2500 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002501
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002502 nlh = nlmsg_put(skb, c->pid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002503 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002504 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002505 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002506
Thomas Graf7b67c852007-08-22 13:53:52 -07002507 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002508 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002509 struct nlattr *attr;
2510
Thomas Graf7b67c852007-08-22 13:53:52 -07002511 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002512 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2513 id->spi = x->id.spi;
2514 id->family = x->props.family;
2515 id->proto = x->id.proto;
2516
Thomas Grafc0144be2007-08-22 13:55:43 -07002517 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002518 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002519 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002520 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002521
2522 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002523 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002524 err = copy_to_user_state_extra(x, p, skb);
2525 if (err)
2526 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002527
Thomas Graf98250692007-08-22 12:47:26 -07002528 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002529
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002530 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002531
David S. Miller1d1e34d2012-06-27 21:57:03 -07002532out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002533 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002534 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002535}
2536
David S. Miller214e0052011-02-24 00:02:38 -05002537static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002538{
2539
2540 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002541 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002542 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002543 case XFRM_MSG_NEWAE:
2544 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002545 case XFRM_MSG_DELSA:
2546 case XFRM_MSG_UPDSA:
2547 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002548 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002549 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002550 return xfrm_notify_sa_flush(c);
2551 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002552 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2553 c->event);
2554 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002555 }
2556
2557 return 0;
2558
2559}
2560
Thomas Graf7deb2262007-08-22 13:57:39 -07002561static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2562 struct xfrm_policy *xp)
2563{
2564 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2565 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002566 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002567 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2568 + userpolicy_type_attrsize();
2569}
2570
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
2572 struct xfrm_tmpl *xt, struct xfrm_policy *xp,
2573 int dir)
2574{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002575 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 struct xfrm_user_acquire *ua;
2577 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002578 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002580 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2581 if (nlh == NULL)
2582 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
Thomas Graf7b67c852007-08-22 13:53:52 -07002584 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 memcpy(&ua->id, &x->id, sizeof(ua->id));
2586 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2587 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
2588 copy_to_user_policy(xp, &ua->policy, dir);
2589 ua->aalgos = xt->aalgos;
2590 ua->ealgos = xt->ealgos;
2591 ua->calgos = xt->calgos;
2592 ua->seq = x->km.seq = seq;
2593
David S. Miller1d1e34d2012-06-27 21:57:03 -07002594 err = copy_to_user_tmpl(xp, skb);
2595 if (!err)
2596 err = copy_to_user_state_sec_ctx(x, skb);
2597 if (!err)
2598 err = copy_to_user_policy_type(xp->type, skb);
2599 if (!err)
2600 err = xfrm_mark_put(skb, &xp->mark);
2601 if (err) {
2602 nlmsg_cancel(skb, nlh);
2603 return err;
2604 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
Thomas Graf98250692007-08-22 12:47:26 -07002606 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607}
2608
2609static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
2610 struct xfrm_policy *xp, int dir)
2611{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002612 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614
Thomas Graf7deb2262007-08-22 13:57:39 -07002615 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 if (skb == NULL)
2617 return -ENOMEM;
2618
2619 if (build_acquire(skb, x, xt, xp, dir) < 0)
2620 BUG();
2621
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002622 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_ACQUIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623}
2624
2625/* User gives us xfrm_user_policy_info followed by an array of 0
2626 * or more templates.
2627 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002628static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 u8 *data, int len, int *dir)
2630{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002631 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2633 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2634 struct xfrm_policy *xp;
2635 int nr;
2636
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002637 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 case AF_INET:
2639 if (opt != IP_XFRM_POLICY) {
2640 *dir = -EOPNOTSUPP;
2641 return NULL;
2642 }
2643 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002644#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 case AF_INET6:
2646 if (opt != IPV6_XFRM_POLICY) {
2647 *dir = -EOPNOTSUPP;
2648 return NULL;
2649 }
2650 break;
2651#endif
2652 default:
2653 *dir = -EINVAL;
2654 return NULL;
2655 }
2656
2657 *dir = -EINVAL;
2658
2659 if (len < sizeof(*p) ||
2660 verify_newpolicy_info(p))
2661 return NULL;
2662
2663 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002664 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 return NULL;
2666
Herbert Xua4f1bac2005-07-26 15:43:17 -07002667 if (p->dir > XFRM_POLICY_OUT)
2668 return NULL;
2669
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002670 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 if (xp == NULL) {
2672 *dir = -ENOBUFS;
2673 return NULL;
2674 }
2675
2676 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002677 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678 copy_templates(xp, ut, nr);
2679
2680 *dir = p->dir;
2681
2682 return xp;
2683}
2684
Thomas Graf7deb2262007-08-22 13:57:39 -07002685static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2686{
2687 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2688 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2689 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002690 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002691 + userpolicy_type_attrsize();
2692}
2693
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002695 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696{
2697 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002698 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002699 struct nlmsghdr *nlh;
2700 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002702 nlh = nlmsg_put(skb, c->pid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
2703 if (nlh == NULL)
2704 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705
Thomas Graf7b67c852007-08-22 13:53:52 -07002706 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002708 err = copy_to_user_tmpl(xp, skb);
2709 if (!err)
2710 err = copy_to_user_sec_ctx(xp, skb);
2711 if (!err)
2712 err = copy_to_user_policy_type(xp->type, skb);
2713 if (!err)
2714 err = xfrm_mark_put(skb, &xp->mark);
2715 if (err) {
2716 nlmsg_cancel(skb, nlh);
2717 return err;
2718 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 upe->hard = !!hard;
2720
Thomas Graf98250692007-08-22 12:47:26 -07002721 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722}
2723
David S. Miller214e0052011-02-24 00:02:38 -05002724static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002726 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728
Thomas Graf7deb2262007-08-22 13:57:39 -07002729 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 if (skb == NULL)
2731 return -ENOMEM;
2732
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002733 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 BUG();
2735
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002736 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737}
2738
David S. Miller214e0052011-02-24 00:02:38 -05002739static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002740{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002741 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002742 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002743 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002744 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002745 struct nlmsghdr *nlh;
2746 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002747 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002748
2749 headlen = sizeof(*p);
2750 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002751 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002752 headlen = sizeof(*id);
2753 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002754 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002755 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002756 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002757
Thomas Graf7deb2262007-08-22 13:57:39 -07002758 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002759 if (skb == NULL)
2760 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002761
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002762 nlh = nlmsg_put(skb, c->pid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002763 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002764 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002765 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002766
Thomas Graf7b67c852007-08-22 13:53:52 -07002767 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002768 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002769 struct nlattr *attr;
2770
Thomas Graf7b67c852007-08-22 13:53:52 -07002771 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002772 memset(id, 0, sizeof(*id));
2773 id->dir = dir;
2774 if (c->data.byid)
2775 id->index = xp->index;
2776 else
2777 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2778
Thomas Grafc0144be2007-08-22 13:55:43 -07002779 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002780 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002781 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002782 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002783
2784 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002785 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002786
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002787 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002788 err = copy_to_user_tmpl(xp, skb);
2789 if (!err)
2790 err = copy_to_user_policy_type(xp->type, skb);
2791 if (!err)
2792 err = xfrm_mark_put(skb, &xp->mark);
2793 if (err)
2794 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002795
Thomas Graf98250692007-08-22 12:47:26 -07002796 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002797
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002798 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002799
David S. Miller1d1e34d2012-06-27 21:57:03 -07002800out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002801 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002802 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002803}
2804
David S. Miller214e0052011-02-24 00:02:38 -05002805static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002806{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002807 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002808 struct nlmsghdr *nlh;
2809 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002810 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002811
Thomas Graf7deb2262007-08-22 13:57:39 -07002812 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002813 if (skb == NULL)
2814 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002815
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002816 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002817 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002818 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002819 goto out_free_skb;
2820 err = copy_to_user_policy_type(c->data.type, skb);
2821 if (err)
2822 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002823
Thomas Graf98250692007-08-22 12:47:26 -07002824 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002825
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002826 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002827
David S. Miller1d1e34d2012-06-27 21:57:03 -07002828out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002829 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002830 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002831}
2832
David S. Miller214e0052011-02-24 00:02:38 -05002833static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002834{
2835
2836 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002837 case XFRM_MSG_NEWPOLICY:
2838 case XFRM_MSG_UPDPOLICY:
2839 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002840 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002841 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002842 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002843 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002844 return xfrm_exp_policy_notify(xp, dir, c);
2845 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002846 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
2847 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002848 }
2849
2850 return 0;
2851
2852}
2853
Thomas Graf7deb2262007-08-22 13:57:39 -07002854static inline size_t xfrm_report_msgsize(void)
2855{
2856 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
2857}
2858
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002859static int build_report(struct sk_buff *skb, u8 proto,
2860 struct xfrm_selector *sel, xfrm_address_t *addr)
2861{
2862 struct xfrm_user_report *ur;
2863 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002864
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002865 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
2866 if (nlh == NULL)
2867 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002868
Thomas Graf7b67c852007-08-22 13:53:52 -07002869 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002870 ur->proto = proto;
2871 memcpy(&ur->sel, sel, sizeof(ur->sel));
2872
David S. Miller1d1e34d2012-06-27 21:57:03 -07002873 if (addr) {
2874 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
2875 if (err) {
2876 nlmsg_cancel(skb, nlh);
2877 return err;
2878 }
2879 }
Thomas Graf98250692007-08-22 12:47:26 -07002880 return nlmsg_end(skb, nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002881}
2882
Alexey Dobriyandb983c12008-11-25 17:51:01 -08002883static int xfrm_send_report(struct net *net, u8 proto,
2884 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002885{
2886 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002887
Thomas Graf7deb2262007-08-22 13:57:39 -07002888 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002889 if (skb == NULL)
2890 return -ENOMEM;
2891
2892 if (build_report(skb, proto, sel, addr) < 0)
2893 BUG();
2894
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002895 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_REPORT, GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002896}
2897
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002898static inline size_t xfrm_mapping_msgsize(void)
2899{
2900 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
2901}
2902
2903static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
2904 xfrm_address_t *new_saddr, __be16 new_sport)
2905{
2906 struct xfrm_user_mapping *um;
2907 struct nlmsghdr *nlh;
2908
2909 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
2910 if (nlh == NULL)
2911 return -EMSGSIZE;
2912
2913 um = nlmsg_data(nlh);
2914
2915 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
2916 um->id.spi = x->id.spi;
2917 um->id.family = x->props.family;
2918 um->id.proto = x->id.proto;
2919 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
2920 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
2921 um->new_sport = new_sport;
2922 um->old_sport = x->encap->encap_sport;
2923 um->reqid = x->props.reqid;
2924
2925 return nlmsg_end(skb, nlh);
2926}
2927
2928static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
2929 __be16 sport)
2930{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002931 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002932 struct sk_buff *skb;
2933
2934 if (x->id.proto != IPPROTO_ESP)
2935 return -EINVAL;
2936
2937 if (!x->encap)
2938 return -EINVAL;
2939
2940 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
2941 if (skb == NULL)
2942 return -ENOMEM;
2943
2944 if (build_mapping(skb, x, ipaddr, sport) < 0)
2945 BUG();
2946
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002947 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MAPPING, GFP_ATOMIC);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002948}
2949
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950static struct xfrm_mgr netlink_mgr = {
2951 .id = "netlink",
2952 .notify = xfrm_send_state_notify,
2953 .acquire = xfrm_send_acquire,
2954 .compile_policy = xfrm_compile_policy,
2955 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002956 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002957 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002958 .new_mapping = xfrm_send_mapping,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959};
2960
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002961static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962{
Patrick McHardybe336902006-03-20 22:40:54 -08002963 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002964 struct netlink_kernel_cfg cfg = {
2965 .groups = XFRMNLGRP_MAX,
2966 .input = xfrm_netlink_rcv,
2967 };
Patrick McHardybe336902006-03-20 22:40:54 -08002968
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002969 nlsk = netlink_kernel_create(net, NETLINK_XFRM, THIS_MODULE, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08002970 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002972 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00002973 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 return 0;
2975}
2976
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002977static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002978{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002979 struct net *net;
2980 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002981 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002982 synchronize_net();
2983 list_for_each_entry(net, net_exit_list, exit_list)
2984 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002985}
2986
2987static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002988 .init = xfrm_user_net_init,
2989 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002990};
2991
2992static int __init xfrm_user_init(void)
2993{
2994 int rv;
2995
2996 printk(KERN_INFO "Initializing XFRM netlink socket\n");
2997
2998 rv = register_pernet_subsys(&xfrm_user_net_ops);
2999 if (rv < 0)
3000 return rv;
3001 rv = xfrm_register_km(&netlink_mgr);
3002 if (rv < 0)
3003 unregister_pernet_subsys(&xfrm_user_net_ops);
3004 return rv;
3005}
3006
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007static void __exit xfrm_user_exit(void)
3008{
3009 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003010 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011}
3012
3013module_init(xfrm_user_init);
3014module_exit(xfrm_user_exit);
3015MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003016MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003017