blob: 44293b3fd6a1d1d4dc2e6ae47f0cdb91b2226834 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* xfrm_user.c: User interface to configure xfrm engine.
2 *
3 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
4 *
5 * Changes:
6 * Mitsuru KANDA @USAGI
7 * Kazunori MIYAZAWA @USAGI
8 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
9 * IPv6 support
Trent Jaegerdf718372005-12-13 23:12:27 -080010 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
Herbert Xu9409f382006-08-06 19:49:12 +100013#include <linux/crypto.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
15#include <linux/kernel.h>
16#include <linux/types.h>
17#include <linux/slab.h>
18#include <linux/socket.h>
19#include <linux/string.h>
20#include <linux/net.h>
21#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/pfkeyv2.h>
23#include <linux/ipsec.h>
24#include <linux/init.h>
25#include <linux/security.h>
26#include <net/sock.h>
27#include <net/xfrm.h>
Thomas Graf88fc2c82005-11-10 02:25:54 +010028#include <net/netlink.h>
Nicolas Dichtelfa6dd8a2011-01-11 08:04:12 +000029#include <net/ah.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <asm/uaccess.h>
Eric Dumazetdfd56b82011-12-10 09:48:31 +000031#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -070032#include <linux/in6.h>
33#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Herbert Xu1a6509d2008-01-28 19:37:29 -080035static inline int aead_len(struct xfrm_algo_aead *alg)
36{
37 return sizeof(*alg) + ((alg->alg_key_len + 7) / 8);
38}
39
Thomas Graf5424f322007-08-22 14:01:33 -070040static int verify_one_alg(struct nlattr **attrs, enum xfrm_attr_type_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
Thomas Graf5424f322007-08-22 14:01:33 -070042 struct nlattr *rt = attrs[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 struct xfrm_algo *algp;
44
45 if (!rt)
46 return 0;
47
Thomas Graf5424f322007-08-22 14:01:33 -070048 algp = nla_data(rt);
Eric Dumazet0f99be02008-01-08 23:39:06 -080049 if (nla_len(rt) < xfrm_alg_len(algp))
Herbert Xu31c26852005-05-19 12:39:49 -070050 return -EINVAL;
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 switch (type) {
53 case XFRMA_ALG_AUTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 case XFRMA_ALG_CRYPT:
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 case XFRMA_ALG_COMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 break;
57
58 default:
59 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070060 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
63 return 0;
64}
65
Martin Willi4447bb32009-11-25 00:29:52 +000066static int verify_auth_trunc(struct nlattr **attrs)
67{
68 struct nlattr *rt = attrs[XFRMA_ALG_AUTH_TRUNC];
69 struct xfrm_algo_auth *algp;
70
71 if (!rt)
72 return 0;
73
74 algp = nla_data(rt);
75 if (nla_len(rt) < xfrm_alg_auth_len(algp))
76 return -EINVAL;
77
78 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
79 return 0;
80}
81
Herbert Xu1a6509d2008-01-28 19:37:29 -080082static int verify_aead(struct nlattr **attrs)
83{
84 struct nlattr *rt = attrs[XFRMA_ALG_AEAD];
85 struct xfrm_algo_aead *algp;
86
87 if (!rt)
88 return 0;
89
90 algp = nla_data(rt);
91 if (nla_len(rt) < aead_len(algp))
92 return -EINVAL;
93
94 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
95 return 0;
96}
97
Thomas Graf5424f322007-08-22 14:01:33 -070098static void verify_one_addr(struct nlattr **attrs, enum xfrm_attr_type_t type,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070099 xfrm_address_t **addrp)
100{
Thomas Graf5424f322007-08-22 14:01:33 -0700101 struct nlattr *rt = attrs[type];
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700102
Thomas Grafcf5cb792007-08-22 13:59:04 -0700103 if (rt && addrp)
Thomas Graf5424f322007-08-22 14:01:33 -0700104 *addrp = nla_data(rt);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700105}
Trent Jaegerdf718372005-12-13 23:12:27 -0800106
Thomas Graf5424f322007-08-22 14:01:33 -0700107static inline int verify_sec_ctx_len(struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -0800108{
Thomas Graf5424f322007-08-22 14:01:33 -0700109 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -0800110 struct xfrm_user_sec_ctx *uctx;
Trent Jaegerdf718372005-12-13 23:12:27 -0800111
112 if (!rt)
113 return 0;
114
Thomas Graf5424f322007-08-22 14:01:33 -0700115 uctx = nla_data(rt);
Thomas Grafcf5cb792007-08-22 13:59:04 -0700116 if (uctx->len != (sizeof(struct xfrm_user_sec_ctx) + uctx->ctx_len))
Trent Jaegerdf718372005-12-13 23:12:27 -0800117 return -EINVAL;
118
119 return 0;
120}
121
Steffen Klassertd8647b72011-03-08 00:10:27 +0000122static inline int verify_replay(struct xfrm_usersa_info *p,
123 struct nlattr **attrs)
124{
125 struct nlattr *rt = attrs[XFRMA_REPLAY_ESN_VAL];
126
Steffen Klassert7833aa02011-04-25 19:41:21 +0000127 if ((p->flags & XFRM_STATE_ESN) && !rt)
128 return -EINVAL;
129
Steffen Klassertd8647b72011-03-08 00:10:27 +0000130 if (!rt)
131 return 0;
132
Steffen Klassert02aadf72011-03-28 19:48:09 +0000133 if (p->id.proto != IPPROTO_ESP)
134 return -EINVAL;
135
Steffen Klassertd8647b72011-03-08 00:10:27 +0000136 if (p->replay_window != 0)
137 return -EINVAL;
138
139 return 0;
140}
Trent Jaegerdf718372005-12-13 23:12:27 -0800141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142static int verify_newsa_info(struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700143 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144{
145 int err;
146
147 err = -EINVAL;
148 switch (p->family) {
149 case AF_INET:
150 break;
151
152 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000153#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 break;
155#else
156 err = -EAFNOSUPPORT;
157 goto out;
158#endif
159
160 default:
161 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164 err = -EINVAL;
165 switch (p->id.proto) {
166 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000167 if ((!attrs[XFRMA_ALG_AUTH] &&
168 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800169 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700170 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000171 attrs[XFRMA_ALG_COMP] ||
172 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 goto out;
174 break;
175
176 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800177 if (attrs[XFRMA_ALG_COMP])
178 goto out;
179 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000180 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800181 !attrs[XFRMA_ALG_CRYPT] &&
182 !attrs[XFRMA_ALG_AEAD])
183 goto out;
184 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000185 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800186 attrs[XFRMA_ALG_CRYPT]) &&
187 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000189 if (attrs[XFRMA_TFCPAD] &&
190 p->mode != XFRM_MODE_TUNNEL)
191 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 break;
193
194 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700195 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800196 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700197 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000198 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000199 attrs[XFRMA_ALG_CRYPT] ||
200 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 goto out;
202 break;
203
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000204#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700205 case IPPROTO_DSTOPTS:
206 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700207 if (attrs[XFRMA_ALG_COMP] ||
208 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000209 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800210 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700211 attrs[XFRMA_ALG_CRYPT] ||
212 attrs[XFRMA_ENCAP] ||
213 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000214 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700215 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700216 goto out;
217 break;
218#endif
219
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220 default:
221 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700222 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Herbert Xu1a6509d2008-01-28 19:37:29 -0800224 if ((err = verify_aead(attrs)))
225 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000226 if ((err = verify_auth_trunc(attrs)))
227 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700228 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700230 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700232 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700234 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800235 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000236 if ((err = verify_replay(p, attrs)))
237 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
239 err = -EINVAL;
240 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700241 case XFRM_MODE_TRANSPORT:
242 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700243 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a694522006-10-03 23:47:05 -0700244 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 break;
246
247 default:
248 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 err = 0;
252
253out:
254 return err;
255}
256
257static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800258 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700259 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 struct xfrm_algo *p, *ualg;
262 struct xfrm_algo_desc *algo;
263
264 if (!rta)
265 return 0;
266
Thomas Graf5424f322007-08-22 14:01:33 -0700267 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
269 algo = get_byname(ualg->alg_name, 1);
270 if (!algo)
271 return -ENOSYS;
272 *props = algo->desc.sadb_alg_id;
273
Eric Dumazet0f99be02008-01-08 23:39:06 -0800274 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 if (!p)
276 return -ENOMEM;
277
Herbert Xu04ff1262006-08-13 08:50:00 +1000278 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 *algpp = p;
280 return 0;
281}
282
Martin Willi4447bb32009-11-25 00:29:52 +0000283static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
284 struct nlattr *rta)
285{
286 struct xfrm_algo *ualg;
287 struct xfrm_algo_auth *p;
288 struct xfrm_algo_desc *algo;
289
290 if (!rta)
291 return 0;
292
293 ualg = nla_data(rta);
294
295 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
296 if (!algo)
297 return -ENOSYS;
298 *props = algo->desc.sadb_alg_id;
299
300 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
301 if (!p)
302 return -ENOMEM;
303
304 strcpy(p->alg_name, algo->name);
305 p->alg_key_len = ualg->alg_key_len;
306 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
307 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
308
309 *algpp = p;
310 return 0;
311}
312
313static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
314 struct nlattr *rta)
315{
316 struct xfrm_algo_auth *p, *ualg;
317 struct xfrm_algo_desc *algo;
318
319 if (!rta)
320 return 0;
321
322 ualg = nla_data(rta);
323
324 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
325 if (!algo)
326 return -ENOSYS;
Nicolas Dichtelfa6dd8a2011-01-11 08:04:12 +0000327 if ((ualg->alg_trunc_len / 8) > MAX_AH_AUTH_LEN ||
328 ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000329 return -EINVAL;
330 *props = algo->desc.sadb_alg_id;
331
332 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
333 if (!p)
334 return -ENOMEM;
335
336 strcpy(p->alg_name, algo->name);
337 if (!p->alg_trunc_len)
338 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
339
340 *algpp = p;
341 return 0;
342}
343
Herbert Xu1a6509d2008-01-28 19:37:29 -0800344static int attach_aead(struct xfrm_algo_aead **algpp, u8 *props,
345 struct nlattr *rta)
346{
347 struct xfrm_algo_aead *p, *ualg;
348 struct xfrm_algo_desc *algo;
349
350 if (!rta)
351 return 0;
352
353 ualg = nla_data(rta);
354
355 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
356 if (!algo)
357 return -ENOSYS;
358 *props = algo->desc.sadb_alg_id;
359
360 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
361 if (!p)
362 return -ENOMEM;
363
364 strcpy(p->alg_name, algo->name);
365 *algpp = p;
366 return 0;
367}
368
Steffen Klasserte2b19122011-03-28 19:47:30 +0000369static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
370 struct nlattr *rp)
371{
372 struct xfrm_replay_state_esn *up;
373
374 if (!replay_esn || !rp)
375 return 0;
376
377 up = nla_data(rp);
378
379 if (xfrm_replay_state_esn_len(replay_esn) !=
380 xfrm_replay_state_esn_len(up))
381 return -EINVAL;
382
383 return 0;
384}
385
Steffen Klassertd8647b72011-03-08 00:10:27 +0000386static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
387 struct xfrm_replay_state_esn **preplay_esn,
388 struct nlattr *rta)
389{
390 struct xfrm_replay_state_esn *p, *pp, *up;
391
392 if (!rta)
393 return 0;
394
395 up = nla_data(rta);
396
397 p = kmemdup(up, xfrm_replay_state_esn_len(up), GFP_KERNEL);
398 if (!p)
399 return -ENOMEM;
400
401 pp = kmemdup(up, xfrm_replay_state_esn_len(up), GFP_KERNEL);
402 if (!pp) {
403 kfree(p);
404 return -ENOMEM;
405 }
406
407 *replay_esn = p;
408 *preplay_esn = pp;
409
410 return 0;
411}
412
Joy Latten661697f2007-04-13 16:14:35 -0700413static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800414{
Trent Jaegerdf718372005-12-13 23:12:27 -0800415 int len = 0;
416
417 if (xfrm_ctx) {
418 len += sizeof(struct xfrm_user_sec_ctx);
419 len += xfrm_ctx->ctx_len;
420 }
421 return len;
422}
423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
425{
426 memcpy(&x->id, &p->id, sizeof(x->id));
427 memcpy(&x->sel, &p->sel, sizeof(x->sel));
428 memcpy(&x->lft, &p->lft, sizeof(x->lft));
429 x->props.mode = p->mode;
430 x->props.replay_window = p->replay_window;
431 x->props.reqid = p->reqid;
432 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700433 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700435
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700436 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700437 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438}
439
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800440/*
441 * someday when pfkey also has support, we could have the code
442 * somehow made shareable and move it to xfrm_state.c - JHS
443 *
444*/
Thomas Graf5424f322007-08-22 14:01:33 -0700445static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800446{
Thomas Graf5424f322007-08-22 14:01:33 -0700447 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +0000448 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -0700449 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
450 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
451 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800452
Steffen Klassertd8647b72011-03-08 00:10:27 +0000453 if (re) {
454 struct xfrm_replay_state_esn *replay_esn;
455 replay_esn = nla_data(re);
456 memcpy(x->replay_esn, replay_esn,
457 xfrm_replay_state_esn_len(replay_esn));
458 memcpy(x->preplay_esn, replay_esn,
459 xfrm_replay_state_esn_len(replay_esn));
460 }
461
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800462 if (rp) {
463 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700464 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800465 memcpy(&x->replay, replay, sizeof(*replay));
466 memcpy(&x->preplay, replay, sizeof(*replay));
467 }
468
469 if (lt) {
470 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700471 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800472 x->curlft.bytes = ltime->bytes;
473 x->curlft.packets = ltime->packets;
474 x->curlft.add_time = ltime->add_time;
475 x->curlft.use_time = ltime->use_time;
476 }
477
Thomas Grafcf5cb792007-08-22 13:59:04 -0700478 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700479 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800480
Thomas Grafcf5cb792007-08-22 13:59:04 -0700481 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700482 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800483}
484
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800485static struct xfrm_state *xfrm_state_construct(struct net *net,
486 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700487 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 int *errp)
489{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800490 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 int err = -ENOMEM;
492
493 if (!x)
494 goto error_no_put;
495
496 copy_from_user_state(x, p);
497
Herbert Xu1a6509d2008-01-28 19:37:29 -0800498 if ((err = attach_aead(&x->aead, &x->props.ealgo,
499 attrs[XFRMA_ALG_AEAD])))
500 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000501 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
502 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000504 if (!x->props.aalgo) {
505 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
506 attrs[XFRMA_ALG_AUTH])))
507 goto error;
508 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 if ((err = attach_one_algo(&x->ealg, &x->props.ealgo,
510 xfrm_ealg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700511 attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 goto error;
513 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
514 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700515 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700517
518 if (attrs[XFRMA_ENCAP]) {
519 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
520 sizeof(*x->encap), GFP_KERNEL);
521 if (x->encap == NULL)
522 goto error;
523 }
524
Martin Willi35d28562010-12-08 04:37:49 +0000525 if (attrs[XFRMA_TFCPAD])
526 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
527
Thomas Graffd211502007-09-06 03:28:08 -0700528 if (attrs[XFRMA_COADDR]) {
529 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
530 sizeof(*x->coaddr), GFP_KERNEL);
531 if (x->coaddr == NULL)
532 goto error;
533 }
534
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000535 xfrm_mark_get(attrs, &x->mark);
536
Wei Yongjuna454f0c2011-03-21 18:08:28 -0700537 err = __xfrm_init_state(x, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 if (err)
539 goto error;
540
Thomas Graffd211502007-09-06 03:28:08 -0700541 if (attrs[XFRMA_SEC_CTX] &&
542 security_xfrm_state_alloc(x, nla_data(attrs[XFRMA_SEC_CTX])))
Trent Jaegerdf718372005-12-13 23:12:27 -0800543 goto error;
544
Steffen Klassertd8647b72011-03-08 00:10:27 +0000545 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
546 attrs[XFRMA_REPLAY_ESN_VAL])))
547 goto error;
548
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800550 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800551 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800552 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800553
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000554 if ((err = xfrm_init_replay(x)))
555 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800556
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000557 /* override default values from above */
Thomas Graf5424f322007-08-22 14:01:33 -0700558 xfrm_update_ae_params(x, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 return x;
561
562error:
563 x->km.state = XFRM_STATE_DEAD;
564 xfrm_state_put(x);
565error_no_put:
566 *errp = err;
567 return NULL;
568}
569
Christoph Hellwig22e70052007-01-02 15:22:30 -0800570static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700571 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800573 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700574 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 struct xfrm_state *x;
576 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700577 struct km_event c;
Patrick McHardyc53fa1e2011-03-03 10:55:40 -0800578 uid_t loginuid = audit_get_loginuid(current);
579 u32 sessionid = audit_get_sessionid(current);
580 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Thomas Graf35a7aa02007-08-22 14:00:40 -0700582 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 if (err)
584 return err;
585
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800586 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (!x)
588 return err;
589
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700590 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
592 err = xfrm_state_add(x);
593 else
594 err = xfrm_state_update(x);
595
Patrick McHardyc53fa1e2011-03-03 10:55:40 -0800596 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -0400597 xfrm_audit_state_add(x, err ? 0 : 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -0600598
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 if (err < 0) {
600 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800601 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700602 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 }
604
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700605 c.seq = nlh->nlmsg_seq;
606 c.pid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700607 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700608
609 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700610out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700611 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 return err;
613}
614
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800615static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
616 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700617 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700618 int *errp)
619{
620 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000621 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700622 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000623 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700624
625 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
626 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000627 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700628 } else {
629 xfrm_address_t *saddr = NULL;
630
Thomas Graf35a7aa02007-08-22 14:00:40 -0700631 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700632 if (!saddr) {
633 err = -EINVAL;
634 goto out;
635 }
636
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800637 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000638 x = xfrm_state_lookup_byaddr(net, mark,
639 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800640 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700641 }
642
643 out:
644 if (!x && errp)
645 *errp = err;
646 return x;
647}
648
Christoph Hellwig22e70052007-01-02 15:22:30 -0800649static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700650 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800652 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700654 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700655 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700656 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -0800657 uid_t loginuid = audit_get_loginuid(current);
658 u32 sessionid = audit_get_sessionid(current);
659 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800661 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700663 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
David S. Miller6f68dc32006-06-08 23:58:52 -0700665 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700666 goto out;
667
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700669 err = -EPERM;
670 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 }
672
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700673 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600674
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700675 if (err < 0)
676 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700677
678 c.seq = nlh->nlmsg_seq;
679 c.pid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700680 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700681 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700683out:
Patrick McHardyc53fa1e2011-03-03 10:55:40 -0800684 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -0400685 xfrm_audit_state_delete(x, err ? 0 : 1, loginuid, sessionid, sid);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700686 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700687 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688}
689
690static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
691{
692 memcpy(&p->id, &x->id, sizeof(p->id));
693 memcpy(&p->sel, &x->sel, sizeof(p->sel));
694 memcpy(&p->lft, &x->lft, sizeof(p->lft));
695 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
696 memcpy(&p->stats, &x->stats, sizeof(p->stats));
David S. Miller54489c142006-10-27 15:29:47 -0700697 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 p->mode = x->props.mode;
699 p->replay_window = x->props.replay_window;
700 p->reqid = x->props.reqid;
701 p->family = x->props.family;
702 p->flags = x->props.flags;
703 p->seq = x->km.seq;
704}
705
706struct xfrm_dump_info {
707 struct sk_buff *in_skb;
708 struct sk_buff *out_skb;
709 u32 nlmsg_seq;
710 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711};
712
Thomas Grafc0144be2007-08-22 13:55:43 -0700713static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
714{
Thomas Grafc0144be2007-08-22 13:55:43 -0700715 struct xfrm_user_sec_ctx *uctx;
716 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700717 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700718
719 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
720 if (attr == NULL)
721 return -EMSGSIZE;
722
723 uctx = nla_data(attr);
724 uctx->exttype = XFRMA_SEC_CTX;
725 uctx->len = ctx_size;
726 uctx->ctx_doi = s->ctx_doi;
727 uctx->ctx_alg = s->ctx_alg;
728 uctx->ctx_len = s->ctx_len;
729 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
730
731 return 0;
732}
733
Martin Willi4447bb32009-11-25 00:29:52 +0000734static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
735{
736 struct xfrm_algo *algo;
737 struct nlattr *nla;
738
739 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
740 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
741 if (!nla)
742 return -EMSGSIZE;
743
744 algo = nla_data(nla);
745 strcpy(algo->alg_name, auth->alg_name);
746 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
747 algo->alg_key_len = auth->alg_key_len;
748
749 return 0;
750}
751
Herbert Xu68325d32007-10-09 13:30:57 -0700752/* Don't change this without updating xfrm_sa_len! */
753static int copy_to_user_state_extra(struct xfrm_state *x,
754 struct xfrm_usersa_info *p,
755 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 copy_to_user_state(x, p);
758
David S. Millerd0fde792012-03-29 04:02:26 -0400759 if (x->coaddr &&
760 nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr))
761 goto nla_put_failure;
Herbert Xu050f0092007-10-09 13:31:47 -0700762
David S. Millerd0fde792012-03-29 04:02:26 -0400763 if (x->lastused &&
764 nla_put_u64(skb, XFRMA_LASTUSED, x->lastused))
765 goto nla_put_failure;
Herbert Xu050f0092007-10-09 13:31:47 -0700766
David S. Millerd0fde792012-03-29 04:02:26 -0400767 if (x->aead &&
768 nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead))
769 goto nla_put_failure;
Martin Willi4447bb32009-11-25 00:29:52 +0000770
David S. Millerd0fde792012-03-29 04:02:26 -0400771 if (x->aalg &&
772 (copy_to_user_auth(x->aalg, skb) ||
773 nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
774 xfrm_alg_auth_len(x->aalg), x->aalg)))
775 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776
David S. Millerd0fde792012-03-29 04:02:26 -0400777 if (x->ealg &&
778 nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg))
779 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
David S. Millerd0fde792012-03-29 04:02:26 -0400781 if (x->calg &&
782 nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg))
783 goto nla_put_failure;
784
785 if (x->encap &&
786 nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap))
787 goto nla_put_failure;
788
789 if (x->tfcpad &&
790 nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad))
791 goto nla_put_failure;
Martin Willi35d28562010-12-08 04:37:49 +0000792
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000793 if (xfrm_mark_put(skb, &x->mark))
794 goto nla_put_failure;
795
David S. Millerd0fde792012-03-29 04:02:26 -0400796 if (x->replay_esn &&
797 nla_put(skb, XFRMA_REPLAY_ESN_VAL,
798 xfrm_replay_state_esn_len(x->replay_esn),
799 x->replay_esn))
800 goto nla_put_failure;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000801
David S. Millerd0fde792012-03-29 04:02:26 -0400802 if (x->security && copy_sec_ctx(x->security, skb))
Thomas Grafc0144be2007-08-22 13:55:43 -0700803 goto nla_put_failure;
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700804
Herbert Xu68325d32007-10-09 13:30:57 -0700805 return 0;
806
807nla_put_failure:
808 return -EMSGSIZE;
809}
810
811static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
812{
813 struct xfrm_dump_info *sp = ptr;
814 struct sk_buff *in_skb = sp->in_skb;
815 struct sk_buff *skb = sp->out_skb;
816 struct xfrm_usersa_info *p;
817 struct nlmsghdr *nlh;
818 int err;
819
Herbert Xu68325d32007-10-09 13:30:57 -0700820 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).pid, sp->nlmsg_seq,
821 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
822 if (nlh == NULL)
823 return -EMSGSIZE;
824
825 p = nlmsg_data(nlh);
826
827 err = copy_to_user_state_extra(x, p, skb);
828 if (err)
829 goto nla_put_failure;
830
Thomas Graf98250692007-08-22 12:47:26 -0700831 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 return 0;
833
Thomas Grafc0144be2007-08-22 13:55:43 -0700834nla_put_failure:
Thomas Graf98250692007-08-22 12:47:26 -0700835 nlmsg_cancel(skb, nlh);
Herbert Xu68325d32007-10-09 13:30:57 -0700836 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837}
838
Timo Teras4c563f72008-02-28 21:31:08 -0800839static int xfrm_dump_sa_done(struct netlink_callback *cb)
840{
841 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
842 xfrm_state_walk_done(walk);
843 return 0;
844}
845
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
847{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800848 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800849 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 struct xfrm_dump_info info;
851
Timo Teras4c563f72008-02-28 21:31:08 -0800852 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
853 sizeof(cb->args) - sizeof(cb->args[0]));
854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 info.in_skb = cb->skb;
856 info.out_skb = skb;
857 info.nlmsg_seq = cb->nlh->nlmsg_seq;
858 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800859
860 if (!cb->args[0]) {
861 cb->args[0] = 1;
862 xfrm_state_walk_init(walk, 0);
863 }
864
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800865 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867 return skb->len;
868}
869
870static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
871 struct xfrm_state *x, u32 seq)
872{
873 struct xfrm_dump_info info;
874 struct sk_buff *skb;
875
Thomas Graf7deb2262007-08-22 13:57:39 -0700876 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 if (!skb)
878 return ERR_PTR(-ENOMEM);
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 info.in_skb = in_skb;
881 info.out_skb = skb;
882 info.nlmsg_seq = seq;
883 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
885 if (dump_one_state(x, 0, &info)) {
886 kfree_skb(skb);
887 return NULL;
888 }
889
890 return skb;
891}
892
Thomas Graf7deb2262007-08-22 13:57:39 -0700893static inline size_t xfrm_spdinfo_msgsize(void)
894{
895 return NLMSG_ALIGN(4)
896 + nla_total_size(sizeof(struct xfrmu_spdinfo))
897 + nla_total_size(sizeof(struct xfrmu_spdhinfo));
898}
899
Alexey Dobriyane0710412010-01-23 13:37:10 +0000900static int build_spdinfo(struct sk_buff *skb, struct net *net,
901 u32 pid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700902{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700903 struct xfrmk_spdinfo si;
904 struct xfrmu_spdinfo spc;
905 struct xfrmu_spdhinfo sph;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700906 struct nlmsghdr *nlh;
907 u32 *f;
908
909 nlh = nlmsg_put(skb, pid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300910 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700911 return -EMSGSIZE;
912
913 f = nlmsg_data(nlh);
914 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +0000915 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700916 spc.incnt = si.incnt;
917 spc.outcnt = si.outcnt;
918 spc.fwdcnt = si.fwdcnt;
919 spc.inscnt = si.inscnt;
920 spc.outscnt = si.outscnt;
921 spc.fwdscnt = si.fwdscnt;
922 sph.spdhcnt = si.spdhcnt;
923 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700924
David S. Millerd0fde792012-03-29 04:02:26 -0400925 if (nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc) ||
926 nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph))
927 goto nla_put_failure;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700928
929 return nlmsg_end(skb, nlh);
930
931nla_put_failure:
932 nlmsg_cancel(skb, nlh);
933 return -EMSGSIZE;
934}
935
936static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700937 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700938{
Alexey Dobriyana6483b72008-11-25 17:38:20 -0800939 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700940 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -0700941 u32 *flags = nlmsg_data(nlh);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700942 u32 spid = NETLINK_CB(skb).pid;
943 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700944
Thomas Graf7deb2262007-08-22 13:57:39 -0700945 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700946 if (r_skb == NULL)
947 return -ENOMEM;
948
Alexey Dobriyane0710412010-01-23 13:37:10 +0000949 if (build_spdinfo(r_skb, net, spid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700950 BUG();
951
Alexey Dobriyana6483b72008-11-25 17:38:20 -0800952 return nlmsg_unicast(net->xfrm.nlsk, r_skb, spid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700953}
954
Thomas Graf7deb2262007-08-22 13:57:39 -0700955static inline size_t xfrm_sadinfo_msgsize(void)
956{
957 return NLMSG_ALIGN(4)
958 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
959 + nla_total_size(4); /* XFRMA_SAD_CNT */
960}
961
Alexey Dobriyane0710412010-01-23 13:37:10 +0000962static int build_sadinfo(struct sk_buff *skb, struct net *net,
963 u32 pid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700964{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -0700965 struct xfrmk_sadinfo si;
966 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700967 struct nlmsghdr *nlh;
968 u32 *f;
969
970 nlh = nlmsg_put(skb, pid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300971 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700972 return -EMSGSIZE;
973
974 f = nlmsg_data(nlh);
975 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +0000976 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700977
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -0700978 sh.sadhmcnt = si.sadhmcnt;
979 sh.sadhcnt = si.sadhcnt;
980
David S. Millerd0fde792012-03-29 04:02:26 -0400981 if (nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt) ||
982 nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh))
983 goto nla_put_failure;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700984
985 return nlmsg_end(skb, nlh);
986
987nla_put_failure:
988 nlmsg_cancel(skb, nlh);
989 return -EMSGSIZE;
990}
991
992static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700993 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700994{
Alexey Dobriyana6483b72008-11-25 17:38:20 -0800995 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700996 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -0700997 u32 *flags = nlmsg_data(nlh);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -0700998 u32 spid = NETLINK_CB(skb).pid;
999 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001000
Thomas Graf7deb2262007-08-22 13:57:39 -07001001 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001002 if (r_skb == NULL)
1003 return -ENOMEM;
1004
Alexey Dobriyane0710412010-01-23 13:37:10 +00001005 if (build_sadinfo(r_skb, net, spid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001006 BUG();
1007
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001008 return nlmsg_unicast(net->xfrm.nlsk, r_skb, spid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001009}
1010
Christoph Hellwig22e70052007-01-02 15:22:30 -08001011static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001012 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001014 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001015 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 struct xfrm_state *x;
1017 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001018 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001020 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021 if (x == NULL)
1022 goto out_noput;
1023
1024 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1025 if (IS_ERR(resp_skb)) {
1026 err = PTR_ERR(resp_skb);
1027 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001028 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 }
1030 xfrm_state_put(x);
1031out_noput:
1032 return err;
1033}
1034
1035static int verify_userspi_info(struct xfrm_userspi_info *p)
1036{
1037 switch (p->info.id.proto) {
1038 case IPPROTO_AH:
1039 case IPPROTO_ESP:
1040 break;
1041
1042 case IPPROTO_COMP:
1043 /* IPCOMP spi is 16-bits. */
1044 if (p->max >= 0x10000)
1045 return -EINVAL;
1046 break;
1047
1048 default:
1049 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051
1052 if (p->min > p->max)
1053 return -EINVAL;
1054
1055 return 0;
1056}
1057
Christoph Hellwig22e70052007-01-02 15:22:30 -08001058static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001059 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001061 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 struct xfrm_state *x;
1063 struct xfrm_userspi_info *p;
1064 struct sk_buff *resp_skb;
1065 xfrm_address_t *daddr;
1066 int family;
1067 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001068 u32 mark;
1069 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Thomas Graf7b67c852007-08-22 13:53:52 -07001071 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 err = verify_userspi_info(p);
1073 if (err)
1074 goto out_noput;
1075
1076 family = p->info.family;
1077 daddr = &p->info.id.daddr;
1078
1079 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001080
1081 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001083 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 if (x && xfrm_addr_cmp(&x->id.daddr, daddr, family)) {
1085 xfrm_state_put(x);
1086 x = NULL;
1087 }
1088 }
1089
1090 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001091 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 p->info.id.proto, daddr,
1093 &p->info.saddr, 1,
1094 family);
1095 err = -ENOENT;
1096 if (x == NULL)
1097 goto out_noput;
1098
Herbert Xu658b2192007-10-09 13:29:52 -07001099 err = xfrm_alloc_spi(x, p->min, p->max);
1100 if (err)
1101 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102
Herbert Xu658b2192007-10-09 13:29:52 -07001103 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 if (IS_ERR(resp_skb)) {
1105 err = PTR_ERR(resp_skb);
1106 goto out;
1107 }
1108
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001109 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110
1111out:
1112 xfrm_state_put(x);
1113out_noput:
1114 return err;
1115}
1116
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001117static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118{
1119 switch (dir) {
1120 case XFRM_POLICY_IN:
1121 case XFRM_POLICY_OUT:
1122 case XFRM_POLICY_FWD:
1123 break;
1124
1125 default:
1126 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
1129 return 0;
1130}
1131
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001132static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001133{
1134 switch (type) {
1135 case XFRM_POLICY_TYPE_MAIN:
1136#ifdef CONFIG_XFRM_SUB_POLICY
1137 case XFRM_POLICY_TYPE_SUB:
1138#endif
1139 break;
1140
1141 default:
1142 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001143 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001144
1145 return 0;
1146}
1147
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1149{
1150 switch (p->share) {
1151 case XFRM_SHARE_ANY:
1152 case XFRM_SHARE_SESSION:
1153 case XFRM_SHARE_USER:
1154 case XFRM_SHARE_UNIQUE:
1155 break;
1156
1157 default:
1158 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160
1161 switch (p->action) {
1162 case XFRM_POLICY_ALLOW:
1163 case XFRM_POLICY_BLOCK:
1164 break;
1165
1166 default:
1167 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001168 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169
1170 switch (p->sel.family) {
1171 case AF_INET:
1172 break;
1173
1174 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001175#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 break;
1177#else
1178 return -EAFNOSUPPORT;
1179#endif
1180
1181 default:
1182 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001183 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 return verify_policy_dir(p->dir);
1186}
1187
Thomas Graf5424f322007-08-22 14:01:33 -07001188static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001189{
Thomas Graf5424f322007-08-22 14:01:33 -07001190 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001191 struct xfrm_user_sec_ctx *uctx;
1192
1193 if (!rt)
1194 return 0;
1195
Thomas Graf5424f322007-08-22 14:01:33 -07001196 uctx = nla_data(rt);
Paul Moore03e1ad72008-04-12 19:07:52 -07001197 return security_xfrm_policy_alloc(&pol->security, uctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001198}
1199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1201 int nr)
1202{
1203 int i;
1204
1205 xp->xfrm_nr = nr;
1206 for (i = 0; i < nr; i++, ut++) {
1207 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1208
1209 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1210 memcpy(&t->saddr, &ut->saddr,
1211 sizeof(xfrm_address_t));
1212 t->reqid = ut->reqid;
1213 t->mode = ut->mode;
1214 t->share = ut->share;
1215 t->optional = ut->optional;
1216 t->aalgos = ut->aalgos;
1217 t->ealgos = ut->ealgos;
1218 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001219 /* If all masks are ~0, then we allow all algorithms. */
1220 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001221 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 }
1223}
1224
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001225static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1226{
1227 int i;
1228
1229 if (nr > XFRM_MAX_DEPTH)
1230 return -EINVAL;
1231
1232 for (i = 0; i < nr; i++) {
1233 /* We never validated the ut->family value, so many
1234 * applications simply leave it at zero. The check was
1235 * never made and ut->family was ignored because all
1236 * templates could be assumed to have the same family as
1237 * the policy itself. Now that we will have ipv4-in-ipv6
1238 * and ipv6-in-ipv4 tunnels, this is no longer true.
1239 */
1240 if (!ut[i].family)
1241 ut[i].family = family;
1242
1243 switch (ut[i].family) {
1244 case AF_INET:
1245 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001246#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001247 case AF_INET6:
1248 break;
1249#endif
1250 default:
1251 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001252 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001253 }
1254
1255 return 0;
1256}
1257
Thomas Graf5424f322007-08-22 14:01:33 -07001258static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Thomas Graf5424f322007-08-22 14:01:33 -07001260 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
1262 if (!rt) {
1263 pol->xfrm_nr = 0;
1264 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001265 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1266 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001267 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001269 err = validate_tmpl(nr, utmpl, pol->family);
1270 if (err)
1271 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
Thomas Graf5424f322007-08-22 14:01:33 -07001273 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 }
1275 return 0;
1276}
1277
Thomas Graf5424f322007-08-22 14:01:33 -07001278static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001279{
Thomas Graf5424f322007-08-22 14:01:33 -07001280 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001281 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001282 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001283 int err;
1284
1285 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001286 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001287 type = upt->type;
1288 }
1289
1290 err = verify_policy_type(type);
1291 if (err)
1292 return err;
1293
1294 *tp = type;
1295 return 0;
1296}
1297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1299{
1300 xp->priority = p->priority;
1301 xp->index = p->index;
1302 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1303 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1304 xp->action = p->action;
1305 xp->flags = p->flags;
1306 xp->family = p->sel.family;
1307 /* XXX xp->share = p->share; */
1308}
1309
1310static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1311{
1312 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1313 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1314 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1315 p->priority = xp->priority;
1316 p->index = xp->index;
1317 p->sel.family = xp->family;
1318 p->dir = dir;
1319 p->action = xp->action;
1320 p->flags = xp->flags;
1321 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1322}
1323
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001324static 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 -07001325{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001326 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 int err;
1328
1329 if (!xp) {
1330 *errp = -ENOMEM;
1331 return NULL;
1332 }
1333
1334 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001335
Thomas Graf35a7aa02007-08-22 14:00:40 -07001336 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001337 if (err)
1338 goto error;
1339
Thomas Graf35a7aa02007-08-22 14:00:40 -07001340 if (!(err = copy_from_user_tmpl(xp, attrs)))
1341 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001342 if (err)
1343 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001345 xfrm_mark_get(attrs, &xp->mark);
1346
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001348 error:
1349 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001350 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001351 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001352 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353}
1354
Christoph Hellwig22e70052007-01-02 15:22:30 -08001355static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001356 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001358 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001359 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001361 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 int err;
1363 int excl;
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001364 uid_t loginuid = audit_get_loginuid(current);
1365 u32 sessionid = audit_get_sessionid(current);
1366 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 err = verify_newpolicy_info(p);
1369 if (err)
1370 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001371 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001372 if (err)
1373 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001375 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 if (!xp)
1377 return err;
1378
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001379 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001380 * Aha! this is anti-netlink really i.e more pfkey derived
1381 * in netlink excl is a flag and you wouldnt need
1382 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1384 err = xfrm_policy_insert(p->dir, xp, excl);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001385 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -04001386 xfrm_audit_policy_add(xp, err ? 0 : 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001387
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001389 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 kfree(xp);
1391 return err;
1392 }
1393
Herbert Xuf60f6b82005-06-18 22:44:37 -07001394 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001395 c.seq = nlh->nlmsg_seq;
1396 c.pid = nlh->nlmsg_pid;
1397 km_policy_notify(xp, p->dir, &c);
1398
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 xfrm_pol_put(xp);
1400
1401 return 0;
1402}
1403
1404static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1405{
1406 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1407 int i;
1408
1409 if (xp->xfrm_nr == 0)
1410 return 0;
1411
1412 for (i = 0; i < xp->xfrm_nr; i++) {
1413 struct xfrm_user_tmpl *up = &vec[i];
1414 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1415
1416 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001417 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1419 up->reqid = kp->reqid;
1420 up->mode = kp->mode;
1421 up->share = kp->share;
1422 up->optional = kp->optional;
1423 up->aalgos = kp->aalgos;
1424 up->ealgos = kp->ealgos;
1425 up->calgos = kp->calgos;
1426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427
Thomas Grafc0144be2007-08-22 13:55:43 -07001428 return nla_put(skb, XFRMA_TMPL,
1429 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001430}
1431
Serge Hallyn0d681622006-07-24 23:30:44 -07001432static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1433{
1434 if (x->security) {
1435 return copy_sec_ctx(x->security, skb);
1436 }
1437 return 0;
1438}
1439
1440static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1441{
1442 if (xp->security) {
1443 return copy_sec_ctx(xp->security, skb);
1444 }
1445 return 0;
1446}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001447static inline size_t userpolicy_type_attrsize(void)
1448{
1449#ifdef CONFIG_XFRM_SUB_POLICY
1450 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1451#else
1452 return 0;
1453#endif
1454}
Serge Hallyn0d681622006-07-24 23:30:44 -07001455
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001456#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001457static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001458{
Thomas Grafc0144be2007-08-22 13:55:43 -07001459 struct xfrm_userpolicy_type upt = {
1460 .type = type,
1461 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001462
Thomas Grafc0144be2007-08-22 13:55:43 -07001463 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001464}
1465
1466#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001467static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001468{
1469 return 0;
1470}
1471#endif
1472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1474{
1475 struct xfrm_dump_info *sp = ptr;
1476 struct xfrm_userpolicy_info *p;
1477 struct sk_buff *in_skb = sp->in_skb;
1478 struct sk_buff *skb = sp->out_skb;
1479 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001481 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).pid, sp->nlmsg_seq,
1482 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1483 if (nlh == NULL)
1484 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485
Thomas Graf7b67c852007-08-22 13:53:52 -07001486 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 copy_to_user_policy(xp, p, dir);
1488 if (copy_to_user_tmpl(xp, skb) < 0)
1489 goto nlmsg_failure;
Trent Jaegerdf718372005-12-13 23:12:27 -08001490 if (copy_to_user_sec_ctx(xp, skb))
1491 goto nlmsg_failure;
Jamal Hadi Salim1459bb32006-11-20 16:51:22 -08001492 if (copy_to_user_policy_type(xp->type, skb) < 0)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001493 goto nlmsg_failure;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001494 if (xfrm_mark_put(skb, &xp->mark))
1495 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
Thomas Graf98250692007-08-22 12:47:26 -07001497 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 return 0;
1499
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001500nla_put_failure:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501nlmsg_failure:
Thomas Graf98250692007-08-22 12:47:26 -07001502 nlmsg_cancel(skb, nlh);
1503 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504}
1505
Timo Teras4c563f72008-02-28 21:31:08 -08001506static int xfrm_dump_policy_done(struct netlink_callback *cb)
1507{
1508 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
1509
1510 xfrm_policy_walk_done(walk);
1511 return 0;
1512}
1513
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1515{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001516 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001517 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518 struct xfrm_dump_info info;
1519
Timo Teras4c563f72008-02-28 21:31:08 -08001520 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) >
1521 sizeof(cb->args) - sizeof(cb->args[0]));
1522
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 info.in_skb = cb->skb;
1524 info.out_skb = skb;
1525 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1526 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001527
1528 if (!cb->args[0]) {
1529 cb->args[0] = 1;
1530 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1531 }
1532
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001533 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
1535 return skb->len;
1536}
1537
1538static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1539 struct xfrm_policy *xp,
1540 int dir, u32 seq)
1541{
1542 struct xfrm_dump_info info;
1543 struct sk_buff *skb;
1544
Thomas Graf7deb2262007-08-22 13:57:39 -07001545 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 if (!skb)
1547 return ERR_PTR(-ENOMEM);
1548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 info.in_skb = in_skb;
1550 info.out_skb = skb;
1551 info.nlmsg_seq = seq;
1552 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
1554 if (dump_one_policy(xp, dir, 0, &info) < 0) {
1555 kfree_skb(skb);
1556 return NULL;
1557 }
1558
1559 return skb;
1560}
1561
Christoph Hellwig22e70052007-01-02 15:22:30 -08001562static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001563 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001565 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 struct xfrm_policy *xp;
1567 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001568 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001570 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001572 struct xfrm_mark m;
1573 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
Thomas Graf7b67c852007-08-22 13:53:52 -07001575 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1577
Thomas Graf35a7aa02007-08-22 14:00:40 -07001578 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001579 if (err)
1580 return err;
1581
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 err = verify_policy_dir(p->dir);
1583 if (err)
1584 return err;
1585
1586 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001587 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001588 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001589 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001590 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001591
Thomas Graf35a7aa02007-08-22 14:00:40 -07001592 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001593 if (err)
1594 return err;
1595
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001596 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001597 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001598 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001599
Paul Moore03e1ad72008-04-12 19:07:52 -07001600 err = security_xfrm_policy_alloc(&ctx, uctx);
1601 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001602 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001603 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001604 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001605 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001606 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001607 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 if (xp == NULL)
1609 return -ENOENT;
1610
1611 if (!delete) {
1612 struct sk_buff *resp_skb;
1613
1614 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1615 if (IS_ERR(resp_skb)) {
1616 err = PTR_ERR(resp_skb);
1617 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001618 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Thomas Graf082a1ad2007-08-22 13:54:36 -07001619 NETLINK_CB(skb).pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001621 } else {
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001622 uid_t loginuid = audit_get_loginuid(current);
1623 u32 sessionid = audit_get_sessionid(current);
1624 u32 sid;
Eric Paris25323862008-04-18 10:09:25 -04001625
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001626 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -04001627 xfrm_audit_policy_delete(xp, err ? 0 : 1, loginuid, sessionid,
1628 sid);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001629
1630 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001631 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001632
Herbert Xue7443892005-06-18 22:44:18 -07001633 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001634 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001635 c.seq = nlh->nlmsg_seq;
1636 c.pid = nlh->nlmsg_pid;
1637 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 }
1639
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001640out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001641 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 return err;
1643}
1644
Christoph Hellwig22e70052007-01-02 15:22:30 -08001645static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001646 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001648 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001649 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001650 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten161a09e2006-11-27 13:11:54 -06001651 struct xfrm_audit audit_info;
Joy Latten4aa2e622007-06-04 19:05:57 -04001652 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001654 audit_info.loginuid = audit_get_loginuid(current);
1655 audit_info.sessionid = audit_get_sessionid(current);
1656 security_task_getsecid(current, &audit_info.secid);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001657 err = xfrm_state_flush(net, p->proto, &audit_info);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001658 if (err) {
1659 if (err == -ESRCH) /* empty table */
1660 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001661 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001662 }
Herbert Xubf088672005-06-18 22:44:00 -07001663 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001664 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001665 c.seq = nlh->nlmsg_seq;
1666 c.pid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001667 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001668 km_state_notify(NULL, &c);
1669
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 return 0;
1671}
1672
Steffen Klassertd8647b72011-03-08 00:10:27 +00001673static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001674{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001675 size_t replay_size = x->replay_esn ?
1676 xfrm_replay_state_esn_len(x->replay_esn) :
1677 sizeof(struct xfrm_replay_state);
1678
Thomas Graf7deb2262007-08-22 13:57:39 -07001679 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001680 + nla_total_size(replay_size)
Thomas Graf7deb2262007-08-22 13:57:39 -07001681 + nla_total_size(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001682 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001683 + nla_total_size(4) /* XFRM_AE_RTHR */
1684 + nla_total_size(4); /* XFRM_AE_ETHR */
1685}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001686
David S. Miller214e0052011-02-24 00:02:38 -05001687static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001688{
1689 struct xfrm_aevent_id *id;
1690 struct nlmsghdr *nlh;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001691
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001692 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
1693 if (nlh == NULL)
1694 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001695
Thomas Graf7b67c852007-08-22 13:53:52 -07001696 id = nlmsg_data(nlh);
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001697 memcpy(&id->sa_id.daddr, &x->id.daddr,sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001698 id->sa_id.spi = x->id.spi;
1699 id->sa_id.family = x->props.family;
1700 id->sa_id.proto = x->id.proto;
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001701 memcpy(&id->saddr, &x->props.saddr,sizeof(x->props.saddr));
1702 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001703 id->flags = c->data.aevent;
1704
David S. Millerd0fde792012-03-29 04:02:26 -04001705 if (x->replay_esn) {
1706 if (nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1707 xfrm_replay_state_esn_len(x->replay_esn),
1708 x->replay_esn))
1709 goto nla_put_failure;
1710 } else {
1711 if (nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1712 &x->replay))
1713 goto nla_put_failure;
1714 }
1715 if (nla_put(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft))
1716 goto nla_put_failure;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001717
David S. Millerd0fde792012-03-29 04:02:26 -04001718 if ((id->flags & XFRM_AE_RTHR) &&
1719 nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff))
1720 goto nla_put_failure;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001721
David S. Millerd0fde792012-03-29 04:02:26 -04001722 if ((id->flags & XFRM_AE_ETHR) &&
1723 nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1724 x->replay_maxage * 10 / HZ))
1725 goto nla_put_failure;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001726
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001727 if (xfrm_mark_put(skb, &x->mark))
1728 goto nla_put_failure;
1729
Thomas Graf98250692007-08-22 12:47:26 -07001730 return nlmsg_end(skb, nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001731
Thomas Grafc0144be2007-08-22 13:55:43 -07001732nla_put_failure:
Thomas Graf98250692007-08-22 12:47:26 -07001733 nlmsg_cancel(skb, nlh);
1734 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001735}
1736
Christoph Hellwig22e70052007-01-02 15:22:30 -08001737static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001738 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001739{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001740 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001741 struct xfrm_state *x;
1742 struct sk_buff *r_skb;
1743 int err;
1744 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001745 u32 mark;
1746 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001747 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001748 struct xfrm_usersa_id *id = &p->sa_id;
1749
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001750 mark = xfrm_mark_get(attrs, &m);
1751
1752 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001753 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001754 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001755
1756 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1757 if (r_skb == NULL) {
1758 xfrm_state_put(x);
1759 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001760 }
1761
1762 /*
1763 * XXX: is this lock really needed - none of the other
1764 * gets lock (the concern is things getting updated
1765 * while we are still reading) - jhs
1766 */
1767 spin_lock_bh(&x->lock);
1768 c.data.aevent = p->flags;
1769 c.seq = nlh->nlmsg_seq;
1770 c.pid = nlh->nlmsg_pid;
1771
1772 if (build_aevent(r_skb, x, &c) < 0)
1773 BUG();
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001774 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).pid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001775 spin_unlock_bh(&x->lock);
1776 xfrm_state_put(x);
1777 return err;
1778}
1779
Christoph Hellwig22e70052007-01-02 15:22:30 -08001780static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001781 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001782{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001783 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001784 struct xfrm_state *x;
1785 struct km_event c;
1786 int err = - EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001787 u32 mark = 0;
1788 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001789 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001790 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001791 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001792 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001793
Steffen Klassertd8647b72011-03-08 00:10:27 +00001794 if (!lt && !rp && !re)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001795 return err;
1796
1797 /* pedantic mode - thou shalt sayeth replaceth */
1798 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1799 return err;
1800
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001801 mark = xfrm_mark_get(attrs, &m);
1802
1803 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 -08001804 if (x == NULL)
1805 return -ESRCH;
1806
1807 if (x->km.state != XFRM_STATE_VALID)
1808 goto out;
1809
Steffen Klasserte2b19122011-03-28 19:47:30 +00001810 err = xfrm_replay_verify_len(x->replay_esn, rp);
1811 if (err)
1812 goto out;
1813
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001814 spin_lock_bh(&x->lock);
Thomas Graf35a7aa02007-08-22 14:00:40 -07001815 xfrm_update_ae_params(x, attrs);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001816 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001817
1818 c.event = nlh->nlmsg_type;
1819 c.seq = nlh->nlmsg_seq;
1820 c.pid = nlh->nlmsg_pid;
1821 c.data.aevent = XFRM_AE_CU;
1822 km_state_notify(x, &c);
1823 err = 0;
1824out:
1825 xfrm_state_put(x);
1826 return err;
1827}
1828
Christoph Hellwig22e70052007-01-02 15:22:30 -08001829static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001830 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001832 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001833 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001834 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001835 int err;
Joy Latten161a09e2006-11-27 13:11:54 -06001836 struct xfrm_audit audit_info;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001837
Thomas Graf35a7aa02007-08-22 14:00:40 -07001838 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001839 if (err)
1840 return err;
1841
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001842 audit_info.loginuid = audit_get_loginuid(current);
1843 audit_info.sessionid = audit_get_sessionid(current);
1844 security_task_getsecid(current, &audit_info.secid);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001845 err = xfrm_policy_flush(net, type, &audit_info);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001846 if (err) {
1847 if (err == -ESRCH) /* empty table */
1848 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001849 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001850 }
1851
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001852 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001853 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001854 c.seq = nlh->nlmsg_seq;
1855 c.pid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001856 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001857 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 return 0;
1859}
1860
Christoph Hellwig22e70052007-01-02 15:22:30 -08001861static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001862 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001863{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001864 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001865 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07001866 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001867 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001868 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001869 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001870 struct xfrm_mark m;
1871 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001872
Thomas Graf35a7aa02007-08-22 14:00:40 -07001873 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001874 if (err)
1875 return err;
1876
Timo Teräsc8bf4d02010-03-31 00:17:04 +00001877 err = verify_policy_dir(p->dir);
1878 if (err)
1879 return err;
1880
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001881 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001882 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001883 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001884 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001885 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001886
Thomas Graf35a7aa02007-08-22 14:00:40 -07001887 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001888 if (err)
1889 return err;
1890
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001891 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001892 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001893 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001894
Paul Moore03e1ad72008-04-12 19:07:52 -07001895 err = security_xfrm_policy_alloc(&ctx, uctx);
1896 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001897 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001898 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001899 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001900 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001901 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001902 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001903 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08001904 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07001905
Timo Teräsea2dea92010-03-31 00:17:05 +00001906 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001907 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001908
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001909 err = 0;
1910 if (up->hard) {
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001911 uid_t loginuid = audit_get_loginuid(current);
1912 u32 sessionid = audit_get_sessionid(current);
1913 u32 sid;
1914
1915 security_task_getsecid(current, &sid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001916 xfrm_policy_delete(xp, p->dir);
Eric Paris25323862008-04-18 10:09:25 -04001917 xfrm_audit_policy_delete(xp, 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001918
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001919 } else {
1920 // reset the timers here?
stephen hemminger62db5cf2010-05-12 06:37:06 +00001921 WARN(1, "Dont know what to do with soft policy expire\n");
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001922 }
1923 km_policy_expired(xp, p->dir, up->hard, current->pid);
1924
1925out:
1926 xfrm_pol_put(xp);
1927 return err;
1928}
1929
Christoph Hellwig22e70052007-01-02 15:22:30 -08001930static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001931 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001932{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001933 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001934 struct xfrm_state *x;
1935 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07001936 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001937 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001938 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00001939 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001940
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001941 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 -08001942
David S. Miller3a765aa2007-02-26 14:52:21 -08001943 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001944 if (x == NULL)
1945 return err;
1946
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001947 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08001948 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001949 if (x->km.state != XFRM_STATE_VALID)
1950 goto out;
1951 km_state_expired(x, ue->hard, current->pid);
1952
Joy Latten161a09e2006-11-27 13:11:54 -06001953 if (ue->hard) {
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001954 uid_t loginuid = audit_get_loginuid(current);
1955 u32 sessionid = audit_get_sessionid(current);
1956 u32 sid;
1957
1958 security_task_getsecid(current, &sid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001959 __xfrm_state_delete(x);
Eric Paris25323862008-04-18 10:09:25 -04001960 xfrm_audit_state_delete(x, 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001961 }
David S. Miller3a765aa2007-02-26 14:52:21 -08001962 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001963out:
1964 spin_unlock_bh(&x->lock);
1965 xfrm_state_put(x);
1966 return err;
1967}
1968
Christoph Hellwig22e70052007-01-02 15:22:30 -08001969static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001970 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001971{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001972 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001973 struct xfrm_policy *xp;
1974 struct xfrm_user_tmpl *ut;
1975 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07001976 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001977 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001978
Thomas Graf7b67c852007-08-22 13:53:52 -07001979 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001980 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001981 int err = -ENOMEM;
1982
1983 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08001984 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001985
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001986 xfrm_mark_get(attrs, &mark);
1987
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001988 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08001989 if (err)
1990 goto bad_policy;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001991
1992 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001993 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08001994 if (!xp)
1995 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08001996
1997 memcpy(&x->id, &ua->id, sizeof(ua->id));
1998 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
1999 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002000 xp->mark.m = x->mark.m = mark.m;
2001 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002002 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002003 /* extract the templates and for each call km_key */
2004 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2005 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2006 memcpy(&x->id, &t->id, sizeof(x->id));
2007 x->props.mode = t->mode;
2008 x->props.reqid = t->reqid;
2009 x->props.family = ut->family;
2010 t->aalgos = ua->aalgos;
2011 t->ealgos = ua->ealgos;
2012 t->calgos = ua->calgos;
2013 err = km_query(x, t, xp);
2014
2015 }
2016
2017 kfree(x);
2018 kfree(xp);
2019
2020 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002021
2022bad_policy:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002023 WARN(1, "BAD policy passed\n");
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002024free_state:
2025 kfree(x);
2026nomem:
2027 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002028}
2029
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002030#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002031static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002032 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002033 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002034{
Thomas Graf5424f322007-08-22 14:01:33 -07002035 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002036 struct xfrm_user_migrate *um;
2037 int i, num_migrate;
2038
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002039 if (k != NULL) {
2040 struct xfrm_user_kmaddress *uk;
2041
2042 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2043 memcpy(&k->local, &uk->local, sizeof(k->local));
2044 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2045 k->family = uk->family;
2046 k->reserved = uk->reserved;
2047 }
2048
Thomas Graf5424f322007-08-22 14:01:33 -07002049 um = nla_data(rt);
2050 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002051
2052 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2053 return -EINVAL;
2054
2055 for (i = 0; i < num_migrate; i++, um++, ma++) {
2056 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2057 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2058 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2059 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2060
2061 ma->proto = um->proto;
2062 ma->mode = um->mode;
2063 ma->reqid = um->reqid;
2064
2065 ma->old_family = um->old_family;
2066 ma->new_family = um->new_family;
2067 }
2068
2069 *num = i;
2070 return 0;
2071}
2072
2073static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002074 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002075{
Thomas Graf7b67c852007-08-22 13:53:52 -07002076 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002077 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002078 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002079 u8 type;
2080 int err;
2081 int n = 0;
2082
Thomas Graf35a7aa02007-08-22 14:00:40 -07002083 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002084 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002085
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002086 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2087
Thomas Graf5424f322007-08-22 14:01:33 -07002088 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002089 if (err)
2090 return err;
2091
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002092 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002093 if (err)
2094 return err;
2095
2096 if (!n)
2097 return 0;
2098
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002099 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002100
2101 return 0;
2102}
2103#else
2104static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002105 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002106{
2107 return -ENOPROTOOPT;
2108}
2109#endif
2110
2111#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002112static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002113{
2114 struct xfrm_user_migrate um;
2115
2116 memset(&um, 0, sizeof(um));
2117 um.proto = m->proto;
2118 um.mode = m->mode;
2119 um.reqid = m->reqid;
2120 um.old_family = m->old_family;
2121 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2122 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2123 um.new_family = m->new_family;
2124 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2125 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2126
Thomas Grafc0144be2007-08-22 13:55:43 -07002127 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002128}
2129
David S. Miller183cad12011-02-24 00:28:01 -05002130static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002131{
2132 struct xfrm_user_kmaddress uk;
2133
2134 memset(&uk, 0, sizeof(uk));
2135 uk.family = k->family;
2136 uk.reserved = k->reserved;
2137 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002138 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002139
2140 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2141}
2142
2143static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002144{
2145 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002146 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2147 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2148 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002149}
2150
David S. Miller183cad12011-02-24 00:28:01 -05002151static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2152 int num_migrate, const struct xfrm_kmaddress *k,
2153 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002154{
David S. Miller183cad12011-02-24 00:28:01 -05002155 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002156 struct xfrm_userpolicy_id *pol_id;
2157 struct nlmsghdr *nlh;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002158 int i;
2159
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002160 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2161 if (nlh == NULL)
2162 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002163
Thomas Graf7b67c852007-08-22 13:53:52 -07002164 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002165 /* copy data from selector, dir, and type to the pol_id */
2166 memset(pol_id, 0, sizeof(*pol_id));
2167 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2168 pol_id->dir = dir;
2169
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002170 if (k != NULL && (copy_to_user_kmaddress(k, skb) < 0))
2171 goto nlmsg_failure;
2172
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002173 if (copy_to_user_policy_type(type, skb) < 0)
2174 goto nlmsg_failure;
2175
2176 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
2177 if (copy_to_user_migrate(mp, skb) < 0)
2178 goto nlmsg_failure;
2179 }
2180
Thomas Graf98250692007-08-22 12:47:26 -07002181 return nlmsg_end(skb, nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002182nlmsg_failure:
Thomas Graf98250692007-08-22 12:47:26 -07002183 nlmsg_cancel(skb, nlh);
2184 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002185}
2186
David S. Miller183cad12011-02-24 00:28:01 -05002187static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2188 const struct xfrm_migrate *m, int num_migrate,
2189 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002190{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002191 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002192 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002193
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002194 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002195 if (skb == NULL)
2196 return -ENOMEM;
2197
2198 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002199 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002200 BUG();
2201
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002202 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MIGRATE, GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002203}
2204#else
David S. Miller183cad12011-02-24 00:28:01 -05002205static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2206 const struct xfrm_migrate *m, int num_migrate,
2207 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002208{
2209 return -ENOPROTOOPT;
2210}
2211#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002212
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002213#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002214
2215static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002216 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002217 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2218 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2219 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2220 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2221 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2222 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002223 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002224 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002225 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002226 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002227 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002228 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002229 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002230 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2231 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002232 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002233 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002234 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
2235 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236};
2237
Thomas Graf492b5582005-05-03 14:26:40 -07002238#undef XMSGSIZE
2239
Thomas Grafcf5cb792007-08-22 13:59:04 -07002240static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002241 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2242 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2243 [XFRMA_LASTUSED] = { .type = NLA_U64},
2244 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002245 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002246 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2247 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2248 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2249 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2250 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2251 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2252 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2253 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2254 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2255 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2256 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2257 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2258 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2259 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002260 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002261 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002262 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002263 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002264};
2265
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266static struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002267 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002269 int (*done)(struct netlink_callback *);
Thomas Graf492b5582005-05-03 14:26:40 -07002270} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2271 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2272 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2273 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002274 .dump = xfrm_dump_sa,
2275 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002276 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2277 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2278 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Timo Teras4c563f72008-02-28 21:31:08 -08002279 .dump = xfrm_dump_policy,
2280 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002281 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002282 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002283 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002284 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2285 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002286 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002287 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2288 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002289 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2290 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002291 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002292 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002293 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294};
2295
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002296static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002298 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002299 struct nlattr *attrs[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002301 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002305 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
2307 type -= XFRM_MSG_BASE;
2308 link = &xfrm_dispatch[type];
2309
2310 /* All operations require privileges, even GET */
Eric Parisfd778462012-01-03 12:25:16 -05002311 if (!capable(CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002312 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
Thomas Graf492b5582005-05-03 14:26:40 -07002314 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2315 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002316 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002318 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002320 {
2321 struct netlink_dump_control c = {
2322 .dump = link->dump,
2323 .done = link->done,
2324 };
2325 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2326 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 }
2328
Thomas Graf35a7aa02007-08-22 14:00:40 -07002329 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs, XFRMA_MAX,
Thomas Grafcf5cb792007-08-22 13:59:04 -07002330 xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002331 if (err < 0)
2332 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
2334 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002335 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Thomas Graf5424f322007-08-22 14:01:33 -07002337 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338}
2339
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002340static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341{
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002342 mutex_lock(&xfrm_cfg_mutex);
2343 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
2344 mutex_unlock(&xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345}
2346
Thomas Graf7deb2262007-08-22 13:57:39 -07002347static inline size_t xfrm_expire_msgsize(void)
2348{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002349 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2350 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002351}
2352
David S. Miller214e0052011-02-24 00:02:38 -05002353static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354{
2355 struct xfrm_user_expire *ue;
2356 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002358 nlh = nlmsg_put(skb, c->pid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
2359 if (nlh == NULL)
2360 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361
Thomas Graf7b67c852007-08-22 13:53:52 -07002362 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002364 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002366 if (xfrm_mark_put(skb, &x->mark))
2367 goto nla_put_failure;
2368
Thomas Graf98250692007-08-22 12:47:26 -07002369 return nlmsg_end(skb, nlh);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002370
2371nla_put_failure:
2372 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373}
2374
David S. Miller214e0052011-02-24 00:02:38 -05002375static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002377 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 struct sk_buff *skb;
2379
Thomas Graf7deb2262007-08-22 13:57:39 -07002380 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 if (skb == NULL)
2382 return -ENOMEM;
2383
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002384 if (build_expire(skb, x, c) < 0) {
2385 kfree_skb(skb);
2386 return -EMSGSIZE;
2387 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002389 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390}
2391
David S. Miller214e0052011-02-24 00:02:38 -05002392static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002393{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002394 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002395 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002396
Steffen Klassertd8647b72011-03-08 00:10:27 +00002397 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002398 if (skb == NULL)
2399 return -ENOMEM;
2400
2401 if (build_aevent(skb, x, c) < 0)
2402 BUG();
2403
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002404 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_AEVENTS, GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002405}
2406
David S. Miller214e0052011-02-24 00:02:38 -05002407static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002408{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002409 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002410 struct xfrm_usersa_flush *p;
2411 struct nlmsghdr *nlh;
2412 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002413 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002414
Thomas Graf7deb2262007-08-22 13:57:39 -07002415 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002416 if (skb == NULL)
2417 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002418
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002419 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
2420 if (nlh == NULL) {
2421 kfree_skb(skb);
2422 return -EMSGSIZE;
2423 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002424
Thomas Graf7b67c852007-08-22 13:53:52 -07002425 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002426 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002427
Thomas Graf98250692007-08-22 12:47:26 -07002428 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002429
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002430 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002431}
2432
Thomas Graf7deb2262007-08-22 13:57:39 -07002433static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002434{
Thomas Graf7deb2262007-08-22 13:57:39 -07002435 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002436 if (x->aead)
2437 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002438 if (x->aalg) {
2439 l += nla_total_size(sizeof(struct xfrm_algo) +
2440 (x->aalg->alg_key_len + 7) / 8);
2441 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2442 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002443 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002444 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002445 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002446 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002447 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002448 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002449 if (x->tfcpad)
2450 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002451 if (x->replay_esn)
2452 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
Herbert Xu68325d32007-10-09 13:30:57 -07002453 if (x->security)
2454 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2455 x->security->ctx_len);
2456 if (x->coaddr)
2457 l += nla_total_size(sizeof(*x->coaddr));
2458
Herbert Xud26f3982007-11-13 21:47:08 -08002459 /* Must count x->lastused as it may become non-zero behind our back. */
2460 l += nla_total_size(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002461
2462 return l;
2463}
2464
David S. Miller214e0052011-02-24 00:02:38 -05002465static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002466{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002467 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002468 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002469 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002470 struct nlmsghdr *nlh;
2471 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002472 int len = xfrm_sa_len(x);
Herbert Xu0603eac2005-06-18 22:54:36 -07002473 int headlen;
2474
2475 headlen = sizeof(*p);
2476 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002477 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002478 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002479 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002480 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002481 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002482
Thomas Graf7deb2262007-08-22 13:57:39 -07002483 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002484 if (skb == NULL)
2485 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002486
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002487 nlh = nlmsg_put(skb, c->pid, c->seq, c->event, headlen, 0);
2488 if (nlh == NULL)
Thomas Grafc0144be2007-08-22 13:55:43 -07002489 goto nla_put_failure;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002490
Thomas Graf7b67c852007-08-22 13:53:52 -07002491 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002492 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002493 struct nlattr *attr;
2494
Thomas Graf7b67c852007-08-22 13:53:52 -07002495 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002496 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2497 id->spi = x->id.spi;
2498 id->family = x->props.family;
2499 id->proto = x->id.proto;
2500
Thomas Grafc0144be2007-08-22 13:55:43 -07002501 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
2502 if (attr == NULL)
2503 goto nla_put_failure;
2504
2505 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002506 }
2507
Herbert Xu68325d32007-10-09 13:30:57 -07002508 if (copy_to_user_state_extra(x, p, skb))
2509 goto nla_put_failure;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002510
Thomas Graf98250692007-08-22 12:47:26 -07002511 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002512
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002513 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002514
Thomas Grafc0144be2007-08-22 13:55:43 -07002515nla_put_failure:
Herbert Xu68325d32007-10-09 13:30:57 -07002516 /* Somebody screwed up with xfrm_sa_len! */
2517 WARN_ON(1);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002518 kfree_skb(skb);
2519 return -1;
2520}
2521
David S. Miller214e0052011-02-24 00:02:38 -05002522static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002523{
2524
2525 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002526 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002527 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002528 case XFRM_MSG_NEWAE:
2529 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002530 case XFRM_MSG_DELSA:
2531 case XFRM_MSG_UPDSA:
2532 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002533 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002534 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002535 return xfrm_notify_sa_flush(c);
2536 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002537 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2538 c->event);
2539 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002540 }
2541
2542 return 0;
2543
2544}
2545
Thomas Graf7deb2262007-08-22 13:57:39 -07002546static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2547 struct xfrm_policy *xp)
2548{
2549 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2550 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002551 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002552 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2553 + userpolicy_type_attrsize();
2554}
2555
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
2557 struct xfrm_tmpl *xt, struct xfrm_policy *xp,
2558 int dir)
2559{
2560 struct xfrm_user_acquire *ua;
2561 struct nlmsghdr *nlh;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 __u32 seq = xfrm_get_acqseq();
2563
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002564 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2565 if (nlh == NULL)
2566 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
Thomas Graf7b67c852007-08-22 13:53:52 -07002568 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 memcpy(&ua->id, &x->id, sizeof(ua->id));
2570 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2571 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
2572 copy_to_user_policy(xp, &ua->policy, dir);
2573 ua->aalgos = xt->aalgos;
2574 ua->ealgos = xt->ealgos;
2575 ua->calgos = xt->calgos;
2576 ua->seq = x->km.seq = seq;
2577
2578 if (copy_to_user_tmpl(xp, skb) < 0)
2579 goto nlmsg_failure;
Serge Hallyn0d681622006-07-24 23:30:44 -07002580 if (copy_to_user_state_sec_ctx(x, skb))
Trent Jaegerdf718372005-12-13 23:12:27 -08002581 goto nlmsg_failure;
Jamal Hadi Salim1459bb32006-11-20 16:51:22 -08002582 if (copy_to_user_policy_type(xp->type, skb) < 0)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002583 goto nlmsg_failure;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002584 if (xfrm_mark_put(skb, &xp->mark))
2585 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586
Thomas Graf98250692007-08-22 12:47:26 -07002587 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002589nla_put_failure:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590nlmsg_failure:
Thomas Graf98250692007-08-22 12:47:26 -07002591 nlmsg_cancel(skb, nlh);
2592 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593}
2594
2595static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
2596 struct xfrm_policy *xp, int dir)
2597{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002598 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
Thomas Graf7deb2262007-08-22 13:57:39 -07002601 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 if (skb == NULL)
2603 return -ENOMEM;
2604
2605 if (build_acquire(skb, x, xt, xp, dir) < 0)
2606 BUG();
2607
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002608 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_ACQUIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609}
2610
2611/* User gives us xfrm_user_policy_info followed by an array of 0
2612 * or more templates.
2613 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002614static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 u8 *data, int len, int *dir)
2616{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002617 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2619 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2620 struct xfrm_policy *xp;
2621 int nr;
2622
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002623 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 case AF_INET:
2625 if (opt != IP_XFRM_POLICY) {
2626 *dir = -EOPNOTSUPP;
2627 return NULL;
2628 }
2629 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002630#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 case AF_INET6:
2632 if (opt != IPV6_XFRM_POLICY) {
2633 *dir = -EOPNOTSUPP;
2634 return NULL;
2635 }
2636 break;
2637#endif
2638 default:
2639 *dir = -EINVAL;
2640 return NULL;
2641 }
2642
2643 *dir = -EINVAL;
2644
2645 if (len < sizeof(*p) ||
2646 verify_newpolicy_info(p))
2647 return NULL;
2648
2649 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002650 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 return NULL;
2652
Herbert Xua4f1bac2005-07-26 15:43:17 -07002653 if (p->dir > XFRM_POLICY_OUT)
2654 return NULL;
2655
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002656 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 if (xp == NULL) {
2658 *dir = -ENOBUFS;
2659 return NULL;
2660 }
2661
2662 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002663 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 copy_templates(xp, ut, nr);
2665
2666 *dir = p->dir;
2667
2668 return xp;
2669}
2670
Thomas Graf7deb2262007-08-22 13:57:39 -07002671static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2672{
2673 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2674 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2675 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002676 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002677 + userpolicy_type_attrsize();
2678}
2679
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002681 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682{
2683 struct xfrm_user_polexpire *upe;
2684 struct nlmsghdr *nlh;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002685 int hard = c->data.hard;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002687 nlh = nlmsg_put(skb, c->pid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
2688 if (nlh == NULL)
2689 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
Thomas Graf7b67c852007-08-22 13:53:52 -07002691 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 copy_to_user_policy(xp, &upe->pol, dir);
2693 if (copy_to_user_tmpl(xp, skb) < 0)
2694 goto nlmsg_failure;
Trent Jaegerdf718372005-12-13 23:12:27 -08002695 if (copy_to_user_sec_ctx(xp, skb))
2696 goto nlmsg_failure;
Jamal Hadi Salim1459bb32006-11-20 16:51:22 -08002697 if (copy_to_user_policy_type(xp->type, skb) < 0)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002698 goto nlmsg_failure;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002699 if (xfrm_mark_put(skb, &xp->mark))
2700 goto nla_put_failure;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 upe->hard = !!hard;
2702
Thomas Graf98250692007-08-22 12:47:26 -07002703 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002705nla_put_failure:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706nlmsg_failure:
Thomas Graf98250692007-08-22 12:47:26 -07002707 nlmsg_cancel(skb, nlh);
2708 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709}
2710
David S. Miller214e0052011-02-24 00:02:38 -05002711static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002713 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
Thomas Graf7deb2262007-08-22 13:57:39 -07002716 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 if (skb == NULL)
2718 return -ENOMEM;
2719
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002720 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721 BUG();
2722
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002723 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724}
2725
David S. Miller214e0052011-02-24 00:02:38 -05002726static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002727{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002728 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002729 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002730 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002731 struct nlmsghdr *nlh;
2732 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002733 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002734 int headlen;
2735
2736 headlen = sizeof(*p);
2737 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002738 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002739 headlen = sizeof(*id);
2740 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002741 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002742 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002743 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002744
Thomas Graf7deb2262007-08-22 13:57:39 -07002745 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002746 if (skb == NULL)
2747 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002748
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002749 nlh = nlmsg_put(skb, c->pid, c->seq, c->event, headlen, 0);
2750 if (nlh == NULL)
2751 goto nlmsg_failure;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002752
Thomas Graf7b67c852007-08-22 13:53:52 -07002753 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002754 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002755 struct nlattr *attr;
2756
Thomas Graf7b67c852007-08-22 13:53:52 -07002757 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002758 memset(id, 0, sizeof(*id));
2759 id->dir = dir;
2760 if (c->data.byid)
2761 id->index = xp->index;
2762 else
2763 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2764
Thomas Grafc0144be2007-08-22 13:55:43 -07002765 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
2766 if (attr == NULL)
2767 goto nlmsg_failure;
2768
2769 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002770 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002771
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002772 copy_to_user_policy(xp, p, dir);
2773 if (copy_to_user_tmpl(xp, skb) < 0)
2774 goto nlmsg_failure;
Jamal Hadi Salim1459bb32006-11-20 16:51:22 -08002775 if (copy_to_user_policy_type(xp->type, skb) < 0)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002776 goto nlmsg_failure;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002777
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002778 if (xfrm_mark_put(skb, &xp->mark))
2779 goto nla_put_failure;
2780
Thomas Graf98250692007-08-22 12:47:26 -07002781 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002782
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002783 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002784
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002785nla_put_failure:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002786nlmsg_failure:
2787 kfree_skb(skb);
2788 return -1;
2789}
2790
David S. Miller214e0052011-02-24 00:02:38 -05002791static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002792{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002793 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002794 struct nlmsghdr *nlh;
2795 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002796
Thomas Graf7deb2262007-08-22 13:57:39 -07002797 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002798 if (skb == NULL)
2799 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002800
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002801 nlh = nlmsg_put(skb, c->pid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
2802 if (nlh == NULL)
2803 goto nlmsg_failure;
Jamal Hadi Salim0c51f532006-11-27 12:58:20 -08002804 if (copy_to_user_policy_type(c->data.type, skb) < 0)
2805 goto nlmsg_failure;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002806
Thomas Graf98250692007-08-22 12:47:26 -07002807 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002808
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002809 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002810
2811nlmsg_failure:
2812 kfree_skb(skb);
2813 return -1;
2814}
2815
David S. Miller214e0052011-02-24 00:02:38 -05002816static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002817{
2818
2819 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002820 case XFRM_MSG_NEWPOLICY:
2821 case XFRM_MSG_UPDPOLICY:
2822 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002823 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002824 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002825 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002826 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002827 return xfrm_exp_policy_notify(xp, dir, c);
2828 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002829 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
2830 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002831 }
2832
2833 return 0;
2834
2835}
2836
Thomas Graf7deb2262007-08-22 13:57:39 -07002837static inline size_t xfrm_report_msgsize(void)
2838{
2839 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
2840}
2841
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002842static int build_report(struct sk_buff *skb, u8 proto,
2843 struct xfrm_selector *sel, xfrm_address_t *addr)
2844{
2845 struct xfrm_user_report *ur;
2846 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002847
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002848 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
2849 if (nlh == NULL)
2850 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002851
Thomas Graf7b67c852007-08-22 13:53:52 -07002852 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002853 ur->proto = proto;
2854 memcpy(&ur->sel, sel, sizeof(ur->sel));
2855
David S. Millerd0fde792012-03-29 04:02:26 -04002856 if (addr &&
2857 nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr))
2858 goto nla_put_failure;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002859
Thomas Graf98250692007-08-22 12:47:26 -07002860 return nlmsg_end(skb, nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002861
Thomas Grafc0144be2007-08-22 13:55:43 -07002862nla_put_failure:
Thomas Graf98250692007-08-22 12:47:26 -07002863 nlmsg_cancel(skb, nlh);
2864 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002865}
2866
Alexey Dobriyandb983c12008-11-25 17:51:01 -08002867static int xfrm_send_report(struct net *net, u8 proto,
2868 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002869{
2870 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002871
Thomas Graf7deb2262007-08-22 13:57:39 -07002872 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002873 if (skb == NULL)
2874 return -ENOMEM;
2875
2876 if (build_report(skb, proto, sel, addr) < 0)
2877 BUG();
2878
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002879 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_REPORT, GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002880}
2881
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002882static inline size_t xfrm_mapping_msgsize(void)
2883{
2884 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
2885}
2886
2887static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
2888 xfrm_address_t *new_saddr, __be16 new_sport)
2889{
2890 struct xfrm_user_mapping *um;
2891 struct nlmsghdr *nlh;
2892
2893 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
2894 if (nlh == NULL)
2895 return -EMSGSIZE;
2896
2897 um = nlmsg_data(nlh);
2898
2899 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
2900 um->id.spi = x->id.spi;
2901 um->id.family = x->props.family;
2902 um->id.proto = x->id.proto;
2903 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
2904 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
2905 um->new_sport = new_sport;
2906 um->old_sport = x->encap->encap_sport;
2907 um->reqid = x->props.reqid;
2908
2909 return nlmsg_end(skb, nlh);
2910}
2911
2912static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
2913 __be16 sport)
2914{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002915 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002916 struct sk_buff *skb;
2917
2918 if (x->id.proto != IPPROTO_ESP)
2919 return -EINVAL;
2920
2921 if (!x->encap)
2922 return -EINVAL;
2923
2924 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
2925 if (skb == NULL)
2926 return -ENOMEM;
2927
2928 if (build_mapping(skb, x, ipaddr, sport) < 0)
2929 BUG();
2930
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002931 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MAPPING, GFP_ATOMIC);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002932}
2933
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934static struct xfrm_mgr netlink_mgr = {
2935 .id = "netlink",
2936 .notify = xfrm_send_state_notify,
2937 .acquire = xfrm_send_acquire,
2938 .compile_policy = xfrm_compile_policy,
2939 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002940 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002941 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002942 .new_mapping = xfrm_send_mapping,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943};
2944
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002945static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946{
Patrick McHardybe336902006-03-20 22:40:54 -08002947 struct sock *nlsk;
2948
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002949 nlsk = netlink_kernel_create(net, NETLINK_XFRM, XFRMNLGRP_MAX,
Patrick McHardyaf65bdf2007-04-20 14:14:21 -07002950 xfrm_netlink_rcv, NULL, THIS_MODULE);
Patrick McHardybe336902006-03-20 22:40:54 -08002951 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002953 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00002954 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 return 0;
2956}
2957
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002958static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002959{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002960 struct net *net;
2961 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00002962 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002963 synchronize_net();
2964 list_for_each_entry(net, net_exit_list, exit_list)
2965 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002966}
2967
2968static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00002969 .init = xfrm_user_net_init,
2970 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002971};
2972
2973static int __init xfrm_user_init(void)
2974{
2975 int rv;
2976
2977 printk(KERN_INFO "Initializing XFRM netlink socket\n");
2978
2979 rv = register_pernet_subsys(&xfrm_user_net_ops);
2980 if (rv < 0)
2981 return rv;
2982 rv = xfrm_register_km(&netlink_mgr);
2983 if (rv < 0)
2984 unregister_pernet_subsys(&xfrm_user_net_ops);
2985 return rv;
2986}
2987
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988static void __exit xfrm_user_exit(void)
2989{
2990 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002991 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992}
2993
2994module_init(xfrm_user_init);
2995module_exit(xfrm_user_exit);
2996MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07002997MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08002998