blob: 5d6eb4b3c089f406ebf4397e034e26152bcb40dc [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;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000606 c.portid = 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;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000679 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700680 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700681 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700683out:
Patrick McHardyc53fa1e2011-03-03 10:55:40 -0800684 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -0400685 xfrm_audit_state_delete(x, err ? 0 : 1, loginuid, sessionid, sid);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700686 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700687 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
690static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
691{
692 memcpy(&p->id, &x->id, sizeof(p->id));
693 memcpy(&p->sel, &x->sel, sizeof(p->sel));
694 memcpy(&p->lft, &x->lft, sizeof(p->lft));
695 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
696 memcpy(&p->stats, &x->stats, sizeof(p->stats));
David S. Miller54489c142006-10-27 15:29:47 -0700697 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 p->mode = x->props.mode;
699 p->replay_window = x->props.replay_window;
700 p->reqid = x->props.reqid;
701 p->family = x->props.family;
702 p->flags = x->props.flags;
703 p->seq = x->km.seq;
704}
705
706struct xfrm_dump_info {
707 struct sk_buff *in_skb;
708 struct sk_buff *out_skb;
709 u32 nlmsg_seq;
710 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711};
712
Thomas Grafc0144be2007-08-22 13:55:43 -0700713static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
714{
Thomas Grafc0144be2007-08-22 13:55:43 -0700715 struct xfrm_user_sec_ctx *uctx;
716 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700717 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700718
719 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
720 if (attr == NULL)
721 return -EMSGSIZE;
722
723 uctx = nla_data(attr);
724 uctx->exttype = XFRMA_SEC_CTX;
725 uctx->len = ctx_size;
726 uctx->ctx_doi = s->ctx_doi;
727 uctx->ctx_alg = s->ctx_alg;
728 uctx->ctx_len = s->ctx_len;
729 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
730
731 return 0;
732}
733
Martin Willi4447bb32009-11-25 00:29:52 +0000734static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
735{
736 struct xfrm_algo *algo;
737 struct nlattr *nla;
738
739 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
740 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
741 if (!nla)
742 return -EMSGSIZE;
743
744 algo = nla_data(nla);
745 strcpy(algo->alg_name, auth->alg_name);
746 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
747 algo->alg_key_len = auth->alg_key_len;
748
749 return 0;
750}
751
Herbert Xu68325d32007-10-09 13:30:57 -0700752/* Don't change this without updating xfrm_sa_len! */
753static int copy_to_user_state_extra(struct xfrm_state *x,
754 struct xfrm_usersa_info *p,
755 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700757 int ret = 0;
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 copy_to_user_state(x, p);
760
David S. Miller1d1e34d2012-06-27 21:57:03 -0700761 if (x->coaddr) {
762 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
763 if (ret)
764 goto out;
765 }
766 if (x->lastused) {
767 ret = nla_put_u64(skb, XFRMA_LASTUSED, x->lastused);
768 if (ret)
769 goto out;
770 }
771 if (x->aead) {
772 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
773 if (ret)
774 goto out;
775 }
776 if (x->aalg) {
777 ret = copy_to_user_auth(x->aalg, skb);
778 if (!ret)
779 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
780 xfrm_alg_auth_len(x->aalg), x->aalg);
781 if (ret)
782 goto out;
783 }
784 if (x->ealg) {
785 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
786 if (ret)
787 goto out;
788 }
789 if (x->calg) {
790 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
791 if (ret)
792 goto out;
793 }
794 if (x->encap) {
795 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
796 if (ret)
797 goto out;
798 }
799 if (x->tfcpad) {
800 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
801 if (ret)
802 goto out;
803 }
804 ret = xfrm_mark_put(skb, &x->mark);
805 if (ret)
806 goto out;
807 if (x->replay_esn) {
808 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
809 xfrm_replay_state_esn_len(x->replay_esn),
810 x->replay_esn);
811 if (ret)
812 goto out;
813 }
814 if (x->security)
815 ret = copy_sec_ctx(x->security, skb);
816out:
817 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700818}
819
820static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
821{
822 struct xfrm_dump_info *sp = ptr;
823 struct sk_buff *in_skb = sp->in_skb;
824 struct sk_buff *skb = sp->out_skb;
825 struct xfrm_usersa_info *p;
826 struct nlmsghdr *nlh;
827 int err;
828
Eric W. Biederman15e47302012-09-07 20:12:54 +0000829 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700830 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
831 if (nlh == NULL)
832 return -EMSGSIZE;
833
834 p = nlmsg_data(nlh);
835
836 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700837 if (err) {
838 nlmsg_cancel(skb, nlh);
839 return err;
840 }
Thomas Graf98250692007-08-22 12:47:26 -0700841 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843}
844
Timo Teras4c563f72008-02-28 21:31:08 -0800845static int xfrm_dump_sa_done(struct netlink_callback *cb)
846{
847 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
848 xfrm_state_walk_done(walk);
849 return 0;
850}
851
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
853{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800854 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800855 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 struct xfrm_dump_info info;
857
Timo Teras4c563f72008-02-28 21:31:08 -0800858 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
859 sizeof(cb->args) - sizeof(cb->args[0]));
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 info.in_skb = cb->skb;
862 info.out_skb = skb;
863 info.nlmsg_seq = cb->nlh->nlmsg_seq;
864 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800865
866 if (!cb->args[0]) {
867 cb->args[0] = 1;
868 xfrm_state_walk_init(walk, 0);
869 }
870
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800871 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
873 return skb->len;
874}
875
876static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
877 struct xfrm_state *x, u32 seq)
878{
879 struct xfrm_dump_info info;
880 struct sk_buff *skb;
881
Thomas Graf7deb2262007-08-22 13:57:39 -0700882 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 if (!skb)
884 return ERR_PTR(-ENOMEM);
885
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 info.in_skb = in_skb;
887 info.out_skb = skb;
888 info.nlmsg_seq = seq;
889 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891 if (dump_one_state(x, 0, &info)) {
892 kfree_skb(skb);
893 return NULL;
894 }
895
896 return skb;
897}
898
Thomas Graf7deb2262007-08-22 13:57:39 -0700899static inline size_t xfrm_spdinfo_msgsize(void)
900{
901 return NLMSG_ALIGN(4)
902 + nla_total_size(sizeof(struct xfrmu_spdinfo))
903 + nla_total_size(sizeof(struct xfrmu_spdhinfo));
904}
905
Alexey Dobriyane0710412010-01-23 13:37:10 +0000906static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000907 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700908{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700909 struct xfrmk_spdinfo si;
910 struct xfrmu_spdinfo spc;
911 struct xfrmu_spdhinfo sph;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700912 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700913 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700914 u32 *f;
915
Eric W. Biederman15e47302012-09-07 20:12:54 +0000916 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300917 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700918 return -EMSGSIZE;
919
920 f = nlmsg_data(nlh);
921 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +0000922 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700923 spc.incnt = si.incnt;
924 spc.outcnt = si.outcnt;
925 spc.fwdcnt = si.fwdcnt;
926 spc.inscnt = si.inscnt;
927 spc.outscnt = si.outscnt;
928 spc.fwdscnt = si.fwdscnt;
929 sph.spdhcnt = si.spdhcnt;
930 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700931
David S. Miller1d1e34d2012-06-27 21:57:03 -0700932 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
933 if (!err)
934 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
935 if (err) {
936 nlmsg_cancel(skb, nlh);
937 return err;
938 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700939
940 return nlmsg_end(skb, nlh);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700941}
942
943static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700944 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700945{
Alexey Dobriyana6483b72008-11-25 17:38:20 -0800946 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700947 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -0700948 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +0000949 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700950 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700951
Thomas Graf7deb2262007-08-22 13:57:39 -0700952 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700953 if (r_skb == NULL)
954 return -ENOMEM;
955
Eric W. Biederman15e47302012-09-07 20:12:54 +0000956 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700957 BUG();
958
Eric W. Biederman15e47302012-09-07 20:12:54 +0000959 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700960}
961
Thomas Graf7deb2262007-08-22 13:57:39 -0700962static inline size_t xfrm_sadinfo_msgsize(void)
963{
964 return NLMSG_ALIGN(4)
965 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
966 + nla_total_size(4); /* XFRMA_SAD_CNT */
967}
968
Alexey Dobriyane0710412010-01-23 13:37:10 +0000969static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000970 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700971{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -0700972 struct xfrmk_sadinfo si;
973 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700974 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700975 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700976 u32 *f;
977
Eric W. Biederman15e47302012-09-07 20:12:54 +0000978 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300979 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700980 return -EMSGSIZE;
981
982 f = nlmsg_data(nlh);
983 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +0000984 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700985
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -0700986 sh.sadhmcnt = si.sadhmcnt;
987 sh.sadhcnt = si.sadhcnt;
988
David S. Miller1d1e34d2012-06-27 21:57:03 -0700989 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
990 if (!err)
991 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
992 if (err) {
993 nlmsg_cancel(skb, nlh);
994 return err;
995 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700996
997 return nlmsg_end(skb, nlh);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700998}
999
1000static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001001 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001002{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001003 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001004 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001005 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001006 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001007 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001008
Thomas Graf7deb2262007-08-22 13:57:39 -07001009 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001010 if (r_skb == NULL)
1011 return -ENOMEM;
1012
Eric W. Biederman15e47302012-09-07 20:12:54 +00001013 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001014 BUG();
1015
Eric W. Biederman15e47302012-09-07 20:12:54 +00001016 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001017}
1018
Christoph Hellwig22e70052007-01-02 15:22:30 -08001019static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001020 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001022 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001023 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 struct xfrm_state *x;
1025 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001026 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001028 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 if (x == NULL)
1030 goto out_noput;
1031
1032 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1033 if (IS_ERR(resp_skb)) {
1034 err = PTR_ERR(resp_skb);
1035 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001036 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 }
1038 xfrm_state_put(x);
1039out_noput:
1040 return err;
1041}
1042
1043static int verify_userspi_info(struct xfrm_userspi_info *p)
1044{
1045 switch (p->info.id.proto) {
1046 case IPPROTO_AH:
1047 case IPPROTO_ESP:
1048 break;
1049
1050 case IPPROTO_COMP:
1051 /* IPCOMP spi is 16-bits. */
1052 if (p->max >= 0x10000)
1053 return -EINVAL;
1054 break;
1055
1056 default:
1057 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001058 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
1060 if (p->min > p->max)
1061 return -EINVAL;
1062
1063 return 0;
1064}
1065
Christoph Hellwig22e70052007-01-02 15:22:30 -08001066static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001067 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001069 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 struct xfrm_state *x;
1071 struct xfrm_userspi_info *p;
1072 struct sk_buff *resp_skb;
1073 xfrm_address_t *daddr;
1074 int family;
1075 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001076 u32 mark;
1077 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Thomas Graf7b67c852007-08-22 13:53:52 -07001079 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 err = verify_userspi_info(p);
1081 if (err)
1082 goto out_noput;
1083
1084 family = p->info.family;
1085 daddr = &p->info.id.daddr;
1086
1087 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001088
1089 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001091 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 if (x && xfrm_addr_cmp(&x->id.daddr, daddr, family)) {
1093 xfrm_state_put(x);
1094 x = NULL;
1095 }
1096 }
1097
1098 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001099 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 p->info.id.proto, daddr,
1101 &p->info.saddr, 1,
1102 family);
1103 err = -ENOENT;
1104 if (x == NULL)
1105 goto out_noput;
1106
Herbert Xu658b2192007-10-09 13:29:52 -07001107 err = xfrm_alloc_spi(x, p->min, p->max);
1108 if (err)
1109 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
Herbert Xu658b2192007-10-09 13:29:52 -07001111 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 if (IS_ERR(resp_skb)) {
1113 err = PTR_ERR(resp_skb);
1114 goto out;
1115 }
1116
Eric W. Biederman15e47302012-09-07 20:12:54 +00001117 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
1119out:
1120 xfrm_state_put(x);
1121out_noput:
1122 return err;
1123}
1124
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001125static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126{
1127 switch (dir) {
1128 case XFRM_POLICY_IN:
1129 case XFRM_POLICY_OUT:
1130 case XFRM_POLICY_FWD:
1131 break;
1132
1133 default:
1134 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001135 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136
1137 return 0;
1138}
1139
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001140static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001141{
1142 switch (type) {
1143 case XFRM_POLICY_TYPE_MAIN:
1144#ifdef CONFIG_XFRM_SUB_POLICY
1145 case XFRM_POLICY_TYPE_SUB:
1146#endif
1147 break;
1148
1149 default:
1150 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001151 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001152
1153 return 0;
1154}
1155
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1157{
1158 switch (p->share) {
1159 case XFRM_SHARE_ANY:
1160 case XFRM_SHARE_SESSION:
1161 case XFRM_SHARE_USER:
1162 case XFRM_SHARE_UNIQUE:
1163 break;
1164
1165 default:
1166 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001167 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168
1169 switch (p->action) {
1170 case XFRM_POLICY_ALLOW:
1171 case XFRM_POLICY_BLOCK:
1172 break;
1173
1174 default:
1175 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001176 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177
1178 switch (p->sel.family) {
1179 case AF_INET:
1180 break;
1181
1182 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001183#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 break;
1185#else
1186 return -EAFNOSUPPORT;
1187#endif
1188
1189 default:
1190 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001191 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
1193 return verify_policy_dir(p->dir);
1194}
1195
Thomas Graf5424f322007-08-22 14:01:33 -07001196static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001197{
Thomas Graf5424f322007-08-22 14:01:33 -07001198 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001199 struct xfrm_user_sec_ctx *uctx;
1200
1201 if (!rt)
1202 return 0;
1203
Thomas Graf5424f322007-08-22 14:01:33 -07001204 uctx = nla_data(rt);
Paul Moore03e1ad72008-04-12 19:07:52 -07001205 return security_xfrm_policy_alloc(&pol->security, uctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001206}
1207
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1209 int nr)
1210{
1211 int i;
1212
1213 xp->xfrm_nr = nr;
1214 for (i = 0; i < nr; i++, ut++) {
1215 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1216
1217 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1218 memcpy(&t->saddr, &ut->saddr,
1219 sizeof(xfrm_address_t));
1220 t->reqid = ut->reqid;
1221 t->mode = ut->mode;
1222 t->share = ut->share;
1223 t->optional = ut->optional;
1224 t->aalgos = ut->aalgos;
1225 t->ealgos = ut->ealgos;
1226 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001227 /* If all masks are ~0, then we allow all algorithms. */
1228 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001229 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
1231}
1232
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001233static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1234{
1235 int i;
1236
1237 if (nr > XFRM_MAX_DEPTH)
1238 return -EINVAL;
1239
1240 for (i = 0; i < nr; i++) {
1241 /* We never validated the ut->family value, so many
1242 * applications simply leave it at zero. The check was
1243 * never made and ut->family was ignored because all
1244 * templates could be assumed to have the same family as
1245 * the policy itself. Now that we will have ipv4-in-ipv6
1246 * and ipv6-in-ipv4 tunnels, this is no longer true.
1247 */
1248 if (!ut[i].family)
1249 ut[i].family = family;
1250
1251 switch (ut[i].family) {
1252 case AF_INET:
1253 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001254#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001255 case AF_INET6:
1256 break;
1257#endif
1258 default:
1259 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001260 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001261 }
1262
1263 return 0;
1264}
1265
Thomas Graf5424f322007-08-22 14:01:33 -07001266static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267{
Thomas Graf5424f322007-08-22 14:01:33 -07001268 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
1270 if (!rt) {
1271 pol->xfrm_nr = 0;
1272 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001273 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1274 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001275 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001277 err = validate_tmpl(nr, utmpl, pol->family);
1278 if (err)
1279 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280
Thomas Graf5424f322007-08-22 14:01:33 -07001281 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 }
1283 return 0;
1284}
1285
Thomas Graf5424f322007-08-22 14:01:33 -07001286static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001287{
Thomas Graf5424f322007-08-22 14:01:33 -07001288 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001289 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001290 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001291 int err;
1292
1293 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001294 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001295 type = upt->type;
1296 }
1297
1298 err = verify_policy_type(type);
1299 if (err)
1300 return err;
1301
1302 *tp = type;
1303 return 0;
1304}
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1307{
1308 xp->priority = p->priority;
1309 xp->index = p->index;
1310 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1311 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1312 xp->action = p->action;
1313 xp->flags = p->flags;
1314 xp->family = p->sel.family;
1315 /* XXX xp->share = p->share; */
1316}
1317
1318static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1319{
1320 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1321 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1322 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1323 p->priority = xp->priority;
1324 p->index = xp->index;
1325 p->sel.family = xp->family;
1326 p->dir = dir;
1327 p->action = xp->action;
1328 p->flags = xp->flags;
1329 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1330}
1331
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001332static 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 -07001333{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001334 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 int err;
1336
1337 if (!xp) {
1338 *errp = -ENOMEM;
1339 return NULL;
1340 }
1341
1342 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001343
Thomas Graf35a7aa02007-08-22 14:00:40 -07001344 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001345 if (err)
1346 goto error;
1347
Thomas Graf35a7aa02007-08-22 14:00:40 -07001348 if (!(err = copy_from_user_tmpl(xp, attrs)))
1349 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001350 if (err)
1351 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001353 xfrm_mark_get(attrs, &xp->mark);
1354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001356 error:
1357 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001358 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001359 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001360 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361}
1362
Christoph Hellwig22e70052007-01-02 15:22:30 -08001363static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001364 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001366 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001367 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001369 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 int err;
1371 int excl;
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001372 uid_t loginuid = audit_get_loginuid(current);
1373 u32 sessionid = audit_get_sessionid(current);
1374 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375
1376 err = verify_newpolicy_info(p);
1377 if (err)
1378 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001379 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001380 if (err)
1381 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001383 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 if (!xp)
1385 return err;
1386
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001387 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001388 * Aha! this is anti-netlink really i.e more pfkey derived
1389 * in netlink excl is a flag and you wouldnt need
1390 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1392 err = xfrm_policy_insert(p->dir, xp, excl);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001393 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -04001394 xfrm_audit_policy_add(xp, err ? 0 : 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001395
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001397 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 kfree(xp);
1399 return err;
1400 }
1401
Herbert Xuf60f6b82005-06-18 22:44:37 -07001402 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001403 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001404 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001405 km_policy_notify(xp, p->dir, &c);
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 xfrm_pol_put(xp);
1408
1409 return 0;
1410}
1411
1412static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1413{
1414 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1415 int i;
1416
1417 if (xp->xfrm_nr == 0)
1418 return 0;
1419
1420 for (i = 0; i < xp->xfrm_nr; i++) {
1421 struct xfrm_user_tmpl *up = &vec[i];
1422 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1423
1424 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001425 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1427 up->reqid = kp->reqid;
1428 up->mode = kp->mode;
1429 up->share = kp->share;
1430 up->optional = kp->optional;
1431 up->aalgos = kp->aalgos;
1432 up->ealgos = kp->ealgos;
1433 up->calgos = kp->calgos;
1434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435
Thomas Grafc0144be2007-08-22 13:55:43 -07001436 return nla_put(skb, XFRMA_TMPL,
1437 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001438}
1439
Serge Hallyn0d681622006-07-24 23:30:44 -07001440static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1441{
1442 if (x->security) {
1443 return copy_sec_ctx(x->security, skb);
1444 }
1445 return 0;
1446}
1447
1448static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1449{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001450 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001451 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001452 return 0;
1453}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001454static inline size_t userpolicy_type_attrsize(void)
1455{
1456#ifdef CONFIG_XFRM_SUB_POLICY
1457 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1458#else
1459 return 0;
1460#endif
1461}
Serge Hallyn0d681622006-07-24 23:30:44 -07001462
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001463#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001464static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001465{
Thomas Grafc0144be2007-08-22 13:55:43 -07001466 struct xfrm_userpolicy_type upt = {
1467 .type = type,
1468 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001469
Thomas Grafc0144be2007-08-22 13:55:43 -07001470 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001471}
1472
1473#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001474static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001475{
1476 return 0;
1477}
1478#endif
1479
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1481{
1482 struct xfrm_dump_info *sp = ptr;
1483 struct xfrm_userpolicy_info *p;
1484 struct sk_buff *in_skb = sp->in_skb;
1485 struct sk_buff *skb = sp->out_skb;
1486 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001487 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
Eric W. Biederman15e47302012-09-07 20:12:54 +00001489 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001490 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1491 if (nlh == NULL)
1492 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493
Thomas Graf7b67c852007-08-22 13:53:52 -07001494 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001496 err = copy_to_user_tmpl(xp, skb);
1497 if (!err)
1498 err = copy_to_user_sec_ctx(xp, skb);
1499 if (!err)
1500 err = copy_to_user_policy_type(xp->type, skb);
1501 if (!err)
1502 err = xfrm_mark_put(skb, &xp->mark);
1503 if (err) {
1504 nlmsg_cancel(skb, nlh);
1505 return err;
1506 }
Thomas Graf98250692007-08-22 12:47:26 -07001507 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509}
1510
Timo Teras4c563f72008-02-28 21:31:08 -08001511static int xfrm_dump_policy_done(struct netlink_callback *cb)
1512{
1513 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
1514
1515 xfrm_policy_walk_done(walk);
1516 return 0;
1517}
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1520{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001521 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001522 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 struct xfrm_dump_info info;
1524
Timo Teras4c563f72008-02-28 21:31:08 -08001525 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) >
1526 sizeof(cb->args) - sizeof(cb->args[0]));
1527
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 info.in_skb = cb->skb;
1529 info.out_skb = skb;
1530 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1531 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001532
1533 if (!cb->args[0]) {
1534 cb->args[0] = 1;
1535 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1536 }
1537
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001538 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
1540 return skb->len;
1541}
1542
1543static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1544 struct xfrm_policy *xp,
1545 int dir, u32 seq)
1546{
1547 struct xfrm_dump_info info;
1548 struct sk_buff *skb;
1549
Thomas Graf7deb2262007-08-22 13:57:39 -07001550 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 if (!skb)
1552 return ERR_PTR(-ENOMEM);
1553
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 info.in_skb = in_skb;
1555 info.out_skb = skb;
1556 info.nlmsg_seq = seq;
1557 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
1559 if (dump_one_policy(xp, dir, 0, &info) < 0) {
1560 kfree_skb(skb);
1561 return NULL;
1562 }
1563
1564 return skb;
1565}
1566
Christoph Hellwig22e70052007-01-02 15:22:30 -08001567static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001568 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001570 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 struct xfrm_policy *xp;
1572 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001573 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001575 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001577 struct xfrm_mark m;
1578 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Thomas Graf7b67c852007-08-22 13:53:52 -07001580 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1582
Thomas Graf35a7aa02007-08-22 14:00:40 -07001583 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001584 if (err)
1585 return err;
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 err = verify_policy_dir(p->dir);
1588 if (err)
1589 return err;
1590
1591 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001592 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001593 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001594 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001595 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001596
Thomas Graf35a7aa02007-08-22 14:00:40 -07001597 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001598 if (err)
1599 return err;
1600
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001601 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001602 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001603 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001604
Paul Moore03e1ad72008-04-12 19:07:52 -07001605 err = security_xfrm_policy_alloc(&ctx, uctx);
1606 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001607 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001608 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001609 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001610 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001611 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 if (xp == NULL)
1614 return -ENOENT;
1615
1616 if (!delete) {
1617 struct sk_buff *resp_skb;
1618
1619 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1620 if (IS_ERR(resp_skb)) {
1621 err = PTR_ERR(resp_skb);
1622 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001623 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001624 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001626 } else {
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001627 uid_t loginuid = audit_get_loginuid(current);
1628 u32 sessionid = audit_get_sessionid(current);
1629 u32 sid;
Eric Paris25323862008-04-18 10:09:25 -04001630
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001631 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -04001632 xfrm_audit_policy_delete(xp, err ? 0 : 1, loginuid, sessionid,
1633 sid);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001634
1635 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001636 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001637
Herbert Xue7443892005-06-18 22:44:18 -07001638 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001639 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001640 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001641 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001642 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 }
1644
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001645out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001646 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 return err;
1648}
1649
Christoph Hellwig22e70052007-01-02 15:22:30 -08001650static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001651 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001653 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001654 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001655 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten161a09e2006-11-27 13:11:54 -06001656 struct xfrm_audit audit_info;
Joy Latten4aa2e622007-06-04 19:05:57 -04001657 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001659 audit_info.loginuid = audit_get_loginuid(current);
1660 audit_info.sessionid = audit_get_sessionid(current);
1661 security_task_getsecid(current, &audit_info.secid);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001662 err = xfrm_state_flush(net, p->proto, &audit_info);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001663 if (err) {
1664 if (err == -ESRCH) /* empty table */
1665 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001666 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001667 }
Herbert Xubf088672005-06-18 22:44:00 -07001668 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001669 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001670 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001671 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001672 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001673 km_state_notify(NULL, &c);
1674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 return 0;
1676}
1677
Steffen Klassertd8647b72011-03-08 00:10:27 +00001678static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001679{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001680 size_t replay_size = x->replay_esn ?
1681 xfrm_replay_state_esn_len(x->replay_esn) :
1682 sizeof(struct xfrm_replay_state);
1683
Thomas Graf7deb2262007-08-22 13:57:39 -07001684 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001685 + nla_total_size(replay_size)
Thomas Graf7deb2262007-08-22 13:57:39 -07001686 + nla_total_size(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001687 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001688 + nla_total_size(4) /* XFRM_AE_RTHR */
1689 + nla_total_size(4); /* XFRM_AE_ETHR */
1690}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001691
David S. Miller214e0052011-02-24 00:02:38 -05001692static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001693{
1694 struct xfrm_aevent_id *id;
1695 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001696 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001697
Eric W. Biederman15e47302012-09-07 20:12:54 +00001698 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001699 if (nlh == NULL)
1700 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001701
Thomas Graf7b67c852007-08-22 13:53:52 -07001702 id = nlmsg_data(nlh);
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001703 memcpy(&id->sa_id.daddr, &x->id.daddr,sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001704 id->sa_id.spi = x->id.spi;
1705 id->sa_id.family = x->props.family;
1706 id->sa_id.proto = x->id.proto;
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001707 memcpy(&id->saddr, &x->props.saddr,sizeof(x->props.saddr));
1708 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001709 id->flags = c->data.aevent;
1710
David S. Millerd0fde792012-03-29 04:02:26 -04001711 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001712 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1713 xfrm_replay_state_esn_len(x->replay_esn),
1714 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001715 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001716 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1717 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001718 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001719 if (err)
1720 goto out_cancel;
1721 err = nla_put(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft);
1722 if (err)
1723 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001724
David S. Miller1d1e34d2012-06-27 21:57:03 -07001725 if (id->flags & XFRM_AE_RTHR) {
1726 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1727 if (err)
1728 goto out_cancel;
1729 }
1730 if (id->flags & XFRM_AE_ETHR) {
1731 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1732 x->replay_maxage * 10 / HZ);
1733 if (err)
1734 goto out_cancel;
1735 }
1736 err = xfrm_mark_put(skb, &x->mark);
1737 if (err)
1738 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001739
Thomas Graf98250692007-08-22 12:47:26 -07001740 return nlmsg_end(skb, nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001741
David S. Miller1d1e34d2012-06-27 21:57:03 -07001742out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001743 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001744 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001745}
1746
Christoph Hellwig22e70052007-01-02 15:22:30 -08001747static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001748 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001749{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001750 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001751 struct xfrm_state *x;
1752 struct sk_buff *r_skb;
1753 int err;
1754 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001755 u32 mark;
1756 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001757 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001758 struct xfrm_usersa_id *id = &p->sa_id;
1759
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001760 mark = xfrm_mark_get(attrs, &m);
1761
1762 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001763 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001764 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001765
1766 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1767 if (r_skb == NULL) {
1768 xfrm_state_put(x);
1769 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001770 }
1771
1772 /*
1773 * XXX: is this lock really needed - none of the other
1774 * gets lock (the concern is things getting updated
1775 * while we are still reading) - jhs
1776 */
1777 spin_lock_bh(&x->lock);
1778 c.data.aevent = p->flags;
1779 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001780 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001781
1782 if (build_aevent(r_skb, x, &c) < 0)
1783 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001784 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001785 spin_unlock_bh(&x->lock);
1786 xfrm_state_put(x);
1787 return err;
1788}
1789
Christoph Hellwig22e70052007-01-02 15:22:30 -08001790static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001791 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001792{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001793 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001794 struct xfrm_state *x;
1795 struct km_event c;
1796 int err = - EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001797 u32 mark = 0;
1798 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001799 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001800 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001801 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001802 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001803
Steffen Klassertd8647b72011-03-08 00:10:27 +00001804 if (!lt && !rp && !re)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001805 return err;
1806
1807 /* pedantic mode - thou shalt sayeth replaceth */
1808 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1809 return err;
1810
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001811 mark = xfrm_mark_get(attrs, &m);
1812
1813 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 -08001814 if (x == NULL)
1815 return -ESRCH;
1816
1817 if (x->km.state != XFRM_STATE_VALID)
1818 goto out;
1819
Steffen Klasserte2b19122011-03-28 19:47:30 +00001820 err = xfrm_replay_verify_len(x->replay_esn, rp);
1821 if (err)
1822 goto out;
1823
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001824 spin_lock_bh(&x->lock);
Thomas Graf35a7aa02007-08-22 14:00:40 -07001825 xfrm_update_ae_params(x, attrs);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001826 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001827
1828 c.event = nlh->nlmsg_type;
1829 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001830 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001831 c.data.aevent = XFRM_AE_CU;
1832 km_state_notify(x, &c);
1833 err = 0;
1834out:
1835 xfrm_state_put(x);
1836 return err;
1837}
1838
Christoph Hellwig22e70052007-01-02 15:22:30 -08001839static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001840 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001842 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001843 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001844 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001845 int err;
Joy Latten161a09e2006-11-27 13:11:54 -06001846 struct xfrm_audit audit_info;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001847
Thomas Graf35a7aa02007-08-22 14:00:40 -07001848 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001849 if (err)
1850 return err;
1851
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001852 audit_info.loginuid = audit_get_loginuid(current);
1853 audit_info.sessionid = audit_get_sessionid(current);
1854 security_task_getsecid(current, &audit_info.secid);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001855 err = xfrm_policy_flush(net, type, &audit_info);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001856 if (err) {
1857 if (err == -ESRCH) /* empty table */
1858 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001859 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001860 }
1861
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001862 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001863 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001864 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001865 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001866 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001867 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 return 0;
1869}
1870
Christoph Hellwig22e70052007-01-02 15:22:30 -08001871static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001872 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001873{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001874 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001875 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07001876 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001877 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001878 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001879 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001880 struct xfrm_mark m;
1881 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001882
Thomas Graf35a7aa02007-08-22 14:00:40 -07001883 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001884 if (err)
1885 return err;
1886
Timo Teräsc8bf4d02010-03-31 00:17:04 +00001887 err = verify_policy_dir(p->dir);
1888 if (err)
1889 return err;
1890
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001891 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001892 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001893 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001894 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001895 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001896
Thomas Graf35a7aa02007-08-22 14:00:40 -07001897 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001898 if (err)
1899 return err;
1900
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001901 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001902 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001903 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001904
Paul Moore03e1ad72008-04-12 19:07:52 -07001905 err = security_xfrm_policy_alloc(&ctx, uctx);
1906 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001907 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001908 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001909 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001910 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001911 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001912 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001913 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08001914 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07001915
Timo Teräsea2dea92010-03-31 00:17:05 +00001916 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001917 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001918
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001919 err = 0;
1920 if (up->hard) {
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001921 uid_t loginuid = audit_get_loginuid(current);
1922 u32 sessionid = audit_get_sessionid(current);
1923 u32 sid;
1924
1925 security_task_getsecid(current, &sid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001926 xfrm_policy_delete(xp, p->dir);
Eric Paris25323862008-04-18 10:09:25 -04001927 xfrm_audit_policy_delete(xp, 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001928
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001929 } else {
1930 // reset the timers here?
stephen hemminger62db5cf2010-05-12 06:37:06 +00001931 WARN(1, "Dont know what to do with soft policy expire\n");
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001932 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00001933 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001934
1935out:
1936 xfrm_pol_put(xp);
1937 return err;
1938}
1939
Christoph Hellwig22e70052007-01-02 15:22:30 -08001940static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001941 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001942{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001943 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001944 struct xfrm_state *x;
1945 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07001946 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001947 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001948 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00001949 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001950
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001951 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 -08001952
David S. Miller3a765aa2007-02-26 14:52:21 -08001953 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001954 if (x == NULL)
1955 return err;
1956
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001957 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08001958 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001959 if (x->km.state != XFRM_STATE_VALID)
1960 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00001961 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001962
Joy Latten161a09e2006-11-27 13:11:54 -06001963 if (ue->hard) {
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001964 uid_t loginuid = audit_get_loginuid(current);
1965 u32 sessionid = audit_get_sessionid(current);
1966 u32 sid;
1967
1968 security_task_getsecid(current, &sid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001969 __xfrm_state_delete(x);
Eric Paris25323862008-04-18 10:09:25 -04001970 xfrm_audit_state_delete(x, 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001971 }
David S. Miller3a765aa2007-02-26 14:52:21 -08001972 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001973out:
1974 spin_unlock_bh(&x->lock);
1975 xfrm_state_put(x);
1976 return err;
1977}
1978
Christoph Hellwig22e70052007-01-02 15:22:30 -08001979static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001980 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001981{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001982 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001983 struct xfrm_policy *xp;
1984 struct xfrm_user_tmpl *ut;
1985 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07001986 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001987 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001988
Thomas Graf7b67c852007-08-22 13:53:52 -07001989 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001990 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001991 int err = -ENOMEM;
1992
1993 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08001994 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001995
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001996 xfrm_mark_get(attrs, &mark);
1997
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001998 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08001999 if (err)
2000 goto bad_policy;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002001
2002 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002003 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002004 if (!xp)
2005 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002006
2007 memcpy(&x->id, &ua->id, sizeof(ua->id));
2008 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2009 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002010 xp->mark.m = x->mark.m = mark.m;
2011 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002012 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002013 /* extract the templates and for each call km_key */
2014 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2015 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2016 memcpy(&x->id, &t->id, sizeof(x->id));
2017 x->props.mode = t->mode;
2018 x->props.reqid = t->reqid;
2019 x->props.family = ut->family;
2020 t->aalgos = ua->aalgos;
2021 t->ealgos = ua->ealgos;
2022 t->calgos = ua->calgos;
2023 err = km_query(x, t, xp);
2024
2025 }
2026
2027 kfree(x);
2028 kfree(xp);
2029
2030 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002031
2032bad_policy:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002033 WARN(1, "BAD policy passed\n");
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002034free_state:
2035 kfree(x);
2036nomem:
2037 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002038}
2039
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002040#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002041static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002042 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002043 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002044{
Thomas Graf5424f322007-08-22 14:01:33 -07002045 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002046 struct xfrm_user_migrate *um;
2047 int i, num_migrate;
2048
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002049 if (k != NULL) {
2050 struct xfrm_user_kmaddress *uk;
2051
2052 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2053 memcpy(&k->local, &uk->local, sizeof(k->local));
2054 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2055 k->family = uk->family;
2056 k->reserved = uk->reserved;
2057 }
2058
Thomas Graf5424f322007-08-22 14:01:33 -07002059 um = nla_data(rt);
2060 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002061
2062 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2063 return -EINVAL;
2064
2065 for (i = 0; i < num_migrate; i++, um++, ma++) {
2066 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2067 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2068 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2069 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2070
2071 ma->proto = um->proto;
2072 ma->mode = um->mode;
2073 ma->reqid = um->reqid;
2074
2075 ma->old_family = um->old_family;
2076 ma->new_family = um->new_family;
2077 }
2078
2079 *num = i;
2080 return 0;
2081}
2082
2083static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002084 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002085{
Thomas Graf7b67c852007-08-22 13:53:52 -07002086 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002087 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002088 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002089 u8 type;
2090 int err;
2091 int n = 0;
2092
Thomas Graf35a7aa02007-08-22 14:00:40 -07002093 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002094 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002095
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002096 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2097
Thomas Graf5424f322007-08-22 14:01:33 -07002098 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002099 if (err)
2100 return err;
2101
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002102 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002103 if (err)
2104 return err;
2105
2106 if (!n)
2107 return 0;
2108
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002109 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002110
2111 return 0;
2112}
2113#else
2114static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002115 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002116{
2117 return -ENOPROTOOPT;
2118}
2119#endif
2120
2121#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002122static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002123{
2124 struct xfrm_user_migrate um;
2125
2126 memset(&um, 0, sizeof(um));
2127 um.proto = m->proto;
2128 um.mode = m->mode;
2129 um.reqid = m->reqid;
2130 um.old_family = m->old_family;
2131 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2132 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2133 um.new_family = m->new_family;
2134 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2135 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2136
Thomas Grafc0144be2007-08-22 13:55:43 -07002137 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002138}
2139
David S. Miller183cad12011-02-24 00:28:01 -05002140static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002141{
2142 struct xfrm_user_kmaddress uk;
2143
2144 memset(&uk, 0, sizeof(uk));
2145 uk.family = k->family;
2146 uk.reserved = k->reserved;
2147 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002148 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002149
2150 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2151}
2152
2153static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002154{
2155 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002156 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2157 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2158 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002159}
2160
David S. Miller183cad12011-02-24 00:28:01 -05002161static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2162 int num_migrate, const struct xfrm_kmaddress *k,
2163 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002164{
David S. Miller183cad12011-02-24 00:28:01 -05002165 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002166 struct xfrm_userpolicy_id *pol_id;
2167 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002168 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002169
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002170 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2171 if (nlh == NULL)
2172 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002173
Thomas Graf7b67c852007-08-22 13:53:52 -07002174 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002175 /* copy data from selector, dir, and type to the pol_id */
2176 memset(pol_id, 0, sizeof(*pol_id));
2177 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2178 pol_id->dir = dir;
2179
David S. Miller1d1e34d2012-06-27 21:57:03 -07002180 if (k != NULL) {
2181 err = copy_to_user_kmaddress(k, skb);
2182 if (err)
2183 goto out_cancel;
2184 }
2185 err = copy_to_user_policy_type(type, skb);
2186 if (err)
2187 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002188 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002189 err = copy_to_user_migrate(mp, skb);
2190 if (err)
2191 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002192 }
2193
Thomas Graf98250692007-08-22 12:47:26 -07002194 return nlmsg_end(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002195
2196out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002197 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002198 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002199}
2200
David S. Miller183cad12011-02-24 00:28:01 -05002201static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2202 const struct xfrm_migrate *m, int num_migrate,
2203 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002204{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002205 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002206 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002207
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002208 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002209 if (skb == NULL)
2210 return -ENOMEM;
2211
2212 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002213 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002214 BUG();
2215
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002216 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MIGRATE, GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002217}
2218#else
David S. Miller183cad12011-02-24 00:28:01 -05002219static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2220 const struct xfrm_migrate *m, int num_migrate,
2221 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002222{
2223 return -ENOPROTOOPT;
2224}
2225#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002226
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002227#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002228
2229static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002230 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002231 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2232 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2233 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2234 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2235 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2236 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002237 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002238 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002239 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002240 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002241 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002242 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002243 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002244 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2245 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002246 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002247 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002248 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
2249 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250};
2251
Thomas Graf492b5582005-05-03 14:26:40 -07002252#undef XMSGSIZE
2253
Thomas Grafcf5cb792007-08-22 13:59:04 -07002254static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002255 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2256 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2257 [XFRMA_LASTUSED] = { .type = NLA_U64},
2258 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002259 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002260 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2261 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2262 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2263 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2264 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2265 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2266 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2267 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2268 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2269 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2270 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2271 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2272 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2273 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002274 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002275 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002276 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002277 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002278};
2279
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280static struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002281 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002283 int (*done)(struct netlink_callback *);
Thomas Graf492b5582005-05-03 14:26:40 -07002284} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2285 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2286 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2287 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002288 .dump = xfrm_dump_sa,
2289 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002290 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2291 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2292 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Timo Teras4c563f72008-02-28 21:31:08 -08002293 .dump = xfrm_dump_policy,
2294 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002295 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002296 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002297 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002298 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2299 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002300 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002301 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2302 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002303 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2304 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002305 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002306 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002307 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308};
2309
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002310static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002312 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002313 struct nlattr *attrs[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002315 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002319 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320
2321 type -= XFRM_MSG_BASE;
2322 link = &xfrm_dispatch[type];
2323
2324 /* All operations require privileges, even GET */
Eric Parisfd778462012-01-03 12:25:16 -05002325 if (!capable(CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002326 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327
Thomas Graf492b5582005-05-03 14:26:40 -07002328 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2329 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002330 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002332 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002334 {
2335 struct netlink_dump_control c = {
2336 .dump = link->dump,
2337 .done = link->done,
2338 };
2339 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 }
2342
Thomas Graf35a7aa02007-08-22 14:00:40 -07002343 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs, XFRMA_MAX,
Thomas Grafcf5cb792007-08-22 13:59:04 -07002344 xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002345 if (err < 0)
2346 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347
2348 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002349 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
Thomas Graf5424f322007-08-22 14:01:33 -07002351 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352}
2353
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002354static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002356 mutex_lock(&xfrm_cfg_mutex);
2357 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
2358 mutex_unlock(&xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359}
2360
Thomas Graf7deb2262007-08-22 13:57:39 -07002361static inline size_t xfrm_expire_msgsize(void)
2362{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002363 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2364 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002365}
2366
David S. Miller214e0052011-02-24 00:02:38 -05002367static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368{
2369 struct xfrm_user_expire *ue;
2370 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002371 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
Eric W. Biederman15e47302012-09-07 20:12:54 +00002373 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002374 if (nlh == NULL)
2375 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
Thomas Graf7b67c852007-08-22 13:53:52 -07002377 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002379 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380
David S. Miller1d1e34d2012-06-27 21:57:03 -07002381 err = xfrm_mark_put(skb, &x->mark);
2382 if (err)
2383 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002384
Thomas Graf98250692007-08-22 12:47:26 -07002385 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386}
2387
David S. Miller214e0052011-02-24 00:02:38 -05002388static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002390 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391 struct sk_buff *skb;
2392
Thomas Graf7deb2262007-08-22 13:57:39 -07002393 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 if (skb == NULL)
2395 return -ENOMEM;
2396
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002397 if (build_expire(skb, x, c) < 0) {
2398 kfree_skb(skb);
2399 return -EMSGSIZE;
2400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002402 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403}
2404
David S. Miller214e0052011-02-24 00:02:38 -05002405static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002406{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002407 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002408 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002409
Steffen Klassertd8647b72011-03-08 00:10:27 +00002410 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002411 if (skb == NULL)
2412 return -ENOMEM;
2413
2414 if (build_aevent(skb, x, c) < 0)
2415 BUG();
2416
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002417 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_AEVENTS, GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002418}
2419
David S. Miller214e0052011-02-24 00:02:38 -05002420static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002421{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002422 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002423 struct xfrm_usersa_flush *p;
2424 struct nlmsghdr *nlh;
2425 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002426 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002427
Thomas Graf7deb2262007-08-22 13:57:39 -07002428 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002429 if (skb == NULL)
2430 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002431
Eric W. Biederman15e47302012-09-07 20:12:54 +00002432 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002433 if (nlh == NULL) {
2434 kfree_skb(skb);
2435 return -EMSGSIZE;
2436 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002437
Thomas Graf7b67c852007-08-22 13:53:52 -07002438 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002439 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002440
Thomas Graf98250692007-08-22 12:47:26 -07002441 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002442
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002443 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002444}
2445
Thomas Graf7deb2262007-08-22 13:57:39 -07002446static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002447{
Thomas Graf7deb2262007-08-22 13:57:39 -07002448 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002449 if (x->aead)
2450 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002451 if (x->aalg) {
2452 l += nla_total_size(sizeof(struct xfrm_algo) +
2453 (x->aalg->alg_key_len + 7) / 8);
2454 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2455 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002456 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002457 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002458 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002459 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002460 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002461 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002462 if (x->tfcpad)
2463 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002464 if (x->replay_esn)
2465 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
Herbert Xu68325d32007-10-09 13:30:57 -07002466 if (x->security)
2467 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2468 x->security->ctx_len);
2469 if (x->coaddr)
2470 l += nla_total_size(sizeof(*x->coaddr));
2471
Herbert Xud26f3982007-11-13 21:47:08 -08002472 /* Must count x->lastused as it may become non-zero behind our back. */
2473 l += nla_total_size(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002474
2475 return l;
2476}
2477
David S. Miller214e0052011-02-24 00:02:38 -05002478static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002479{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002480 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002481 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002482 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002483 struct nlmsghdr *nlh;
2484 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002485 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002486 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002487
2488 headlen = sizeof(*p);
2489 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002490 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002491 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002492 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002493 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002494 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002495
Thomas Graf7deb2262007-08-22 13:57:39 -07002496 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002497 if (skb == NULL)
2498 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002499
Eric W. Biederman15e47302012-09-07 20:12:54 +00002500 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002501 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002502 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002503 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002504
Thomas Graf7b67c852007-08-22 13:53:52 -07002505 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002506 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002507 struct nlattr *attr;
2508
Thomas Graf7b67c852007-08-22 13:53:52 -07002509 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002510 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2511 id->spi = x->id.spi;
2512 id->family = x->props.family;
2513 id->proto = x->id.proto;
2514
Thomas Grafc0144be2007-08-22 13:55:43 -07002515 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002516 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002517 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002518 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002519
2520 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002521 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002522 err = copy_to_user_state_extra(x, p, skb);
2523 if (err)
2524 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002525
Thomas Graf98250692007-08-22 12:47:26 -07002526 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002527
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002528 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002529
David S. Miller1d1e34d2012-06-27 21:57:03 -07002530out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002531 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002532 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002533}
2534
David S. Miller214e0052011-02-24 00:02:38 -05002535static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002536{
2537
2538 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002539 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002540 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002541 case XFRM_MSG_NEWAE:
2542 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002543 case XFRM_MSG_DELSA:
2544 case XFRM_MSG_UPDSA:
2545 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002546 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002547 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002548 return xfrm_notify_sa_flush(c);
2549 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002550 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2551 c->event);
2552 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002553 }
2554
2555 return 0;
2556
2557}
2558
Thomas Graf7deb2262007-08-22 13:57:39 -07002559static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2560 struct xfrm_policy *xp)
2561{
2562 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2563 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002564 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002565 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2566 + userpolicy_type_attrsize();
2567}
2568
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002570 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002572 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 struct xfrm_user_acquire *ua;
2574 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002575 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002577 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2578 if (nlh == NULL)
2579 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
Thomas Graf7b67c852007-08-22 13:53:52 -07002581 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582 memcpy(&ua->id, &x->id, sizeof(ua->id));
2583 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2584 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002585 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 ua->aalgos = xt->aalgos;
2587 ua->ealgos = xt->ealgos;
2588 ua->calgos = xt->calgos;
2589 ua->seq = x->km.seq = seq;
2590
David S. Miller1d1e34d2012-06-27 21:57:03 -07002591 err = copy_to_user_tmpl(xp, skb);
2592 if (!err)
2593 err = copy_to_user_state_sec_ctx(x, skb);
2594 if (!err)
2595 err = copy_to_user_policy_type(xp->type, skb);
2596 if (!err)
2597 err = xfrm_mark_put(skb, &xp->mark);
2598 if (err) {
2599 nlmsg_cancel(skb, nlh);
2600 return err;
2601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602
Thomas Graf98250692007-08-22 12:47:26 -07002603 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604}
2605
2606static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002607 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002609 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611
Thomas Graf7deb2262007-08-22 13:57:39 -07002612 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 if (skb == NULL)
2614 return -ENOMEM;
2615
Fan Du65e07362012-08-15 10:13:47 +08002616 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 BUG();
2618
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002619 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_ACQUIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620}
2621
2622/* User gives us xfrm_user_policy_info followed by an array of 0
2623 * or more templates.
2624 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002625static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 u8 *data, int len, int *dir)
2627{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002628 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2630 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2631 struct xfrm_policy *xp;
2632 int nr;
2633
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002634 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 case AF_INET:
2636 if (opt != IP_XFRM_POLICY) {
2637 *dir = -EOPNOTSUPP;
2638 return NULL;
2639 }
2640 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002641#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 case AF_INET6:
2643 if (opt != IPV6_XFRM_POLICY) {
2644 *dir = -EOPNOTSUPP;
2645 return NULL;
2646 }
2647 break;
2648#endif
2649 default:
2650 *dir = -EINVAL;
2651 return NULL;
2652 }
2653
2654 *dir = -EINVAL;
2655
2656 if (len < sizeof(*p) ||
2657 verify_newpolicy_info(p))
2658 return NULL;
2659
2660 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002661 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 return NULL;
2663
Herbert Xua4f1bac2005-07-26 15:43:17 -07002664 if (p->dir > XFRM_POLICY_OUT)
2665 return NULL;
2666
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002667 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 if (xp == NULL) {
2669 *dir = -ENOBUFS;
2670 return NULL;
2671 }
2672
2673 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002674 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 copy_templates(xp, ut, nr);
2676
2677 *dir = p->dir;
2678
2679 return xp;
2680}
2681
Thomas Graf7deb2262007-08-22 13:57:39 -07002682static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2683{
2684 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2685 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2686 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002687 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002688 + userpolicy_type_attrsize();
2689}
2690
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002692 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693{
2694 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002695 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002696 struct nlmsghdr *nlh;
2697 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
Eric W. Biederman15e47302012-09-07 20:12:54 +00002699 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002700 if (nlh == NULL)
2701 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
Thomas Graf7b67c852007-08-22 13:53:52 -07002703 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002705 err = copy_to_user_tmpl(xp, skb);
2706 if (!err)
2707 err = copy_to_user_sec_ctx(xp, skb);
2708 if (!err)
2709 err = copy_to_user_policy_type(xp->type, skb);
2710 if (!err)
2711 err = xfrm_mark_put(skb, &xp->mark);
2712 if (err) {
2713 nlmsg_cancel(skb, nlh);
2714 return err;
2715 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 upe->hard = !!hard;
2717
Thomas Graf98250692007-08-22 12:47:26 -07002718 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719}
2720
David S. Miller214e0052011-02-24 00:02:38 -05002721static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002723 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725
Thomas Graf7deb2262007-08-22 13:57:39 -07002726 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 if (skb == NULL)
2728 return -ENOMEM;
2729
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002730 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 BUG();
2732
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002733 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734}
2735
David S. Miller214e0052011-02-24 00:02:38 -05002736static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002737{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002738 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002739 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002740 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002741 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002742 struct nlmsghdr *nlh;
2743 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002744 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002745
2746 headlen = sizeof(*p);
2747 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002748 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002749 headlen = sizeof(*id);
2750 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002751 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002752 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002753 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002754
Thomas Graf7deb2262007-08-22 13:57:39 -07002755 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002756 if (skb == NULL)
2757 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002758
Eric W. Biederman15e47302012-09-07 20:12:54 +00002759 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002760 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002761 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002762 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002763
Thomas Graf7b67c852007-08-22 13:53:52 -07002764 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002765 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002766 struct nlattr *attr;
2767
Thomas Graf7b67c852007-08-22 13:53:52 -07002768 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002769 memset(id, 0, sizeof(*id));
2770 id->dir = dir;
2771 if (c->data.byid)
2772 id->index = xp->index;
2773 else
2774 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2775
Thomas Grafc0144be2007-08-22 13:55:43 -07002776 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002777 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002778 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002779 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002780
2781 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002782 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002783
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002784 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002785 err = copy_to_user_tmpl(xp, skb);
2786 if (!err)
2787 err = copy_to_user_policy_type(xp->type, skb);
2788 if (!err)
2789 err = xfrm_mark_put(skb, &xp->mark);
2790 if (err)
2791 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002792
Thomas Graf98250692007-08-22 12:47:26 -07002793 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002794
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002795 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002796
David S. Miller1d1e34d2012-06-27 21:57:03 -07002797out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002798 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002799 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002800}
2801
David S. Miller214e0052011-02-24 00:02:38 -05002802static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002803{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002804 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002805 struct nlmsghdr *nlh;
2806 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002807 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002808
Thomas Graf7deb2262007-08-22 13:57:39 -07002809 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002810 if (skb == NULL)
2811 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002812
Eric W. Biederman15e47302012-09-07 20:12:54 +00002813 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002814 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002815 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002816 goto out_free_skb;
2817 err = copy_to_user_policy_type(c->data.type, skb);
2818 if (err)
2819 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002820
Thomas Graf98250692007-08-22 12:47:26 -07002821 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002822
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002823 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002824
David S. Miller1d1e34d2012-06-27 21:57:03 -07002825out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002826 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002827 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002828}
2829
David S. Miller214e0052011-02-24 00:02:38 -05002830static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002831{
2832
2833 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002834 case XFRM_MSG_NEWPOLICY:
2835 case XFRM_MSG_UPDPOLICY:
2836 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002837 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002838 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002839 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002840 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002841 return xfrm_exp_policy_notify(xp, dir, c);
2842 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002843 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
2844 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002845 }
2846
2847 return 0;
2848
2849}
2850
Thomas Graf7deb2262007-08-22 13:57:39 -07002851static inline size_t xfrm_report_msgsize(void)
2852{
2853 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
2854}
2855
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002856static int build_report(struct sk_buff *skb, u8 proto,
2857 struct xfrm_selector *sel, xfrm_address_t *addr)
2858{
2859 struct xfrm_user_report *ur;
2860 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002861
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002862 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
2863 if (nlh == NULL)
2864 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002865
Thomas Graf7b67c852007-08-22 13:53:52 -07002866 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002867 ur->proto = proto;
2868 memcpy(&ur->sel, sel, sizeof(ur->sel));
2869
David S. Miller1d1e34d2012-06-27 21:57:03 -07002870 if (addr) {
2871 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
2872 if (err) {
2873 nlmsg_cancel(skb, nlh);
2874 return err;
2875 }
2876 }
Thomas Graf98250692007-08-22 12:47:26 -07002877 return nlmsg_end(skb, nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002878}
2879
Alexey Dobriyandb983c12008-11-25 17:51:01 -08002880static int xfrm_send_report(struct net *net, u8 proto,
2881 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002882{
2883 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002884
Thomas Graf7deb2262007-08-22 13:57:39 -07002885 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002886 if (skb == NULL)
2887 return -ENOMEM;
2888
2889 if (build_report(skb, proto, sel, addr) < 0)
2890 BUG();
2891
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002892 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_REPORT, GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002893}
2894
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002895static inline size_t xfrm_mapping_msgsize(void)
2896{
2897 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
2898}
2899
2900static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
2901 xfrm_address_t *new_saddr, __be16 new_sport)
2902{
2903 struct xfrm_user_mapping *um;
2904 struct nlmsghdr *nlh;
2905
2906 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
2907 if (nlh == NULL)
2908 return -EMSGSIZE;
2909
2910 um = nlmsg_data(nlh);
2911
2912 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
2913 um->id.spi = x->id.spi;
2914 um->id.family = x->props.family;
2915 um->id.proto = x->id.proto;
2916 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
2917 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
2918 um->new_sport = new_sport;
2919 um->old_sport = x->encap->encap_sport;
2920 um->reqid = x->props.reqid;
2921
2922 return nlmsg_end(skb, nlh);
2923}
2924
2925static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
2926 __be16 sport)
2927{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002928 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002929 struct sk_buff *skb;
2930
2931 if (x->id.proto != IPPROTO_ESP)
2932 return -EINVAL;
2933
2934 if (!x->encap)
2935 return -EINVAL;
2936
2937 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
2938 if (skb == NULL)
2939 return -ENOMEM;
2940
2941 if (build_mapping(skb, x, ipaddr, sport) < 0)
2942 BUG();
2943
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002944 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MAPPING, GFP_ATOMIC);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002945}
2946
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947static struct xfrm_mgr netlink_mgr = {
2948 .id = "netlink",
2949 .notify = xfrm_send_state_notify,
2950 .acquire = xfrm_send_acquire,
2951 .compile_policy = xfrm_compile_policy,
2952 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002953 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002954 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002955 .new_mapping = xfrm_send_mapping,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956};
2957
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002958static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959{
Patrick McHardybe336902006-03-20 22:40:54 -08002960 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00002961 struct netlink_kernel_cfg cfg = {
2962 .groups = XFRMNLGRP_MAX,
2963 .input = xfrm_netlink_rcv,
2964 };
Patrick McHardybe336902006-03-20 22:40:54 -08002965
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00002966 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08002967 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002969 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00002970 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 return 0;
2972}
2973
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002974static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002975{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002976 struct net *net;
2977 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002978 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002979 synchronize_net();
2980 list_for_each_entry(net, net_exit_list, exit_list)
2981 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002982}
2983
2984static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002985 .init = xfrm_user_net_init,
2986 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002987};
2988
2989static int __init xfrm_user_init(void)
2990{
2991 int rv;
2992
2993 printk(KERN_INFO "Initializing XFRM netlink socket\n");
2994
2995 rv = register_pernet_subsys(&xfrm_user_net_ops);
2996 if (rv < 0)
2997 return rv;
2998 rv = xfrm_register_km(&netlink_mgr);
2999 if (rv < 0)
3000 unregister_pernet_subsys(&xfrm_user_net_ops);
3001 return rv;
3002}
3003
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004static void __exit xfrm_user_exit(void)
3005{
3006 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003007 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008}
3009
3010module_init(xfrm_user_init);
3011module_exit(xfrm_user_exit);
3012MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003013MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003014