blob: 8024b3dea8c2d824d1e37a3cf5f51401cb586b47 [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{
Mathias Krausef778a632012-09-19 11:33:39 +0000692 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 memcpy(&p->id, &x->id, sizeof(p->id));
694 memcpy(&p->sel, &x->sel, sizeof(p->sel));
695 memcpy(&p->lft, &x->lft, sizeof(p->lft));
696 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
697 memcpy(&p->stats, &x->stats, sizeof(p->stats));
David S. Miller54489c142006-10-27 15:29:47 -0700698 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 p->mode = x->props.mode;
700 p->replay_window = x->props.replay_window;
701 p->reqid = x->props.reqid;
702 p->family = x->props.family;
703 p->flags = x->props.flags;
704 p->seq = x->km.seq;
705}
706
707struct xfrm_dump_info {
708 struct sk_buff *in_skb;
709 struct sk_buff *out_skb;
710 u32 nlmsg_seq;
711 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712};
713
Thomas Grafc0144be2007-08-22 13:55:43 -0700714static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
715{
Thomas Grafc0144be2007-08-22 13:55:43 -0700716 struct xfrm_user_sec_ctx *uctx;
717 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700718 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700719
720 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
721 if (attr == NULL)
722 return -EMSGSIZE;
723
724 uctx = nla_data(attr);
725 uctx->exttype = XFRMA_SEC_CTX;
726 uctx->len = ctx_size;
727 uctx->ctx_doi = s->ctx_doi;
728 uctx->ctx_alg = s->ctx_alg;
729 uctx->ctx_len = s->ctx_len;
730 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
731
732 return 0;
733}
734
Martin Willi4447bb32009-11-25 00:29:52 +0000735static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
736{
737 struct xfrm_algo *algo;
738 struct nlattr *nla;
739
740 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
741 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
742 if (!nla)
743 return -EMSGSIZE;
744
745 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000746 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000747 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
748 algo->alg_key_len = auth->alg_key_len;
749
750 return 0;
751}
752
Herbert Xu68325d32007-10-09 13:30:57 -0700753/* Don't change this without updating xfrm_sa_len! */
754static int copy_to_user_state_extra(struct xfrm_state *x,
755 struct xfrm_usersa_info *p,
756 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700758 int ret = 0;
759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 copy_to_user_state(x, p);
761
David S. Miller1d1e34d2012-06-27 21:57:03 -0700762 if (x->coaddr) {
763 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
764 if (ret)
765 goto out;
766 }
767 if (x->lastused) {
768 ret = nla_put_u64(skb, XFRMA_LASTUSED, x->lastused);
769 if (ret)
770 goto out;
771 }
772 if (x->aead) {
773 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
774 if (ret)
775 goto out;
776 }
777 if (x->aalg) {
778 ret = copy_to_user_auth(x->aalg, skb);
779 if (!ret)
780 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
781 xfrm_alg_auth_len(x->aalg), x->aalg);
782 if (ret)
783 goto out;
784 }
785 if (x->ealg) {
786 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
787 if (ret)
788 goto out;
789 }
790 if (x->calg) {
791 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
792 if (ret)
793 goto out;
794 }
795 if (x->encap) {
796 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
797 if (ret)
798 goto out;
799 }
800 if (x->tfcpad) {
801 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
802 if (ret)
803 goto out;
804 }
805 ret = xfrm_mark_put(skb, &x->mark);
806 if (ret)
807 goto out;
808 if (x->replay_esn) {
809 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
810 xfrm_replay_state_esn_len(x->replay_esn),
811 x->replay_esn);
812 if (ret)
813 goto out;
814 }
815 if (x->security)
816 ret = copy_sec_ctx(x->security, skb);
817out:
818 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700819}
820
821static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
822{
823 struct xfrm_dump_info *sp = ptr;
824 struct sk_buff *in_skb = sp->in_skb;
825 struct sk_buff *skb = sp->out_skb;
826 struct xfrm_usersa_info *p;
827 struct nlmsghdr *nlh;
828 int err;
829
Herbert Xu68325d32007-10-09 13:30:57 -0700830 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).pid, sp->nlmsg_seq,
831 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
832 if (nlh == NULL)
833 return -EMSGSIZE;
834
835 p = nlmsg_data(nlh);
836
837 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700838 if (err) {
839 nlmsg_cancel(skb, nlh);
840 return err;
841 }
Thomas Graf98250692007-08-22 12:47:26 -0700842 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844}
845
Timo Teras4c563f72008-02-28 21:31:08 -0800846static int xfrm_dump_sa_done(struct netlink_callback *cb)
847{
848 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
849 xfrm_state_walk_done(walk);
850 return 0;
851}
852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
854{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800855 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800856 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 struct xfrm_dump_info info;
858
Timo Teras4c563f72008-02-28 21:31:08 -0800859 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
860 sizeof(cb->args) - sizeof(cb->args[0]));
861
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 info.in_skb = cb->skb;
863 info.out_skb = skb;
864 info.nlmsg_seq = cb->nlh->nlmsg_seq;
865 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800866
867 if (!cb->args[0]) {
868 cb->args[0] = 1;
869 xfrm_state_walk_init(walk, 0);
870 }
871
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800872 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 return skb->len;
875}
876
877static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
878 struct xfrm_state *x, u32 seq)
879{
880 struct xfrm_dump_info info;
881 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +0000882 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Thomas Graf7deb2262007-08-22 13:57:39 -0700884 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 if (!skb)
886 return ERR_PTR(-ENOMEM);
887
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 info.in_skb = in_skb;
889 info.out_skb = skb;
890 info.nlmsg_seq = seq;
891 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Mathias Krause864745d2012-09-13 11:41:26 +0000893 err = dump_one_state(x, 0, &info);
894 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +0000896 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
898
899 return skb;
900}
901
Thomas Graf7deb2262007-08-22 13:57:39 -0700902static inline size_t xfrm_spdinfo_msgsize(void)
903{
904 return NLMSG_ALIGN(4)
905 + nla_total_size(sizeof(struct xfrmu_spdinfo))
906 + nla_total_size(sizeof(struct xfrmu_spdhinfo));
907}
908
Alexey Dobriyane0710412010-01-23 13:37:10 +0000909static int build_spdinfo(struct sk_buff *skb, struct net *net,
910 u32 pid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700911{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700912 struct xfrmk_spdinfo si;
913 struct xfrmu_spdinfo spc;
914 struct xfrmu_spdhinfo sph;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700915 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700916 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700917 u32 *f;
918
919 nlh = nlmsg_put(skb, pid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300920 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700921 return -EMSGSIZE;
922
923 f = nlmsg_data(nlh);
924 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +0000925 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700926 spc.incnt = si.incnt;
927 spc.outcnt = si.outcnt;
928 spc.fwdcnt = si.fwdcnt;
929 spc.inscnt = si.inscnt;
930 spc.outscnt = si.outscnt;
931 spc.fwdscnt = si.fwdscnt;
932 sph.spdhcnt = si.spdhcnt;
933 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700934
David S. Miller1d1e34d2012-06-27 21:57:03 -0700935 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
936 if (!err)
937 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
938 if (err) {
939 nlmsg_cancel(skb, nlh);
940 return err;
941 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700942
943 return nlmsg_end(skb, nlh);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700944}
945
946static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700947 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700948{
Alexey Dobriyana6483b72008-11-25 17:38:20 -0800949 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700950 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -0700951 u32 *flags = nlmsg_data(nlh);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700952 u32 spid = NETLINK_CB(skb).pid;
953 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700954
Thomas Graf7deb2262007-08-22 13:57:39 -0700955 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700956 if (r_skb == NULL)
957 return -ENOMEM;
958
Alexey Dobriyane0710412010-01-23 13:37:10 +0000959 if (build_spdinfo(r_skb, net, spid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700960 BUG();
961
Alexey Dobriyana6483b72008-11-25 17:38:20 -0800962 return nlmsg_unicast(net->xfrm.nlsk, r_skb, spid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700963}
964
Thomas Graf7deb2262007-08-22 13:57:39 -0700965static inline size_t xfrm_sadinfo_msgsize(void)
966{
967 return NLMSG_ALIGN(4)
968 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
969 + nla_total_size(4); /* XFRMA_SAD_CNT */
970}
971
Alexey Dobriyane0710412010-01-23 13:37:10 +0000972static int build_sadinfo(struct sk_buff *skb, struct net *net,
973 u32 pid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700974{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -0700975 struct xfrmk_sadinfo si;
976 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700977 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700978 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700979 u32 *f;
980
981 nlh = nlmsg_put(skb, pid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300982 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700983 return -EMSGSIZE;
984
985 f = nlmsg_data(nlh);
986 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +0000987 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700988
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -0700989 sh.sadhmcnt = si.sadhmcnt;
990 sh.sadhcnt = si.sadhcnt;
991
David S. Miller1d1e34d2012-06-27 21:57:03 -0700992 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
993 if (!err)
994 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
995 if (err) {
996 nlmsg_cancel(skb, nlh);
997 return err;
998 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700999
1000 return nlmsg_end(skb, nlh);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001001}
1002
1003static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001004 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001005{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001006 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001007 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001008 u32 *flags = nlmsg_data(nlh);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001009 u32 spid = NETLINK_CB(skb).pid;
1010 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001011
Thomas Graf7deb2262007-08-22 13:57:39 -07001012 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001013 if (r_skb == NULL)
1014 return -ENOMEM;
1015
Alexey Dobriyane0710412010-01-23 13:37:10 +00001016 if (build_sadinfo(r_skb, net, spid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001017 BUG();
1018
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001019 return nlmsg_unicast(net->xfrm.nlsk, r_skb, spid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001020}
1021
Christoph Hellwig22e70052007-01-02 15:22:30 -08001022static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001023 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001025 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001026 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 struct xfrm_state *x;
1028 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001029 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001031 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 if (x == NULL)
1033 goto out_noput;
1034
1035 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1036 if (IS_ERR(resp_skb)) {
1037 err = PTR_ERR(resp_skb);
1038 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001039 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
1041 xfrm_state_put(x);
1042out_noput:
1043 return err;
1044}
1045
1046static int verify_userspi_info(struct xfrm_userspi_info *p)
1047{
1048 switch (p->info.id.proto) {
1049 case IPPROTO_AH:
1050 case IPPROTO_ESP:
1051 break;
1052
1053 case IPPROTO_COMP:
1054 /* IPCOMP spi is 16-bits. */
1055 if (p->max >= 0x10000)
1056 return -EINVAL;
1057 break;
1058
1059 default:
1060 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001061 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062
1063 if (p->min > p->max)
1064 return -EINVAL;
1065
1066 return 0;
1067}
1068
Christoph Hellwig22e70052007-01-02 15:22:30 -08001069static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001070 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001072 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 struct xfrm_state *x;
1074 struct xfrm_userspi_info *p;
1075 struct sk_buff *resp_skb;
1076 xfrm_address_t *daddr;
1077 int family;
1078 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001079 u32 mark;
1080 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081
Thomas Graf7b67c852007-08-22 13:53:52 -07001082 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 err = verify_userspi_info(p);
1084 if (err)
1085 goto out_noput;
1086
1087 family = p->info.family;
1088 daddr = &p->info.id.daddr;
1089
1090 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001091
1092 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001094 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 if (x && xfrm_addr_cmp(&x->id.daddr, daddr, family)) {
1096 xfrm_state_put(x);
1097 x = NULL;
1098 }
1099 }
1100
1101 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001102 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103 p->info.id.proto, daddr,
1104 &p->info.saddr, 1,
1105 family);
1106 err = -ENOENT;
1107 if (x == NULL)
1108 goto out_noput;
1109
Herbert Xu658b2192007-10-09 13:29:52 -07001110 err = xfrm_alloc_spi(x, p->min, p->max);
1111 if (err)
1112 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
Herbert Xu658b2192007-10-09 13:29:52 -07001114 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 if (IS_ERR(resp_skb)) {
1116 err = PTR_ERR(resp_skb);
1117 goto out;
1118 }
1119
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001120 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
1122out:
1123 xfrm_state_put(x);
1124out_noput:
1125 return err;
1126}
1127
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001128static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129{
1130 switch (dir) {
1131 case XFRM_POLICY_IN:
1132 case XFRM_POLICY_OUT:
1133 case XFRM_POLICY_FWD:
1134 break;
1135
1136 default:
1137 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139
1140 return 0;
1141}
1142
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001143static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001144{
1145 switch (type) {
1146 case XFRM_POLICY_TYPE_MAIN:
1147#ifdef CONFIG_XFRM_SUB_POLICY
1148 case XFRM_POLICY_TYPE_SUB:
1149#endif
1150 break;
1151
1152 default:
1153 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001154 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001155
1156 return 0;
1157}
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1160{
1161 switch (p->share) {
1162 case XFRM_SHARE_ANY:
1163 case XFRM_SHARE_SESSION:
1164 case XFRM_SHARE_USER:
1165 case XFRM_SHARE_UNIQUE:
1166 break;
1167
1168 default:
1169 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001170 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171
1172 switch (p->action) {
1173 case XFRM_POLICY_ALLOW:
1174 case XFRM_POLICY_BLOCK:
1175 break;
1176
1177 default:
1178 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001180
1181 switch (p->sel.family) {
1182 case AF_INET:
1183 break;
1184
1185 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001186#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 break;
1188#else
1189 return -EAFNOSUPPORT;
1190#endif
1191
1192 default:
1193 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
1196 return verify_policy_dir(p->dir);
1197}
1198
Thomas Graf5424f322007-08-22 14:01:33 -07001199static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001200{
Thomas Graf5424f322007-08-22 14:01:33 -07001201 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001202 struct xfrm_user_sec_ctx *uctx;
1203
1204 if (!rt)
1205 return 0;
1206
Thomas Graf5424f322007-08-22 14:01:33 -07001207 uctx = nla_data(rt);
Paul Moore03e1ad72008-04-12 19:07:52 -07001208 return security_xfrm_policy_alloc(&pol->security, uctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001209}
1210
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1212 int nr)
1213{
1214 int i;
1215
1216 xp->xfrm_nr = nr;
1217 for (i = 0; i < nr; i++, ut++) {
1218 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1219
1220 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1221 memcpy(&t->saddr, &ut->saddr,
1222 sizeof(xfrm_address_t));
1223 t->reqid = ut->reqid;
1224 t->mode = ut->mode;
1225 t->share = ut->share;
1226 t->optional = ut->optional;
1227 t->aalgos = ut->aalgos;
1228 t->ealgos = ut->ealgos;
1229 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001230 /* If all masks are ~0, then we allow all algorithms. */
1231 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001232 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 }
1234}
1235
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001236static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1237{
1238 int i;
1239
1240 if (nr > XFRM_MAX_DEPTH)
1241 return -EINVAL;
1242
1243 for (i = 0; i < nr; i++) {
1244 /* We never validated the ut->family value, so many
1245 * applications simply leave it at zero. The check was
1246 * never made and ut->family was ignored because all
1247 * templates could be assumed to have the same family as
1248 * the policy itself. Now that we will have ipv4-in-ipv6
1249 * and ipv6-in-ipv4 tunnels, this is no longer true.
1250 */
1251 if (!ut[i].family)
1252 ut[i].family = family;
1253
1254 switch (ut[i].family) {
1255 case AF_INET:
1256 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001257#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001258 case AF_INET6:
1259 break;
1260#endif
1261 default:
1262 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001263 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001264 }
1265
1266 return 0;
1267}
1268
Thomas Graf5424f322007-08-22 14:01:33 -07001269static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270{
Thomas Graf5424f322007-08-22 14:01:33 -07001271 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 if (!rt) {
1274 pol->xfrm_nr = 0;
1275 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001276 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1277 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001278 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001280 err = validate_tmpl(nr, utmpl, pol->family);
1281 if (err)
1282 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Thomas Graf5424f322007-08-22 14:01:33 -07001284 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 }
1286 return 0;
1287}
1288
Thomas Graf5424f322007-08-22 14:01:33 -07001289static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001290{
Thomas Graf5424f322007-08-22 14:01:33 -07001291 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001292 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001293 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001294 int err;
1295
1296 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001297 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001298 type = upt->type;
1299 }
1300
1301 err = verify_policy_type(type);
1302 if (err)
1303 return err;
1304
1305 *tp = type;
1306 return 0;
1307}
1308
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1310{
1311 xp->priority = p->priority;
1312 xp->index = p->index;
1313 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1314 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1315 xp->action = p->action;
1316 xp->flags = p->flags;
1317 xp->family = p->sel.family;
1318 /* XXX xp->share = p->share; */
1319}
1320
1321static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1322{
Mathias Krause7b789832012-09-19 11:33:40 +00001323 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1325 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1326 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1327 p->priority = xp->priority;
1328 p->index = xp->index;
1329 p->sel.family = xp->family;
1330 p->dir = dir;
1331 p->action = xp->action;
1332 p->flags = xp->flags;
1333 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1334}
1335
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001336static struct xfrm_policy *xfrm_policy_construct(struct net *net, struct xfrm_userpolicy_info *p, struct nlattr **attrs, int *errp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001338 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 int err;
1340
1341 if (!xp) {
1342 *errp = -ENOMEM;
1343 return NULL;
1344 }
1345
1346 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001347
Thomas Graf35a7aa02007-08-22 14:00:40 -07001348 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001349 if (err)
1350 goto error;
1351
Thomas Graf35a7aa02007-08-22 14:00:40 -07001352 if (!(err = copy_from_user_tmpl(xp, attrs)))
1353 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001354 if (err)
1355 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001357 xfrm_mark_get(attrs, &xp->mark);
1358
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001360 error:
1361 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001362 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001363 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001364 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365}
1366
Christoph Hellwig22e70052007-01-02 15:22:30 -08001367static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001368 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001370 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001371 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001373 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 int err;
1375 int excl;
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001376 uid_t loginuid = audit_get_loginuid(current);
1377 u32 sessionid = audit_get_sessionid(current);
1378 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
1380 err = verify_newpolicy_info(p);
1381 if (err)
1382 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001383 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001384 if (err)
1385 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001387 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 if (!xp)
1389 return err;
1390
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001391 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001392 * Aha! this is anti-netlink really i.e more pfkey derived
1393 * in netlink excl is a flag and you wouldnt need
1394 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1396 err = xfrm_policy_insert(p->dir, xp, excl);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001397 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -04001398 xfrm_audit_policy_add(xp, err ? 0 : 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001401 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 kfree(xp);
1403 return err;
1404 }
1405
Herbert Xuf60f6b82005-06-18 22:44:37 -07001406 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001407 c.seq = nlh->nlmsg_seq;
1408 c.pid = nlh->nlmsg_pid;
1409 km_policy_notify(xp, p->dir, &c);
1410
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 xfrm_pol_put(xp);
1412
1413 return 0;
1414}
1415
1416static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1417{
1418 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1419 int i;
1420
1421 if (xp->xfrm_nr == 0)
1422 return 0;
1423
1424 for (i = 0; i < xp->xfrm_nr; i++) {
1425 struct xfrm_user_tmpl *up = &vec[i];
1426 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1427
Mathias Krause1f868402012-09-19 11:33:41 +00001428 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001430 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1432 up->reqid = kp->reqid;
1433 up->mode = kp->mode;
1434 up->share = kp->share;
1435 up->optional = kp->optional;
1436 up->aalgos = kp->aalgos;
1437 up->ealgos = kp->ealgos;
1438 up->calgos = kp->calgos;
1439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440
Thomas Grafc0144be2007-08-22 13:55:43 -07001441 return nla_put(skb, XFRMA_TMPL,
1442 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001443}
1444
Serge Hallyn0d681622006-07-24 23:30:44 -07001445static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1446{
1447 if (x->security) {
1448 return copy_sec_ctx(x->security, skb);
1449 }
1450 return 0;
1451}
1452
1453static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1454{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001455 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001456 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001457 return 0;
1458}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001459static inline size_t userpolicy_type_attrsize(void)
1460{
1461#ifdef CONFIG_XFRM_SUB_POLICY
1462 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1463#else
1464 return 0;
1465#endif
1466}
Serge Hallyn0d681622006-07-24 23:30:44 -07001467
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001468#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001469static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001470{
Thomas Grafc0144be2007-08-22 13:55:43 -07001471 struct xfrm_userpolicy_type upt = {
1472 .type = type,
1473 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001474
Thomas Grafc0144be2007-08-22 13:55:43 -07001475 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001476}
1477
1478#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001479static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001480{
1481 return 0;
1482}
1483#endif
1484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1486{
1487 struct xfrm_dump_info *sp = ptr;
1488 struct xfrm_userpolicy_info *p;
1489 struct sk_buff *in_skb = sp->in_skb;
1490 struct sk_buff *skb = sp->out_skb;
1491 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001492 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001494 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).pid, sp->nlmsg_seq,
1495 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1496 if (nlh == NULL)
1497 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Thomas Graf7b67c852007-08-22 13:53:52 -07001499 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001501 err = copy_to_user_tmpl(xp, skb);
1502 if (!err)
1503 err = copy_to_user_sec_ctx(xp, skb);
1504 if (!err)
1505 err = copy_to_user_policy_type(xp->type, skb);
1506 if (!err)
1507 err = xfrm_mark_put(skb, &xp->mark);
1508 if (err) {
1509 nlmsg_cancel(skb, nlh);
1510 return err;
1511 }
Thomas Graf98250692007-08-22 12:47:26 -07001512 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514}
1515
Timo Teras4c563f72008-02-28 21:31:08 -08001516static int xfrm_dump_policy_done(struct netlink_callback *cb)
1517{
1518 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
1519
1520 xfrm_policy_walk_done(walk);
1521 return 0;
1522}
1523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1525{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001526 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001527 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 struct xfrm_dump_info info;
1529
Timo Teras4c563f72008-02-28 21:31:08 -08001530 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) >
1531 sizeof(cb->args) - sizeof(cb->args[0]));
1532
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 info.in_skb = cb->skb;
1534 info.out_skb = skb;
1535 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1536 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001537
1538 if (!cb->args[0]) {
1539 cb->args[0] = 1;
1540 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1541 }
1542
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001543 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 return skb->len;
1546}
1547
1548static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1549 struct xfrm_policy *xp,
1550 int dir, u32 seq)
1551{
1552 struct xfrm_dump_info info;
1553 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001554 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Thomas Graf7deb2262007-08-22 13:57:39 -07001556 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 if (!skb)
1558 return ERR_PTR(-ENOMEM);
1559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 info.in_skb = in_skb;
1561 info.out_skb = skb;
1562 info.nlmsg_seq = seq;
1563 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Mathias Krausec2546372012-09-14 09:58:32 +00001565 err = dump_one_policy(xp, dir, 0, &info);
1566 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001568 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 }
1570
1571 return skb;
1572}
1573
Christoph Hellwig22e70052007-01-02 15:22:30 -08001574static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001575 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001577 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 struct xfrm_policy *xp;
1579 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001580 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001582 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001584 struct xfrm_mark m;
1585 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
Thomas Graf7b67c852007-08-22 13:53:52 -07001587 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1589
Thomas Graf35a7aa02007-08-22 14:00:40 -07001590 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001591 if (err)
1592 return err;
1593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 err = verify_policy_dir(p->dir);
1595 if (err)
1596 return err;
1597
1598 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001599 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001600 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001601 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001602 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001603
Thomas Graf35a7aa02007-08-22 14:00:40 -07001604 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001605 if (err)
1606 return err;
1607
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001608 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001609 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001610 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001611
Paul Moore03e1ad72008-04-12 19:07:52 -07001612 err = security_xfrm_policy_alloc(&ctx, uctx);
1613 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001614 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001615 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001616 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001617 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001618 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001619 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 if (xp == NULL)
1621 return -ENOENT;
1622
1623 if (!delete) {
1624 struct sk_buff *resp_skb;
1625
1626 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1627 if (IS_ERR(resp_skb)) {
1628 err = PTR_ERR(resp_skb);
1629 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001630 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Thomas Graf082a1ad2007-08-22 13:54:36 -07001631 NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001633 } else {
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001634 uid_t loginuid = audit_get_loginuid(current);
1635 u32 sessionid = audit_get_sessionid(current);
1636 u32 sid;
Eric Paris25323862008-04-18 10:09:25 -04001637
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001638 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -04001639 xfrm_audit_policy_delete(xp, err ? 0 : 1, loginuid, sessionid,
1640 sid);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001641
1642 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001643 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001644
Herbert Xue7443892005-06-18 22:44:18 -07001645 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001646 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001647 c.seq = nlh->nlmsg_seq;
1648 c.pid = nlh->nlmsg_pid;
1649 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 }
1651
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001652out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001653 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 return err;
1655}
1656
Christoph Hellwig22e70052007-01-02 15:22:30 -08001657static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001658 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001660 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001661 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001662 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten161a09e2006-11-27 13:11:54 -06001663 struct xfrm_audit audit_info;
Joy Latten4aa2e622007-06-04 19:05:57 -04001664 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001666 audit_info.loginuid = audit_get_loginuid(current);
1667 audit_info.sessionid = audit_get_sessionid(current);
1668 security_task_getsecid(current, &audit_info.secid);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001669 err = xfrm_state_flush(net, p->proto, &audit_info);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001670 if (err) {
1671 if (err == -ESRCH) /* empty table */
1672 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001673 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001674 }
Herbert Xubf088672005-06-18 22:44:00 -07001675 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001676 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001677 c.seq = nlh->nlmsg_seq;
1678 c.pid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001679 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001680 km_state_notify(NULL, &c);
1681
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 return 0;
1683}
1684
Steffen Klassertd8647b72011-03-08 00:10:27 +00001685static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001686{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001687 size_t replay_size = x->replay_esn ?
1688 xfrm_replay_state_esn_len(x->replay_esn) :
1689 sizeof(struct xfrm_replay_state);
1690
Thomas Graf7deb2262007-08-22 13:57:39 -07001691 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001692 + nla_total_size(replay_size)
Thomas Graf7deb2262007-08-22 13:57:39 -07001693 + nla_total_size(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001694 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001695 + nla_total_size(4) /* XFRM_AE_RTHR */
1696 + nla_total_size(4); /* XFRM_AE_ETHR */
1697}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001698
David S. Miller214e0052011-02-24 00:02:38 -05001699static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001700{
1701 struct xfrm_aevent_id *id;
1702 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001703 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001704
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001705 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
1706 if (nlh == NULL)
1707 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001708
Thomas Graf7b67c852007-08-22 13:53:52 -07001709 id = nlmsg_data(nlh);
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001710 memcpy(&id->sa_id.daddr, &x->id.daddr,sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001711 id->sa_id.spi = x->id.spi;
1712 id->sa_id.family = x->props.family;
1713 id->sa_id.proto = x->id.proto;
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001714 memcpy(&id->saddr, &x->props.saddr,sizeof(x->props.saddr));
1715 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001716 id->flags = c->data.aevent;
1717
David S. Millerd0fde792012-03-29 04:02:26 -04001718 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001719 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1720 xfrm_replay_state_esn_len(x->replay_esn),
1721 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001722 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001723 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1724 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001725 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001726 if (err)
1727 goto out_cancel;
1728 err = nla_put(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft);
1729 if (err)
1730 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001731
David S. Miller1d1e34d2012-06-27 21:57:03 -07001732 if (id->flags & XFRM_AE_RTHR) {
1733 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1734 if (err)
1735 goto out_cancel;
1736 }
1737 if (id->flags & XFRM_AE_ETHR) {
1738 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1739 x->replay_maxage * 10 / HZ);
1740 if (err)
1741 goto out_cancel;
1742 }
1743 err = xfrm_mark_put(skb, &x->mark);
1744 if (err)
1745 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001746
Thomas Graf98250692007-08-22 12:47:26 -07001747 return nlmsg_end(skb, nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001748
David S. Miller1d1e34d2012-06-27 21:57:03 -07001749out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001750 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001751 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001752}
1753
Christoph Hellwig22e70052007-01-02 15:22:30 -08001754static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001755 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001756{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001757 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001758 struct xfrm_state *x;
1759 struct sk_buff *r_skb;
1760 int err;
1761 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001762 u32 mark;
1763 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001764 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001765 struct xfrm_usersa_id *id = &p->sa_id;
1766
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001767 mark = xfrm_mark_get(attrs, &m);
1768
1769 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001770 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001771 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001772
1773 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1774 if (r_skb == NULL) {
1775 xfrm_state_put(x);
1776 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001777 }
1778
1779 /*
1780 * XXX: is this lock really needed - none of the other
1781 * gets lock (the concern is things getting updated
1782 * while we are still reading) - jhs
1783 */
1784 spin_lock_bh(&x->lock);
1785 c.data.aevent = p->flags;
1786 c.seq = nlh->nlmsg_seq;
1787 c.pid = nlh->nlmsg_pid;
1788
1789 if (build_aevent(r_skb, x, &c) < 0)
1790 BUG();
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001791 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).pid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001792 spin_unlock_bh(&x->lock);
1793 xfrm_state_put(x);
1794 return err;
1795}
1796
Christoph Hellwig22e70052007-01-02 15:22:30 -08001797static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001798 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001799{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001800 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001801 struct xfrm_state *x;
1802 struct km_event c;
1803 int err = - EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001804 u32 mark = 0;
1805 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001806 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001807 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001808 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001809 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001810
Steffen Klassertd8647b72011-03-08 00:10:27 +00001811 if (!lt && !rp && !re)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001812 return err;
1813
1814 /* pedantic mode - thou shalt sayeth replaceth */
1815 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1816 return err;
1817
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001818 mark = xfrm_mark_get(attrs, &m);
1819
1820 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 -08001821 if (x == NULL)
1822 return -ESRCH;
1823
1824 if (x->km.state != XFRM_STATE_VALID)
1825 goto out;
1826
Steffen Klasserte2b19122011-03-28 19:47:30 +00001827 err = xfrm_replay_verify_len(x->replay_esn, rp);
1828 if (err)
1829 goto out;
1830
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001831 spin_lock_bh(&x->lock);
Thomas Graf35a7aa02007-08-22 14:00:40 -07001832 xfrm_update_ae_params(x, attrs);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001833 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001834
1835 c.event = nlh->nlmsg_type;
1836 c.seq = nlh->nlmsg_seq;
1837 c.pid = nlh->nlmsg_pid;
1838 c.data.aevent = XFRM_AE_CU;
1839 km_state_notify(x, &c);
1840 err = 0;
1841out:
1842 xfrm_state_put(x);
1843 return err;
1844}
1845
Christoph Hellwig22e70052007-01-02 15:22:30 -08001846static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001847 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001849 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001850 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001851 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001852 int err;
Joy Latten161a09e2006-11-27 13:11:54 -06001853 struct xfrm_audit audit_info;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001854
Thomas Graf35a7aa02007-08-22 14:00:40 -07001855 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001856 if (err)
1857 return err;
1858
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001859 audit_info.loginuid = audit_get_loginuid(current);
1860 audit_info.sessionid = audit_get_sessionid(current);
1861 security_task_getsecid(current, &audit_info.secid);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001862 err = xfrm_policy_flush(net, type, &audit_info);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001863 if (err) {
1864 if (err == -ESRCH) /* empty table */
1865 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001866 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001867 }
1868
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001869 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001870 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001871 c.seq = nlh->nlmsg_seq;
1872 c.pid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001873 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001874 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 return 0;
1876}
1877
Christoph Hellwig22e70052007-01-02 15:22:30 -08001878static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001879 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001880{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001881 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001882 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07001883 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001884 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001885 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001886 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001887 struct xfrm_mark m;
1888 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001889
Thomas Graf35a7aa02007-08-22 14:00:40 -07001890 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001891 if (err)
1892 return err;
1893
Timo Teräsc8bf4d02010-03-31 00:17:04 +00001894 err = verify_policy_dir(p->dir);
1895 if (err)
1896 return err;
1897
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001898 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001899 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001900 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001901 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001902 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001903
Thomas Graf35a7aa02007-08-22 14:00:40 -07001904 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001905 if (err)
1906 return err;
1907
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001908 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001909 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001910 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001911
Paul Moore03e1ad72008-04-12 19:07:52 -07001912 err = security_xfrm_policy_alloc(&ctx, uctx);
1913 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001914 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001915 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001916 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001917 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001918 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001919 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001920 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08001921 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07001922
Timo Teräsea2dea92010-03-31 00:17:05 +00001923 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001924 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001925
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001926 err = 0;
1927 if (up->hard) {
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001928 uid_t loginuid = audit_get_loginuid(current);
1929 u32 sessionid = audit_get_sessionid(current);
1930 u32 sid;
1931
1932 security_task_getsecid(current, &sid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001933 xfrm_policy_delete(xp, p->dir);
Eric Paris25323862008-04-18 10:09:25 -04001934 xfrm_audit_policy_delete(xp, 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001935
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001936 } else {
1937 // reset the timers here?
stephen hemminger62db5cf2010-05-12 06:37:06 +00001938 WARN(1, "Dont know what to do with soft policy expire\n");
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001939 }
1940 km_policy_expired(xp, p->dir, up->hard, current->pid);
1941
1942out:
1943 xfrm_pol_put(xp);
1944 return err;
1945}
1946
Christoph Hellwig22e70052007-01-02 15:22:30 -08001947static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001948 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001949{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001950 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001951 struct xfrm_state *x;
1952 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07001953 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001954 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001955 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00001956 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001957
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001958 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 -08001959
David S. Miller3a765aa2007-02-26 14:52:21 -08001960 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001961 if (x == NULL)
1962 return err;
1963
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001964 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08001965 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001966 if (x->km.state != XFRM_STATE_VALID)
1967 goto out;
1968 km_state_expired(x, ue->hard, current->pid);
1969
Joy Latten161a09e2006-11-27 13:11:54 -06001970 if (ue->hard) {
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001971 uid_t loginuid = audit_get_loginuid(current);
1972 u32 sessionid = audit_get_sessionid(current);
1973 u32 sid;
1974
1975 security_task_getsecid(current, &sid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001976 __xfrm_state_delete(x);
Eric Paris25323862008-04-18 10:09:25 -04001977 xfrm_audit_state_delete(x, 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001978 }
David S. Miller3a765aa2007-02-26 14:52:21 -08001979 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001980out:
1981 spin_unlock_bh(&x->lock);
1982 xfrm_state_put(x);
1983 return err;
1984}
1985
Christoph Hellwig22e70052007-01-02 15:22:30 -08001986static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001987 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001988{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001989 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001990 struct xfrm_policy *xp;
1991 struct xfrm_user_tmpl *ut;
1992 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07001993 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001994 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001995
Thomas Graf7b67c852007-08-22 13:53:52 -07001996 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001997 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001998 int err = -ENOMEM;
1999
2000 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002001 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002002
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002003 xfrm_mark_get(attrs, &mark);
2004
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002005 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002006 if (err)
2007 goto bad_policy;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002008
2009 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002010 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002011 if (!xp)
2012 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002013
2014 memcpy(&x->id, &ua->id, sizeof(ua->id));
2015 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2016 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002017 xp->mark.m = x->mark.m = mark.m;
2018 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002019 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002020 /* extract the templates and for each call km_key */
2021 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2022 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2023 memcpy(&x->id, &t->id, sizeof(x->id));
2024 x->props.mode = t->mode;
2025 x->props.reqid = t->reqid;
2026 x->props.family = ut->family;
2027 t->aalgos = ua->aalgos;
2028 t->ealgos = ua->ealgos;
2029 t->calgos = ua->calgos;
2030 err = km_query(x, t, xp);
2031
2032 }
2033
2034 kfree(x);
2035 kfree(xp);
2036
2037 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002038
2039bad_policy:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002040 WARN(1, "BAD policy passed\n");
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002041free_state:
2042 kfree(x);
2043nomem:
2044 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002045}
2046
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002047#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002048static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002049 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002050 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002051{
Thomas Graf5424f322007-08-22 14:01:33 -07002052 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002053 struct xfrm_user_migrate *um;
2054 int i, num_migrate;
2055
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002056 if (k != NULL) {
2057 struct xfrm_user_kmaddress *uk;
2058
2059 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2060 memcpy(&k->local, &uk->local, sizeof(k->local));
2061 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2062 k->family = uk->family;
2063 k->reserved = uk->reserved;
2064 }
2065
Thomas Graf5424f322007-08-22 14:01:33 -07002066 um = nla_data(rt);
2067 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002068
2069 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2070 return -EINVAL;
2071
2072 for (i = 0; i < num_migrate; i++, um++, ma++) {
2073 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2074 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2075 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2076 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2077
2078 ma->proto = um->proto;
2079 ma->mode = um->mode;
2080 ma->reqid = um->reqid;
2081
2082 ma->old_family = um->old_family;
2083 ma->new_family = um->new_family;
2084 }
2085
2086 *num = i;
2087 return 0;
2088}
2089
2090static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002091 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002092{
Thomas Graf7b67c852007-08-22 13:53:52 -07002093 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002094 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002095 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002096 u8 type;
2097 int err;
2098 int n = 0;
2099
Thomas Graf35a7aa02007-08-22 14:00:40 -07002100 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002101 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002102
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002103 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2104
Thomas Graf5424f322007-08-22 14:01:33 -07002105 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002106 if (err)
2107 return err;
2108
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002109 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002110 if (err)
2111 return err;
2112
2113 if (!n)
2114 return 0;
2115
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002116 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002117
2118 return 0;
2119}
2120#else
2121static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002122 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002123{
2124 return -ENOPROTOOPT;
2125}
2126#endif
2127
2128#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002129static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002130{
2131 struct xfrm_user_migrate um;
2132
2133 memset(&um, 0, sizeof(um));
2134 um.proto = m->proto;
2135 um.mode = m->mode;
2136 um.reqid = m->reqid;
2137 um.old_family = m->old_family;
2138 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2139 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2140 um.new_family = m->new_family;
2141 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2142 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2143
Thomas Grafc0144be2007-08-22 13:55:43 -07002144 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002145}
2146
David S. Miller183cad12011-02-24 00:28:01 -05002147static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002148{
2149 struct xfrm_user_kmaddress uk;
2150
2151 memset(&uk, 0, sizeof(uk));
2152 uk.family = k->family;
2153 uk.reserved = k->reserved;
2154 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002155 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002156
2157 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2158}
2159
2160static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002161{
2162 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002163 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2164 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2165 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002166}
2167
David S. Miller183cad12011-02-24 00:28:01 -05002168static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2169 int num_migrate, const struct xfrm_kmaddress *k,
2170 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002171{
David S. Miller183cad12011-02-24 00:28:01 -05002172 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002173 struct xfrm_userpolicy_id *pol_id;
2174 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002175 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002176
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002177 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2178 if (nlh == NULL)
2179 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002180
Thomas Graf7b67c852007-08-22 13:53:52 -07002181 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002182 /* copy data from selector, dir, and type to the pol_id */
2183 memset(pol_id, 0, sizeof(*pol_id));
2184 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2185 pol_id->dir = dir;
2186
David S. Miller1d1e34d2012-06-27 21:57:03 -07002187 if (k != NULL) {
2188 err = copy_to_user_kmaddress(k, skb);
2189 if (err)
2190 goto out_cancel;
2191 }
2192 err = copy_to_user_policy_type(type, skb);
2193 if (err)
2194 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002195 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002196 err = copy_to_user_migrate(mp, skb);
2197 if (err)
2198 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002199 }
2200
Thomas Graf98250692007-08-22 12:47:26 -07002201 return nlmsg_end(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002202
2203out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002204 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002205 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002206}
2207
David S. Miller183cad12011-02-24 00:28:01 -05002208static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2209 const struct xfrm_migrate *m, int num_migrate,
2210 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002211{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002212 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002213 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002214
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002215 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002216 if (skb == NULL)
2217 return -ENOMEM;
2218
2219 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002220 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002221 BUG();
2222
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002223 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MIGRATE, GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002224}
2225#else
David S. Miller183cad12011-02-24 00:28:01 -05002226static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2227 const struct xfrm_migrate *m, int num_migrate,
2228 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002229{
2230 return -ENOPROTOOPT;
2231}
2232#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002233
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002234#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002235
2236static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002237 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002238 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2239 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2240 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2241 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2242 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2243 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002244 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002245 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002246 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002247 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002248 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002249 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002250 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002251 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2252 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002253 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002254 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002255 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
2256 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257};
2258
Thomas Graf492b5582005-05-03 14:26:40 -07002259#undef XMSGSIZE
2260
Thomas Grafcf5cb792007-08-22 13:59:04 -07002261static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002262 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2263 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2264 [XFRMA_LASTUSED] = { .type = NLA_U64},
2265 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002266 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002267 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2268 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2269 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2270 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2271 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2272 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2273 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2274 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2275 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2276 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2277 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2278 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2279 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2280 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002281 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002282 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002283 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002284 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002285};
2286
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287static struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002288 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002290 int (*done)(struct netlink_callback *);
Thomas Graf492b5582005-05-03 14:26:40 -07002291} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2292 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2293 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2294 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002295 .dump = xfrm_dump_sa,
2296 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002297 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2298 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2299 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Timo Teras4c563f72008-02-28 21:31:08 -08002300 .dump = xfrm_dump_policy,
2301 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002302 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002303 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002304 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002305 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2306 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002307 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002308 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2309 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002310 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2311 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002312 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002313 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002314 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315};
2316
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002317static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002319 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002320 struct nlattr *attrs[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002322 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002326 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
2328 type -= XFRM_MSG_BASE;
2329 link = &xfrm_dispatch[type];
2330
2331 /* All operations require privileges, even GET */
Eric Parisfd778462012-01-03 12:25:16 -05002332 if (!capable(CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002333 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
Thomas Graf492b5582005-05-03 14:26:40 -07002335 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2336 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002337 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002339 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002341 {
2342 struct netlink_dump_control c = {
2343 .dump = link->dump,
2344 .done = link->done,
2345 };
2346 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 }
2349
Thomas Graf35a7aa02007-08-22 14:00:40 -07002350 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs, XFRMA_MAX,
Thomas Grafcf5cb792007-08-22 13:59:04 -07002351 xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002352 if (err < 0)
2353 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
2355 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002356 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Thomas Graf5424f322007-08-22 14:01:33 -07002358 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359}
2360
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002361static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002363 mutex_lock(&xfrm_cfg_mutex);
2364 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
2365 mutex_unlock(&xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366}
2367
Thomas Graf7deb2262007-08-22 13:57:39 -07002368static inline size_t xfrm_expire_msgsize(void)
2369{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002370 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2371 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002372}
2373
David S. Miller214e0052011-02-24 00:02:38 -05002374static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375{
2376 struct xfrm_user_expire *ue;
2377 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002378 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002380 nlh = nlmsg_put(skb, c->pid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
2381 if (nlh == NULL)
2382 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
Thomas Graf7b67c852007-08-22 13:53:52 -07002384 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002386 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
David S. Miller1d1e34d2012-06-27 21:57:03 -07002388 err = xfrm_mark_put(skb, &x->mark);
2389 if (err)
2390 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002391
Thomas Graf98250692007-08-22 12:47:26 -07002392 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393}
2394
David S. Miller214e0052011-02-24 00:02:38 -05002395static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002397 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 struct sk_buff *skb;
2399
Thomas Graf7deb2262007-08-22 13:57:39 -07002400 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 if (skb == NULL)
2402 return -ENOMEM;
2403
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002404 if (build_expire(skb, x, c) < 0) {
2405 kfree_skb(skb);
2406 return -EMSGSIZE;
2407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002409 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410}
2411
David S. Miller214e0052011-02-24 00:02:38 -05002412static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002413{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002414 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002415 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002416
Steffen Klassertd8647b72011-03-08 00:10:27 +00002417 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002418 if (skb == NULL)
2419 return -ENOMEM;
2420
2421 if (build_aevent(skb, x, c) < 0)
2422 BUG();
2423
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002424 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_AEVENTS, GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002425}
2426
David S. Miller214e0052011-02-24 00:02:38 -05002427static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002428{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002429 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002430 struct xfrm_usersa_flush *p;
2431 struct nlmsghdr *nlh;
2432 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002433 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002434
Thomas Graf7deb2262007-08-22 13:57:39 -07002435 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002436 if (skb == NULL)
2437 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002438
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002439 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
2440 if (nlh == NULL) {
2441 kfree_skb(skb);
2442 return -EMSGSIZE;
2443 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002444
Thomas Graf7b67c852007-08-22 13:53:52 -07002445 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002446 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002447
Thomas Graf98250692007-08-22 12:47:26 -07002448 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002449
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002450 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002451}
2452
Thomas Graf7deb2262007-08-22 13:57:39 -07002453static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002454{
Thomas Graf7deb2262007-08-22 13:57:39 -07002455 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002456 if (x->aead)
2457 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002458 if (x->aalg) {
2459 l += nla_total_size(sizeof(struct xfrm_algo) +
2460 (x->aalg->alg_key_len + 7) / 8);
2461 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2462 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002463 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002464 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002465 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002466 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002467 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002468 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002469 if (x->tfcpad)
2470 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002471 if (x->replay_esn)
2472 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
Herbert Xu68325d32007-10-09 13:30:57 -07002473 if (x->security)
2474 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2475 x->security->ctx_len);
2476 if (x->coaddr)
2477 l += nla_total_size(sizeof(*x->coaddr));
2478
Herbert Xud26f3982007-11-13 21:47:08 -08002479 /* Must count x->lastused as it may become non-zero behind our back. */
2480 l += nla_total_size(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002481
2482 return l;
2483}
2484
David S. Miller214e0052011-02-24 00:02:38 -05002485static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002486{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002487 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002488 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002489 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002490 struct nlmsghdr *nlh;
2491 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002492 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002493 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002494
2495 headlen = sizeof(*p);
2496 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002497 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002498 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002499 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002500 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002501 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002502
Thomas Graf7deb2262007-08-22 13:57:39 -07002503 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002504 if (skb == NULL)
2505 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002506
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002507 nlh = nlmsg_put(skb, c->pid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002508 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002509 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002510 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002511
Thomas Graf7b67c852007-08-22 13:53:52 -07002512 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002513 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002514 struct nlattr *attr;
2515
Thomas Graf7b67c852007-08-22 13:53:52 -07002516 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002517 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2518 id->spi = x->id.spi;
2519 id->family = x->props.family;
2520 id->proto = x->id.proto;
2521
Thomas Grafc0144be2007-08-22 13:55:43 -07002522 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002523 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002524 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002525 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002526
2527 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002528 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002529 err = copy_to_user_state_extra(x, p, skb);
2530 if (err)
2531 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002532
Thomas Graf98250692007-08-22 12:47:26 -07002533 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002534
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002535 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002536
David S. Miller1d1e34d2012-06-27 21:57:03 -07002537out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002538 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002539 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002540}
2541
David S. Miller214e0052011-02-24 00:02:38 -05002542static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002543{
2544
2545 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002546 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002547 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002548 case XFRM_MSG_NEWAE:
2549 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002550 case XFRM_MSG_DELSA:
2551 case XFRM_MSG_UPDSA:
2552 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002553 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002554 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002555 return xfrm_notify_sa_flush(c);
2556 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002557 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2558 c->event);
2559 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002560 }
2561
2562 return 0;
2563
2564}
2565
Thomas Graf7deb2262007-08-22 13:57:39 -07002566static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2567 struct xfrm_policy *xp)
2568{
2569 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2570 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002571 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002572 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2573 + userpolicy_type_attrsize();
2574}
2575
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
2577 struct xfrm_tmpl *xt, struct xfrm_policy *xp,
2578 int dir)
2579{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002580 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 struct xfrm_user_acquire *ua;
2582 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002583 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002585 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2586 if (nlh == NULL)
2587 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
Thomas Graf7b67c852007-08-22 13:53:52 -07002589 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 memcpy(&ua->id, &x->id, sizeof(ua->id));
2591 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2592 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
2593 copy_to_user_policy(xp, &ua->policy, dir);
2594 ua->aalgos = xt->aalgos;
2595 ua->ealgos = xt->ealgos;
2596 ua->calgos = xt->calgos;
2597 ua->seq = x->km.seq = seq;
2598
David S. Miller1d1e34d2012-06-27 21:57:03 -07002599 err = copy_to_user_tmpl(xp, skb);
2600 if (!err)
2601 err = copy_to_user_state_sec_ctx(x, skb);
2602 if (!err)
2603 err = copy_to_user_policy_type(xp->type, skb);
2604 if (!err)
2605 err = xfrm_mark_put(skb, &xp->mark);
2606 if (err) {
2607 nlmsg_cancel(skb, nlh);
2608 return err;
2609 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
Thomas Graf98250692007-08-22 12:47:26 -07002611 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612}
2613
2614static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
2615 struct xfrm_policy *xp, int dir)
2616{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002617 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
Thomas Graf7deb2262007-08-22 13:57:39 -07002620 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 if (skb == NULL)
2622 return -ENOMEM;
2623
2624 if (build_acquire(skb, x, xt, xp, dir) < 0)
2625 BUG();
2626
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002627 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_ACQUIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628}
2629
2630/* User gives us xfrm_user_policy_info followed by an array of 0
2631 * or more templates.
2632 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002633static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 u8 *data, int len, int *dir)
2635{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002636 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2638 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2639 struct xfrm_policy *xp;
2640 int nr;
2641
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002642 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 case AF_INET:
2644 if (opt != IP_XFRM_POLICY) {
2645 *dir = -EOPNOTSUPP;
2646 return NULL;
2647 }
2648 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002649#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650 case AF_INET6:
2651 if (opt != IPV6_XFRM_POLICY) {
2652 *dir = -EOPNOTSUPP;
2653 return NULL;
2654 }
2655 break;
2656#endif
2657 default:
2658 *dir = -EINVAL;
2659 return NULL;
2660 }
2661
2662 *dir = -EINVAL;
2663
2664 if (len < sizeof(*p) ||
2665 verify_newpolicy_info(p))
2666 return NULL;
2667
2668 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002669 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 return NULL;
2671
Herbert Xua4f1bac2005-07-26 15:43:17 -07002672 if (p->dir > XFRM_POLICY_OUT)
2673 return NULL;
2674
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002675 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 if (xp == NULL) {
2677 *dir = -ENOBUFS;
2678 return NULL;
2679 }
2680
2681 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002682 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 copy_templates(xp, ut, nr);
2684
2685 *dir = p->dir;
2686
2687 return xp;
2688}
2689
Thomas Graf7deb2262007-08-22 13:57:39 -07002690static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2691{
2692 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2693 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2694 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002695 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002696 + userpolicy_type_attrsize();
2697}
2698
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002700 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701{
2702 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002703 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002704 struct nlmsghdr *nlh;
2705 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002707 nlh = nlmsg_put(skb, c->pid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
2708 if (nlh == NULL)
2709 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
Thomas Graf7b67c852007-08-22 13:53:52 -07002711 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002713 err = copy_to_user_tmpl(xp, skb);
2714 if (!err)
2715 err = copy_to_user_sec_ctx(xp, skb);
2716 if (!err)
2717 err = copy_to_user_policy_type(xp->type, skb);
2718 if (!err)
2719 err = xfrm_mark_put(skb, &xp->mark);
2720 if (err) {
2721 nlmsg_cancel(skb, nlh);
2722 return err;
2723 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 upe->hard = !!hard;
2725
Thomas Graf98250692007-08-22 12:47:26 -07002726 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727}
2728
David S. Miller214e0052011-02-24 00:02:38 -05002729static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002731 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733
Thomas Graf7deb2262007-08-22 13:57:39 -07002734 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 if (skb == NULL)
2736 return -ENOMEM;
2737
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002738 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 BUG();
2740
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002741 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742}
2743
David S. Miller214e0052011-02-24 00:02:38 -05002744static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002745{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002746 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002747 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002748 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002749 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002750 struct nlmsghdr *nlh;
2751 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002752 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002753
2754 headlen = sizeof(*p);
2755 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002756 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002757 headlen = sizeof(*id);
2758 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002759 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002760 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002761 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002762
Thomas Graf7deb2262007-08-22 13:57:39 -07002763 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002764 if (skb == NULL)
2765 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002766
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002767 nlh = nlmsg_put(skb, c->pid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002768 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002769 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002770 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002771
Thomas Graf7b67c852007-08-22 13:53:52 -07002772 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002773 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002774 struct nlattr *attr;
2775
Thomas Graf7b67c852007-08-22 13:53:52 -07002776 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002777 memset(id, 0, sizeof(*id));
2778 id->dir = dir;
2779 if (c->data.byid)
2780 id->index = xp->index;
2781 else
2782 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2783
Thomas Grafc0144be2007-08-22 13:55:43 -07002784 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002785 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002786 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002787 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002788
2789 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002790 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002791
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002792 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002793 err = copy_to_user_tmpl(xp, skb);
2794 if (!err)
2795 err = copy_to_user_policy_type(xp->type, skb);
2796 if (!err)
2797 err = xfrm_mark_put(skb, &xp->mark);
2798 if (err)
2799 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002800
Thomas Graf98250692007-08-22 12:47:26 -07002801 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002802
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002803 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002804
David S. Miller1d1e34d2012-06-27 21:57:03 -07002805out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002806 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002807 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002808}
2809
David S. Miller214e0052011-02-24 00:02:38 -05002810static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002811{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002812 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002813 struct nlmsghdr *nlh;
2814 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002815 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002816
Thomas Graf7deb2262007-08-22 13:57:39 -07002817 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002818 if (skb == NULL)
2819 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002820
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002821 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002822 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002823 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002824 goto out_free_skb;
2825 err = copy_to_user_policy_type(c->data.type, skb);
2826 if (err)
2827 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002828
Thomas Graf98250692007-08-22 12:47:26 -07002829 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002830
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002831 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002832
David S. Miller1d1e34d2012-06-27 21:57:03 -07002833out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002834 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002835 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002836}
2837
David S. Miller214e0052011-02-24 00:02:38 -05002838static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002839{
2840
2841 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002842 case XFRM_MSG_NEWPOLICY:
2843 case XFRM_MSG_UPDPOLICY:
2844 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002845 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002846 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002847 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002848 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002849 return xfrm_exp_policy_notify(xp, dir, c);
2850 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002851 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
2852 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002853 }
2854
2855 return 0;
2856
2857}
2858
Thomas Graf7deb2262007-08-22 13:57:39 -07002859static inline size_t xfrm_report_msgsize(void)
2860{
2861 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
2862}
2863
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002864static int build_report(struct sk_buff *skb, u8 proto,
2865 struct xfrm_selector *sel, xfrm_address_t *addr)
2866{
2867 struct xfrm_user_report *ur;
2868 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002869
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002870 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
2871 if (nlh == NULL)
2872 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002873
Thomas Graf7b67c852007-08-22 13:53:52 -07002874 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002875 ur->proto = proto;
2876 memcpy(&ur->sel, sel, sizeof(ur->sel));
2877
David S. Miller1d1e34d2012-06-27 21:57:03 -07002878 if (addr) {
2879 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
2880 if (err) {
2881 nlmsg_cancel(skb, nlh);
2882 return err;
2883 }
2884 }
Thomas Graf98250692007-08-22 12:47:26 -07002885 return nlmsg_end(skb, nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002886}
2887
Alexey Dobriyandb983c12008-11-25 17:51:01 -08002888static int xfrm_send_report(struct net *net, u8 proto,
2889 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002890{
2891 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002892
Thomas Graf7deb2262007-08-22 13:57:39 -07002893 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002894 if (skb == NULL)
2895 return -ENOMEM;
2896
2897 if (build_report(skb, proto, sel, addr) < 0)
2898 BUG();
2899
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002900 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_REPORT, GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002901}
2902
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002903static inline size_t xfrm_mapping_msgsize(void)
2904{
2905 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
2906}
2907
2908static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
2909 xfrm_address_t *new_saddr, __be16 new_sport)
2910{
2911 struct xfrm_user_mapping *um;
2912 struct nlmsghdr *nlh;
2913
2914 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
2915 if (nlh == NULL)
2916 return -EMSGSIZE;
2917
2918 um = nlmsg_data(nlh);
2919
2920 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
2921 um->id.spi = x->id.spi;
2922 um->id.family = x->props.family;
2923 um->id.proto = x->id.proto;
2924 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
2925 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
2926 um->new_sport = new_sport;
2927 um->old_sport = x->encap->encap_sport;
2928 um->reqid = x->props.reqid;
2929
2930 return nlmsg_end(skb, nlh);
2931}
2932
2933static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
2934 __be16 sport)
2935{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002936 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002937 struct sk_buff *skb;
2938
2939 if (x->id.proto != IPPROTO_ESP)
2940 return -EINVAL;
2941
2942 if (!x->encap)
2943 return -EINVAL;
2944
2945 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
2946 if (skb == NULL)
2947 return -ENOMEM;
2948
2949 if (build_mapping(skb, x, ipaddr, sport) < 0)
2950 BUG();
2951
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002952 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MAPPING, GFP_ATOMIC);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002953}
2954
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955static struct xfrm_mgr netlink_mgr = {
2956 .id = "netlink",
2957 .notify = xfrm_send_state_notify,
2958 .acquire = xfrm_send_acquire,
2959 .compile_policy = xfrm_compile_policy,
2960 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002961 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002962 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002963 .new_mapping = xfrm_send_mapping,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964};
2965
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002966static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967{
Patrick McHardybe336902006-03-20 22:40:54 -08002968 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002969 struct netlink_kernel_cfg cfg = {
2970 .groups = XFRMNLGRP_MAX,
2971 .input = xfrm_netlink_rcv,
2972 };
Patrick McHardybe336902006-03-20 22:40:54 -08002973
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002974 nlsk = netlink_kernel_create(net, NETLINK_XFRM, THIS_MODULE, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08002975 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002977 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00002978 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 return 0;
2980}
2981
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002982static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002983{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002984 struct net *net;
2985 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002986 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002987 synchronize_net();
2988 list_for_each_entry(net, net_exit_list, exit_list)
2989 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002990}
2991
2992static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002993 .init = xfrm_user_net_init,
2994 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002995};
2996
2997static int __init xfrm_user_init(void)
2998{
2999 int rv;
3000
3001 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3002
3003 rv = register_pernet_subsys(&xfrm_user_net_ops);
3004 if (rv < 0)
3005 return rv;
3006 rv = xfrm_register_km(&netlink_mgr);
3007 if (rv < 0)
3008 unregister_pernet_subsys(&xfrm_user_net_ops);
3009 return rv;
3010}
3011
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012static void __exit xfrm_user_exit(void)
3013{
3014 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003015 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016}
3017
3018module_init(xfrm_user_init);
3019module_exit(xfrm_user_exit);
3020MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003021MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003022