blob: 4027c4266a879b609a661fc6d53b6ad33a951dfd [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];
Mathias Krauseecd79182012-09-20 10:01:49 +0000126 struct xfrm_replay_state_esn *rs;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000127
Mathias Krauseecd79182012-09-20 10:01:49 +0000128 if (p->flags & XFRM_STATE_ESN) {
129 if (!rt)
130 return -EINVAL;
131
132 rs = nla_data(rt);
133
134 if (rs->bmp_len > XFRMA_REPLAY_ESN_MAX / sizeof(rs->bmp[0]) / 8)
135 return -EINVAL;
136
137 if (nla_len(rt) < xfrm_replay_state_esn_len(rs) &&
138 nla_len(rt) != sizeof(*rs))
139 return -EINVAL;
140 }
Steffen Klassert7833aa02011-04-25 19:41:21 +0000141
Steffen Klassertd8647b72011-03-08 00:10:27 +0000142 if (!rt)
143 return 0;
144
Steffen Klassert02aadf72011-03-28 19:48:09 +0000145 if (p->id.proto != IPPROTO_ESP)
146 return -EINVAL;
147
Steffen Klassertd8647b72011-03-08 00:10:27 +0000148 if (p->replay_window != 0)
149 return -EINVAL;
150
151 return 0;
152}
Trent Jaegerdf718372005-12-13 23:12:27 -0800153
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154static int verify_newsa_info(struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700155 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
157 int err;
158
159 err = -EINVAL;
160 switch (p->family) {
161 case AF_INET:
162 break;
163
164 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000165#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 break;
167#else
168 err = -EAFNOSUPPORT;
169 goto out;
170#endif
171
172 default:
173 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
176 err = -EINVAL;
177 switch (p->id.proto) {
178 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000179 if ((!attrs[XFRMA_ALG_AUTH] &&
180 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800181 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700182 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000183 attrs[XFRMA_ALG_COMP] ||
Fan Duea9884b2013-12-16 18:47:48 +0800184 attrs[XFRMA_TFCPAD] ||
185 (ntohl(p->id.spi) >= 0x10000))
186
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 goto out;
188 break;
189
190 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800191 if (attrs[XFRMA_ALG_COMP])
192 goto out;
193 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000194 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800195 !attrs[XFRMA_ALG_CRYPT] &&
196 !attrs[XFRMA_ALG_AEAD])
197 goto out;
198 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000199 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800200 attrs[XFRMA_ALG_CRYPT]) &&
201 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000203 if (attrs[XFRMA_TFCPAD] &&
204 p->mode != XFRM_MODE_TUNNEL)
205 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 break;
207
208 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700209 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800210 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700211 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000212 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000213 attrs[XFRMA_ALG_CRYPT] ||
214 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 goto out;
216 break;
217
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000218#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700219 case IPPROTO_DSTOPTS:
220 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700221 if (attrs[XFRMA_ALG_COMP] ||
222 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000223 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800224 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700225 attrs[XFRMA_ALG_CRYPT] ||
226 attrs[XFRMA_ENCAP] ||
227 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000228 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700229 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700230 goto out;
231 break;
232#endif
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 default:
235 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700236 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
Herbert Xu1a6509d2008-01-28 19:37:29 -0800238 if ((err = verify_aead(attrs)))
239 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000240 if ((err = verify_auth_trunc(attrs)))
241 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700242 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700244 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700246 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700248 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800249 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000250 if ((err = verify_replay(p, attrs)))
251 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252
253 err = -EINVAL;
254 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700255 case XFRM_MODE_TRANSPORT:
256 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700257 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a694522006-10-03 23:47:05 -0700258 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 break;
260
261 default:
262 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
265 err = 0;
266
267out:
268 return err;
269}
270
271static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800272 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700273 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 struct xfrm_algo *p, *ualg;
276 struct xfrm_algo_desc *algo;
277
278 if (!rta)
279 return 0;
280
Thomas Graf5424f322007-08-22 14:01:33 -0700281 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 algo = get_byname(ualg->alg_name, 1);
284 if (!algo)
285 return -ENOSYS;
286 *props = algo->desc.sadb_alg_id;
287
Eric Dumazet0f99be02008-01-08 23:39:06 -0800288 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 if (!p)
290 return -ENOMEM;
291
Herbert Xu04ff1262006-08-13 08:50:00 +1000292 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 *algpp = p;
294 return 0;
295}
296
Martin Willi4447bb32009-11-25 00:29:52 +0000297static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
298 struct nlattr *rta)
299{
300 struct xfrm_algo *ualg;
301 struct xfrm_algo_auth *p;
302 struct xfrm_algo_desc *algo;
303
304 if (!rta)
305 return 0;
306
307 ualg = nla_data(rta);
308
309 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
310 if (!algo)
311 return -ENOSYS;
312 *props = algo->desc.sadb_alg_id;
313
314 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
315 if (!p)
316 return -ENOMEM;
317
318 strcpy(p->alg_name, algo->name);
319 p->alg_key_len = ualg->alg_key_len;
320 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
321 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
322
323 *algpp = p;
324 return 0;
325}
326
327static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
328 struct nlattr *rta)
329{
330 struct xfrm_algo_auth *p, *ualg;
331 struct xfrm_algo_desc *algo;
332
333 if (!rta)
334 return 0;
335
336 ualg = nla_data(rta);
337
338 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
339 if (!algo)
340 return -ENOSYS;
Nicolas Dichtelfa6dd8a2011-01-11 08:04:12 +0000341 if ((ualg->alg_trunc_len / 8) > MAX_AH_AUTH_LEN ||
342 ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000343 return -EINVAL;
344 *props = algo->desc.sadb_alg_id;
345
346 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
347 if (!p)
348 return -ENOMEM;
349
350 strcpy(p->alg_name, algo->name);
351 if (!p->alg_trunc_len)
352 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
353
354 *algpp = p;
355 return 0;
356}
357
Herbert Xu1a6509d2008-01-28 19:37:29 -0800358static int attach_aead(struct xfrm_algo_aead **algpp, u8 *props,
359 struct nlattr *rta)
360{
361 struct xfrm_algo_aead *p, *ualg;
362 struct xfrm_algo_desc *algo;
363
364 if (!rta)
365 return 0;
366
367 ualg = nla_data(rta);
368
369 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
370 if (!algo)
371 return -ENOSYS;
372 *props = algo->desc.sadb_alg_id;
373
374 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
375 if (!p)
376 return -ENOMEM;
377
378 strcpy(p->alg_name, algo->name);
379 *algpp = p;
380 return 0;
381}
382
Steffen Klasserte2b19122011-03-28 19:47:30 +0000383static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
384 struct nlattr *rp)
385{
386 struct xfrm_replay_state_esn *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000387 int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000388
389 if (!replay_esn || !rp)
390 return 0;
391
392 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000393 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000394
Mathias Krauseecd79182012-09-20 10:01:49 +0000395 if (nla_len(rp) < ulen || xfrm_replay_state_esn_len(replay_esn) != ulen)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000396 return -EINVAL;
397
398 return 0;
399}
400
Steffen Klassertd8647b72011-03-08 00:10:27 +0000401static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
402 struct xfrm_replay_state_esn **preplay_esn,
403 struct nlattr *rta)
404{
405 struct xfrm_replay_state_esn *p, *pp, *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000406 int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000407
408 if (!rta)
409 return 0;
410
411 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000412 klen = xfrm_replay_state_esn_len(up);
413 ulen = nla_len(rta) >= klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000414
Mathias Krauseecd79182012-09-20 10:01:49 +0000415 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000416 if (!p)
417 return -ENOMEM;
418
Mathias Krauseecd79182012-09-20 10:01:49 +0000419 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000420 if (!pp) {
421 kfree(p);
422 return -ENOMEM;
423 }
424
Mathias Krauseecd79182012-09-20 10:01:49 +0000425 memcpy(p, up, ulen);
426 memcpy(pp, up, ulen);
427
Steffen Klassertd8647b72011-03-08 00:10:27 +0000428 *replay_esn = p;
429 *preplay_esn = pp;
430
431 return 0;
432}
433
Joy Latten661697f2007-04-13 16:14:35 -0700434static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800435{
Trent Jaegerdf718372005-12-13 23:12:27 -0800436 int len = 0;
437
438 if (xfrm_ctx) {
439 len += sizeof(struct xfrm_user_sec_ctx);
440 len += xfrm_ctx->ctx_len;
441 }
442 return len;
443}
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
446{
447 memcpy(&x->id, &p->id, sizeof(x->id));
448 memcpy(&x->sel, &p->sel, sizeof(x->sel));
449 memcpy(&x->lft, &p->lft, sizeof(x->lft));
450 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800451 x->props.replay_window = min_t(unsigned int, p->replay_window,
452 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 x->props.reqid = p->reqid;
454 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700455 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700457
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700458 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700459 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800462/*
463 * someday when pfkey also has support, we could have the code
464 * somehow made shareable and move it to xfrm_state.c - JHS
465 *
466*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000467static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
468 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800469{
Thomas Graf5424f322007-08-22 14:01:33 -0700470 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000471 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700472 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
473 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
474 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800475
Steffen Klassertd8647b72011-03-08 00:10:27 +0000476 if (re) {
477 struct xfrm_replay_state_esn *replay_esn;
478 replay_esn = nla_data(re);
479 memcpy(x->replay_esn, replay_esn,
480 xfrm_replay_state_esn_len(replay_esn));
481 memcpy(x->preplay_esn, replay_esn,
482 xfrm_replay_state_esn_len(replay_esn));
483 }
484
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800485 if (rp) {
486 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700487 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800488 memcpy(&x->replay, replay, sizeof(*replay));
489 memcpy(&x->preplay, replay, sizeof(*replay));
490 }
491
492 if (lt) {
493 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700494 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800495 x->curlft.bytes = ltime->bytes;
496 x->curlft.packets = ltime->packets;
497 x->curlft.add_time = ltime->add_time;
498 x->curlft.use_time = ltime->use_time;
499 }
500
Thomas Grafcf5cb792007-08-22 13:59:04 -0700501 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700502 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800503
Thomas Grafcf5cb792007-08-22 13:59:04 -0700504 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700505 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800506}
507
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800508static struct xfrm_state *xfrm_state_construct(struct net *net,
509 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700510 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 int *errp)
512{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800513 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 int err = -ENOMEM;
515
516 if (!x)
517 goto error_no_put;
518
519 copy_from_user_state(x, p);
520
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100521 if (attrs[XFRMA_SA_EXTRA_FLAGS])
522 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
523
Herbert Xu1a6509d2008-01-28 19:37:29 -0800524 if ((err = attach_aead(&x->aead, &x->props.ealgo,
525 attrs[XFRMA_ALG_AEAD])))
526 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000527 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
528 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000530 if (!x->props.aalgo) {
531 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
532 attrs[XFRMA_ALG_AUTH])))
533 goto error;
534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if ((err = attach_one_algo(&x->ealg, &x->props.ealgo,
536 xfrm_ealg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700537 attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 goto error;
539 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
540 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700541 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700543
544 if (attrs[XFRMA_ENCAP]) {
545 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
546 sizeof(*x->encap), GFP_KERNEL);
547 if (x->encap == NULL)
548 goto error;
549 }
550
Martin Willi35d28562010-12-08 04:37:49 +0000551 if (attrs[XFRMA_TFCPAD])
552 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
553
Thomas Graffd211502007-09-06 03:28:08 -0700554 if (attrs[XFRMA_COADDR]) {
555 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
556 sizeof(*x->coaddr), GFP_KERNEL);
557 if (x->coaddr == NULL)
558 goto error;
559 }
560
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000561 xfrm_mark_get(attrs, &x->mark);
562
Wei Yongjuna454f0c2011-03-21 18:08:28 -0700563 err = __xfrm_init_state(x, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 if (err)
565 goto error;
566
Thomas Graffd211502007-09-06 03:28:08 -0700567 if (attrs[XFRMA_SEC_CTX] &&
568 security_xfrm_state_alloc(x, nla_data(attrs[XFRMA_SEC_CTX])))
Trent Jaegerdf718372005-12-13 23:12:27 -0800569 goto error;
570
Steffen Klassertd8647b72011-03-08 00:10:27 +0000571 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
572 attrs[XFRMA_REPLAY_ESN_VAL])))
573 goto error;
574
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800576 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800577 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800578 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800579
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000580 if ((err = xfrm_init_replay(x)))
581 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800582
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000583 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000584 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 return x;
587
588error:
589 x->km.state = XFRM_STATE_DEAD;
590 xfrm_state_put(x);
591error_no_put:
592 *errp = err;
593 return NULL;
594}
595
Christoph Hellwig22e70052007-01-02 15:22:30 -0800596static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700597 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800599 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700600 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 struct xfrm_state *x;
602 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700603 struct km_event c;
Eric W. Biedermane1760bd2012-09-10 22:39:43 -0700604 kuid_t loginuid = audit_get_loginuid(current);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -0800605 u32 sessionid = audit_get_sessionid(current);
606 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
Thomas Graf35a7aa02007-08-22 14:00:40 -0700608 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 if (err)
610 return err;
611
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800612 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 if (!x)
614 return err;
615
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700616 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
618 err = xfrm_state_add(x);
619 else
620 err = xfrm_state_update(x);
621
Patrick McHardyc53fa1e2011-03-03 10:55:40 -0800622 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -0400623 xfrm_audit_state_add(x, err ? 0 : 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -0600624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 if (err < 0) {
626 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800627 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700628 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 }
630
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700631 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000632 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700633 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700634
635 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700636out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700637 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return err;
639}
640
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800641static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
642 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700643 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700644 int *errp)
645{
646 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000647 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700648 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000649 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700650
651 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
652 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000653 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700654 } else {
655 xfrm_address_t *saddr = NULL;
656
Thomas Graf35a7aa02007-08-22 14:00:40 -0700657 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700658 if (!saddr) {
659 err = -EINVAL;
660 goto out;
661 }
662
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800663 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000664 x = xfrm_state_lookup_byaddr(net, mark,
665 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800666 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700667 }
668
669 out:
670 if (!x && errp)
671 *errp = err;
672 return x;
673}
674
Christoph Hellwig22e70052007-01-02 15:22:30 -0800675static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700676 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800678 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700680 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700681 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700682 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Eric W. Biedermane1760bd2012-09-10 22:39:43 -0700683 kuid_t loginuid = audit_get_loginuid(current);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -0800684 u32 sessionid = audit_get_sessionid(current);
685 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800687 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700689 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
David S. Miller6f68dc32006-06-08 23:58:52 -0700691 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700692 goto out;
693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700695 err = -EPERM;
696 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
698
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700699 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600700
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700701 if (err < 0)
702 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700703
704 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000705 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700706 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700707 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700709out:
Patrick McHardyc53fa1e2011-03-03 10:55:40 -0800710 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -0400711 xfrm_audit_state_delete(x, err ? 0 : 1, loginuid, sessionid, sid);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700712 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700713 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714}
715
716static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
717{
Mathias Krausef778a632012-09-19 11:33:39 +0000718 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 memcpy(&p->id, &x->id, sizeof(p->id));
720 memcpy(&p->sel, &x->sel, sizeof(p->sel));
721 memcpy(&p->lft, &x->lft, sizeof(p->lft));
722 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
723 memcpy(&p->stats, &x->stats, sizeof(p->stats));
David S. Miller54489c142006-10-27 15:29:47 -0700724 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 p->mode = x->props.mode;
726 p->replay_window = x->props.replay_window;
727 p->reqid = x->props.reqid;
728 p->family = x->props.family;
729 p->flags = x->props.flags;
730 p->seq = x->km.seq;
731}
732
733struct xfrm_dump_info {
734 struct sk_buff *in_skb;
735 struct sk_buff *out_skb;
736 u32 nlmsg_seq;
737 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738};
739
Thomas Grafc0144be2007-08-22 13:55:43 -0700740static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
741{
Thomas Grafc0144be2007-08-22 13:55:43 -0700742 struct xfrm_user_sec_ctx *uctx;
743 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700744 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700745
746 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
747 if (attr == NULL)
748 return -EMSGSIZE;
749
750 uctx = nla_data(attr);
751 uctx->exttype = XFRMA_SEC_CTX;
752 uctx->len = ctx_size;
753 uctx->ctx_doi = s->ctx_doi;
754 uctx->ctx_alg = s->ctx_alg;
755 uctx->ctx_len = s->ctx_len;
756 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
757
758 return 0;
759}
760
Martin Willi4447bb32009-11-25 00:29:52 +0000761static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
762{
763 struct xfrm_algo *algo;
764 struct nlattr *nla;
765
766 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
767 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
768 if (!nla)
769 return -EMSGSIZE;
770
771 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000772 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000773 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
774 algo->alg_key_len = auth->alg_key_len;
775
776 return 0;
777}
778
Herbert Xu68325d32007-10-09 13:30:57 -0700779/* Don't change this without updating xfrm_sa_len! */
780static int copy_to_user_state_extra(struct xfrm_state *x,
781 struct xfrm_usersa_info *p,
782 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700784 int ret = 0;
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 copy_to_user_state(x, p);
787
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100788 if (x->props.extra_flags) {
789 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
790 x->props.extra_flags);
791 if (ret)
792 goto out;
793 }
794
David S. Miller1d1e34d2012-06-27 21:57:03 -0700795 if (x->coaddr) {
796 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
797 if (ret)
798 goto out;
799 }
800 if (x->lastused) {
801 ret = nla_put_u64(skb, XFRMA_LASTUSED, x->lastused);
802 if (ret)
803 goto out;
804 }
805 if (x->aead) {
806 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
807 if (ret)
808 goto out;
809 }
810 if (x->aalg) {
811 ret = copy_to_user_auth(x->aalg, skb);
812 if (!ret)
813 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
814 xfrm_alg_auth_len(x->aalg), x->aalg);
815 if (ret)
816 goto out;
817 }
818 if (x->ealg) {
819 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
820 if (ret)
821 goto out;
822 }
823 if (x->calg) {
824 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
825 if (ret)
826 goto out;
827 }
828 if (x->encap) {
829 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
830 if (ret)
831 goto out;
832 }
833 if (x->tfcpad) {
834 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
835 if (ret)
836 goto out;
837 }
838 ret = xfrm_mark_put(skb, &x->mark);
839 if (ret)
840 goto out;
841 if (x->replay_esn) {
842 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
843 xfrm_replay_state_esn_len(x->replay_esn),
844 x->replay_esn);
845 if (ret)
846 goto out;
847 }
848 if (x->security)
849 ret = copy_sec_ctx(x->security, skb);
850out:
851 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700852}
853
854static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
855{
856 struct xfrm_dump_info *sp = ptr;
857 struct sk_buff *in_skb = sp->in_skb;
858 struct sk_buff *skb = sp->out_skb;
859 struct xfrm_usersa_info *p;
860 struct nlmsghdr *nlh;
861 int err;
862
Eric W. Biederman15e47302012-09-07 20:12:54 +0000863 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700864 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
865 if (nlh == NULL)
866 return -EMSGSIZE;
867
868 p = nlmsg_data(nlh);
869
870 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700871 if (err) {
872 nlmsg_cancel(skb, nlh);
873 return err;
874 }
Thomas Graf98250692007-08-22 12:47:26 -0700875 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
Timo Teras4c563f72008-02-28 21:31:08 -0800879static int xfrm_dump_sa_done(struct netlink_callback *cb)
880{
881 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800882 struct sock *sk = cb->skb->sk;
883 struct net *net = sock_net(sk);
884
885 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800886 return 0;
887}
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
890{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800891 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800892 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 struct xfrm_dump_info info;
894
Timo Teras4c563f72008-02-28 21:31:08 -0800895 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
896 sizeof(cb->args) - sizeof(cb->args[0]));
897
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 info.in_skb = cb->skb;
899 info.out_skb = skb;
900 info.nlmsg_seq = cb->nlh->nlmsg_seq;
901 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800902
903 if (!cb->args[0]) {
904 cb->args[0] = 1;
905 xfrm_state_walk_init(walk, 0);
906 }
907
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800908 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
910 return skb->len;
911}
912
913static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
914 struct xfrm_state *x, u32 seq)
915{
916 struct xfrm_dump_info info;
917 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +0000918 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
Thomas Graf7deb2262007-08-22 13:57:39 -0700920 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 if (!skb)
922 return ERR_PTR(-ENOMEM);
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 info.in_skb = in_skb;
925 info.out_skb = skb;
926 info.nlmsg_seq = seq;
927 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Mathias Krause864745d2012-09-13 11:41:26 +0000929 err = dump_one_state(x, 0, &info);
930 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +0000932 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 }
934
935 return skb;
936}
937
Thomas Graf7deb2262007-08-22 13:57:39 -0700938static inline size_t xfrm_spdinfo_msgsize(void)
939{
940 return NLMSG_ALIGN(4)
941 + nla_total_size(sizeof(struct xfrmu_spdinfo))
942 + nla_total_size(sizeof(struct xfrmu_spdhinfo));
943}
944
Alexey Dobriyane0710412010-01-23 13:37:10 +0000945static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000946 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700947{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700948 struct xfrmk_spdinfo si;
949 struct xfrmu_spdinfo spc;
950 struct xfrmu_spdhinfo sph;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700951 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700952 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700953 u32 *f;
954
Eric W. Biederman15e47302012-09-07 20:12:54 +0000955 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300956 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700957 return -EMSGSIZE;
958
959 f = nlmsg_data(nlh);
960 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +0000961 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -0700962 spc.incnt = si.incnt;
963 spc.outcnt = si.outcnt;
964 spc.fwdcnt = si.fwdcnt;
965 spc.inscnt = si.inscnt;
966 spc.outscnt = si.outscnt;
967 spc.fwdscnt = si.fwdscnt;
968 sph.spdhcnt = si.spdhcnt;
969 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700970
David S. Miller1d1e34d2012-06-27 21:57:03 -0700971 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
972 if (!err)
973 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
974 if (err) {
975 nlmsg_cancel(skb, nlh);
976 return err;
977 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700978
979 return nlmsg_end(skb, nlh);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700980}
981
982static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700983 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700984{
Alexey Dobriyana6483b72008-11-25 17:38:20 -0800985 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700986 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -0700987 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +0000988 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700989 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700990
Thomas Graf7deb2262007-08-22 13:57:39 -0700991 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700992 if (r_skb == NULL)
993 return -ENOMEM;
994
Eric W. Biederman15e47302012-09-07 20:12:54 +0000995 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700996 BUG();
997
Eric W. Biederman15e47302012-09-07 20:12:54 +0000998 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -0700999}
1000
Thomas Graf7deb2262007-08-22 13:57:39 -07001001static inline size_t xfrm_sadinfo_msgsize(void)
1002{
1003 return NLMSG_ALIGN(4)
1004 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1005 + nla_total_size(4); /* XFRMA_SAD_CNT */
1006}
1007
Alexey Dobriyane0710412010-01-23 13:37:10 +00001008static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001009 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001010{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001011 struct xfrmk_sadinfo si;
1012 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001013 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001014 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001015 u32 *f;
1016
Eric W. Biederman15e47302012-09-07 20:12:54 +00001017 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001018 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001019 return -EMSGSIZE;
1020
1021 f = nlmsg_data(nlh);
1022 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001023 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001024
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001025 sh.sadhmcnt = si.sadhmcnt;
1026 sh.sadhcnt = si.sadhcnt;
1027
David S. Miller1d1e34d2012-06-27 21:57:03 -07001028 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1029 if (!err)
1030 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1031 if (err) {
1032 nlmsg_cancel(skb, nlh);
1033 return err;
1034 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001035
1036 return nlmsg_end(skb, nlh);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001037}
1038
1039static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001040 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001041{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001042 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001043 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001044 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001045 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001046 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001047
Thomas Graf7deb2262007-08-22 13:57:39 -07001048 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001049 if (r_skb == NULL)
1050 return -ENOMEM;
1051
Eric W. Biederman15e47302012-09-07 20:12:54 +00001052 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001053 BUG();
1054
Eric W. Biederman15e47302012-09-07 20:12:54 +00001055 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001056}
1057
Christoph Hellwig22e70052007-01-02 15:22:30 -08001058static int xfrm_get_sa(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);
Thomas Graf7b67c852007-08-22 13:53:52 -07001062 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 struct xfrm_state *x;
1064 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001065 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001067 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 if (x == NULL)
1069 goto out_noput;
1070
1071 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1072 if (IS_ERR(resp_skb)) {
1073 err = PTR_ERR(resp_skb);
1074 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001075 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076 }
1077 xfrm_state_put(x);
1078out_noput:
1079 return err;
1080}
1081
1082static int verify_userspi_info(struct xfrm_userspi_info *p)
1083{
1084 switch (p->info.id.proto) {
1085 case IPPROTO_AH:
1086 case IPPROTO_ESP:
1087 break;
1088
1089 case IPPROTO_COMP:
1090 /* IPCOMP spi is 16-bits. */
1091 if (p->max >= 0x10000)
1092 return -EINVAL;
1093 break;
1094
1095 default:
1096 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001097 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 if (p->min > p->max)
1100 return -EINVAL;
1101
1102 return 0;
1103}
1104
Christoph Hellwig22e70052007-01-02 15:22:30 -08001105static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001106 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001108 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 struct xfrm_state *x;
1110 struct xfrm_userspi_info *p;
1111 struct sk_buff *resp_skb;
1112 xfrm_address_t *daddr;
1113 int family;
1114 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001115 u32 mark;
1116 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
Thomas Graf7b67c852007-08-22 13:53:52 -07001118 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119 err = verify_userspi_info(p);
1120 if (err)
1121 goto out_noput;
1122
1123 family = p->info.family;
1124 daddr = &p->info.id.daddr;
1125
1126 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001127
1128 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001130 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001131 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 xfrm_state_put(x);
1133 x = NULL;
1134 }
1135 }
1136
1137 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001138 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 p->info.id.proto, daddr,
1140 &p->info.saddr, 1,
1141 family);
1142 err = -ENOENT;
1143 if (x == NULL)
1144 goto out_noput;
1145
Herbert Xu658b2192007-10-09 13:29:52 -07001146 err = xfrm_alloc_spi(x, p->min, p->max);
1147 if (err)
1148 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Herbert Xu658b2192007-10-09 13:29:52 -07001150 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 if (IS_ERR(resp_skb)) {
1152 err = PTR_ERR(resp_skb);
1153 goto out;
1154 }
1155
Eric W. Biederman15e47302012-09-07 20:12:54 +00001156 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
1158out:
1159 xfrm_state_put(x);
1160out_noput:
1161 return err;
1162}
1163
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001164static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165{
1166 switch (dir) {
1167 case XFRM_POLICY_IN:
1168 case XFRM_POLICY_OUT:
1169 case XFRM_POLICY_FWD:
1170 break;
1171
1172 default:
1173 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001174 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175
1176 return 0;
1177}
1178
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001179static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001180{
1181 switch (type) {
1182 case XFRM_POLICY_TYPE_MAIN:
1183#ifdef CONFIG_XFRM_SUB_POLICY
1184 case XFRM_POLICY_TYPE_SUB:
1185#endif
1186 break;
1187
1188 default:
1189 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001190 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001191
1192 return 0;
1193}
1194
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1196{
Fan Due682adf2013-11-07 17:47:48 +08001197 int ret;
1198
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 switch (p->share) {
1200 case XFRM_SHARE_ANY:
1201 case XFRM_SHARE_SESSION:
1202 case XFRM_SHARE_USER:
1203 case XFRM_SHARE_UNIQUE:
1204 break;
1205
1206 default:
1207 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001208 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
1210 switch (p->action) {
1211 case XFRM_POLICY_ALLOW:
1212 case XFRM_POLICY_BLOCK:
1213 break;
1214
1215 default:
1216 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001217 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
1219 switch (p->sel.family) {
1220 case AF_INET:
1221 break;
1222
1223 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001224#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225 break;
1226#else
1227 return -EAFNOSUPPORT;
1228#endif
1229
1230 default:
1231 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Fan Due682adf2013-11-07 17:47:48 +08001234 ret = verify_policy_dir(p->dir);
1235 if (ret)
1236 return ret;
1237 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1238 return -EINVAL;
1239
1240 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241}
1242
Thomas Graf5424f322007-08-22 14:01:33 -07001243static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001244{
Thomas Graf5424f322007-08-22 14:01:33 -07001245 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001246 struct xfrm_user_sec_ctx *uctx;
1247
1248 if (!rt)
1249 return 0;
1250
Thomas Graf5424f322007-08-22 14:01:33 -07001251 uctx = nla_data(rt);
Paul Moore03e1ad72008-04-12 19:07:52 -07001252 return security_xfrm_policy_alloc(&pol->security, uctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001253}
1254
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1256 int nr)
1257{
1258 int i;
1259
1260 xp->xfrm_nr = nr;
1261 for (i = 0; i < nr; i++, ut++) {
1262 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1263
1264 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1265 memcpy(&t->saddr, &ut->saddr,
1266 sizeof(xfrm_address_t));
1267 t->reqid = ut->reqid;
1268 t->mode = ut->mode;
1269 t->share = ut->share;
1270 t->optional = ut->optional;
1271 t->aalgos = ut->aalgos;
1272 t->ealgos = ut->ealgos;
1273 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001274 /* If all masks are ~0, then we allow all algorithms. */
1275 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001276 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 }
1278}
1279
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001280static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1281{
1282 int i;
1283
1284 if (nr > XFRM_MAX_DEPTH)
1285 return -EINVAL;
1286
1287 for (i = 0; i < nr; i++) {
1288 /* We never validated the ut->family value, so many
1289 * applications simply leave it at zero. The check was
1290 * never made and ut->family was ignored because all
1291 * templates could be assumed to have the same family as
1292 * the policy itself. Now that we will have ipv4-in-ipv6
1293 * and ipv6-in-ipv4 tunnels, this is no longer true.
1294 */
1295 if (!ut[i].family)
1296 ut[i].family = family;
1297
1298 switch (ut[i].family) {
1299 case AF_INET:
1300 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001301#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001302 case AF_INET6:
1303 break;
1304#endif
1305 default:
1306 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001307 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001308 }
1309
1310 return 0;
1311}
1312
Thomas Graf5424f322007-08-22 14:01:33 -07001313static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
Thomas Graf5424f322007-08-22 14:01:33 -07001315 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 if (!rt) {
1318 pol->xfrm_nr = 0;
1319 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001320 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1321 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001322 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001324 err = validate_tmpl(nr, utmpl, pol->family);
1325 if (err)
1326 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Thomas Graf5424f322007-08-22 14:01:33 -07001328 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 }
1330 return 0;
1331}
1332
Thomas Graf5424f322007-08-22 14:01:33 -07001333static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001334{
Thomas Graf5424f322007-08-22 14:01:33 -07001335 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001336 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001337 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001338 int err;
1339
1340 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001341 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001342 type = upt->type;
1343 }
1344
1345 err = verify_policy_type(type);
1346 if (err)
1347 return err;
1348
1349 *tp = type;
1350 return 0;
1351}
1352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1354{
1355 xp->priority = p->priority;
1356 xp->index = p->index;
1357 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1358 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1359 xp->action = p->action;
1360 xp->flags = p->flags;
1361 xp->family = p->sel.family;
1362 /* XXX xp->share = p->share; */
1363}
1364
1365static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1366{
Mathias Krause7b789832012-09-19 11:33:40 +00001367 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1369 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1370 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1371 p->priority = xp->priority;
1372 p->index = xp->index;
1373 p->sel.family = xp->family;
1374 p->dir = dir;
1375 p->action = xp->action;
1376 p->flags = xp->flags;
1377 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1378}
1379
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001380static 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 -07001381{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001382 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 int err;
1384
1385 if (!xp) {
1386 *errp = -ENOMEM;
1387 return NULL;
1388 }
1389
1390 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001391
Thomas Graf35a7aa02007-08-22 14:00:40 -07001392 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001393 if (err)
1394 goto error;
1395
Thomas Graf35a7aa02007-08-22 14:00:40 -07001396 if (!(err = copy_from_user_tmpl(xp, attrs)))
1397 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001398 if (err)
1399 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001401 xfrm_mark_get(attrs, &xp->mark);
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001404 error:
1405 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001406 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001407 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001408 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409}
1410
Christoph Hellwig22e70052007-01-02 15:22:30 -08001411static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001412 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001414 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001415 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001417 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 int err;
1419 int excl;
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001420 kuid_t loginuid = audit_get_loginuid(current);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001421 u32 sessionid = audit_get_sessionid(current);
1422 u32 sid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
1424 err = verify_newpolicy_info(p);
1425 if (err)
1426 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001427 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001428 if (err)
1429 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001431 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 if (!xp)
1433 return err;
1434
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001435 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001436 * Aha! this is anti-netlink really i.e more pfkey derived
1437 * in netlink excl is a flag and you wouldnt need
1438 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1440 err = xfrm_policy_insert(p->dir, xp, excl);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001441 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -04001442 xfrm_audit_policy_add(xp, err ? 0 : 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001445 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 kfree(xp);
1447 return err;
1448 }
1449
Herbert Xuf60f6b82005-06-18 22:44:37 -07001450 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001451 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001452 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001453 km_policy_notify(xp, p->dir, &c);
1454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 xfrm_pol_put(xp);
1456
1457 return 0;
1458}
1459
1460static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1461{
1462 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1463 int i;
1464
1465 if (xp->xfrm_nr == 0)
1466 return 0;
1467
1468 for (i = 0; i < xp->xfrm_nr; i++) {
1469 struct xfrm_user_tmpl *up = &vec[i];
1470 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1471
Mathias Krause1f868402012-09-19 11:33:41 +00001472 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001474 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1476 up->reqid = kp->reqid;
1477 up->mode = kp->mode;
1478 up->share = kp->share;
1479 up->optional = kp->optional;
1480 up->aalgos = kp->aalgos;
1481 up->ealgos = kp->ealgos;
1482 up->calgos = kp->calgos;
1483 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484
Thomas Grafc0144be2007-08-22 13:55:43 -07001485 return nla_put(skb, XFRMA_TMPL,
1486 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001487}
1488
Serge Hallyn0d681622006-07-24 23:30:44 -07001489static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1490{
1491 if (x->security) {
1492 return copy_sec_ctx(x->security, skb);
1493 }
1494 return 0;
1495}
1496
1497static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1498{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001499 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001500 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001501 return 0;
1502}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001503static inline size_t userpolicy_type_attrsize(void)
1504{
1505#ifdef CONFIG_XFRM_SUB_POLICY
1506 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1507#else
1508 return 0;
1509#endif
1510}
Serge Hallyn0d681622006-07-24 23:30:44 -07001511
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001512#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001513static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001514{
Thomas Grafc0144be2007-08-22 13:55:43 -07001515 struct xfrm_userpolicy_type upt = {
1516 .type = type,
1517 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001518
Thomas Grafc0144be2007-08-22 13:55:43 -07001519 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001520}
1521
1522#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001523static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001524{
1525 return 0;
1526}
1527#endif
1528
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1530{
1531 struct xfrm_dump_info *sp = ptr;
1532 struct xfrm_userpolicy_info *p;
1533 struct sk_buff *in_skb = sp->in_skb;
1534 struct sk_buff *skb = sp->out_skb;
1535 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001536 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Eric W. Biederman15e47302012-09-07 20:12:54 +00001538 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001539 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1540 if (nlh == NULL)
1541 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542
Thomas Graf7b67c852007-08-22 13:53:52 -07001543 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001545 err = copy_to_user_tmpl(xp, skb);
1546 if (!err)
1547 err = copy_to_user_sec_ctx(xp, skb);
1548 if (!err)
1549 err = copy_to_user_policy_type(xp->type, skb);
1550 if (!err)
1551 err = xfrm_mark_put(skb, &xp->mark);
1552 if (err) {
1553 nlmsg_cancel(skb, nlh);
1554 return err;
1555 }
Thomas Graf98250692007-08-22 12:47:26 -07001556 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558}
1559
Timo Teras4c563f72008-02-28 21:31:08 -08001560static int xfrm_dump_policy_done(struct netlink_callback *cb)
1561{
1562 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +08001563 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001564
Fan Du283bc9f2013-11-07 17:47:50 +08001565 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001566 return 0;
1567}
1568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1570{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001571 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001572 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 struct xfrm_dump_info info;
1574
Timo Teras4c563f72008-02-28 21:31:08 -08001575 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) >
1576 sizeof(cb->args) - sizeof(cb->args[0]));
1577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 info.in_skb = cb->skb;
1579 info.out_skb = skb;
1580 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1581 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001582
1583 if (!cb->args[0]) {
1584 cb->args[0] = 1;
1585 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1586 }
1587
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001588 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
1590 return skb->len;
1591}
1592
1593static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1594 struct xfrm_policy *xp,
1595 int dir, u32 seq)
1596{
1597 struct xfrm_dump_info info;
1598 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001599 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Thomas Graf7deb2262007-08-22 13:57:39 -07001601 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 if (!skb)
1603 return ERR_PTR(-ENOMEM);
1604
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 info.in_skb = in_skb;
1606 info.out_skb = skb;
1607 info.nlmsg_seq = seq;
1608 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Mathias Krausec2546372012-09-14 09:58:32 +00001610 err = dump_one_policy(xp, dir, 0, &info);
1611 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001613 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 }
1615
1616 return skb;
1617}
1618
Christoph Hellwig22e70052007-01-02 15:22:30 -08001619static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001620 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001622 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 struct xfrm_policy *xp;
1624 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001625 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001627 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001629 struct xfrm_mark m;
1630 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Thomas Graf7b67c852007-08-22 13:53:52 -07001632 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1634
Thomas Graf35a7aa02007-08-22 14:00:40 -07001635 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001636 if (err)
1637 return err;
1638
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 err = verify_policy_dir(p->dir);
1640 if (err)
1641 return err;
1642
1643 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001644 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001645 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001646 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001647 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001648
Thomas Graf35a7aa02007-08-22 14:00:40 -07001649 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001650 if (err)
1651 return err;
1652
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001653 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001654 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001655 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001656
Paul Moore03e1ad72008-04-12 19:07:52 -07001657 err = security_xfrm_policy_alloc(&ctx, uctx);
1658 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001659 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001660 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001661 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001662 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001663 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 if (xp == NULL)
1666 return -ENOENT;
1667
1668 if (!delete) {
1669 struct sk_buff *resp_skb;
1670
1671 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1672 if (IS_ERR(resp_skb)) {
1673 err = PTR_ERR(resp_skb);
1674 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001675 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001676 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001678 } else {
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001679 kuid_t loginuid = audit_get_loginuid(current);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001680 u32 sessionid = audit_get_sessionid(current);
1681 u32 sid;
Eric Paris25323862008-04-18 10:09:25 -04001682
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001683 security_task_getsecid(current, &sid);
Eric Paris25323862008-04-18 10:09:25 -04001684 xfrm_audit_policy_delete(xp, err ? 0 : 1, loginuid, sessionid,
1685 sid);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001686
1687 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001688 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001689
Herbert Xue7443892005-06-18 22:44:18 -07001690 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001691 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001692 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001693 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001694 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 }
1696
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001697out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001698 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001699 if (delete && err == 0)
1700 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 return err;
1702}
1703
Christoph Hellwig22e70052007-01-02 15:22:30 -08001704static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001705 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001707 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001708 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001709 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten161a09e2006-11-27 13:11:54 -06001710 struct xfrm_audit audit_info;
Joy Latten4aa2e622007-06-04 19:05:57 -04001711 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001713 audit_info.loginuid = audit_get_loginuid(current);
1714 audit_info.sessionid = audit_get_sessionid(current);
1715 security_task_getsecid(current, &audit_info.secid);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001716 err = xfrm_state_flush(net, p->proto, &audit_info);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001717 if (err) {
1718 if (err == -ESRCH) /* empty table */
1719 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001720 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001721 }
Herbert Xubf088672005-06-18 22:44:00 -07001722 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001723 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001724 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001725 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001726 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001727 km_state_notify(NULL, &c);
1728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 return 0;
1730}
1731
Steffen Klassertd8647b72011-03-08 00:10:27 +00001732static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001733{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001734 size_t replay_size = x->replay_esn ?
1735 xfrm_replay_state_esn_len(x->replay_esn) :
1736 sizeof(struct xfrm_replay_state);
1737
Thomas Graf7deb2262007-08-22 13:57:39 -07001738 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001739 + nla_total_size(replay_size)
Thomas Graf7deb2262007-08-22 13:57:39 -07001740 + nla_total_size(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001741 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001742 + nla_total_size(4) /* XFRM_AE_RTHR */
1743 + nla_total_size(4); /* XFRM_AE_ETHR */
1744}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001745
David S. Miller214e0052011-02-24 00:02:38 -05001746static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001747{
1748 struct xfrm_aevent_id *id;
1749 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001750 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001751
Eric W. Biederman15e47302012-09-07 20:12:54 +00001752 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001753 if (nlh == NULL)
1754 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001755
Thomas Graf7b67c852007-08-22 13:53:52 -07001756 id = nlmsg_data(nlh);
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001757 memcpy(&id->sa_id.daddr, &x->id.daddr,sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001758 id->sa_id.spi = x->id.spi;
1759 id->sa_id.family = x->props.family;
1760 id->sa_id.proto = x->id.proto;
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001761 memcpy(&id->saddr, &x->props.saddr,sizeof(x->props.saddr));
1762 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001763 id->flags = c->data.aevent;
1764
David S. Millerd0fde792012-03-29 04:02:26 -04001765 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001766 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1767 xfrm_replay_state_esn_len(x->replay_esn),
1768 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001769 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001770 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1771 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001772 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001773 if (err)
1774 goto out_cancel;
1775 err = nla_put(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft);
1776 if (err)
1777 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001778
David S. Miller1d1e34d2012-06-27 21:57:03 -07001779 if (id->flags & XFRM_AE_RTHR) {
1780 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1781 if (err)
1782 goto out_cancel;
1783 }
1784 if (id->flags & XFRM_AE_ETHR) {
1785 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1786 x->replay_maxage * 10 / HZ);
1787 if (err)
1788 goto out_cancel;
1789 }
1790 err = xfrm_mark_put(skb, &x->mark);
1791 if (err)
1792 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001793
Thomas Graf98250692007-08-22 12:47:26 -07001794 return nlmsg_end(skb, nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001795
David S. Miller1d1e34d2012-06-27 21:57:03 -07001796out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001797 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001798 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001799}
1800
Christoph Hellwig22e70052007-01-02 15:22:30 -08001801static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001802 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001803{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001804 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001805 struct xfrm_state *x;
1806 struct sk_buff *r_skb;
1807 int err;
1808 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001809 u32 mark;
1810 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001811 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001812 struct xfrm_usersa_id *id = &p->sa_id;
1813
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001814 mark = xfrm_mark_get(attrs, &m);
1815
1816 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001817 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001818 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001819
1820 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1821 if (r_skb == NULL) {
1822 xfrm_state_put(x);
1823 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001824 }
1825
1826 /*
1827 * XXX: is this lock really needed - none of the other
1828 * gets lock (the concern is things getting updated
1829 * while we are still reading) - jhs
1830 */
1831 spin_lock_bh(&x->lock);
1832 c.data.aevent = p->flags;
1833 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001834 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001835
1836 if (build_aevent(r_skb, x, &c) < 0)
1837 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001838 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001839 spin_unlock_bh(&x->lock);
1840 xfrm_state_put(x);
1841 return err;
1842}
1843
Christoph Hellwig22e70052007-01-02 15:22:30 -08001844static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001845 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001846{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001847 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001848 struct xfrm_state *x;
1849 struct km_event c;
1850 int err = - EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001851 u32 mark = 0;
1852 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001853 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001854 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001855 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001856 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001857
Steffen Klassertd8647b72011-03-08 00:10:27 +00001858 if (!lt && !rp && !re)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001859 return err;
1860
1861 /* pedantic mode - thou shalt sayeth replaceth */
1862 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1863 return err;
1864
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001865 mark = xfrm_mark_get(attrs, &m);
1866
1867 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 -08001868 if (x == NULL)
1869 return -ESRCH;
1870
1871 if (x->km.state != XFRM_STATE_VALID)
1872 goto out;
1873
Steffen Klassert4479ff72013-09-09 09:39:01 +02001874 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00001875 if (err)
1876 goto out;
1877
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001878 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00001879 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001880 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001881
1882 c.event = nlh->nlmsg_type;
1883 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001884 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001885 c.data.aevent = XFRM_AE_CU;
1886 km_state_notify(x, &c);
1887 err = 0;
1888out:
1889 xfrm_state_put(x);
1890 return err;
1891}
1892
Christoph Hellwig22e70052007-01-02 15:22:30 -08001893static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001894 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001896 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001897 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001898 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001899 int err;
Joy Latten161a09e2006-11-27 13:11:54 -06001900 struct xfrm_audit audit_info;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001901
Thomas Graf35a7aa02007-08-22 14:00:40 -07001902 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001903 if (err)
1904 return err;
1905
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001906 audit_info.loginuid = audit_get_loginuid(current);
1907 audit_info.sessionid = audit_get_sessionid(current);
1908 security_task_getsecid(current, &audit_info.secid);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001909 err = xfrm_policy_flush(net, type, &audit_info);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001910 if (err) {
1911 if (err == -ESRCH) /* empty table */
1912 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001913 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001914 }
1915
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001916 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001917 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001918 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001919 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001920 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001921 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 return 0;
1923}
1924
Christoph Hellwig22e70052007-01-02 15:22:30 -08001925static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001926 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001927{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001928 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001929 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07001930 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001931 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001932 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001933 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001934 struct xfrm_mark m;
1935 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001936
Thomas Graf35a7aa02007-08-22 14:00:40 -07001937 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001938 if (err)
1939 return err;
1940
Timo Teräsc8bf4d02010-03-31 00:17:04 +00001941 err = verify_policy_dir(p->dir);
1942 if (err)
1943 return err;
1944
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001945 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001946 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001947 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001948 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001949 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001950
Thomas Graf35a7aa02007-08-22 14:00:40 -07001951 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001952 if (err)
1953 return err;
1954
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001955 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001956 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001957 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001958
Paul Moore03e1ad72008-04-12 19:07:52 -07001959 err = security_xfrm_policy_alloc(&ctx, uctx);
1960 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001961 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001962 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001963 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001964 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001965 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001966 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001967 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08001968 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07001969
Timo Teräsea2dea92010-03-31 00:17:05 +00001970 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001971 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001972
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001973 err = 0;
1974 if (up->hard) {
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07001975 kuid_t loginuid = audit_get_loginuid(current);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08001976 u32 sessionid = audit_get_sessionid(current);
1977 u32 sid;
1978
1979 security_task_getsecid(current, &sid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001980 xfrm_policy_delete(xp, p->dir);
Eric Paris25323862008-04-18 10:09:25 -04001981 xfrm_audit_policy_delete(xp, 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06001982
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001983 } else {
1984 // reset the timers here?
stephen hemminger62db5cf2010-05-12 06:37:06 +00001985 WARN(1, "Dont know what to do with soft policy expire\n");
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001986 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00001987 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08001988
1989out:
1990 xfrm_pol_put(xp);
1991 return err;
1992}
1993
Christoph Hellwig22e70052007-01-02 15:22:30 -08001994static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001995 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001996{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001997 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08001998 struct xfrm_state *x;
1999 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002000 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002001 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002002 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002003 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002004
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002005 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 -08002006
David S. Miller3a765aa2007-02-26 14:52:21 -08002007 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002008 if (x == NULL)
2009 return err;
2010
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002011 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002012 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002013 if (x->km.state != XFRM_STATE_VALID)
2014 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002015 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002016
Joy Latten161a09e2006-11-27 13:11:54 -06002017 if (ue->hard) {
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07002018 kuid_t loginuid = audit_get_loginuid(current);
Patrick McHardyc53fa1e2011-03-03 10:55:40 -08002019 u32 sessionid = audit_get_sessionid(current);
2020 u32 sid;
2021
2022 security_task_getsecid(current, &sid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002023 __xfrm_state_delete(x);
Eric Paris25323862008-04-18 10:09:25 -04002024 xfrm_audit_state_delete(x, 1, loginuid, sessionid, sid);
Joy Latten161a09e2006-11-27 13:11:54 -06002025 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002026 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002027out:
2028 spin_unlock_bh(&x->lock);
2029 xfrm_state_put(x);
2030 return err;
2031}
2032
Christoph Hellwig22e70052007-01-02 15:22:30 -08002033static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002034 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002035{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002036 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002037 struct xfrm_policy *xp;
2038 struct xfrm_user_tmpl *ut;
2039 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002040 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002041 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002042
Thomas Graf7b67c852007-08-22 13:53:52 -07002043 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002044 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002045 int err = -ENOMEM;
2046
2047 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002048 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002049
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002050 xfrm_mark_get(attrs, &mark);
2051
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002052 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002053 if (err)
2054 goto bad_policy;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002055
2056 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002057 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002058 if (!xp)
2059 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002060
2061 memcpy(&x->id, &ua->id, sizeof(ua->id));
2062 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2063 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002064 xp->mark.m = x->mark.m = mark.m;
2065 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002066 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002067 /* extract the templates and for each call km_key */
2068 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2069 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2070 memcpy(&x->id, &t->id, sizeof(x->id));
2071 x->props.mode = t->mode;
2072 x->props.reqid = t->reqid;
2073 x->props.family = ut->family;
2074 t->aalgos = ua->aalgos;
2075 t->ealgos = ua->ealgos;
2076 t->calgos = ua->calgos;
2077 err = km_query(x, t, xp);
2078
2079 }
2080
2081 kfree(x);
2082 kfree(xp);
2083
2084 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002085
2086bad_policy:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002087 WARN(1, "BAD policy passed\n");
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002088free_state:
2089 kfree(x);
2090nomem:
2091 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002092}
2093
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002094#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002095static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002096 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002097 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002098{
Thomas Graf5424f322007-08-22 14:01:33 -07002099 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002100 struct xfrm_user_migrate *um;
2101 int i, num_migrate;
2102
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002103 if (k != NULL) {
2104 struct xfrm_user_kmaddress *uk;
2105
2106 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2107 memcpy(&k->local, &uk->local, sizeof(k->local));
2108 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2109 k->family = uk->family;
2110 k->reserved = uk->reserved;
2111 }
2112
Thomas Graf5424f322007-08-22 14:01:33 -07002113 um = nla_data(rt);
2114 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002115
2116 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2117 return -EINVAL;
2118
2119 for (i = 0; i < num_migrate; i++, um++, ma++) {
2120 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2121 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2122 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2123 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2124
2125 ma->proto = um->proto;
2126 ma->mode = um->mode;
2127 ma->reqid = um->reqid;
2128
2129 ma->old_family = um->old_family;
2130 ma->new_family = um->new_family;
2131 }
2132
2133 *num = i;
2134 return 0;
2135}
2136
2137static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002138 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002139{
Thomas Graf7b67c852007-08-22 13:53:52 -07002140 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002141 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002142 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002143 u8 type;
2144 int err;
2145 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002146 struct net *net = sock_net(skb->sk);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002147
Thomas Graf35a7aa02007-08-22 14:00:40 -07002148 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002149 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002150
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002151 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2152
Thomas Graf5424f322007-08-22 14:01:33 -07002153 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002154 if (err)
2155 return err;
2156
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002157 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002158 if (err)
2159 return err;
2160
2161 if (!n)
2162 return 0;
2163
Fan Du8d549c42013-11-07 17:47:49 +08002164 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002165
2166 return 0;
2167}
2168#else
2169static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002170 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002171{
2172 return -ENOPROTOOPT;
2173}
2174#endif
2175
2176#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002177static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002178{
2179 struct xfrm_user_migrate um;
2180
2181 memset(&um, 0, sizeof(um));
2182 um.proto = m->proto;
2183 um.mode = m->mode;
2184 um.reqid = m->reqid;
2185 um.old_family = m->old_family;
2186 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2187 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2188 um.new_family = m->new_family;
2189 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2190 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2191
Thomas Grafc0144be2007-08-22 13:55:43 -07002192 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002193}
2194
David S. Miller183cad12011-02-24 00:28:01 -05002195static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002196{
2197 struct xfrm_user_kmaddress uk;
2198
2199 memset(&uk, 0, sizeof(uk));
2200 uk.family = k->family;
2201 uk.reserved = k->reserved;
2202 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002203 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002204
2205 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2206}
2207
2208static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002209{
2210 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002211 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2212 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2213 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002214}
2215
David S. Miller183cad12011-02-24 00:28:01 -05002216static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2217 int num_migrate, const struct xfrm_kmaddress *k,
2218 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002219{
David S. Miller183cad12011-02-24 00:28:01 -05002220 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002221 struct xfrm_userpolicy_id *pol_id;
2222 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002223 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002224
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002225 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2226 if (nlh == NULL)
2227 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002228
Thomas Graf7b67c852007-08-22 13:53:52 -07002229 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002230 /* copy data from selector, dir, and type to the pol_id */
2231 memset(pol_id, 0, sizeof(*pol_id));
2232 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2233 pol_id->dir = dir;
2234
David S. Miller1d1e34d2012-06-27 21:57:03 -07002235 if (k != NULL) {
2236 err = copy_to_user_kmaddress(k, skb);
2237 if (err)
2238 goto out_cancel;
2239 }
2240 err = copy_to_user_policy_type(type, skb);
2241 if (err)
2242 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002243 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002244 err = copy_to_user_migrate(mp, skb);
2245 if (err)
2246 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002247 }
2248
Thomas Graf98250692007-08-22 12:47:26 -07002249 return nlmsg_end(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002250
2251out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002252 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002253 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002254}
2255
David S. Miller183cad12011-02-24 00:28:01 -05002256static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2257 const struct xfrm_migrate *m, int num_migrate,
2258 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002259{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002260 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002261 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002262
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002263 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002264 if (skb == NULL)
2265 return -ENOMEM;
2266
2267 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002268 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002269 BUG();
2270
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002271 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MIGRATE, GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002272}
2273#else
David S. Miller183cad12011-02-24 00:28:01 -05002274static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2275 const struct xfrm_migrate *m, int num_migrate,
2276 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002277{
2278 return -ENOPROTOOPT;
2279}
2280#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002281
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002282#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002283
2284static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002285 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002286 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2287 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2288 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2289 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2290 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2291 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002292 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002293 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002294 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002295 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002296 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002297 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002298 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002299 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2300 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002301 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002302 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002303 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
2304 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305};
2306
Thomas Graf492b5582005-05-03 14:26:40 -07002307#undef XMSGSIZE
2308
Thomas Grafcf5cb792007-08-22 13:59:04 -07002309static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002310 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2311 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2312 [XFRMA_LASTUSED] = { .type = NLA_U64},
2313 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002314 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002315 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2316 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2317 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2318 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2319 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2320 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2321 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2322 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2323 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2324 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2325 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2326 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2327 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2328 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002329 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002330 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002331 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002332 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002333 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002334};
2335
Mathias Krause05600a72013-02-24 14:10:27 +01002336static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002337 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002339 int (*done)(struct netlink_callback *);
Thomas Graf492b5582005-05-03 14:26:40 -07002340} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2341 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2342 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2343 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002344 .dump = xfrm_dump_sa,
2345 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002346 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2347 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2348 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Timo Teras4c563f72008-02-28 21:31:08 -08002349 .dump = xfrm_dump_policy,
2350 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002351 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002352 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002353 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002354 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2355 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002356 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002357 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2358 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002359 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2360 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002361 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002362 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002363 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364};
2365
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002366static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002368 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002369 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002370 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002371 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002375 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376
2377 type -= XFRM_MSG_BASE;
2378 link = &xfrm_dispatch[type];
2379
2380 /* All operations require privileges, even GET */
Eric W. Biedermandf008c92012-11-16 03:03:07 +00002381 if (!ns_capable(net->user_ns, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002382 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383
Thomas Graf492b5582005-05-03 14:26:40 -07002384 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2385 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002386 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002388 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002390 {
2391 struct netlink_dump_control c = {
2392 .dump = link->dump,
2393 .done = link->done,
2394 };
2395 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2396 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 }
2398
Thomas Graf35a7aa02007-08-22 14:00:40 -07002399 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs, XFRMA_MAX,
Thomas Grafcf5cb792007-08-22 13:59:04 -07002400 xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002401 if (err < 0)
2402 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
2404 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002405 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
Thomas Graf5424f322007-08-22 14:01:33 -07002407 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408}
2409
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002410static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411{
Fan Du283bc9f2013-11-07 17:47:50 +08002412 struct net *net = sock_net(skb->sk);
2413
2414 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002415 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002416 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417}
2418
Thomas Graf7deb2262007-08-22 13:57:39 -07002419static inline size_t xfrm_expire_msgsize(void)
2420{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002421 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2422 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002423}
2424
David S. Miller214e0052011-02-24 00:02:38 -05002425static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426{
2427 struct xfrm_user_expire *ue;
2428 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002429 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
Eric W. Biederman15e47302012-09-07 20:12:54 +00002431 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002432 if (nlh == NULL)
2433 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434
Thomas Graf7b67c852007-08-22 13:53:52 -07002435 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002437 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438
David S. Miller1d1e34d2012-06-27 21:57:03 -07002439 err = xfrm_mark_put(skb, &x->mark);
2440 if (err)
2441 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002442
Thomas Graf98250692007-08-22 12:47:26 -07002443 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444}
2445
David S. Miller214e0052011-02-24 00:02:38 -05002446static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002448 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 struct sk_buff *skb;
2450
Thomas Graf7deb2262007-08-22 13:57:39 -07002451 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 if (skb == NULL)
2453 return -ENOMEM;
2454
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002455 if (build_expire(skb, x, c) < 0) {
2456 kfree_skb(skb);
2457 return -EMSGSIZE;
2458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002460 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461}
2462
David S. Miller214e0052011-02-24 00:02:38 -05002463static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002464{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002465 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002466 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002467
Steffen Klassertd8647b72011-03-08 00:10:27 +00002468 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002469 if (skb == NULL)
2470 return -ENOMEM;
2471
2472 if (build_aevent(skb, x, c) < 0)
2473 BUG();
2474
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002475 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_AEVENTS, GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002476}
2477
David S. Miller214e0052011-02-24 00:02:38 -05002478static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002479{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002480 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002481 struct xfrm_usersa_flush *p;
2482 struct nlmsghdr *nlh;
2483 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002484 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002485
Thomas Graf7deb2262007-08-22 13:57:39 -07002486 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002487 if (skb == NULL)
2488 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002489
Eric W. Biederman15e47302012-09-07 20:12:54 +00002490 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002491 if (nlh == NULL) {
2492 kfree_skb(skb);
2493 return -EMSGSIZE;
2494 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002495
Thomas Graf7b67c852007-08-22 13:53:52 -07002496 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002497 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002498
Thomas Graf98250692007-08-22 12:47:26 -07002499 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002500
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002501 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002502}
2503
Thomas Graf7deb2262007-08-22 13:57:39 -07002504static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002505{
Thomas Graf7deb2262007-08-22 13:57:39 -07002506 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002507 if (x->aead)
2508 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002509 if (x->aalg) {
2510 l += nla_total_size(sizeof(struct xfrm_algo) +
2511 (x->aalg->alg_key_len + 7) / 8);
2512 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2513 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002514 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002515 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002516 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002517 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002518 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002519 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002520 if (x->tfcpad)
2521 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002522 if (x->replay_esn)
2523 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
Herbert Xu68325d32007-10-09 13:30:57 -07002524 if (x->security)
2525 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2526 x->security->ctx_len);
2527 if (x->coaddr)
2528 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002529 if (x->props.extra_flags)
2530 l += nla_total_size(sizeof(x->props.extra_flags));
Herbert Xu68325d32007-10-09 13:30:57 -07002531
Herbert Xud26f3982007-11-13 21:47:08 -08002532 /* Must count x->lastused as it may become non-zero behind our back. */
2533 l += nla_total_size(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002534
2535 return l;
2536}
2537
David S. Miller214e0052011-02-24 00:02:38 -05002538static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002539{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002540 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002541 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002542 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002543 struct nlmsghdr *nlh;
2544 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002545 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002546 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002547
2548 headlen = sizeof(*p);
2549 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002550 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002551 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002552 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002553 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002554 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002555
Thomas Graf7deb2262007-08-22 13:57:39 -07002556 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002557 if (skb == NULL)
2558 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002559
Eric W. Biederman15e47302012-09-07 20:12:54 +00002560 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002561 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002562 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002563 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002564
Thomas Graf7b67c852007-08-22 13:53:52 -07002565 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002566 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002567 struct nlattr *attr;
2568
Thomas Graf7b67c852007-08-22 13:53:52 -07002569 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002570 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2571 id->spi = x->id.spi;
2572 id->family = x->props.family;
2573 id->proto = x->id.proto;
2574
Thomas Grafc0144be2007-08-22 13:55:43 -07002575 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002576 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002577 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002578 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002579
2580 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002581 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002582 err = copy_to_user_state_extra(x, p, skb);
2583 if (err)
2584 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002585
Thomas Graf98250692007-08-22 12:47:26 -07002586 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002587
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002588 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_SA, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002589
David S. Miller1d1e34d2012-06-27 21:57:03 -07002590out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002591 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002592 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002593}
2594
David S. Miller214e0052011-02-24 00:02:38 -05002595static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002596{
2597
2598 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002599 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002600 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002601 case XFRM_MSG_NEWAE:
2602 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002603 case XFRM_MSG_DELSA:
2604 case XFRM_MSG_UPDSA:
2605 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002606 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002607 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002608 return xfrm_notify_sa_flush(c);
2609 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002610 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2611 c->event);
2612 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002613 }
2614
2615 return 0;
2616
2617}
2618
Thomas Graf7deb2262007-08-22 13:57:39 -07002619static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2620 struct xfrm_policy *xp)
2621{
2622 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2623 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002624 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002625 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2626 + userpolicy_type_attrsize();
2627}
2628
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002630 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002632 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 struct xfrm_user_acquire *ua;
2634 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002635 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002637 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2638 if (nlh == NULL)
2639 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640
Thomas Graf7b67c852007-08-22 13:53:52 -07002641 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 memcpy(&ua->id, &x->id, sizeof(ua->id));
2643 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2644 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002645 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 ua->aalgos = xt->aalgos;
2647 ua->ealgos = xt->ealgos;
2648 ua->calgos = xt->calgos;
2649 ua->seq = x->km.seq = seq;
2650
David S. Miller1d1e34d2012-06-27 21:57:03 -07002651 err = copy_to_user_tmpl(xp, skb);
2652 if (!err)
2653 err = copy_to_user_state_sec_ctx(x, skb);
2654 if (!err)
2655 err = copy_to_user_policy_type(xp->type, skb);
2656 if (!err)
2657 err = xfrm_mark_put(skb, &xp->mark);
2658 if (err) {
2659 nlmsg_cancel(skb, nlh);
2660 return err;
2661 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
Thomas Graf98250692007-08-22 12:47:26 -07002663 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664}
2665
2666static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002667 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002669 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671
Thomas Graf7deb2262007-08-22 13:57:39 -07002672 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 if (skb == NULL)
2674 return -ENOMEM;
2675
Fan Du65e07362012-08-15 10:13:47 +08002676 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 BUG();
2678
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002679 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_ACQUIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680}
2681
2682/* User gives us xfrm_user_policy_info followed by an array of 0
2683 * or more templates.
2684 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002685static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 u8 *data, int len, int *dir)
2687{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002688 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2690 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2691 struct xfrm_policy *xp;
2692 int nr;
2693
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002694 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 case AF_INET:
2696 if (opt != IP_XFRM_POLICY) {
2697 *dir = -EOPNOTSUPP;
2698 return NULL;
2699 }
2700 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002701#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 case AF_INET6:
2703 if (opt != IPV6_XFRM_POLICY) {
2704 *dir = -EOPNOTSUPP;
2705 return NULL;
2706 }
2707 break;
2708#endif
2709 default:
2710 *dir = -EINVAL;
2711 return NULL;
2712 }
2713
2714 *dir = -EINVAL;
2715
2716 if (len < sizeof(*p) ||
2717 verify_newpolicy_info(p))
2718 return NULL;
2719
2720 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002721 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 return NULL;
2723
Herbert Xua4f1bac2005-07-26 15:43:17 -07002724 if (p->dir > XFRM_POLICY_OUT)
2725 return NULL;
2726
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002727 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 if (xp == NULL) {
2729 *dir = -ENOBUFS;
2730 return NULL;
2731 }
2732
2733 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002734 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 copy_templates(xp, ut, nr);
2736
2737 *dir = p->dir;
2738
2739 return xp;
2740}
2741
Thomas Graf7deb2262007-08-22 13:57:39 -07002742static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2743{
2744 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2745 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2746 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002747 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002748 + userpolicy_type_attrsize();
2749}
2750
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002752 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753{
2754 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002755 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002756 struct nlmsghdr *nlh;
2757 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Eric W. Biederman15e47302012-09-07 20:12:54 +00002759 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002760 if (nlh == NULL)
2761 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
Thomas Graf7b67c852007-08-22 13:53:52 -07002763 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002765 err = copy_to_user_tmpl(xp, skb);
2766 if (!err)
2767 err = copy_to_user_sec_ctx(xp, skb);
2768 if (!err)
2769 err = copy_to_user_policy_type(xp->type, skb);
2770 if (!err)
2771 err = xfrm_mark_put(skb, &xp->mark);
2772 if (err) {
2773 nlmsg_cancel(skb, nlh);
2774 return err;
2775 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776 upe->hard = !!hard;
2777
Thomas Graf98250692007-08-22 12:47:26 -07002778 return nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779}
2780
David S. Miller214e0052011-02-24 00:02:38 -05002781static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002783 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
Thomas Graf7deb2262007-08-22 13:57:39 -07002786 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 if (skb == NULL)
2788 return -ENOMEM;
2789
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002790 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 BUG();
2792
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002793 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_EXPIRE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794}
2795
David S. Miller214e0052011-02-24 00:02:38 -05002796static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002797{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002798 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002799 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002800 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002801 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002802 struct nlmsghdr *nlh;
2803 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002804 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002805
2806 headlen = sizeof(*p);
2807 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002808 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002809 headlen = sizeof(*id);
2810 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002811 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002812 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002813 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002814
Thomas Graf7deb2262007-08-22 13:57:39 -07002815 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002816 if (skb == NULL)
2817 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002818
Eric W. Biederman15e47302012-09-07 20:12:54 +00002819 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002820 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002821 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002822 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002823
Thomas Graf7b67c852007-08-22 13:53:52 -07002824 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002825 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002826 struct nlattr *attr;
2827
Thomas Graf7b67c852007-08-22 13:53:52 -07002828 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002829 memset(id, 0, sizeof(*id));
2830 id->dir = dir;
2831 if (c->data.byid)
2832 id->index = xp->index;
2833 else
2834 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2835
Thomas Grafc0144be2007-08-22 13:55:43 -07002836 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002837 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002838 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002839 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002840
2841 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002842 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002843
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002844 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002845 err = copy_to_user_tmpl(xp, skb);
2846 if (!err)
2847 err = copy_to_user_policy_type(xp->type, skb);
2848 if (!err)
2849 err = xfrm_mark_put(skb, &xp->mark);
2850 if (err)
2851 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002852
Thomas Graf98250692007-08-22 12:47:26 -07002853 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002854
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002855 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002856
David S. Miller1d1e34d2012-06-27 21:57:03 -07002857out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002858 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002859 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002860}
2861
David S. Miller214e0052011-02-24 00:02:38 -05002862static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002863{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002864 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002865 struct nlmsghdr *nlh;
2866 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002867 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002868
Thomas Graf7deb2262007-08-22 13:57:39 -07002869 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002870 if (skb == NULL)
2871 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002872
Eric W. Biederman15e47302012-09-07 20:12:54 +00002873 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002874 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002875 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002876 goto out_free_skb;
2877 err = copy_to_user_policy_type(c->data.type, skb);
2878 if (err)
2879 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002880
Thomas Graf98250692007-08-22 12:47:26 -07002881 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002882
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002883 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_POLICY, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002884
David S. Miller1d1e34d2012-06-27 21:57:03 -07002885out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002886 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002887 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002888}
2889
David S. Miller214e0052011-02-24 00:02:38 -05002890static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002891{
2892
2893 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002894 case XFRM_MSG_NEWPOLICY:
2895 case XFRM_MSG_UPDPOLICY:
2896 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002897 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002898 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002899 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002900 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002901 return xfrm_exp_policy_notify(xp, dir, c);
2902 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002903 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
2904 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002905 }
2906
2907 return 0;
2908
2909}
2910
Thomas Graf7deb2262007-08-22 13:57:39 -07002911static inline size_t xfrm_report_msgsize(void)
2912{
2913 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
2914}
2915
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002916static int build_report(struct sk_buff *skb, u8 proto,
2917 struct xfrm_selector *sel, xfrm_address_t *addr)
2918{
2919 struct xfrm_user_report *ur;
2920 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002921
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002922 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
2923 if (nlh == NULL)
2924 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002925
Thomas Graf7b67c852007-08-22 13:53:52 -07002926 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002927 ur->proto = proto;
2928 memcpy(&ur->sel, sel, sizeof(ur->sel));
2929
David S. Miller1d1e34d2012-06-27 21:57:03 -07002930 if (addr) {
2931 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
2932 if (err) {
2933 nlmsg_cancel(skb, nlh);
2934 return err;
2935 }
2936 }
Thomas Graf98250692007-08-22 12:47:26 -07002937 return nlmsg_end(skb, nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002938}
2939
Alexey Dobriyandb983c12008-11-25 17:51:01 -08002940static int xfrm_send_report(struct net *net, u8 proto,
2941 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002942{
2943 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002944
Thomas Graf7deb2262007-08-22 13:57:39 -07002945 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002946 if (skb == NULL)
2947 return -ENOMEM;
2948
2949 if (build_report(skb, proto, sel, addr) < 0)
2950 BUG();
2951
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002952 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_REPORT, GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002953}
2954
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002955static inline size_t xfrm_mapping_msgsize(void)
2956{
2957 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
2958}
2959
2960static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
2961 xfrm_address_t *new_saddr, __be16 new_sport)
2962{
2963 struct xfrm_user_mapping *um;
2964 struct nlmsghdr *nlh;
2965
2966 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
2967 if (nlh == NULL)
2968 return -EMSGSIZE;
2969
2970 um = nlmsg_data(nlh);
2971
2972 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
2973 um->id.spi = x->id.spi;
2974 um->id.family = x->props.family;
2975 um->id.proto = x->id.proto;
2976 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
2977 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
2978 um->new_sport = new_sport;
2979 um->old_sport = x->encap->encap_sport;
2980 um->reqid = x->props.reqid;
2981
2982 return nlmsg_end(skb, nlh);
2983}
2984
2985static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
2986 __be16 sport)
2987{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002988 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07002989 struct sk_buff *skb;
2990
2991 if (x->id.proto != IPPROTO_ESP)
2992 return -EINVAL;
2993
2994 if (!x->encap)
2995 return -EINVAL;
2996
2997 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
2998 if (skb == NULL)
2999 return -ENOMEM;
3000
3001 if (build_mapping(skb, x, ipaddr, sport) < 0)
3002 BUG();
3003
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003004 return nlmsg_multicast(net->xfrm.nlsk, skb, 0, XFRMNLGRP_MAPPING, GFP_ATOMIC);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003005}
3006
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007static struct xfrm_mgr netlink_mgr = {
3008 .id = "netlink",
3009 .notify = xfrm_send_state_notify,
3010 .acquire = xfrm_send_acquire,
3011 .compile_policy = xfrm_compile_policy,
3012 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003013 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003014 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003015 .new_mapping = xfrm_send_mapping,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016};
3017
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003018static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019{
Patrick McHardybe336902006-03-20 22:40:54 -08003020 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003021 struct netlink_kernel_cfg cfg = {
3022 .groups = XFRMNLGRP_MAX,
3023 .input = xfrm_netlink_rcv,
3024 };
Patrick McHardybe336902006-03-20 22:40:54 -08003025
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003026 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003027 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003029 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003030 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 return 0;
3032}
3033
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003034static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003035{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003036 struct net *net;
3037 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003038 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003039 synchronize_net();
3040 list_for_each_entry(net, net_exit_list, exit_list)
3041 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003042}
3043
3044static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003045 .init = xfrm_user_net_init,
3046 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003047};
3048
3049static int __init xfrm_user_init(void)
3050{
3051 int rv;
3052
3053 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3054
3055 rv = register_pernet_subsys(&xfrm_user_net_ops);
3056 if (rv < 0)
3057 return rv;
3058 rv = xfrm_register_km(&netlink_mgr);
3059 if (rv < 0)
3060 unregister_pernet_subsys(&xfrm_user_net_ops);
3061 return rv;
3062}
3063
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064static void __exit xfrm_user_exit(void)
3065{
3066 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003067 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068}
3069
3070module_init(xfrm_user_init);
3071module_exit(xfrm_user_exit);
3072MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003073MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003074