blob: 22934885bd3fda3a50755afb5fc89691c426911d [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
Sowmini Varadhane33d4f12015-10-21 11:48:25 -040034#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Thomas Graf5424f322007-08-22 14:01:33 -070036static int verify_one_alg(struct nlattr **attrs, enum xfrm_attr_type_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Thomas Graf5424f322007-08-22 14:01:33 -070038 struct nlattr *rt = attrs[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 struct xfrm_algo *algp;
40
41 if (!rt)
42 return 0;
43
Thomas Graf5424f322007-08-22 14:01:33 -070044 algp = nla_data(rt);
Eric Dumazet0f99be02008-01-08 23:39:06 -080045 if (nla_len(rt) < xfrm_alg_len(algp))
Herbert Xu31c26852005-05-19 12:39:49 -070046 return -EINVAL;
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 switch (type) {
49 case XFRMA_ALG_AUTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 case XFRMA_ALG_CRYPT:
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 case XFRMA_ALG_COMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 break;
53
54 default:
55 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
59 return 0;
60}
61
Martin Willi4447bb32009-11-25 00:29:52 +000062static int verify_auth_trunc(struct nlattr **attrs)
63{
64 struct nlattr *rt = attrs[XFRMA_ALG_AUTH_TRUNC];
65 struct xfrm_algo_auth *algp;
66
67 if (!rt)
68 return 0;
69
70 algp = nla_data(rt);
71 if (nla_len(rt) < xfrm_alg_auth_len(algp))
72 return -EINVAL;
73
74 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
75 return 0;
76}
77
Herbert Xu1a6509d2008-01-28 19:37:29 -080078static int verify_aead(struct nlattr **attrs)
79{
80 struct nlattr *rt = attrs[XFRMA_ALG_AEAD];
81 struct xfrm_algo_aead *algp;
82
83 if (!rt)
84 return 0;
85
86 algp = nla_data(rt);
87 if (nla_len(rt) < aead_len(algp))
88 return -EINVAL;
89
90 algp->alg_name[CRYPTO_MAX_ALG_NAME - 1] = '\0';
91 return 0;
92}
93
Thomas Graf5424f322007-08-22 14:01:33 -070094static void verify_one_addr(struct nlattr **attrs, enum xfrm_attr_type_t type,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070095 xfrm_address_t **addrp)
96{
Thomas Graf5424f322007-08-22 14:01:33 -070097 struct nlattr *rt = attrs[type];
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070098
Thomas Grafcf5cb792007-08-22 13:59:04 -070099 if (rt && addrp)
Thomas Graf5424f322007-08-22 14:01:33 -0700100 *addrp = nla_data(rt);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700101}
Trent Jaegerdf718372005-12-13 23:12:27 -0800102
Thomas Graf5424f322007-08-22 14:01:33 -0700103static inline int verify_sec_ctx_len(struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -0800104{
Thomas Graf5424f322007-08-22 14:01:33 -0700105 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -0800106 struct xfrm_user_sec_ctx *uctx;
Trent Jaegerdf718372005-12-13 23:12:27 -0800107
108 if (!rt)
109 return 0;
110
Thomas Graf5424f322007-08-22 14:01:33 -0700111 uctx = nla_data(rt);
Thomas Grafcf5cb792007-08-22 13:59:04 -0700112 if (uctx->len != (sizeof(struct xfrm_user_sec_ctx) + uctx->ctx_len))
Trent Jaegerdf718372005-12-13 23:12:27 -0800113 return -EINVAL;
114
115 return 0;
116}
117
Steffen Klassertd8647b72011-03-08 00:10:27 +0000118static inline int verify_replay(struct xfrm_usersa_info *p,
119 struct nlattr **attrs)
120{
121 struct nlattr *rt = attrs[XFRMA_REPLAY_ESN_VAL];
Mathias Krauseecd79182012-09-20 10:01:49 +0000122 struct xfrm_replay_state_esn *rs;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000123
Mathias Krauseecd79182012-09-20 10:01:49 +0000124 if (p->flags & XFRM_STATE_ESN) {
125 if (!rt)
126 return -EINVAL;
127
128 rs = nla_data(rt);
129
130 if (rs->bmp_len > XFRMA_REPLAY_ESN_MAX / sizeof(rs->bmp[0]) / 8)
131 return -EINVAL;
132
133 if (nla_len(rt) < xfrm_replay_state_esn_len(rs) &&
134 nla_len(rt) != sizeof(*rs))
135 return -EINVAL;
136 }
Steffen Klassert7833aa02011-04-25 19:41:21 +0000137
Steffen Klassertd8647b72011-03-08 00:10:27 +0000138 if (!rt)
139 return 0;
140
Fan Du01714102014-01-18 09:54:28 +0800141 /* As only ESP and AH support ESN feature. */
142 if ((p->id.proto != IPPROTO_ESP) && (p->id.proto != IPPROTO_AH))
Steffen Klassert02aadf72011-03-28 19:48:09 +0000143 return -EINVAL;
144
Steffen Klassertd8647b72011-03-08 00:10:27 +0000145 if (p->replay_window != 0)
146 return -EINVAL;
147
148 return 0;
149}
Trent Jaegerdf718372005-12-13 23:12:27 -0800150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151static int verify_newsa_info(struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700152 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 int err;
155
156 err = -EINVAL;
157 switch (p->family) {
158 case AF_INET:
159 break;
160
161 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000162#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 break;
164#else
165 err = -EAFNOSUPPORT;
166 goto out;
167#endif
168
169 default:
170 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 err = -EINVAL;
174 switch (p->id.proto) {
175 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000176 if ((!attrs[XFRMA_ALG_AUTH] &&
177 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800178 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700179 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000180 attrs[XFRMA_ALG_COMP] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200181 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 goto out;
183 break;
184
185 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800186 if (attrs[XFRMA_ALG_COMP])
187 goto out;
188 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000189 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800190 !attrs[XFRMA_ALG_CRYPT] &&
191 !attrs[XFRMA_ALG_AEAD])
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])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000198 if (attrs[XFRMA_TFCPAD] &&
199 p->mode != XFRM_MODE_TUNNEL)
200 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 break;
202
203 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700204 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800205 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700206 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000207 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000208 attrs[XFRMA_ALG_CRYPT] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200209 attrs[XFRMA_TFCPAD] ||
210 (ntohl(p->id.spi) >= 0x10000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 goto out;
212 break;
213
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000214#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700215 case IPPROTO_DSTOPTS:
216 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700217 if (attrs[XFRMA_ALG_COMP] ||
218 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000219 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800220 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700221 attrs[XFRMA_ALG_CRYPT] ||
222 attrs[XFRMA_ENCAP] ||
223 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000224 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700225 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700226 goto out;
227 break;
228#endif
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 default:
231 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Herbert Xu1a6509d2008-01-28 19:37:29 -0800234 if ((err = verify_aead(attrs)))
235 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000236 if ((err = verify_auth_trunc(attrs)))
237 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700238 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700240 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700242 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700244 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800245 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000246 if ((err = verify_replay(p, attrs)))
247 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 err = -EINVAL;
250 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700251 case XFRM_MODE_TRANSPORT:
252 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700253 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a694522006-10-03 23:47:05 -0700254 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 break;
256
257 default:
258 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 err = 0;
262
263out:
264 return err;
265}
266
267static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800268 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700269 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 struct xfrm_algo *p, *ualg;
272 struct xfrm_algo_desc *algo;
273
274 if (!rta)
275 return 0;
276
Thomas Graf5424f322007-08-22 14:01:33 -0700277 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 algo = get_byname(ualg->alg_name, 1);
280 if (!algo)
281 return -ENOSYS;
282 *props = algo->desc.sadb_alg_id;
283
Eric Dumazet0f99be02008-01-08 23:39:06 -0800284 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (!p)
286 return -ENOMEM;
287
Herbert Xu04ff1262006-08-13 08:50:00 +1000288 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 *algpp = p;
290 return 0;
291}
292
Herbert Xu69b01372015-05-27 16:03:45 +0800293static int attach_crypt(struct xfrm_state *x, struct nlattr *rta)
294{
295 struct xfrm_algo *p, *ualg;
296 struct xfrm_algo_desc *algo;
297
298 if (!rta)
299 return 0;
300
301 ualg = nla_data(rta);
302
303 algo = xfrm_ealg_get_byname(ualg->alg_name, 1);
304 if (!algo)
305 return -ENOSYS;
306 x->props.ealgo = algo->desc.sadb_alg_id;
307
308 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
309 if (!p)
310 return -ENOMEM;
311
312 strcpy(p->alg_name, algo->name);
313 x->ealg = p;
314 x->geniv = algo->uinfo.encr.geniv;
315 return 0;
316}
317
Martin Willi4447bb32009-11-25 00:29:52 +0000318static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
319 struct nlattr *rta)
320{
321 struct xfrm_algo *ualg;
322 struct xfrm_algo_auth *p;
323 struct xfrm_algo_desc *algo;
324
325 if (!rta)
326 return 0;
327
328 ualg = nla_data(rta);
329
330 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
331 if (!algo)
332 return -ENOSYS;
333 *props = algo->desc.sadb_alg_id;
334
335 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
336 if (!p)
337 return -ENOMEM;
338
339 strcpy(p->alg_name, algo->name);
340 p->alg_key_len = ualg->alg_key_len;
341 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
342 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
343
344 *algpp = p;
345 return 0;
346}
347
348static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
349 struct nlattr *rta)
350{
351 struct xfrm_algo_auth *p, *ualg;
352 struct xfrm_algo_desc *algo;
353
354 if (!rta)
355 return 0;
356
357 ualg = nla_data(rta);
358
359 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
360 if (!algo)
361 return -ENOSYS;
Herbert Xu689f1c92014-09-18 16:38:18 +0800362 if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000363 return -EINVAL;
364 *props = algo->desc.sadb_alg_id;
365
366 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
367 if (!p)
368 return -ENOMEM;
369
370 strcpy(p->alg_name, algo->name);
371 if (!p->alg_trunc_len)
372 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
373
374 *algpp = p;
375 return 0;
376}
377
Herbert Xu69b01372015-05-27 16:03:45 +0800378static int attach_aead(struct xfrm_state *x, struct nlattr *rta)
Herbert Xu1a6509d2008-01-28 19:37:29 -0800379{
380 struct xfrm_algo_aead *p, *ualg;
381 struct xfrm_algo_desc *algo;
382
383 if (!rta)
384 return 0;
385
386 ualg = nla_data(rta);
387
388 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
389 if (!algo)
390 return -ENOSYS;
Herbert Xu69b01372015-05-27 16:03:45 +0800391 x->props.ealgo = algo->desc.sadb_alg_id;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800392
393 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
394 if (!p)
395 return -ENOMEM;
396
397 strcpy(p->alg_name, algo->name);
Herbert Xu69b01372015-05-27 16:03:45 +0800398 x->aead = p;
399 x->geniv = algo->uinfo.aead.geniv;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800400 return 0;
401}
402
Steffen Klasserte2b19122011-03-28 19:47:30 +0000403static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
404 struct nlattr *rp)
405{
406 struct xfrm_replay_state_esn *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000407 int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000408
409 if (!replay_esn || !rp)
410 return 0;
411
412 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000413 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000414
Andy Whitcroft79191ea2017-03-23 07:45:44 +0000415 /* Check the overall length and the internal bitmap length to avoid
416 * potential overflow. */
417 if (nla_len(rp) < ulen ||
418 xfrm_replay_state_esn_len(replay_esn) != ulen ||
419 replay_esn->bmp_len != up->bmp_len)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000420 return -EINVAL;
421
Andy Whitcroft64a54652017-03-22 07:29:31 +0000422 if (up->replay_window > up->bmp_len * sizeof(__u32) * 8)
423 return -EINVAL;
424
Steffen Klasserte2b19122011-03-28 19:47:30 +0000425 return 0;
426}
427
Steffen Klassertd8647b72011-03-08 00:10:27 +0000428static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
429 struct xfrm_replay_state_esn **preplay_esn,
430 struct nlattr *rta)
431{
432 struct xfrm_replay_state_esn *p, *pp, *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000433 int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000434
435 if (!rta)
436 return 0;
437
438 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000439 klen = xfrm_replay_state_esn_len(up);
440 ulen = nla_len(rta) >= klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000441
Mathias Krauseecd79182012-09-20 10:01:49 +0000442 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000443 if (!p)
444 return -ENOMEM;
445
Mathias Krauseecd79182012-09-20 10:01:49 +0000446 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000447 if (!pp) {
448 kfree(p);
449 return -ENOMEM;
450 }
451
Mathias Krauseecd79182012-09-20 10:01:49 +0000452 memcpy(p, up, ulen);
453 memcpy(pp, up, ulen);
454
Steffen Klassertd8647b72011-03-08 00:10:27 +0000455 *replay_esn = p;
456 *preplay_esn = pp;
457
458 return 0;
459}
460
Joy Latten661697f2007-04-13 16:14:35 -0700461static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800462{
Trent Jaegerdf718372005-12-13 23:12:27 -0800463 int len = 0;
464
465 if (xfrm_ctx) {
466 len += sizeof(struct xfrm_user_sec_ctx);
467 len += xfrm_ctx->ctx_len;
468 }
469 return len;
470}
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
473{
474 memcpy(&x->id, &p->id, sizeof(x->id));
475 memcpy(&x->sel, &p->sel, sizeof(x->sel));
476 memcpy(&x->lft, &p->lft, sizeof(x->lft));
477 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800478 x->props.replay_window = min_t(unsigned int, p->replay_window,
479 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 x->props.reqid = p->reqid;
481 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700482 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700484
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700485 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700486 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800489/*
490 * someday when pfkey also has support, we could have the code
491 * somehow made shareable and move it to xfrm_state.c - JHS
492 *
493*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000494static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
495 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800496{
Thomas Graf5424f322007-08-22 14:01:33 -0700497 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000498 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700499 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
500 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
501 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800502
Steffen Klassertd8647b72011-03-08 00:10:27 +0000503 if (re) {
504 struct xfrm_replay_state_esn *replay_esn;
505 replay_esn = nla_data(re);
506 memcpy(x->replay_esn, replay_esn,
507 xfrm_replay_state_esn_len(replay_esn));
508 memcpy(x->preplay_esn, replay_esn,
509 xfrm_replay_state_esn_len(replay_esn));
510 }
511
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800512 if (rp) {
513 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700514 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800515 memcpy(&x->replay, replay, sizeof(*replay));
516 memcpy(&x->preplay, replay, sizeof(*replay));
517 }
518
519 if (lt) {
520 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700521 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800522 x->curlft.bytes = ltime->bytes;
523 x->curlft.packets = ltime->packets;
524 x->curlft.add_time = ltime->add_time;
525 x->curlft.use_time = ltime->use_time;
526 }
527
Thomas Grafcf5cb792007-08-22 13:59:04 -0700528 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700529 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800530
Thomas Grafcf5cb792007-08-22 13:59:04 -0700531 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700532 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800533}
534
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800535static struct xfrm_state *xfrm_state_construct(struct net *net,
536 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700537 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 int *errp)
539{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800540 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 int err = -ENOMEM;
542
543 if (!x)
544 goto error_no_put;
545
546 copy_from_user_state(x, p);
547
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100548 if (attrs[XFRMA_SA_EXTRA_FLAGS])
549 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
550
Herbert Xu69b01372015-05-27 16:03:45 +0800551 if ((err = attach_aead(x, attrs[XFRMA_ALG_AEAD])))
Herbert Xu1a6509d2008-01-28 19:37:29 -0800552 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000553 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
554 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000556 if (!x->props.aalgo) {
557 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
558 attrs[XFRMA_ALG_AUTH])))
559 goto error;
560 }
Herbert Xu69b01372015-05-27 16:03:45 +0800561 if ((err = attach_crypt(x, attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 goto error;
563 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
564 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700565 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700567
568 if (attrs[XFRMA_ENCAP]) {
569 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
570 sizeof(*x->encap), GFP_KERNEL);
571 if (x->encap == NULL)
572 goto error;
573 }
574
Martin Willi35d28562010-12-08 04:37:49 +0000575 if (attrs[XFRMA_TFCPAD])
576 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
577
Thomas Graffd211502007-09-06 03:28:08 -0700578 if (attrs[XFRMA_COADDR]) {
579 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
580 sizeof(*x->coaddr), GFP_KERNEL);
581 if (x->coaddr == NULL)
582 goto error;
583 }
584
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000585 xfrm_mark_get(attrs, &x->mark);
586
Wei Yongjuna454f0c2011-03-21 18:08:28 -0700587 err = __xfrm_init_state(x, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (err)
589 goto error;
590
Mathias Krause2f30ea52016-09-08 18:09:57 +0200591 if (attrs[XFRMA_SEC_CTX]) {
592 err = security_xfrm_state_alloc(x,
593 nla_data(attrs[XFRMA_SEC_CTX]));
594 if (err)
595 goto error;
596 }
Trent Jaegerdf718372005-12-13 23:12:27 -0800597
Steffen Klassertd8647b72011-03-08 00:10:27 +0000598 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
599 attrs[XFRMA_REPLAY_ESN_VAL])))
600 goto error;
601
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800603 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800604 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800605 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800606
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000607 if ((err = xfrm_init_replay(x)))
608 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800609
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000610 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000611 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
613 return x;
614
615error:
616 x->km.state = XFRM_STATE_DEAD;
617 xfrm_state_put(x);
618error_no_put:
619 *errp = err;
620 return NULL;
621}
622
Christoph Hellwig22e70052007-01-02 15:22:30 -0800623static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700624 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800626 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700627 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 struct xfrm_state *x;
629 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700630 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Thomas Graf35a7aa02007-08-22 14:00:40 -0700632 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 if (err)
634 return err;
635
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800636 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 if (!x)
638 return err;
639
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700640 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
642 err = xfrm_state_add(x);
643 else
644 err = xfrm_state_update(x);
645
Tetsuo Handa2e710292014-04-22 21:48:30 +0900646 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600647
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (err < 0) {
649 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800650 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700651 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
653
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700654 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000655 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700656 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700657
658 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700659out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700660 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 return err;
662}
663
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800664static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
665 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700666 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700667 int *errp)
668{
669 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000670 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700671 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000672 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700673
674 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
675 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000676 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700677 } else {
678 xfrm_address_t *saddr = NULL;
679
Thomas Graf35a7aa02007-08-22 14:00:40 -0700680 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700681 if (!saddr) {
682 err = -EINVAL;
683 goto out;
684 }
685
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800686 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000687 x = xfrm_state_lookup_byaddr(net, mark,
688 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800689 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700690 }
691
692 out:
693 if (!x && errp)
694 *errp = err;
695 return x;
696}
697
Christoph Hellwig22e70052007-01-02 15:22:30 -0800698static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700699 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800701 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700703 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700704 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700705 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800707 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700709 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
David S. Miller6f68dc32006-06-08 23:58:52 -0700711 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700712 goto out;
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700715 err = -EPERM;
716 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 }
718
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700719 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600720
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700721 if (err < 0)
722 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700723
724 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000725 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700726 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700727 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700729out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900730 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700731 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700732 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733}
734
735static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
736{
Mathias Krausef778a632012-09-19 11:33:39 +0000737 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 memcpy(&p->id, &x->id, sizeof(p->id));
739 memcpy(&p->sel, &x->sel, sizeof(p->sel));
740 memcpy(&p->lft, &x->lft, sizeof(p->lft));
741 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
Sowmini Varadhane33d4f12015-10-21 11:48:25 -0400742 put_unaligned(x->stats.replay_window, &p->stats.replay_window);
743 put_unaligned(x->stats.replay, &p->stats.replay);
744 put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
David S. Miller54489c142006-10-27 15:29:47 -0700745 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 p->mode = x->props.mode;
747 p->replay_window = x->props.replay_window;
748 p->reqid = x->props.reqid;
749 p->family = x->props.family;
750 p->flags = x->props.flags;
751 p->seq = x->km.seq;
752}
753
754struct xfrm_dump_info {
755 struct sk_buff *in_skb;
756 struct sk_buff *out_skb;
757 u32 nlmsg_seq;
758 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759};
760
Thomas Grafc0144be2007-08-22 13:55:43 -0700761static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
762{
Thomas Grafc0144be2007-08-22 13:55:43 -0700763 struct xfrm_user_sec_ctx *uctx;
764 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700765 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700766
767 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
768 if (attr == NULL)
769 return -EMSGSIZE;
770
771 uctx = nla_data(attr);
772 uctx->exttype = XFRMA_SEC_CTX;
773 uctx->len = ctx_size;
774 uctx->ctx_doi = s->ctx_doi;
775 uctx->ctx_alg = s->ctx_alg;
776 uctx->ctx_len = s->ctx_len;
777 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
778
779 return 0;
780}
781
Martin Willi4447bb32009-11-25 00:29:52 +0000782static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
783{
784 struct xfrm_algo *algo;
785 struct nlattr *nla;
786
787 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
788 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
789 if (!nla)
790 return -EMSGSIZE;
791
792 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000793 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000794 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
795 algo->alg_key_len = auth->alg_key_len;
796
797 return 0;
798}
799
Herbert Xu68325d32007-10-09 13:30:57 -0700800/* Don't change this without updating xfrm_sa_len! */
801static int copy_to_user_state_extra(struct xfrm_state *x,
802 struct xfrm_usersa_info *p,
803 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700805 int ret = 0;
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 copy_to_user_state(x, p);
808
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100809 if (x->props.extra_flags) {
810 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
811 x->props.extra_flags);
812 if (ret)
813 goto out;
814 }
815
David S. Miller1d1e34d2012-06-27 21:57:03 -0700816 if (x->coaddr) {
817 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
818 if (ret)
819 goto out;
820 }
821 if (x->lastused) {
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +0200822 ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused,
823 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700824 if (ret)
825 goto out;
826 }
827 if (x->aead) {
828 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
829 if (ret)
830 goto out;
831 }
832 if (x->aalg) {
833 ret = copy_to_user_auth(x->aalg, skb);
834 if (!ret)
835 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
836 xfrm_alg_auth_len(x->aalg), x->aalg);
837 if (ret)
838 goto out;
839 }
840 if (x->ealg) {
841 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
842 if (ret)
843 goto out;
844 }
845 if (x->calg) {
846 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
847 if (ret)
848 goto out;
849 }
850 if (x->encap) {
851 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
852 if (ret)
853 goto out;
854 }
855 if (x->tfcpad) {
856 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
857 if (ret)
858 goto out;
859 }
860 ret = xfrm_mark_put(skb, &x->mark);
861 if (ret)
862 goto out;
dingzhif293a5e2014-10-30 09:39:36 +0100863 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700864 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
865 xfrm_replay_state_esn_len(x->replay_esn),
866 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100867 else
868 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
869 &x->replay);
870 if (ret)
871 goto out;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700872 if (x->security)
873 ret = copy_sec_ctx(x->security, skb);
874out:
875 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700876}
877
878static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
879{
880 struct xfrm_dump_info *sp = ptr;
881 struct sk_buff *in_skb = sp->in_skb;
882 struct sk_buff *skb = sp->out_skb;
883 struct xfrm_usersa_info *p;
884 struct nlmsghdr *nlh;
885 int err;
886
Eric W. Biederman15e47302012-09-07 20:12:54 +0000887 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700888 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
889 if (nlh == NULL)
890 return -EMSGSIZE;
891
892 p = nlmsg_data(nlh);
893
894 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700895 if (err) {
896 nlmsg_cancel(skb, nlh);
897 return err;
898 }
Thomas Graf98250692007-08-22 12:47:26 -0700899 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901}
902
Timo Teras4c563f72008-02-28 21:31:08 -0800903static int xfrm_dump_sa_done(struct netlink_callback *cb)
904{
905 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800906 struct sock *sk = cb->skb->sk;
907 struct net *net = sock_net(sk);
908
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200909 if (cb->args[0])
910 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800911 return 0;
912}
913
Nicolas Dichteld3623092014-02-14 15:30:36 +0100914static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
916{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800917 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800918 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 struct xfrm_dump_info info;
920
Timo Teras4c563f72008-02-28 21:31:08 -0800921 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
922 sizeof(cb->args) - sizeof(cb->args[0]));
923
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 info.in_skb = cb->skb;
925 info.out_skb = skb;
926 info.nlmsg_seq = cb->nlh->nlmsg_seq;
927 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800928
929 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100930 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100931 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100932 u8 proto = 0;
933 int err;
934
Nicolas Dichteld3623092014-02-14 15:30:36 +0100935 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX,
936 xfrma_policy);
937 if (err < 0)
938 return err;
939
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100940 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +0200941 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
942 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100943 if (filter == NULL)
944 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100945 }
946
947 if (attrs[XFRMA_PROTO])
948 proto = nla_get_u8(attrs[XFRMA_PROTO]);
949
950 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200951 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -0800952 }
953
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800954 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955
956 return skb->len;
957}
958
959static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
960 struct xfrm_state *x, u32 seq)
961{
962 struct xfrm_dump_info info;
963 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +0000964 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
Thomas Graf7deb2262007-08-22 13:57:39 -0700966 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 if (!skb)
968 return ERR_PTR(-ENOMEM);
969
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 info.in_skb = in_skb;
971 info.out_skb = skb;
972 info.nlmsg_seq = seq;
973 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974
Mathias Krause864745d2012-09-13 11:41:26 +0000975 err = dump_one_state(x, 0, &info);
976 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +0000978 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 }
980
981 return skb;
982}
983
Michal Kubecek21ee5432014-06-03 10:26:06 +0200984/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
985 * Must be called with RCU read lock.
986 */
987static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
988 u32 pid, unsigned int group)
989{
990 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
991
992 if (nlsk)
993 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
994 else
995 return -1;
996}
997
Thomas Graf7deb2262007-08-22 13:57:39 -0700998static inline size_t xfrm_spdinfo_msgsize(void)
999{
1000 return NLMSG_ALIGN(4)
1001 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001002 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1003 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1004 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001005}
1006
Alexey Dobriyane0710412010-01-23 13:37:10 +00001007static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001008 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001009{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001010 struct xfrmk_spdinfo si;
1011 struct xfrmu_spdinfo spc;
1012 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001013 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001014 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001015 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001016 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001017 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001018
Eric W. Biederman15e47302012-09-07 20:12:54 +00001019 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001020 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001021 return -EMSGSIZE;
1022
1023 f = nlmsg_data(nlh);
1024 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001025 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001026 spc.incnt = si.incnt;
1027 spc.outcnt = si.outcnt;
1028 spc.fwdcnt = si.fwdcnt;
1029 spc.inscnt = si.inscnt;
1030 spc.outscnt = si.outscnt;
1031 spc.fwdscnt = si.fwdscnt;
1032 sph.spdhcnt = si.spdhcnt;
1033 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001034
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001035 do {
1036 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1037
1038 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1039 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1040 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1041 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1042 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1043
David S. Miller1d1e34d2012-06-27 21:57:03 -07001044 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1045 if (!err)
1046 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001047 if (!err)
1048 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1049 if (!err)
1050 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001051 if (err) {
1052 nlmsg_cancel(skb, nlh);
1053 return err;
1054 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001055
Johannes Berg053c0952015-01-16 22:09:00 +01001056 nlmsg_end(skb, nlh);
1057 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001058}
1059
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001060static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1061 struct nlattr **attrs)
1062{
1063 struct net *net = sock_net(skb->sk);
1064 struct xfrmu_spdhthresh *thresh4 = NULL;
1065 struct xfrmu_spdhthresh *thresh6 = NULL;
1066
1067 /* selector prefixlen thresholds to hash policies */
1068 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1069 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1070
1071 if (nla_len(rta) < sizeof(*thresh4))
1072 return -EINVAL;
1073 thresh4 = nla_data(rta);
1074 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1075 return -EINVAL;
1076 }
1077 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1078 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1079
1080 if (nla_len(rta) < sizeof(*thresh6))
1081 return -EINVAL;
1082 thresh6 = nla_data(rta);
1083 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1084 return -EINVAL;
1085 }
1086
1087 if (thresh4 || thresh6) {
1088 write_seqlock(&net->xfrm.policy_hthresh.lock);
1089 if (thresh4) {
1090 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1091 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1092 }
1093 if (thresh6) {
1094 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1095 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1096 }
1097 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1098
1099 xfrm_policy_hash_rebuild(net);
1100 }
1101
1102 return 0;
1103}
1104
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001105static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001106 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001107{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001108 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001109 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001110 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001111 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001112 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001113
Thomas Graf7deb2262007-08-22 13:57:39 -07001114 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001115 if (r_skb == NULL)
1116 return -ENOMEM;
1117
Eric W. Biederman15e47302012-09-07 20:12:54 +00001118 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001119 BUG();
1120
Eric W. Biederman15e47302012-09-07 20:12:54 +00001121 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001122}
1123
Thomas Graf7deb2262007-08-22 13:57:39 -07001124static inline size_t xfrm_sadinfo_msgsize(void)
1125{
1126 return NLMSG_ALIGN(4)
1127 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1128 + nla_total_size(4); /* XFRMA_SAD_CNT */
1129}
1130
Alexey Dobriyane0710412010-01-23 13:37:10 +00001131static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001132 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001133{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001134 struct xfrmk_sadinfo si;
1135 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001136 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001137 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001138 u32 *f;
1139
Eric W. Biederman15e47302012-09-07 20:12:54 +00001140 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001141 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001142 return -EMSGSIZE;
1143
1144 f = nlmsg_data(nlh);
1145 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001146 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001147
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001148 sh.sadhmcnt = si.sadhmcnt;
1149 sh.sadhcnt = si.sadhcnt;
1150
David S. Miller1d1e34d2012-06-27 21:57:03 -07001151 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1152 if (!err)
1153 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1154 if (err) {
1155 nlmsg_cancel(skb, nlh);
1156 return err;
1157 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001158
Johannes Berg053c0952015-01-16 22:09:00 +01001159 nlmsg_end(skb, nlh);
1160 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001161}
1162
1163static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001164 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001165{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001166 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001167 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001168 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001169 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001170 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001171
Thomas Graf7deb2262007-08-22 13:57:39 -07001172 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001173 if (r_skb == NULL)
1174 return -ENOMEM;
1175
Eric W. Biederman15e47302012-09-07 20:12:54 +00001176 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001177 BUG();
1178
Eric W. Biederman15e47302012-09-07 20:12:54 +00001179 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001180}
1181
Christoph Hellwig22e70052007-01-02 15:22:30 -08001182static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001183 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001185 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001186 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 struct xfrm_state *x;
1188 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001189 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001191 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 if (x == NULL)
1193 goto out_noput;
1194
1195 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1196 if (IS_ERR(resp_skb)) {
1197 err = PTR_ERR(resp_skb);
1198 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001199 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 }
1201 xfrm_state_put(x);
1202out_noput:
1203 return err;
1204}
1205
Christoph Hellwig22e70052007-01-02 15:22:30 -08001206static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001207 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001209 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 struct xfrm_state *x;
1211 struct xfrm_userspi_info *p;
1212 struct sk_buff *resp_skb;
1213 xfrm_address_t *daddr;
1214 int family;
1215 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001216 u32 mark;
1217 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Thomas Graf7b67c852007-08-22 13:53:52 -07001219 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001220 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 if (err)
1222 goto out_noput;
1223
1224 family = p->info.family;
1225 daddr = &p->info.id.daddr;
1226
1227 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001228
1229 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001231 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001232 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 xfrm_state_put(x);
1234 x = NULL;
1235 }
1236 }
1237
1238 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001239 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 p->info.id.proto, daddr,
1241 &p->info.saddr, 1,
1242 family);
1243 err = -ENOENT;
1244 if (x == NULL)
1245 goto out_noput;
1246
Herbert Xu658b2192007-10-09 13:29:52 -07001247 err = xfrm_alloc_spi(x, p->min, p->max);
1248 if (err)
1249 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250
Herbert Xu658b2192007-10-09 13:29:52 -07001251 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 if (IS_ERR(resp_skb)) {
1253 err = PTR_ERR(resp_skb);
1254 goto out;
1255 }
1256
Eric W. Biederman15e47302012-09-07 20:12:54 +00001257 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
1259out:
1260 xfrm_state_put(x);
1261out_noput:
1262 return err;
1263}
1264
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001265static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266{
1267 switch (dir) {
1268 case XFRM_POLICY_IN:
1269 case XFRM_POLICY_OUT:
1270 case XFRM_POLICY_FWD:
1271 break;
1272
1273 default:
1274 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001275 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 return 0;
1278}
1279
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001280static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001281{
1282 switch (type) {
1283 case XFRM_POLICY_TYPE_MAIN:
1284#ifdef CONFIG_XFRM_SUB_POLICY
1285 case XFRM_POLICY_TYPE_SUB:
1286#endif
1287 break;
1288
1289 default:
1290 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001291 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001292
1293 return 0;
1294}
1295
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1297{
Fan Due682adf2013-11-07 17:47:48 +08001298 int ret;
1299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 switch (p->share) {
1301 case XFRM_SHARE_ANY:
1302 case XFRM_SHARE_SESSION:
1303 case XFRM_SHARE_USER:
1304 case XFRM_SHARE_UNIQUE:
1305 break;
1306
1307 default:
1308 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311 switch (p->action) {
1312 case XFRM_POLICY_ALLOW:
1313 case XFRM_POLICY_BLOCK:
1314 break;
1315
1316 default:
1317 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
1320 switch (p->sel.family) {
1321 case AF_INET:
1322 break;
1323
1324 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001325#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 break;
1327#else
1328 return -EAFNOSUPPORT;
1329#endif
1330
1331 default:
1332 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001333 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334
Fan Due682adf2013-11-07 17:47:48 +08001335 ret = verify_policy_dir(p->dir);
1336 if (ret)
1337 return ret;
1338 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1339 return -EINVAL;
1340
1341 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342}
1343
Thomas Graf5424f322007-08-22 14:01:33 -07001344static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001345{
Thomas Graf5424f322007-08-22 14:01:33 -07001346 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001347 struct xfrm_user_sec_ctx *uctx;
1348
1349 if (!rt)
1350 return 0;
1351
Thomas Graf5424f322007-08-22 14:01:33 -07001352 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001353 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001354}
1355
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1357 int nr)
1358{
1359 int i;
1360
1361 xp->xfrm_nr = nr;
1362 for (i = 0; i < nr; i++, ut++) {
1363 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1364
1365 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1366 memcpy(&t->saddr, &ut->saddr,
1367 sizeof(xfrm_address_t));
1368 t->reqid = ut->reqid;
1369 t->mode = ut->mode;
1370 t->share = ut->share;
1371 t->optional = ut->optional;
1372 t->aalgos = ut->aalgos;
1373 t->ealgos = ut->ealgos;
1374 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001375 /* If all masks are ~0, then we allow all algorithms. */
1376 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001377 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 }
1379}
1380
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001381static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1382{
1383 int i;
1384
1385 if (nr > XFRM_MAX_DEPTH)
1386 return -EINVAL;
1387
1388 for (i = 0; i < nr; i++) {
1389 /* We never validated the ut->family value, so many
1390 * applications simply leave it at zero. The check was
1391 * never made and ut->family was ignored because all
1392 * templates could be assumed to have the same family as
1393 * the policy itself. Now that we will have ipv4-in-ipv6
1394 * and ipv6-in-ipv4 tunnels, this is no longer true.
1395 */
1396 if (!ut[i].family)
1397 ut[i].family = family;
1398
1399 switch (ut[i].family) {
1400 case AF_INET:
1401 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001402#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001403 case AF_INET6:
1404 break;
1405#endif
1406 default:
1407 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001408 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001409 }
1410
1411 return 0;
1412}
1413
Thomas Graf5424f322007-08-22 14:01:33 -07001414static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415{
Thomas Graf5424f322007-08-22 14:01:33 -07001416 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
1418 if (!rt) {
1419 pol->xfrm_nr = 0;
1420 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001421 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1422 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001423 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001425 err = validate_tmpl(nr, utmpl, pol->family);
1426 if (err)
1427 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Thomas Graf5424f322007-08-22 14:01:33 -07001429 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
1431 return 0;
1432}
1433
Thomas Graf5424f322007-08-22 14:01:33 -07001434static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001435{
Thomas Graf5424f322007-08-22 14:01:33 -07001436 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001437 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001438 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001439 int err;
1440
1441 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001442 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001443 type = upt->type;
1444 }
1445
1446 err = verify_policy_type(type);
1447 if (err)
1448 return err;
1449
1450 *tp = type;
1451 return 0;
1452}
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1455{
1456 xp->priority = p->priority;
1457 xp->index = p->index;
1458 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1459 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1460 xp->action = p->action;
1461 xp->flags = p->flags;
1462 xp->family = p->sel.family;
1463 /* XXX xp->share = p->share; */
1464}
1465
1466static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1467{
Mathias Krause7b789832012-09-19 11:33:40 +00001468 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1470 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1471 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1472 p->priority = xp->priority;
1473 p->index = xp->index;
1474 p->sel.family = xp->family;
1475 p->dir = dir;
1476 p->action = xp->action;
1477 p->flags = xp->flags;
1478 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1479}
1480
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001481static 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 -07001482{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001483 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 int err;
1485
1486 if (!xp) {
1487 *errp = -ENOMEM;
1488 return NULL;
1489 }
1490
1491 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001492
Thomas Graf35a7aa02007-08-22 14:00:40 -07001493 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001494 if (err)
1495 goto error;
1496
Thomas Graf35a7aa02007-08-22 14:00:40 -07001497 if (!(err = copy_from_user_tmpl(xp, attrs)))
1498 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001499 if (err)
1500 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001502 xfrm_mark_get(attrs, &xp->mark);
1503
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001505 error:
1506 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001507 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001508 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001509 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510}
1511
Christoph Hellwig22e70052007-01-02 15:22:30 -08001512static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001513 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001515 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001516 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001518 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 int err;
1520 int excl;
1521
1522 err = verify_newpolicy_info(p);
1523 if (err)
1524 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001525 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001526 if (err)
1527 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001529 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 if (!xp)
1531 return err;
1532
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001533 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001534 * Aha! this is anti-netlink really i.e more pfkey derived
1535 * in netlink excl is a flag and you wouldnt need
1536 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1538 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001539 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001540
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001542 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 kfree(xp);
1544 return err;
1545 }
1546
Herbert Xuf60f6b82005-06-18 22:44:37 -07001547 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001548 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001549 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001550 km_policy_notify(xp, p->dir, &c);
1551
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 xfrm_pol_put(xp);
1553
1554 return 0;
1555}
1556
1557static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1558{
1559 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1560 int i;
1561
1562 if (xp->xfrm_nr == 0)
1563 return 0;
1564
1565 for (i = 0; i < xp->xfrm_nr; i++) {
1566 struct xfrm_user_tmpl *up = &vec[i];
1567 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1568
Mathias Krause1f868402012-09-19 11:33:41 +00001569 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001571 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1573 up->reqid = kp->reqid;
1574 up->mode = kp->mode;
1575 up->share = kp->share;
1576 up->optional = kp->optional;
1577 up->aalgos = kp->aalgos;
1578 up->ealgos = kp->ealgos;
1579 up->calgos = kp->calgos;
1580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
Thomas Grafc0144be2007-08-22 13:55:43 -07001582 return nla_put(skb, XFRMA_TMPL,
1583 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001584}
1585
Serge Hallyn0d681622006-07-24 23:30:44 -07001586static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1587{
1588 if (x->security) {
1589 return copy_sec_ctx(x->security, skb);
1590 }
1591 return 0;
1592}
1593
1594static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1595{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001596 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001597 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001598 return 0;
1599}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001600static inline size_t userpolicy_type_attrsize(void)
1601{
1602#ifdef CONFIG_XFRM_SUB_POLICY
1603 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1604#else
1605 return 0;
1606#endif
1607}
Serge Hallyn0d681622006-07-24 23:30:44 -07001608
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001609#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001610static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001611{
Thomas Grafc0144be2007-08-22 13:55:43 -07001612 struct xfrm_userpolicy_type upt = {
1613 .type = type,
1614 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001615
Thomas Grafc0144be2007-08-22 13:55:43 -07001616 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001617}
1618
1619#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001620static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001621{
1622 return 0;
1623}
1624#endif
1625
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1627{
1628 struct xfrm_dump_info *sp = ptr;
1629 struct xfrm_userpolicy_info *p;
1630 struct sk_buff *in_skb = sp->in_skb;
1631 struct sk_buff *skb = sp->out_skb;
1632 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001633 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Eric W. Biederman15e47302012-09-07 20:12:54 +00001635 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001636 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1637 if (nlh == NULL)
1638 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Thomas Graf7b67c852007-08-22 13:53:52 -07001640 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001642 err = copy_to_user_tmpl(xp, skb);
1643 if (!err)
1644 err = copy_to_user_sec_ctx(xp, skb);
1645 if (!err)
1646 err = copy_to_user_policy_type(xp->type, skb);
1647 if (!err)
1648 err = xfrm_mark_put(skb, &xp->mark);
1649 if (err) {
1650 nlmsg_cancel(skb, nlh);
1651 return err;
1652 }
Thomas Graf98250692007-08-22 12:47:26 -07001653 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655}
1656
Timo Teras4c563f72008-02-28 21:31:08 -08001657static int xfrm_dump_policy_done(struct netlink_callback *cb)
1658{
Herbert Xu543aabb2017-10-19 20:51:10 +08001659 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001660 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001661
Fan Du283bc9f2013-11-07 17:47:50 +08001662 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001663 return 0;
1664}
1665
Herbert Xu543aabb2017-10-19 20:51:10 +08001666static int xfrm_dump_policy_start(struct netlink_callback *cb)
1667{
1668 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1669
1670 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1671
1672 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1673 return 0;
1674}
1675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1677{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001678 struct net *net = sock_net(skb->sk);
Herbert Xu543aabb2017-10-19 20:51:10 +08001679 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 struct xfrm_dump_info info;
1681
1682 info.in_skb = cb->skb;
1683 info.out_skb = skb;
1684 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1685 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001686
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001687 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
1689 return skb->len;
1690}
1691
1692static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1693 struct xfrm_policy *xp,
1694 int dir, u32 seq)
1695{
1696 struct xfrm_dump_info info;
1697 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001698 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Thomas Graf7deb2262007-08-22 13:57:39 -07001700 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 if (!skb)
1702 return ERR_PTR(-ENOMEM);
1703
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 info.in_skb = in_skb;
1705 info.out_skb = skb;
1706 info.nlmsg_seq = seq;
1707 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
Mathias Krausec2546372012-09-14 09:58:32 +00001709 err = dump_one_policy(xp, dir, 0, &info);
1710 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001712 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 }
1714
1715 return skb;
1716}
1717
Christoph Hellwig22e70052007-01-02 15:22:30 -08001718static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001719 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001721 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 struct xfrm_policy *xp;
1723 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001724 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001726 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001728 struct xfrm_mark m;
1729 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Thomas Graf7b67c852007-08-22 13:53:52 -07001731 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1733
Thomas Graf35a7aa02007-08-22 14:00:40 -07001734 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001735 if (err)
1736 return err;
1737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 err = verify_policy_dir(p->dir);
1739 if (err)
1740 return err;
1741
1742 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001743 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001744 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001745 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001746 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001747
Thomas Graf35a7aa02007-08-22 14:00:40 -07001748 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001749 if (err)
1750 return err;
1751
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001752 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001753 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001754 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001755
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001756 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001757 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001758 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001759 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001760 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001761 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001762 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 if (xp == NULL)
1765 return -ENOENT;
1766
1767 if (!delete) {
1768 struct sk_buff *resp_skb;
1769
1770 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1771 if (IS_ERR(resp_skb)) {
1772 err = PTR_ERR(resp_skb);
1773 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001774 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001775 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001777 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001778 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001779
1780 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001781 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001782
Herbert Xue7443892005-06-18 22:44:18 -07001783 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001784 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001785 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001786 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001787 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 }
1789
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001790out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001791 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001792 if (delete && err == 0)
1793 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 return err;
1795}
1796
Christoph Hellwig22e70052007-01-02 15:22:30 -08001797static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001798 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001800 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001801 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001802 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001803 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Tetsuo Handa2e710292014-04-22 21:48:30 +09001805 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001806 if (err) {
1807 if (err == -ESRCH) /* empty table */
1808 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001809 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001810 }
Herbert Xubf088672005-06-18 22:44:00 -07001811 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001812 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001813 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001814 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001815 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001816 km_state_notify(NULL, &c);
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 return 0;
1819}
1820
Steffen Klassertd8647b72011-03-08 00:10:27 +00001821static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001822{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001823 size_t replay_size = x->replay_esn ?
1824 xfrm_replay_state_esn_len(x->replay_esn) :
1825 sizeof(struct xfrm_replay_state);
1826
Thomas Graf7deb2262007-08-22 13:57:39 -07001827 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001828 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001829 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001830 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001831 + nla_total_size(4) /* XFRM_AE_RTHR */
1832 + nla_total_size(4); /* XFRM_AE_ETHR */
1833}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001834
David S. Miller214e0052011-02-24 00:02:38 -05001835static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001836{
1837 struct xfrm_aevent_id *id;
1838 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001839 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001840
Eric W. Biederman15e47302012-09-07 20:12:54 +00001841 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001842 if (nlh == NULL)
1843 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001844
Thomas Graf7b67c852007-08-22 13:53:52 -07001845 id = nlmsg_data(nlh);
Weilong Chen9b7a7872013-12-24 09:43:46 +08001846 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001847 id->sa_id.spi = x->id.spi;
1848 id->sa_id.family = x->props.family;
1849 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001850 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001851 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001852 id->flags = c->data.aevent;
1853
David S. Millerd0fde792012-03-29 04:02:26 -04001854 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001855 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1856 xfrm_replay_state_esn_len(x->replay_esn),
1857 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001858 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001859 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1860 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001861 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001862 if (err)
1863 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001864 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1865 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001866 if (err)
1867 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001868
David S. Miller1d1e34d2012-06-27 21:57:03 -07001869 if (id->flags & XFRM_AE_RTHR) {
1870 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1871 if (err)
1872 goto out_cancel;
1873 }
1874 if (id->flags & XFRM_AE_ETHR) {
1875 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1876 x->replay_maxage * 10 / HZ);
1877 if (err)
1878 goto out_cancel;
1879 }
1880 err = xfrm_mark_put(skb, &x->mark);
1881 if (err)
1882 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001883
Johannes Berg053c0952015-01-16 22:09:00 +01001884 nlmsg_end(skb, nlh);
1885 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001886
David S. Miller1d1e34d2012-06-27 21:57:03 -07001887out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001888 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001889 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001890}
1891
Christoph Hellwig22e70052007-01-02 15:22:30 -08001892static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001893 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001894{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001895 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001896 struct xfrm_state *x;
1897 struct sk_buff *r_skb;
1898 int err;
1899 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001900 u32 mark;
1901 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001902 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001903 struct xfrm_usersa_id *id = &p->sa_id;
1904
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001905 mark = xfrm_mark_get(attrs, &m);
1906
1907 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001908 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001909 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001910
1911 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1912 if (r_skb == NULL) {
1913 xfrm_state_put(x);
1914 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001915 }
1916
1917 /*
1918 * XXX: is this lock really needed - none of the other
1919 * gets lock (the concern is things getting updated
1920 * while we are still reading) - jhs
1921 */
1922 spin_lock_bh(&x->lock);
1923 c.data.aevent = p->flags;
1924 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001925 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001926
1927 if (build_aevent(r_skb, x, &c) < 0)
1928 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001929 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001930 spin_unlock_bh(&x->lock);
1931 xfrm_state_put(x);
1932 return err;
1933}
1934
Christoph Hellwig22e70052007-01-02 15:22:30 -08001935static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001936 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001937{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001938 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001939 struct xfrm_state *x;
1940 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08001941 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001942 u32 mark = 0;
1943 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001944 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001945 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001946 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001947 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02001948 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
1949 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001950
Michael Rossberg4e077232015-09-29 11:25:08 +02001951 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001952 return err;
1953
1954 /* pedantic mode - thou shalt sayeth replaceth */
1955 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1956 return err;
1957
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001958 mark = xfrm_mark_get(attrs, &m);
1959
1960 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 -08001961 if (x == NULL)
1962 return -ESRCH;
1963
1964 if (x->km.state != XFRM_STATE_VALID)
1965 goto out;
1966
Steffen Klassert4479ff72013-09-09 09:39:01 +02001967 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00001968 if (err)
1969 goto out;
1970
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001971 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00001972 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001973 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001974
1975 c.event = nlh->nlmsg_type;
1976 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001977 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001978 c.data.aevent = XFRM_AE_CU;
1979 km_state_notify(x, &c);
1980 err = 0;
1981out:
1982 xfrm_state_put(x);
1983 return err;
1984}
1985
Christoph Hellwig22e70052007-01-02 15:22:30 -08001986static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001987 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001989 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001990 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001991 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001992 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001993
Thomas Graf35a7aa02007-08-22 14:00:40 -07001994 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001995 if (err)
1996 return err;
1997
Tetsuo Handa2e710292014-04-22 21:48:30 +09001998 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00001999 if (err) {
2000 if (err == -ESRCH) /* empty table */
2001 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002002 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002003 }
2004
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002005 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002006 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002007 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002008 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002009 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002010 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002011 return 0;
2012}
2013
Christoph Hellwig22e70052007-01-02 15:22:30 -08002014static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002015 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002016{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002017 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002018 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002019 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002020 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002021 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002022 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002023 struct xfrm_mark m;
2024 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002025
Thomas Graf35a7aa02007-08-22 14:00:40 -07002026 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002027 if (err)
2028 return err;
2029
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002030 err = verify_policy_dir(p->dir);
2031 if (err)
2032 return err;
2033
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002034 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002035 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002036 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002037 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002038 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002039
Thomas Graf35a7aa02007-08-22 14:00:40 -07002040 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002041 if (err)
2042 return err;
2043
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002044 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002045 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002046 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002047
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002048 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002049 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002050 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002051 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002052 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002053 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002054 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002055 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002056 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002057 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002058
Timo Teräsea2dea92010-03-31 00:17:05 +00002059 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002060 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002061
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002062 err = 0;
2063 if (up->hard) {
2064 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002065 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002066 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002067 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002068
2069out:
2070 xfrm_pol_put(xp);
2071 return err;
2072}
2073
Christoph Hellwig22e70052007-01-02 15:22:30 -08002074static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002075 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002076{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002077 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002078 struct xfrm_state *x;
2079 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002080 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002081 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002082 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002083 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002084
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002085 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 -08002086
David S. Miller3a765aa2007-02-26 14:52:21 -08002087 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002088 if (x == NULL)
2089 return err;
2090
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002091 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002092 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002093 if (x->km.state != XFRM_STATE_VALID)
2094 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002095 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002096
Joy Latten161a09e2006-11-27 13:11:54 -06002097 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002098 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002099 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002100 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002101 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002102out:
2103 spin_unlock_bh(&x->lock);
2104 xfrm_state_put(x);
2105 return err;
2106}
2107
Christoph Hellwig22e70052007-01-02 15:22:30 -08002108static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002109 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002110{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002111 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002112 struct xfrm_policy *xp;
2113 struct xfrm_user_tmpl *ut;
2114 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002115 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002116 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002117
Thomas Graf7b67c852007-08-22 13:53:52 -07002118 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002119 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002120 int err = -ENOMEM;
2121
2122 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002123 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002124
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002125 xfrm_mark_get(attrs, &mark);
2126
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002127 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002128 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002129 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002130
2131 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002132 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002133 if (!xp)
2134 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002135
2136 memcpy(&x->id, &ua->id, sizeof(ua->id));
2137 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2138 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002139 xp->mark.m = x->mark.m = mark.m;
2140 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002141 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002142 /* extract the templates and for each call km_key */
2143 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2144 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2145 memcpy(&x->id, &t->id, sizeof(x->id));
2146 x->props.mode = t->mode;
2147 x->props.reqid = t->reqid;
2148 x->props.family = ut->family;
2149 t->aalgos = ua->aalgos;
2150 t->ealgos = ua->ealgos;
2151 t->calgos = ua->calgos;
2152 err = km_query(x, t, xp);
2153
2154 }
2155
2156 kfree(x);
2157 kfree(xp);
2158
2159 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002160
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002161free_state:
2162 kfree(x);
2163nomem:
2164 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002165}
2166
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002167#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002168static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002169 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002170 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002171{
Thomas Graf5424f322007-08-22 14:01:33 -07002172 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002173 struct xfrm_user_migrate *um;
2174 int i, num_migrate;
2175
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002176 if (k != NULL) {
2177 struct xfrm_user_kmaddress *uk;
2178
2179 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2180 memcpy(&k->local, &uk->local, sizeof(k->local));
2181 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2182 k->family = uk->family;
2183 k->reserved = uk->reserved;
2184 }
2185
Thomas Graf5424f322007-08-22 14:01:33 -07002186 um = nla_data(rt);
2187 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002188
2189 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2190 return -EINVAL;
2191
2192 for (i = 0; i < num_migrate; i++, um++, ma++) {
2193 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2194 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2195 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2196 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2197
2198 ma->proto = um->proto;
2199 ma->mode = um->mode;
2200 ma->reqid = um->reqid;
2201
2202 ma->old_family = um->old_family;
2203 ma->new_family = um->new_family;
2204 }
2205
2206 *num = i;
2207 return 0;
2208}
2209
2210static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002211 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002212{
Thomas Graf7b67c852007-08-22 13:53:52 -07002213 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002214 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002215 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002216 u8 type;
2217 int err;
2218 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002219 struct net *net = sock_net(skb->sk);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002220
Thomas Graf35a7aa02007-08-22 14:00:40 -07002221 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002222 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002223
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002224 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2225
Thomas Graf5424f322007-08-22 14:01:33 -07002226 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002227 if (err)
2228 return err;
2229
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002230 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002231 if (err)
2232 return err;
2233
2234 if (!n)
2235 return 0;
2236
Fan Du8d549c42013-11-07 17:47:49 +08002237 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002238
2239 return 0;
2240}
2241#else
2242static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002243 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002244{
2245 return -ENOPROTOOPT;
2246}
2247#endif
2248
2249#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002250static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002251{
2252 struct xfrm_user_migrate um;
2253
2254 memset(&um, 0, sizeof(um));
2255 um.proto = m->proto;
2256 um.mode = m->mode;
2257 um.reqid = m->reqid;
2258 um.old_family = m->old_family;
2259 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2260 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2261 um.new_family = m->new_family;
2262 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2263 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2264
Thomas Grafc0144be2007-08-22 13:55:43 -07002265 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002266}
2267
David S. Miller183cad12011-02-24 00:28:01 -05002268static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002269{
2270 struct xfrm_user_kmaddress uk;
2271
2272 memset(&uk, 0, sizeof(uk));
2273 uk.family = k->family;
2274 uk.reserved = k->reserved;
2275 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002276 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002277
2278 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2279}
2280
2281static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002282{
2283 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002284 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2285 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2286 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002287}
2288
David S. Miller183cad12011-02-24 00:28:01 -05002289static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2290 int num_migrate, const struct xfrm_kmaddress *k,
2291 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002292{
David S. Miller183cad12011-02-24 00:28:01 -05002293 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002294 struct xfrm_userpolicy_id *pol_id;
2295 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002296 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002297
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002298 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2299 if (nlh == NULL)
2300 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002301
Thomas Graf7b67c852007-08-22 13:53:52 -07002302 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002303 /* copy data from selector, dir, and type to the pol_id */
2304 memset(pol_id, 0, sizeof(*pol_id));
2305 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2306 pol_id->dir = dir;
2307
David S. Miller1d1e34d2012-06-27 21:57:03 -07002308 if (k != NULL) {
2309 err = copy_to_user_kmaddress(k, skb);
2310 if (err)
2311 goto out_cancel;
2312 }
2313 err = copy_to_user_policy_type(type, skb);
2314 if (err)
2315 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002316 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002317 err = copy_to_user_migrate(mp, skb);
2318 if (err)
2319 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002320 }
2321
Johannes Berg053c0952015-01-16 22:09:00 +01002322 nlmsg_end(skb, nlh);
2323 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002324
2325out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002326 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002327 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002328}
2329
David S. Miller183cad12011-02-24 00:28:01 -05002330static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2331 const struct xfrm_migrate *m, int num_migrate,
2332 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002333{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002334 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002335 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002336
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002337 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002338 if (skb == NULL)
2339 return -ENOMEM;
2340
2341 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002342 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002343 BUG();
2344
Michal Kubecek21ee5432014-06-03 10:26:06 +02002345 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002346}
2347#else
David S. Miller183cad12011-02-24 00:28:01 -05002348static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2349 const struct xfrm_migrate *m, int num_migrate,
2350 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002351{
2352 return -ENOPROTOOPT;
2353}
2354#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002355
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002356#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002357
2358static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002359 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002360 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2361 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2362 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2363 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2364 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2365 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002366 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002367 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002368 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002369 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002370 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002371 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002372 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002373 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2374 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002375 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002376 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002377 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002378 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002379 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380};
2381
Thomas Graf492b5582005-05-03 14:26:40 -07002382#undef XMSGSIZE
2383
Thomas Grafcf5cb792007-08-22 13:59:04 -07002384static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002385 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2386 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2387 [XFRMA_LASTUSED] = { .type = NLA_U64},
2388 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002389 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002390 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2391 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2392 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2393 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2394 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2395 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2396 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2397 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2398 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2399 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2400 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2401 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2402 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2403 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002404 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002405 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002406 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002407 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002408 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002409 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002410 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002411};
2412
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002413static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2414 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2415 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2416};
2417
Mathias Krause05600a72013-02-24 14:10:27 +01002418static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002419 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu543aabb2017-10-19 20:51:10 +08002420 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002422 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002423 const struct nla_policy *nla_pol;
2424 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002425} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2426 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2427 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2428 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002429 .dump = xfrm_dump_sa,
2430 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002431 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2432 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2433 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu543aabb2017-10-19 20:51:10 +08002434 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002435 .dump = xfrm_dump_policy,
2436 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002437 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002438 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002439 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002440 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2441 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002442 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002443 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2444 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002445 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2446 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002447 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002448 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002449 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2450 .nla_pol = xfrma_spd_policy,
2451 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002452 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453};
2454
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002455static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002457 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002458 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002459 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002460 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
Fan Du74005992015-01-27 17:00:29 +08002462#ifdef CONFIG_COMPAT
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002463 if (in_compat_syscall())
Yi Zhao83e2d052016-11-29 18:09:01 +08002464 return -EOPNOTSUPP;
Fan Du74005992015-01-27 17:00:29 +08002465#endif
2466
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002469 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
2471 type -= XFRM_MSG_BASE;
2472 link = &xfrm_dispatch[type];
2473
2474 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002475 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002476 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
Thomas Graf492b5582005-05-03 14:26:40 -07002478 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2479 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002480 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002482 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002484 {
2485 struct netlink_dump_control c = {
Herbert Xu543aabb2017-10-19 20:51:10 +08002486 .start = link->start,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002487 .dump = link->dump,
2488 .done = link->done,
2489 };
2490 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2491 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 }
2493
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002494 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2495 link->nla_max ? : XFRMA_MAX,
2496 link->nla_pol ? : xfrma_policy);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002497 if (err < 0)
2498 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499
2500 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002501 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
Thomas Graf5424f322007-08-22 14:01:33 -07002503 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504}
2505
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002506static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507{
Fan Du283bc9f2013-11-07 17:47:50 +08002508 struct net *net = sock_net(skb->sk);
2509
2510 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002511 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002512 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513}
2514
Thomas Graf7deb2262007-08-22 13:57:39 -07002515static inline size_t xfrm_expire_msgsize(void)
2516{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002517 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2518 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002519}
2520
David S. Miller214e0052011-02-24 00:02:38 -05002521static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522{
2523 struct xfrm_user_expire *ue;
2524 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002525 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
Eric W. Biederman15e47302012-09-07 20:12:54 +00002527 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002528 if (nlh == NULL)
2529 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530
Thomas Graf7b67c852007-08-22 13:53:52 -07002531 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002533 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
David S. Miller1d1e34d2012-06-27 21:57:03 -07002535 err = xfrm_mark_put(skb, &x->mark);
2536 if (err)
2537 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002538
Johannes Berg053c0952015-01-16 22:09:00 +01002539 nlmsg_end(skb, nlh);
2540 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541}
2542
David S. Miller214e0052011-02-24 00:02:38 -05002543static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002545 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 struct sk_buff *skb;
2547
Thomas Graf7deb2262007-08-22 13:57:39 -07002548 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 if (skb == NULL)
2550 return -ENOMEM;
2551
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002552 if (build_expire(skb, x, c) < 0) {
2553 kfree_skb(skb);
2554 return -EMSGSIZE;
2555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Michal Kubecek21ee5432014-06-03 10:26:06 +02002557 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558}
2559
David S. Miller214e0052011-02-24 00:02:38 -05002560static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002561{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002562 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002563 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002564
Steffen Klassertd8647b72011-03-08 00:10:27 +00002565 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002566 if (skb == NULL)
2567 return -ENOMEM;
2568
2569 if (build_aevent(skb, x, c) < 0)
2570 BUG();
2571
Michal Kubecek21ee5432014-06-03 10:26:06 +02002572 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002573}
2574
David S. Miller214e0052011-02-24 00:02:38 -05002575static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002576{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002577 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002578 struct xfrm_usersa_flush *p;
2579 struct nlmsghdr *nlh;
2580 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002581 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002582
Thomas Graf7deb2262007-08-22 13:57:39 -07002583 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002584 if (skb == NULL)
2585 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002586
Eric W. Biederman15e47302012-09-07 20:12:54 +00002587 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002588 if (nlh == NULL) {
2589 kfree_skb(skb);
2590 return -EMSGSIZE;
2591 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002592
Thomas Graf7b67c852007-08-22 13:53:52 -07002593 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002594 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002595
Thomas Graf98250692007-08-22 12:47:26 -07002596 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002597
Michal Kubecek21ee5432014-06-03 10:26:06 +02002598 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002599}
2600
Thomas Graf7deb2262007-08-22 13:57:39 -07002601static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002602{
Thomas Graf7deb2262007-08-22 13:57:39 -07002603 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002604 if (x->aead)
2605 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002606 if (x->aalg) {
2607 l += nla_total_size(sizeof(struct xfrm_algo) +
2608 (x->aalg->alg_key_len + 7) / 8);
2609 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2610 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002611 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002612 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002613 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002614 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002615 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002616 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002617 if (x->tfcpad)
2618 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002619 if (x->replay_esn)
2620 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002621 else
2622 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002623 if (x->security)
2624 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2625 x->security->ctx_len);
2626 if (x->coaddr)
2627 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002628 if (x->props.extra_flags)
2629 l += nla_total_size(sizeof(x->props.extra_flags));
Herbert Xu68325d32007-10-09 13:30:57 -07002630
Herbert Xud26f3982007-11-13 21:47:08 -08002631 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002632 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002633
2634 return l;
2635}
2636
David S. Miller214e0052011-02-24 00:02:38 -05002637static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002638{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002639 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002640 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002641 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002642 struct nlmsghdr *nlh;
2643 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002644 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002645 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002646
2647 headlen = sizeof(*p);
2648 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002649 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002650 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002651 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002652 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002653 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002654
Thomas Graf7deb2262007-08-22 13:57:39 -07002655 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002656 if (skb == NULL)
2657 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002658
Eric W. Biederman15e47302012-09-07 20:12:54 +00002659 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002660 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002661 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002662 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002663
Thomas Graf7b67c852007-08-22 13:53:52 -07002664 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002665 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002666 struct nlattr *attr;
2667
Thomas Graf7b67c852007-08-22 13:53:52 -07002668 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002669 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2670 id->spi = x->id.spi;
2671 id->family = x->props.family;
2672 id->proto = x->id.proto;
2673
Thomas Grafc0144be2007-08-22 13:55:43 -07002674 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002675 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002676 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002677 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002678
2679 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002680 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002681 err = copy_to_user_state_extra(x, p, skb);
2682 if (err)
2683 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002684
Thomas Graf98250692007-08-22 12:47:26 -07002685 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002686
Michal Kubecek21ee5432014-06-03 10:26:06 +02002687 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002688
David S. Miller1d1e34d2012-06-27 21:57:03 -07002689out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002690 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002691 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002692}
2693
David S. Miller214e0052011-02-24 00:02:38 -05002694static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002695{
2696
2697 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002698 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002699 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002700 case XFRM_MSG_NEWAE:
2701 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002702 case XFRM_MSG_DELSA:
2703 case XFRM_MSG_UPDSA:
2704 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002705 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002706 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002707 return xfrm_notify_sa_flush(c);
2708 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002709 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2710 c->event);
2711 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002712 }
2713
2714 return 0;
2715
2716}
2717
Thomas Graf7deb2262007-08-22 13:57:39 -07002718static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2719 struct xfrm_policy *xp)
2720{
2721 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2722 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002723 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002724 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2725 + userpolicy_type_attrsize();
2726}
2727
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002729 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002731 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 struct xfrm_user_acquire *ua;
2733 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002734 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002736 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2737 if (nlh == NULL)
2738 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739
Thomas Graf7b67c852007-08-22 13:53:52 -07002740 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 memcpy(&ua->id, &x->id, sizeof(ua->id));
2742 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2743 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002744 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 ua->aalgos = xt->aalgos;
2746 ua->ealgos = xt->ealgos;
2747 ua->calgos = xt->calgos;
2748 ua->seq = x->km.seq = seq;
2749
David S. Miller1d1e34d2012-06-27 21:57:03 -07002750 err = copy_to_user_tmpl(xp, skb);
2751 if (!err)
2752 err = copy_to_user_state_sec_ctx(x, skb);
2753 if (!err)
2754 err = copy_to_user_policy_type(xp->type, skb);
2755 if (!err)
2756 err = xfrm_mark_put(skb, &xp->mark);
2757 if (err) {
2758 nlmsg_cancel(skb, nlh);
2759 return err;
2760 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761
Johannes Berg053c0952015-01-16 22:09:00 +01002762 nlmsg_end(skb, nlh);
2763 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764}
2765
2766static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002767 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002769 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771
Thomas Graf7deb2262007-08-22 13:57:39 -07002772 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 if (skb == NULL)
2774 return -ENOMEM;
2775
Fan Du65e07362012-08-15 10:13:47 +08002776 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 BUG();
2778
Michal Kubecek21ee5432014-06-03 10:26:06 +02002779 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780}
2781
2782/* User gives us xfrm_user_policy_info followed by an array of 0
2783 * or more templates.
2784 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002785static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 u8 *data, int len, int *dir)
2787{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002788 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2790 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2791 struct xfrm_policy *xp;
2792 int nr;
2793
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002794 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 case AF_INET:
2796 if (opt != IP_XFRM_POLICY) {
2797 *dir = -EOPNOTSUPP;
2798 return NULL;
2799 }
2800 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002801#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 case AF_INET6:
2803 if (opt != IPV6_XFRM_POLICY) {
2804 *dir = -EOPNOTSUPP;
2805 return NULL;
2806 }
2807 break;
2808#endif
2809 default:
2810 *dir = -EINVAL;
2811 return NULL;
2812 }
2813
2814 *dir = -EINVAL;
2815
2816 if (len < sizeof(*p) ||
2817 verify_newpolicy_info(p))
2818 return NULL;
2819
2820 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002821 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 return NULL;
2823
Herbert Xua4f1bac2005-07-26 15:43:17 -07002824 if (p->dir > XFRM_POLICY_OUT)
2825 return NULL;
2826
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002827 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 if (xp == NULL) {
2829 *dir = -ENOBUFS;
2830 return NULL;
2831 }
2832
2833 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002834 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 copy_templates(xp, ut, nr);
2836
2837 *dir = p->dir;
2838
2839 return xp;
2840}
2841
Thomas Graf7deb2262007-08-22 13:57:39 -07002842static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2843{
2844 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2845 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2846 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002847 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002848 + userpolicy_type_attrsize();
2849}
2850
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002852 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853{
2854 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002855 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002856 struct nlmsghdr *nlh;
2857 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
Eric W. Biederman15e47302012-09-07 20:12:54 +00002859 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002860 if (nlh == NULL)
2861 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862
Thomas Graf7b67c852007-08-22 13:53:52 -07002863 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002865 err = copy_to_user_tmpl(xp, skb);
2866 if (!err)
2867 err = copy_to_user_sec_ctx(xp, skb);
2868 if (!err)
2869 err = copy_to_user_policy_type(xp->type, skb);
2870 if (!err)
2871 err = xfrm_mark_put(skb, &xp->mark);
2872 if (err) {
2873 nlmsg_cancel(skb, nlh);
2874 return err;
2875 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 upe->hard = !!hard;
2877
Johannes Berg053c0952015-01-16 22:09:00 +01002878 nlmsg_end(skb, nlh);
2879 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880}
2881
David S. Miller214e0052011-02-24 00:02:38 -05002882static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002884 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
Thomas Graf7deb2262007-08-22 13:57:39 -07002887 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 if (skb == NULL)
2889 return -ENOMEM;
2890
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002891 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 BUG();
2893
Michal Kubecek21ee5432014-06-03 10:26:06 +02002894 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895}
2896
David S. Miller214e0052011-02-24 00:02:38 -05002897static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002898{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002899 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002900 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002901 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002902 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002903 struct nlmsghdr *nlh;
2904 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002905 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002906
2907 headlen = sizeof(*p);
2908 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002909 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002910 headlen = sizeof(*id);
2911 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002912 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002913 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002914 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002915
Thomas Graf7deb2262007-08-22 13:57:39 -07002916 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002917 if (skb == NULL)
2918 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002919
Eric W. Biederman15e47302012-09-07 20:12:54 +00002920 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002921 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002922 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002923 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002924
Thomas Graf7b67c852007-08-22 13:53:52 -07002925 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002926 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002927 struct nlattr *attr;
2928
Thomas Graf7b67c852007-08-22 13:53:52 -07002929 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002930 memset(id, 0, sizeof(*id));
2931 id->dir = dir;
2932 if (c->data.byid)
2933 id->index = xp->index;
2934 else
2935 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2936
Thomas Grafc0144be2007-08-22 13:55:43 -07002937 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002938 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002939 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002940 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002941
2942 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002943 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002944
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002945 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002946 err = copy_to_user_tmpl(xp, skb);
2947 if (!err)
2948 err = copy_to_user_policy_type(xp->type, skb);
2949 if (!err)
2950 err = xfrm_mark_put(skb, &xp->mark);
2951 if (err)
2952 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002953
Thomas Graf98250692007-08-22 12:47:26 -07002954 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002955
Michal Kubecek21ee5432014-06-03 10:26:06 +02002956 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002957
David S. Miller1d1e34d2012-06-27 21:57:03 -07002958out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002959 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002960 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002961}
2962
David S. Miller214e0052011-02-24 00:02:38 -05002963static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002964{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002965 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002966 struct nlmsghdr *nlh;
2967 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002968 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002969
Thomas Graf7deb2262007-08-22 13:57:39 -07002970 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002971 if (skb == NULL)
2972 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002973
Eric W. Biederman15e47302012-09-07 20:12:54 +00002974 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002975 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002976 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002977 goto out_free_skb;
2978 err = copy_to_user_policy_type(c->data.type, skb);
2979 if (err)
2980 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002981
Thomas Graf98250692007-08-22 12:47:26 -07002982 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002983
Michal Kubecek21ee5432014-06-03 10:26:06 +02002984 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002985
David S. Miller1d1e34d2012-06-27 21:57:03 -07002986out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002987 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002988 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002989}
2990
David S. Miller214e0052011-02-24 00:02:38 -05002991static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002992{
2993
2994 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002995 case XFRM_MSG_NEWPOLICY:
2996 case XFRM_MSG_UPDPOLICY:
2997 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002998 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002999 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003000 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003001 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003002 return xfrm_exp_policy_notify(xp, dir, c);
3003 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003004 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3005 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003006 }
3007
3008 return 0;
3009
3010}
3011
Thomas Graf7deb2262007-08-22 13:57:39 -07003012static inline size_t xfrm_report_msgsize(void)
3013{
3014 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3015}
3016
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003017static int build_report(struct sk_buff *skb, u8 proto,
3018 struct xfrm_selector *sel, xfrm_address_t *addr)
3019{
3020 struct xfrm_user_report *ur;
3021 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003022
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003023 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3024 if (nlh == NULL)
3025 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003026
Thomas Graf7b67c852007-08-22 13:53:52 -07003027 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003028 ur->proto = proto;
3029 memcpy(&ur->sel, sel, sizeof(ur->sel));
3030
David S. Miller1d1e34d2012-06-27 21:57:03 -07003031 if (addr) {
3032 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3033 if (err) {
3034 nlmsg_cancel(skb, nlh);
3035 return err;
3036 }
3037 }
Johannes Berg053c0952015-01-16 22:09:00 +01003038 nlmsg_end(skb, nlh);
3039 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003040}
3041
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003042static int xfrm_send_report(struct net *net, u8 proto,
3043 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003044{
3045 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003046
Thomas Graf7deb2262007-08-22 13:57:39 -07003047 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003048 if (skb == NULL)
3049 return -ENOMEM;
3050
3051 if (build_report(skb, proto, sel, addr) < 0)
3052 BUG();
3053
Michal Kubecek21ee5432014-06-03 10:26:06 +02003054 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003055}
3056
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003057static inline size_t xfrm_mapping_msgsize(void)
3058{
3059 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3060}
3061
3062static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3063 xfrm_address_t *new_saddr, __be16 new_sport)
3064{
3065 struct xfrm_user_mapping *um;
3066 struct nlmsghdr *nlh;
3067
3068 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3069 if (nlh == NULL)
3070 return -EMSGSIZE;
3071
3072 um = nlmsg_data(nlh);
3073
3074 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3075 um->id.spi = x->id.spi;
3076 um->id.family = x->props.family;
3077 um->id.proto = x->id.proto;
3078 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3079 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3080 um->new_sport = new_sport;
3081 um->old_sport = x->encap->encap_sport;
3082 um->reqid = x->props.reqid;
3083
Johannes Berg053c0952015-01-16 22:09:00 +01003084 nlmsg_end(skb, nlh);
3085 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003086}
3087
3088static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3089 __be16 sport)
3090{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003091 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003092 struct sk_buff *skb;
3093
3094 if (x->id.proto != IPPROTO_ESP)
3095 return -EINVAL;
3096
3097 if (!x->encap)
3098 return -EINVAL;
3099
3100 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3101 if (skb == NULL)
3102 return -ENOMEM;
3103
3104 if (build_mapping(skb, x, ipaddr, sport) < 0)
3105 BUG();
3106
Michal Kubecek21ee5432014-06-03 10:26:06 +02003107 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003108}
3109
Horia Geanta0f245582014-02-12 16:20:06 +02003110static bool xfrm_is_alive(const struct km_event *c)
3111{
3112 return (bool)xfrm_acquire_is_on(c->net);
3113}
3114
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115static struct xfrm_mgr netlink_mgr = {
3116 .id = "netlink",
3117 .notify = xfrm_send_state_notify,
3118 .acquire = xfrm_send_acquire,
3119 .compile_policy = xfrm_compile_policy,
3120 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003121 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003122 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003123 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003124 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125};
3126
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003127static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128{
Patrick McHardybe336902006-03-20 22:40:54 -08003129 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003130 struct netlink_kernel_cfg cfg = {
3131 .groups = XFRMNLGRP_MAX,
3132 .input = xfrm_netlink_rcv,
3133 };
Patrick McHardybe336902006-03-20 22:40:54 -08003134
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003135 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003136 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003138 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003139 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 return 0;
3141}
3142
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003143static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003144{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003145 struct net *net;
3146 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003147 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003148 synchronize_net();
3149 list_for_each_entry(net, net_exit_list, exit_list)
3150 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003151}
3152
3153static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003154 .init = xfrm_user_net_init,
3155 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003156};
3157
3158static int __init xfrm_user_init(void)
3159{
3160 int rv;
3161
3162 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3163
3164 rv = register_pernet_subsys(&xfrm_user_net_ops);
3165 if (rv < 0)
3166 return rv;
3167 rv = xfrm_register_km(&netlink_mgr);
3168 if (rv < 0)
3169 unregister_pernet_subsys(&xfrm_user_net_ops);
3170 return rv;
3171}
3172
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173static void __exit xfrm_user_exit(void)
3174{
3175 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003176 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177}
3178
3179module_init(xfrm_user_init);
3180module_exit(xfrm_user_exit);
3181MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003182MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003183