blob: 3259555ae7d708506a3d2a2d6d8e57b19df8d7e7 [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 Torvalds7c0f6ba2016-12-24 11:46:01 -080030#include <linux/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
Herbert Xu633439f2017-04-06 16:16:10 +080058 algp->alg_name[sizeof(algp->alg_name) - 1] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 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
Herbert Xu633439f2017-04-06 16:16:10 +080074 algp->alg_name[sizeof(algp->alg_name) - 1] = '\0';
Martin Willi4447bb32009-11-25 00:29:52 +000075 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
Herbert Xu633439f2017-04-06 16:16:10 +080090 algp->alg_name[sizeof(algp->alg_name) - 1] = '\0';
Herbert Xu1a6509d2008-01-28 19:37:29 -080091 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 Whitcroftf843ee62017-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 Whitcroft677e8062017-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
Ilan Tayari152afb92017-04-30 16:51:19 +0300598 if (attrs[XFRMA_OFFLOAD_DEV]) {
599 err = xfrm_dev_state_add(net, x,
600 nla_data(attrs[XFRMA_OFFLOAD_DEV]));
601 if (err)
602 goto error;
603 }
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200604
Steffen Klassertd8647b72011-03-08 00:10:27 +0000605 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
606 attrs[XFRMA_REPLAY_ESN_VAL])))
607 goto error;
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800610 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800611 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800612 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800613
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000614 if ((err = xfrm_init_replay(x)))
615 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800616
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000617 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000618 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 return x;
621
622error:
623 x->km.state = XFRM_STATE_DEAD;
624 xfrm_state_put(x);
625error_no_put:
626 *errp = err;
627 return NULL;
628}
629
Christoph Hellwig22e70052007-01-02 15:22:30 -0800630static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700631 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800633 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700634 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 struct xfrm_state *x;
636 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700637 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Thomas Graf35a7aa02007-08-22 14:00:40 -0700639 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (err)
641 return err;
642
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800643 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (!x)
645 return err;
646
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700647 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
649 err = xfrm_state_add(x);
650 else
651 err = xfrm_state_update(x);
652
Tetsuo Handa2e710292014-04-22 21:48:30 +0900653 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 if (err < 0) {
656 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800657 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700658 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
660
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700661 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000662 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700663 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700664
665 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700666out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700667 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return err;
669}
670
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800671static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
672 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700673 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700674 int *errp)
675{
676 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000677 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700678 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000679 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700680
681 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
682 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000683 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700684 } else {
685 xfrm_address_t *saddr = NULL;
686
Thomas Graf35a7aa02007-08-22 14:00:40 -0700687 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700688 if (!saddr) {
689 err = -EINVAL;
690 goto out;
691 }
692
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800693 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000694 x = xfrm_state_lookup_byaddr(net, mark,
695 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800696 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700697 }
698
699 out:
700 if (!x && errp)
701 *errp = err;
702 return x;
703}
704
Christoph Hellwig22e70052007-01-02 15:22:30 -0800705static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700706 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800708 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700710 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700711 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700712 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800714 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700716 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
David S. Miller6f68dc32006-06-08 23:58:52 -0700718 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700719 goto out;
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700722 err = -EPERM;
723 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
725
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700726 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600727
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700728 if (err < 0)
729 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700730
731 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000732 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700733 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700734 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700736out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900737 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700738 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700739 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
742static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
743{
Mathias Krausef778a632012-09-19 11:33:39 +0000744 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 memcpy(&p->id, &x->id, sizeof(p->id));
746 memcpy(&p->sel, &x->sel, sizeof(p->sel));
747 memcpy(&p->lft, &x->lft, sizeof(p->lft));
748 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
Sowmini Varadhane33d4f12015-10-21 11:48:25 -0400749 put_unaligned(x->stats.replay_window, &p->stats.replay_window);
750 put_unaligned(x->stats.replay, &p->stats.replay);
751 put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
David S. Miller54489c142006-10-27 15:29:47 -0700752 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 p->mode = x->props.mode;
754 p->replay_window = x->props.replay_window;
755 p->reqid = x->props.reqid;
756 p->family = x->props.family;
757 p->flags = x->props.flags;
758 p->seq = x->km.seq;
759}
760
761struct xfrm_dump_info {
762 struct sk_buff *in_skb;
763 struct sk_buff *out_skb;
764 u32 nlmsg_seq;
765 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766};
767
Thomas Grafc0144be2007-08-22 13:55:43 -0700768static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
769{
Thomas Grafc0144be2007-08-22 13:55:43 -0700770 struct xfrm_user_sec_ctx *uctx;
771 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700772 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700773
774 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
775 if (attr == NULL)
776 return -EMSGSIZE;
777
778 uctx = nla_data(attr);
779 uctx->exttype = XFRMA_SEC_CTX;
780 uctx->len = ctx_size;
781 uctx->ctx_doi = s->ctx_doi;
782 uctx->ctx_alg = s->ctx_alg;
783 uctx->ctx_len = s->ctx_len;
784 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
785
786 return 0;
787}
788
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200789static int copy_user_offload(struct xfrm_state_offload *xso, struct sk_buff *skb)
790{
791 struct xfrm_user_offload *xuo;
792 struct nlattr *attr;
793
794 attr = nla_reserve(skb, XFRMA_OFFLOAD_DEV, sizeof(*xuo));
795 if (attr == NULL)
796 return -EMSGSIZE;
797
798 xuo = nla_data(attr);
Mathias Krause5fe0d4b2017-08-26 17:08:57 +0200799 memset(xuo, 0, sizeof(*xuo));
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200800 xuo->ifindex = xso->dev->ifindex;
801 xuo->flags = xso->flags;
802
803 return 0;
804}
805
Martin Willi4447bb32009-11-25 00:29:52 +0000806static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
807{
808 struct xfrm_algo *algo;
809 struct nlattr *nla;
810
811 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
812 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
813 if (!nla)
814 return -EMSGSIZE;
815
816 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000817 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000818 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
819 algo->alg_key_len = auth->alg_key_len;
820
821 return 0;
822}
823
Herbert Xu68325d32007-10-09 13:30:57 -0700824/* Don't change this without updating xfrm_sa_len! */
825static int copy_to_user_state_extra(struct xfrm_state *x,
826 struct xfrm_usersa_info *p,
827 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700829 int ret = 0;
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 copy_to_user_state(x, p);
832
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100833 if (x->props.extra_flags) {
834 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
835 x->props.extra_flags);
836 if (ret)
837 goto out;
838 }
839
David S. Miller1d1e34d2012-06-27 21:57:03 -0700840 if (x->coaddr) {
841 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
842 if (ret)
843 goto out;
844 }
845 if (x->lastused) {
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +0200846 ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused,
847 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700848 if (ret)
849 goto out;
850 }
851 if (x->aead) {
852 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
853 if (ret)
854 goto out;
855 }
856 if (x->aalg) {
857 ret = copy_to_user_auth(x->aalg, skb);
858 if (!ret)
859 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
860 xfrm_alg_auth_len(x->aalg), x->aalg);
861 if (ret)
862 goto out;
863 }
864 if (x->ealg) {
865 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
866 if (ret)
867 goto out;
868 }
869 if (x->calg) {
870 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
871 if (ret)
872 goto out;
873 }
874 if (x->encap) {
875 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
876 if (ret)
877 goto out;
878 }
879 if (x->tfcpad) {
880 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
881 if (ret)
882 goto out;
883 }
884 ret = xfrm_mark_put(skb, &x->mark);
885 if (ret)
886 goto out;
dingzhif293a5e2014-10-30 09:39:36 +0100887 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700888 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
889 xfrm_replay_state_esn_len(x->replay_esn),
890 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100891 else
892 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
893 &x->replay);
894 if (ret)
895 goto out;
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200896 if(x->xso.dev)
897 ret = copy_user_offload(&x->xso, skb);
898 if (ret)
899 goto out;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700900 if (x->security)
901 ret = copy_sec_ctx(x->security, skb);
902out:
903 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700904}
905
906static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
907{
908 struct xfrm_dump_info *sp = ptr;
909 struct sk_buff *in_skb = sp->in_skb;
910 struct sk_buff *skb = sp->out_skb;
911 struct xfrm_usersa_info *p;
912 struct nlmsghdr *nlh;
913 int err;
914
Eric W. Biederman15e47302012-09-07 20:12:54 +0000915 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700916 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
917 if (nlh == NULL)
918 return -EMSGSIZE;
919
920 p = nlmsg_data(nlh);
921
922 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700923 if (err) {
924 nlmsg_cancel(skb, nlh);
925 return err;
926 }
Thomas Graf98250692007-08-22 12:47:26 -0700927 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929}
930
Timo Teras4c563f72008-02-28 21:31:08 -0800931static int xfrm_dump_sa_done(struct netlink_callback *cb)
932{
933 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800934 struct sock *sk = cb->skb->sk;
935 struct net *net = sock_net(sk);
936
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200937 if (cb->args[0])
938 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800939 return 0;
940}
941
Nicolas Dichteld3623092014-02-14 15:30:36 +0100942static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
944{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800945 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800946 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 struct xfrm_dump_info info;
948
Timo Teras4c563f72008-02-28 21:31:08 -0800949 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
950 sizeof(cb->args) - sizeof(cb->args[0]));
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 info.in_skb = cb->skb;
953 info.out_skb = skb;
954 info.nlmsg_seq = cb->nlh->nlmsg_seq;
955 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800956
957 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100958 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100959 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100960 u8 proto = 0;
961 int err;
962
Johannes Bergfceb6432017-04-12 14:34:07 +0200963 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX, xfrma_policy,
964 NULL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100965 if (err < 0)
966 return err;
967
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100968 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +0200969 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
970 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100971 if (filter == NULL)
972 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100973 }
974
975 if (attrs[XFRMA_PROTO])
976 proto = nla_get_u8(attrs[XFRMA_PROTO]);
977
978 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200979 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -0800980 }
981
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800982 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 return skb->len;
985}
986
987static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
988 struct xfrm_state *x, u32 seq)
989{
990 struct xfrm_dump_info info;
991 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +0000992 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Thomas Graf7deb2262007-08-22 13:57:39 -0700994 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if (!skb)
996 return ERR_PTR(-ENOMEM);
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 info.in_skb = in_skb;
999 info.out_skb = skb;
1000 info.nlmsg_seq = seq;
1001 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Mathias Krause864745d2012-09-13 11:41:26 +00001003 err = dump_one_state(x, 0, &info);
1004 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +00001006 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 }
1008
1009 return skb;
1010}
1011
Michal Kubecek21ee5432014-06-03 10:26:06 +02001012/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
1013 * Must be called with RCU read lock.
1014 */
1015static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
1016 u32 pid, unsigned int group)
1017{
1018 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
1019
1020 if (nlsk)
1021 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
1022 else
1023 return -1;
1024}
1025
Thomas Graf7deb2262007-08-22 13:57:39 -07001026static inline size_t xfrm_spdinfo_msgsize(void)
1027{
1028 return NLMSG_ALIGN(4)
1029 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001030 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1031 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1032 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001033}
1034
Alexey Dobriyane0710412010-01-23 13:37:10 +00001035static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001036 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001037{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001038 struct xfrmk_spdinfo si;
1039 struct xfrmu_spdinfo spc;
1040 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001041 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001042 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001043 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001044 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001045 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001046
Eric W. Biederman15e47302012-09-07 20:12:54 +00001047 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001048 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001049 return -EMSGSIZE;
1050
1051 f = nlmsg_data(nlh);
1052 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001053 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001054 spc.incnt = si.incnt;
1055 spc.outcnt = si.outcnt;
1056 spc.fwdcnt = si.fwdcnt;
1057 spc.inscnt = si.inscnt;
1058 spc.outscnt = si.outscnt;
1059 spc.fwdscnt = si.fwdscnt;
1060 sph.spdhcnt = si.spdhcnt;
1061 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001062
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001063 do {
1064 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1065
1066 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1067 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1068 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1069 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1070 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1071
David S. Miller1d1e34d2012-06-27 21:57:03 -07001072 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1073 if (!err)
1074 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001075 if (!err)
1076 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1077 if (!err)
1078 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001079 if (err) {
1080 nlmsg_cancel(skb, nlh);
1081 return err;
1082 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001083
Johannes Berg053c0952015-01-16 22:09:00 +01001084 nlmsg_end(skb, nlh);
1085 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001086}
1087
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001088static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1089 struct nlattr **attrs)
1090{
1091 struct net *net = sock_net(skb->sk);
1092 struct xfrmu_spdhthresh *thresh4 = NULL;
1093 struct xfrmu_spdhthresh *thresh6 = NULL;
1094
1095 /* selector prefixlen thresholds to hash policies */
1096 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1097 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1098
1099 if (nla_len(rta) < sizeof(*thresh4))
1100 return -EINVAL;
1101 thresh4 = nla_data(rta);
1102 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1103 return -EINVAL;
1104 }
1105 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1106 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1107
1108 if (nla_len(rta) < sizeof(*thresh6))
1109 return -EINVAL;
1110 thresh6 = nla_data(rta);
1111 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1112 return -EINVAL;
1113 }
1114
1115 if (thresh4 || thresh6) {
1116 write_seqlock(&net->xfrm.policy_hthresh.lock);
1117 if (thresh4) {
1118 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1119 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1120 }
1121 if (thresh6) {
1122 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1123 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1124 }
1125 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1126
1127 xfrm_policy_hash_rebuild(net);
1128 }
1129
1130 return 0;
1131}
1132
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001133static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001134 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001135{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001136 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001137 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001138 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001139 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001140 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001141
Thomas Graf7deb2262007-08-22 13:57:39 -07001142 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001143 if (r_skb == NULL)
1144 return -ENOMEM;
1145
Eric W. Biederman15e47302012-09-07 20:12:54 +00001146 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001147 BUG();
1148
Eric W. Biederman15e47302012-09-07 20:12:54 +00001149 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001150}
1151
Thomas Graf7deb2262007-08-22 13:57:39 -07001152static inline size_t xfrm_sadinfo_msgsize(void)
1153{
1154 return NLMSG_ALIGN(4)
1155 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1156 + nla_total_size(4); /* XFRMA_SAD_CNT */
1157}
1158
Alexey Dobriyane0710412010-01-23 13:37:10 +00001159static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001160 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001161{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001162 struct xfrmk_sadinfo si;
1163 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001164 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001165 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001166 u32 *f;
1167
Eric W. Biederman15e47302012-09-07 20:12:54 +00001168 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001169 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001170 return -EMSGSIZE;
1171
1172 f = nlmsg_data(nlh);
1173 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001174 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001175
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001176 sh.sadhmcnt = si.sadhmcnt;
1177 sh.sadhcnt = si.sadhcnt;
1178
David S. Miller1d1e34d2012-06-27 21:57:03 -07001179 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1180 if (!err)
1181 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1182 if (err) {
1183 nlmsg_cancel(skb, nlh);
1184 return err;
1185 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001186
Johannes Berg053c0952015-01-16 22:09:00 +01001187 nlmsg_end(skb, nlh);
1188 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001189}
1190
1191static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001192 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001193{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001194 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001195 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001196 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001197 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001198 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001199
Thomas Graf7deb2262007-08-22 13:57:39 -07001200 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001201 if (r_skb == NULL)
1202 return -ENOMEM;
1203
Eric W. Biederman15e47302012-09-07 20:12:54 +00001204 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001205 BUG();
1206
Eric W. Biederman15e47302012-09-07 20:12:54 +00001207 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001208}
1209
Christoph Hellwig22e70052007-01-02 15:22:30 -08001210static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001211 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001213 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001214 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 struct xfrm_state *x;
1216 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001217 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001219 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 if (x == NULL)
1221 goto out_noput;
1222
1223 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1224 if (IS_ERR(resp_skb)) {
1225 err = PTR_ERR(resp_skb);
1226 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001227 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
1229 xfrm_state_put(x);
1230out_noput:
1231 return err;
1232}
1233
Christoph Hellwig22e70052007-01-02 15:22:30 -08001234static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001235 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001237 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 struct xfrm_state *x;
1239 struct xfrm_userspi_info *p;
1240 struct sk_buff *resp_skb;
1241 xfrm_address_t *daddr;
1242 int family;
1243 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001244 u32 mark;
1245 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Thomas Graf7b67c852007-08-22 13:53:52 -07001247 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001248 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 if (err)
1250 goto out_noput;
1251
1252 family = p->info.family;
1253 daddr = &p->info.id.daddr;
1254
1255 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001256
1257 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001259 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001260 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 xfrm_state_put(x);
1262 x = NULL;
1263 }
1264 }
1265
1266 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001267 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 p->info.id.proto, daddr,
1269 &p->info.saddr, 1,
1270 family);
1271 err = -ENOENT;
1272 if (x == NULL)
1273 goto out_noput;
1274
Herbert Xu658b2192007-10-09 13:29:52 -07001275 err = xfrm_alloc_spi(x, p->min, p->max);
1276 if (err)
1277 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Herbert Xu658b2192007-10-09 13:29:52 -07001279 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 if (IS_ERR(resp_skb)) {
1281 err = PTR_ERR(resp_skb);
1282 goto out;
1283 }
1284
Eric W. Biederman15e47302012-09-07 20:12:54 +00001285 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287out:
1288 xfrm_state_put(x);
1289out_noput:
1290 return err;
1291}
1292
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001293static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
1295 switch (dir) {
1296 case XFRM_POLICY_IN:
1297 case XFRM_POLICY_OUT:
1298 case XFRM_POLICY_FWD:
1299 break;
1300
1301 default:
1302 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 return 0;
1306}
1307
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001308static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001309{
1310 switch (type) {
1311 case XFRM_POLICY_TYPE_MAIN:
1312#ifdef CONFIG_XFRM_SUB_POLICY
1313 case XFRM_POLICY_TYPE_SUB:
1314#endif
1315 break;
1316
1317 default:
1318 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001319 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001320
1321 return 0;
1322}
1323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1325{
Fan Due682adf2013-11-07 17:47:48 +08001326 int ret;
1327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 switch (p->share) {
1329 case XFRM_SHARE_ANY:
1330 case XFRM_SHARE_SESSION:
1331 case XFRM_SHARE_USER:
1332 case XFRM_SHARE_UNIQUE:
1333 break;
1334
1335 default:
1336 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 switch (p->action) {
1340 case XFRM_POLICY_ALLOW:
1341 case XFRM_POLICY_BLOCK:
1342 break;
1343
1344 default:
1345 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 switch (p->sel.family) {
1349 case AF_INET:
1350 break;
1351
1352 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001353#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 break;
1355#else
1356 return -EAFNOSUPPORT;
1357#endif
1358
1359 default:
1360 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Fan Due682adf2013-11-07 17:47:48 +08001363 ret = verify_policy_dir(p->dir);
1364 if (ret)
1365 return ret;
1366 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1367 return -EINVAL;
1368
1369 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
1371
Thomas Graf5424f322007-08-22 14:01:33 -07001372static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001373{
Thomas Graf5424f322007-08-22 14:01:33 -07001374 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001375 struct xfrm_user_sec_ctx *uctx;
1376
1377 if (!rt)
1378 return 0;
1379
Thomas Graf5424f322007-08-22 14:01:33 -07001380 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001381 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001382}
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1385 int nr)
1386{
1387 int i;
1388
1389 xp->xfrm_nr = nr;
1390 for (i = 0; i < nr; i++, ut++) {
1391 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1392
1393 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1394 memcpy(&t->saddr, &ut->saddr,
1395 sizeof(xfrm_address_t));
1396 t->reqid = ut->reqid;
1397 t->mode = ut->mode;
1398 t->share = ut->share;
1399 t->optional = ut->optional;
1400 t->aalgos = ut->aalgos;
1401 t->ealgos = ut->ealgos;
1402 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001403 /* If all masks are ~0, then we allow all algorithms. */
1404 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001405 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 }
1407}
1408
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001409static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1410{
1411 int i;
1412
1413 if (nr > XFRM_MAX_DEPTH)
1414 return -EINVAL;
1415
1416 for (i = 0; i < nr; i++) {
1417 /* We never validated the ut->family value, so many
1418 * applications simply leave it at zero. The check was
1419 * never made and ut->family was ignored because all
1420 * templates could be assumed to have the same family as
1421 * the policy itself. Now that we will have ipv4-in-ipv6
1422 * and ipv6-in-ipv4 tunnels, this is no longer true.
1423 */
1424 if (!ut[i].family)
1425 ut[i].family = family;
1426
1427 switch (ut[i].family) {
1428 case AF_INET:
1429 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001430#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001431 case AF_INET6:
1432 break;
1433#endif
1434 default:
1435 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001436 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001437 }
1438
1439 return 0;
1440}
1441
Thomas Graf5424f322007-08-22 14:01:33 -07001442static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
Thomas Graf5424f322007-08-22 14:01:33 -07001444 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 if (!rt) {
1447 pol->xfrm_nr = 0;
1448 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001449 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1450 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001451 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001453 err = validate_tmpl(nr, utmpl, pol->family);
1454 if (err)
1455 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Thomas Graf5424f322007-08-22 14:01:33 -07001457 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 }
1459 return 0;
1460}
1461
Thomas Graf5424f322007-08-22 14:01:33 -07001462static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001463{
Thomas Graf5424f322007-08-22 14:01:33 -07001464 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001465 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001466 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001467 int err;
1468
1469 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001470 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001471 type = upt->type;
1472 }
1473
1474 err = verify_policy_type(type);
1475 if (err)
1476 return err;
1477
1478 *tp = type;
1479 return 0;
1480}
1481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1483{
1484 xp->priority = p->priority;
1485 xp->index = p->index;
1486 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1487 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1488 xp->action = p->action;
1489 xp->flags = p->flags;
1490 xp->family = p->sel.family;
1491 /* XXX xp->share = p->share; */
1492}
1493
1494static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1495{
Mathias Krause7b789832012-09-19 11:33:40 +00001496 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1498 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1499 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1500 p->priority = xp->priority;
1501 p->index = xp->index;
1502 p->sel.family = xp->family;
1503 p->dir = dir;
1504 p->action = xp->action;
1505 p->flags = xp->flags;
1506 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1507}
1508
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001509static 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 -07001510{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001511 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 int err;
1513
1514 if (!xp) {
1515 *errp = -ENOMEM;
1516 return NULL;
1517 }
1518
1519 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001520
Thomas Graf35a7aa02007-08-22 14:00:40 -07001521 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001522 if (err)
1523 goto error;
1524
Thomas Graf35a7aa02007-08-22 14:00:40 -07001525 if (!(err = copy_from_user_tmpl(xp, attrs)))
1526 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001527 if (err)
1528 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001530 xfrm_mark_get(attrs, &xp->mark);
1531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001533 error:
1534 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001535 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001536 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001537 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538}
1539
Christoph Hellwig22e70052007-01-02 15:22:30 -08001540static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001541 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001543 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001544 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001546 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 int err;
1548 int excl;
1549
1550 err = verify_newpolicy_info(p);
1551 if (err)
1552 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001553 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001554 if (err)
1555 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001557 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 if (!xp)
1559 return err;
1560
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001561 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001562 * Aha! this is anti-netlink really i.e more pfkey derived
1563 * in netlink excl is a flag and you wouldnt need
1564 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1566 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001567 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001570 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 kfree(xp);
1572 return err;
1573 }
1574
Herbert Xuf60f6b82005-06-18 22:44:37 -07001575 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001576 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001577 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001578 km_policy_notify(xp, p->dir, &c);
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 xfrm_pol_put(xp);
1581
1582 return 0;
1583}
1584
1585static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1586{
1587 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1588 int i;
1589
1590 if (xp->xfrm_nr == 0)
1591 return 0;
1592
1593 for (i = 0; i < xp->xfrm_nr; i++) {
1594 struct xfrm_user_tmpl *up = &vec[i];
1595 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1596
Mathias Krause1f868402012-09-19 11:33:41 +00001597 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001599 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1601 up->reqid = kp->reqid;
1602 up->mode = kp->mode;
1603 up->share = kp->share;
1604 up->optional = kp->optional;
1605 up->aalgos = kp->aalgos;
1606 up->ealgos = kp->ealgos;
1607 up->calgos = kp->calgos;
1608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Thomas Grafc0144be2007-08-22 13:55:43 -07001610 return nla_put(skb, XFRMA_TMPL,
1611 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001612}
1613
Serge Hallyn0d681622006-07-24 23:30:44 -07001614static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1615{
1616 if (x->security) {
1617 return copy_sec_ctx(x->security, skb);
1618 }
1619 return 0;
1620}
1621
1622static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1623{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001624 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001625 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001626 return 0;
1627}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001628static inline size_t userpolicy_type_attrsize(void)
1629{
1630#ifdef CONFIG_XFRM_SUB_POLICY
1631 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1632#else
1633 return 0;
1634#endif
1635}
Serge Hallyn0d681622006-07-24 23:30:44 -07001636
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001637#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001638static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001639{
Thomas Grafc0144be2007-08-22 13:55:43 -07001640 struct xfrm_userpolicy_type upt = {
1641 .type = type,
1642 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001643
Thomas Grafc0144be2007-08-22 13:55:43 -07001644 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001645}
1646
1647#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001648static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001649{
1650 return 0;
1651}
1652#endif
1653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1655{
1656 struct xfrm_dump_info *sp = ptr;
1657 struct xfrm_userpolicy_info *p;
1658 struct sk_buff *in_skb = sp->in_skb;
1659 struct sk_buff *skb = sp->out_skb;
1660 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001661 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Eric W. Biederman15e47302012-09-07 20:12:54 +00001663 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001664 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1665 if (nlh == NULL)
1666 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Thomas Graf7b67c852007-08-22 13:53:52 -07001668 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001670 err = copy_to_user_tmpl(xp, skb);
1671 if (!err)
1672 err = copy_to_user_sec_ctx(xp, skb);
1673 if (!err)
1674 err = copy_to_user_policy_type(xp->type, skb);
1675 if (!err)
1676 err = xfrm_mark_put(skb, &xp->mark);
1677 if (err) {
1678 nlmsg_cancel(skb, nlh);
1679 return err;
1680 }
Thomas Graf98250692007-08-22 12:47:26 -07001681 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683}
1684
Timo Teras4c563f72008-02-28 21:31:08 -08001685static int xfrm_dump_policy_done(struct netlink_callback *cb)
1686{
1687 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +08001688 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001689
Fan Du283bc9f2013-11-07 17:47:50 +08001690 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001691 return 0;
1692}
1693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1695{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001696 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001697 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 struct xfrm_dump_info info;
1699
Timo Teras4c563f72008-02-28 21:31:08 -08001700 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) >
1701 sizeof(cb->args) - sizeof(cb->args[0]));
1702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 info.in_skb = cb->skb;
1704 info.out_skb = skb;
1705 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1706 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001707
1708 if (!cb->args[0]) {
1709 cb->args[0] = 1;
1710 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1711 }
1712
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001713 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
1715 return skb->len;
1716}
1717
1718static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1719 struct xfrm_policy *xp,
1720 int dir, u32 seq)
1721{
1722 struct xfrm_dump_info info;
1723 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001724 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Thomas Graf7deb2262007-08-22 13:57:39 -07001726 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 if (!skb)
1728 return ERR_PTR(-ENOMEM);
1729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 info.in_skb = in_skb;
1731 info.out_skb = skb;
1732 info.nlmsg_seq = seq;
1733 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Mathias Krausec2546372012-09-14 09:58:32 +00001735 err = dump_one_policy(xp, dir, 0, &info);
1736 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001738 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 }
1740
1741 return skb;
1742}
1743
Christoph Hellwig22e70052007-01-02 15:22:30 -08001744static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001745 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001747 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 struct xfrm_policy *xp;
1749 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001750 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001752 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001754 struct xfrm_mark m;
1755 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Thomas Graf7b67c852007-08-22 13:53:52 -07001757 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1759
Thomas Graf35a7aa02007-08-22 14:00:40 -07001760 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001761 if (err)
1762 return err;
1763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 err = verify_policy_dir(p->dir);
1765 if (err)
1766 return err;
1767
1768 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001769 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001770 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001771 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001772 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001773
Thomas Graf35a7aa02007-08-22 14:00:40 -07001774 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001775 if (err)
1776 return err;
1777
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001778 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001779 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001780 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001781
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001782 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001783 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001784 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001785 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001786 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001787 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001788 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001789 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 if (xp == NULL)
1791 return -ENOENT;
1792
1793 if (!delete) {
1794 struct sk_buff *resp_skb;
1795
1796 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1797 if (IS_ERR(resp_skb)) {
1798 err = PTR_ERR(resp_skb);
1799 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001800 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001801 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001803 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001804 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001805
1806 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001807 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001808
Herbert Xue7443892005-06-18 22:44:18 -07001809 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001810 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001811 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001812 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001813 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
1815
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001816out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001817 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001818 if (delete && err == 0)
1819 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 return err;
1821}
1822
Christoph Hellwig22e70052007-01-02 15:22:30 -08001823static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001824 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001826 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001827 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001828 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001829 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Tetsuo Handa2e710292014-04-22 21:48:30 +09001831 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001832 if (err) {
1833 if (err == -ESRCH) /* empty table */
1834 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001835 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001836 }
Herbert Xubf088672005-06-18 22:44:00 -07001837 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001838 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001839 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001840 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001841 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001842 km_state_notify(NULL, &c);
1843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 return 0;
1845}
1846
Steffen Klassertd8647b72011-03-08 00:10:27 +00001847static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001848{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001849 size_t replay_size = x->replay_esn ?
1850 xfrm_replay_state_esn_len(x->replay_esn) :
1851 sizeof(struct xfrm_replay_state);
1852
Thomas Graf7deb2262007-08-22 13:57:39 -07001853 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001854 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001855 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001856 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001857 + nla_total_size(4) /* XFRM_AE_RTHR */
1858 + nla_total_size(4); /* XFRM_AE_ETHR */
1859}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001860
David S. Miller214e0052011-02-24 00:02:38 -05001861static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001862{
1863 struct xfrm_aevent_id *id;
1864 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001865 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001866
Eric W. Biederman15e47302012-09-07 20:12:54 +00001867 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001868 if (nlh == NULL)
1869 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001870
Thomas Graf7b67c852007-08-22 13:53:52 -07001871 id = nlmsg_data(nlh);
Weilong Chen9b7a7872013-12-24 09:43:46 +08001872 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001873 id->sa_id.spi = x->id.spi;
1874 id->sa_id.family = x->props.family;
1875 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001876 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001877 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001878 id->flags = c->data.aevent;
1879
David S. Millerd0fde792012-03-29 04:02:26 -04001880 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001881 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1882 xfrm_replay_state_esn_len(x->replay_esn),
1883 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001884 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001885 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1886 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001887 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001888 if (err)
1889 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001890 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1891 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001892 if (err)
1893 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001894
David S. Miller1d1e34d2012-06-27 21:57:03 -07001895 if (id->flags & XFRM_AE_RTHR) {
1896 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1897 if (err)
1898 goto out_cancel;
1899 }
1900 if (id->flags & XFRM_AE_ETHR) {
1901 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1902 x->replay_maxage * 10 / HZ);
1903 if (err)
1904 goto out_cancel;
1905 }
1906 err = xfrm_mark_put(skb, &x->mark);
1907 if (err)
1908 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001909
Johannes Berg053c0952015-01-16 22:09:00 +01001910 nlmsg_end(skb, nlh);
1911 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001912
David S. Miller1d1e34d2012-06-27 21:57:03 -07001913out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001914 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001915 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001916}
1917
Christoph Hellwig22e70052007-01-02 15:22:30 -08001918static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001919 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001920{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001921 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001922 struct xfrm_state *x;
1923 struct sk_buff *r_skb;
1924 int err;
1925 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001926 u32 mark;
1927 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001928 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001929 struct xfrm_usersa_id *id = &p->sa_id;
1930
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001931 mark = xfrm_mark_get(attrs, &m);
1932
1933 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001934 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001935 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001936
1937 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1938 if (r_skb == NULL) {
1939 xfrm_state_put(x);
1940 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001941 }
1942
1943 /*
1944 * XXX: is this lock really needed - none of the other
1945 * gets lock (the concern is things getting updated
1946 * while we are still reading) - jhs
1947 */
1948 spin_lock_bh(&x->lock);
1949 c.data.aevent = p->flags;
1950 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001951 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001952
1953 if (build_aevent(r_skb, x, &c) < 0)
1954 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001955 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001956 spin_unlock_bh(&x->lock);
1957 xfrm_state_put(x);
1958 return err;
1959}
1960
Christoph Hellwig22e70052007-01-02 15:22:30 -08001961static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001962 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001963{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001964 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001965 struct xfrm_state *x;
1966 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08001967 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001968 u32 mark = 0;
1969 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001970 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001971 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001972 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001973 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02001974 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
1975 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001976
Michael Rossberg4e077232015-09-29 11:25:08 +02001977 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001978 return err;
1979
1980 /* pedantic mode - thou shalt sayeth replaceth */
1981 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1982 return err;
1983
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001984 mark = xfrm_mark_get(attrs, &m);
1985
1986 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 -08001987 if (x == NULL)
1988 return -ESRCH;
1989
1990 if (x->km.state != XFRM_STATE_VALID)
1991 goto out;
1992
Steffen Klassert4479ff72013-09-09 09:39:01 +02001993 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00001994 if (err)
1995 goto out;
1996
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001997 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00001998 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001999 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002000
2001 c.event = nlh->nlmsg_type;
2002 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002003 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002004 c.data.aevent = XFRM_AE_CU;
2005 km_state_notify(x, &c);
2006 err = 0;
2007out:
2008 xfrm_state_put(x);
2009 return err;
2010}
2011
Christoph Hellwig22e70052007-01-02 15:22:30 -08002012static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002013 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002015 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002016 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002017 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002018 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002019
Thomas Graf35a7aa02007-08-22 14:00:40 -07002020 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002021 if (err)
2022 return err;
2023
Tetsuo Handa2e710292014-04-22 21:48:30 +09002024 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002025 if (err) {
2026 if (err == -ESRCH) /* empty table */
2027 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002028 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002029 }
Hangbin Liu138437f2017-06-11 09:44:20 +08002030 xfrm_garbage_collect(net);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002031
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002032 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002033 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002034 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002035 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002036 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002037 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038 return 0;
2039}
2040
Christoph Hellwig22e70052007-01-02 15:22:30 -08002041static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002042 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002043{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002044 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002045 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002046 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002047 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002048 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002049 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002050 struct xfrm_mark m;
2051 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002052
Thomas Graf35a7aa02007-08-22 14:00:40 -07002053 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002054 if (err)
2055 return err;
2056
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002057 err = verify_policy_dir(p->dir);
2058 if (err)
2059 return err;
2060
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002061 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002062 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002063 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002064 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002065 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002066
Thomas Graf35a7aa02007-08-22 14:00:40 -07002067 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002068 if (err)
2069 return err;
2070
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002071 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002072 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002073 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002074
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002075 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002076 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002077 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002078 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002079 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002080 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002081 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002082 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002083 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002084 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002085
Timo Teräsea2dea92010-03-31 00:17:05 +00002086 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002087 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002088
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002089 err = 0;
2090 if (up->hard) {
2091 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002092 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002093 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002094 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002095
2096out:
2097 xfrm_pol_put(xp);
2098 return err;
2099}
2100
Christoph Hellwig22e70052007-01-02 15:22:30 -08002101static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002102 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002103{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002104 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002105 struct xfrm_state *x;
2106 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002107 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002108 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002109 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002110 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002111
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002112 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 -08002113
David S. Miller3a765aa2007-02-26 14:52:21 -08002114 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002115 if (x == NULL)
2116 return err;
2117
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002118 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002119 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002120 if (x->km.state != XFRM_STATE_VALID)
2121 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002122 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002123
Joy Latten161a09e2006-11-27 13:11:54 -06002124 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002125 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002126 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002127 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002128 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002129out:
2130 spin_unlock_bh(&x->lock);
2131 xfrm_state_put(x);
2132 return err;
2133}
2134
Christoph Hellwig22e70052007-01-02 15:22:30 -08002135static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002136 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002137{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002138 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002139 struct xfrm_policy *xp;
2140 struct xfrm_user_tmpl *ut;
2141 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002142 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002143 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002144
Thomas Graf7b67c852007-08-22 13:53:52 -07002145 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002146 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002147 int err = -ENOMEM;
2148
2149 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002150 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002151
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002152 xfrm_mark_get(attrs, &mark);
2153
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002154 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002155 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002156 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002157
2158 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002159 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002160 if (!xp)
2161 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002162
2163 memcpy(&x->id, &ua->id, sizeof(ua->id));
2164 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2165 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002166 xp->mark.m = x->mark.m = mark.m;
2167 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002168 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002169 /* extract the templates and for each call km_key */
2170 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2171 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2172 memcpy(&x->id, &t->id, sizeof(x->id));
2173 x->props.mode = t->mode;
2174 x->props.reqid = t->reqid;
2175 x->props.family = ut->family;
2176 t->aalgos = ua->aalgos;
2177 t->ealgos = ua->ealgos;
2178 t->calgos = ua->calgos;
2179 err = km_query(x, t, xp);
2180
2181 }
2182
2183 kfree(x);
2184 kfree(xp);
2185
2186 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002187
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002188free_state:
2189 kfree(x);
2190nomem:
2191 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002192}
2193
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002194#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002195static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002196 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002197 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002198{
Thomas Graf5424f322007-08-22 14:01:33 -07002199 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002200 struct xfrm_user_migrate *um;
2201 int i, num_migrate;
2202
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002203 if (k != NULL) {
2204 struct xfrm_user_kmaddress *uk;
2205
2206 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2207 memcpy(&k->local, &uk->local, sizeof(k->local));
2208 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2209 k->family = uk->family;
2210 k->reserved = uk->reserved;
2211 }
2212
Thomas Graf5424f322007-08-22 14:01:33 -07002213 um = nla_data(rt);
2214 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002215
2216 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2217 return -EINVAL;
2218
2219 for (i = 0; i < num_migrate; i++, um++, ma++) {
2220 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2221 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2222 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2223 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2224
2225 ma->proto = um->proto;
2226 ma->mode = um->mode;
2227 ma->reqid = um->reqid;
2228
2229 ma->old_family = um->old_family;
2230 ma->new_family = um->new_family;
2231 }
2232
2233 *num = i;
2234 return 0;
2235}
2236
2237static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002238 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002239{
Thomas Graf7b67c852007-08-22 13:53:52 -07002240 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002241 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002242 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002243 u8 type;
2244 int err;
2245 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002246 struct net *net = sock_net(skb->sk);
Antony Antony4ab47d42017-06-06 12:12:13 +02002247 struct xfrm_encap_tmpl *encap = NULL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002248
Thomas Graf35a7aa02007-08-22 14:00:40 -07002249 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002250 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002251
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002252 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2253
Thomas Graf5424f322007-08-22 14:01:33 -07002254 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002255 if (err)
2256 return err;
2257
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002258 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002259 if (err)
2260 return err;
2261
2262 if (!n)
2263 return 0;
2264
Antony Antony4ab47d42017-06-06 12:12:13 +02002265 if (attrs[XFRMA_ENCAP]) {
2266 encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
2267 sizeof(*encap), GFP_KERNEL);
2268 if (!encap)
2269 return 0;
2270 }
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002271
Antony Antony4ab47d42017-06-06 12:12:13 +02002272 err = xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net, encap);
2273
2274 kfree(encap);
2275
2276 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002277}
2278#else
2279static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002280 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002281{
2282 return -ENOPROTOOPT;
2283}
2284#endif
2285
2286#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002287static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002288{
2289 struct xfrm_user_migrate um;
2290
2291 memset(&um, 0, sizeof(um));
2292 um.proto = m->proto;
2293 um.mode = m->mode;
2294 um.reqid = m->reqid;
2295 um.old_family = m->old_family;
2296 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2297 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2298 um.new_family = m->new_family;
2299 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2300 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2301
Thomas Grafc0144be2007-08-22 13:55:43 -07002302 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002303}
2304
David S. Miller183cad12011-02-24 00:28:01 -05002305static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002306{
2307 struct xfrm_user_kmaddress uk;
2308
2309 memset(&uk, 0, sizeof(uk));
2310 uk.family = k->family;
2311 uk.reserved = k->reserved;
2312 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002313 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002314
2315 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2316}
2317
Antony Antony8bafd732017-06-06 12:12:14 +02002318static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma,
2319 int with_encp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002320{
2321 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002322 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
Antony Antony8bafd732017-06-06 12:12:14 +02002323 + (with_encp ? nla_total_size(sizeof(struct xfrm_encap_tmpl)) : 0)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002324 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2325 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002326}
2327
David S. Miller183cad12011-02-24 00:28:01 -05002328static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2329 int num_migrate, const struct xfrm_kmaddress *k,
Antony Antony8bafd732017-06-06 12:12:14 +02002330 const struct xfrm_selector *sel,
2331 const struct xfrm_encap_tmpl *encap, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002332{
David S. Miller183cad12011-02-24 00:28:01 -05002333 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002334 struct xfrm_userpolicy_id *pol_id;
2335 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002336 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002337
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002338 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2339 if (nlh == NULL)
2340 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002341
Thomas Graf7b67c852007-08-22 13:53:52 -07002342 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002343 /* copy data from selector, dir, and type to the pol_id */
2344 memset(pol_id, 0, sizeof(*pol_id));
2345 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2346 pol_id->dir = dir;
2347
David S. Miller1d1e34d2012-06-27 21:57:03 -07002348 if (k != NULL) {
2349 err = copy_to_user_kmaddress(k, skb);
2350 if (err)
2351 goto out_cancel;
2352 }
Antony Antony8bafd732017-06-06 12:12:14 +02002353 if (encap) {
2354 err = nla_put(skb, XFRMA_ENCAP, sizeof(*encap), encap);
2355 if (err)
2356 goto out_cancel;
2357 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002358 err = copy_to_user_policy_type(type, skb);
2359 if (err)
2360 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002361 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002362 err = copy_to_user_migrate(mp, skb);
2363 if (err)
2364 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002365 }
2366
Johannes Berg053c0952015-01-16 22:09:00 +01002367 nlmsg_end(skb, nlh);
2368 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002369
2370out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002371 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002372 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002373}
2374
David S. Miller183cad12011-02-24 00:28:01 -05002375static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2376 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002377 const struct xfrm_kmaddress *k,
2378 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002379{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002380 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002381 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002382
Antony Antony8bafd732017-06-06 12:12:14 +02002383 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k, !!encap),
2384 GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002385 if (skb == NULL)
2386 return -ENOMEM;
2387
2388 /* build migrate */
Antony Antony8bafd732017-06-06 12:12:14 +02002389 if (build_migrate(skb, m, num_migrate, k, sel, encap, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002390 BUG();
2391
Michal Kubecek21ee5432014-06-03 10:26:06 +02002392 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002393}
2394#else
David S. Miller183cad12011-02-24 00:28:01 -05002395static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2396 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002397 const struct xfrm_kmaddress *k,
2398 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002399{
2400 return -ENOPROTOOPT;
2401}
2402#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002403
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002404#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002405
2406static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002407 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002408 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2409 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2410 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2411 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2412 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2413 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002414 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002415 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002416 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002417 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002418 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002419 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002420 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002421 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2422 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002423 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002424 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002425 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002426 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002427 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428};
2429
Thomas Graf492b5582005-05-03 14:26:40 -07002430#undef XMSGSIZE
2431
Thomas Grafcf5cb792007-08-22 13:59:04 -07002432static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002433 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2434 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2435 [XFRMA_LASTUSED] = { .type = NLA_U64},
2436 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002437 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002438 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2439 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2440 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2441 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2442 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2443 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2444 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2445 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2446 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2447 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2448 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2449 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2450 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2451 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002452 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002453 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002454 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002455 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002456 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002457 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002458 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002459 [XFRMA_OFFLOAD_DEV] = { .len = sizeof(struct xfrm_user_offload) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002460};
2461
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002462static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2463 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2464 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2465};
2466
Mathias Krause05600a72013-02-24 14:10:27 +01002467static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002468 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002470 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002471 const struct nla_policy *nla_pol;
2472 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002473} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2474 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2475 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2476 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002477 .dump = xfrm_dump_sa,
2478 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002479 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2480 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2481 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Timo Teras4c563f72008-02-28 21:31:08 -08002482 .dump = xfrm_dump_policy,
2483 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002484 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002485 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002486 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002487 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2488 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002489 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002490 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2491 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002492 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2493 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002494 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002495 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002496 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2497 .nla_pol = xfrma_spd_policy,
2498 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002499 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500};
2501
Johannes Berg2d4bc932017-04-12 14:34:04 +02002502static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
2503 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002505 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002506 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002507 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002508 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
Fan Du74005992015-01-27 17:00:29 +08002510#ifdef CONFIG_COMPAT
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002511 if (in_compat_syscall())
Yi Zhao83e2d052016-11-29 18:09:01 +08002512 return -EOPNOTSUPP;
Fan Du74005992015-01-27 17:00:29 +08002513#endif
2514
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002517 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
2519 type -= XFRM_MSG_BASE;
2520 link = &xfrm_dispatch[type];
2521
2522 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002523 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002524 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
Thomas Graf492b5582005-05-03 14:26:40 -07002526 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2527 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002528 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002530 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002532 {
2533 struct netlink_dump_control c = {
2534 .dump = link->dump,
2535 .done = link->done,
2536 };
2537 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 }
2540
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002541 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2542 link->nla_max ? : XFRMA_MAX,
Johannes Bergfe521452017-04-12 14:34:08 +02002543 link->nla_pol ? : xfrma_policy, extack);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002544 if (err < 0)
2545 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
2547 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002548 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
Thomas Graf5424f322007-08-22 14:01:33 -07002550 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551}
2552
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002553static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554{
Fan Du283bc9f2013-11-07 17:47:50 +08002555 struct net *net = sock_net(skb->sk);
2556
2557 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002558 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002559 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560}
2561
Thomas Graf7deb2262007-08-22 13:57:39 -07002562static inline size_t xfrm_expire_msgsize(void)
2563{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002564 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2565 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002566}
2567
David S. Miller214e0052011-02-24 00:02:38 -05002568static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569{
2570 struct xfrm_user_expire *ue;
2571 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002572 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573
Eric W. Biederman15e47302012-09-07 20:12:54 +00002574 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002575 if (nlh == NULL)
2576 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577
Thomas Graf7b67c852007-08-22 13:53:52 -07002578 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002580 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
David S. Miller1d1e34d2012-06-27 21:57:03 -07002582 err = xfrm_mark_put(skb, &x->mark);
2583 if (err)
2584 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002585
Johannes Berg053c0952015-01-16 22:09:00 +01002586 nlmsg_end(skb, nlh);
2587 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588}
2589
David S. Miller214e0052011-02-24 00:02:38 -05002590static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002592 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 struct sk_buff *skb;
2594
Thomas Graf7deb2262007-08-22 13:57:39 -07002595 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 if (skb == NULL)
2597 return -ENOMEM;
2598
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002599 if (build_expire(skb, x, c) < 0) {
2600 kfree_skb(skb);
2601 return -EMSGSIZE;
2602 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
Michal Kubecek21ee5432014-06-03 10:26:06 +02002604 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605}
2606
David S. Miller214e0052011-02-24 00:02:38 -05002607static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002608{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002609 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002610 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002611
Steffen Klassertd8647b72011-03-08 00:10:27 +00002612 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002613 if (skb == NULL)
2614 return -ENOMEM;
2615
2616 if (build_aevent(skb, x, c) < 0)
2617 BUG();
2618
Michal Kubecek21ee5432014-06-03 10:26:06 +02002619 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002620}
2621
David S. Miller214e0052011-02-24 00:02:38 -05002622static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002623{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002624 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002625 struct xfrm_usersa_flush *p;
2626 struct nlmsghdr *nlh;
2627 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002628 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002629
Thomas Graf7deb2262007-08-22 13:57:39 -07002630 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002631 if (skb == NULL)
2632 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002633
Eric W. Biederman15e47302012-09-07 20:12:54 +00002634 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002635 if (nlh == NULL) {
2636 kfree_skb(skb);
2637 return -EMSGSIZE;
2638 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002639
Thomas Graf7b67c852007-08-22 13:53:52 -07002640 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002641 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002642
Thomas Graf98250692007-08-22 12:47:26 -07002643 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002644
Michal Kubecek21ee5432014-06-03 10:26:06 +02002645 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002646}
2647
Thomas Graf7deb2262007-08-22 13:57:39 -07002648static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002649{
Thomas Graf7deb2262007-08-22 13:57:39 -07002650 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002651 if (x->aead)
2652 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002653 if (x->aalg) {
2654 l += nla_total_size(sizeof(struct xfrm_algo) +
2655 (x->aalg->alg_key_len + 7) / 8);
2656 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2657 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002658 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002659 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002660 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002661 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002662 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002663 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002664 if (x->tfcpad)
2665 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002666 if (x->replay_esn)
2667 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002668 else
2669 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002670 if (x->security)
2671 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2672 x->security->ctx_len);
2673 if (x->coaddr)
2674 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002675 if (x->props.extra_flags)
2676 l += nla_total_size(sizeof(x->props.extra_flags));
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002677 if (x->xso.dev)
2678 l += nla_total_size(sizeof(x->xso));
Herbert Xu68325d32007-10-09 13:30:57 -07002679
Herbert Xud26f3982007-11-13 21:47:08 -08002680 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002681 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002682
2683 return l;
2684}
2685
David S. Miller214e0052011-02-24 00:02:38 -05002686static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002687{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002688 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002689 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002690 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002691 struct nlmsghdr *nlh;
2692 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002693 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002694 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002695
2696 headlen = sizeof(*p);
2697 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002698 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002699 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002700 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002701 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002702 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002703
Thomas Graf7deb2262007-08-22 13:57:39 -07002704 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002705 if (skb == NULL)
2706 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002707
Eric W. Biederman15e47302012-09-07 20:12:54 +00002708 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002709 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002710 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002711 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002712
Thomas Graf7b67c852007-08-22 13:53:52 -07002713 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002714 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002715 struct nlattr *attr;
2716
Thomas Graf7b67c852007-08-22 13:53:52 -07002717 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002718 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2719 id->spi = x->id.spi;
2720 id->family = x->props.family;
2721 id->proto = x->id.proto;
2722
Thomas Grafc0144be2007-08-22 13:55:43 -07002723 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002724 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002725 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002726 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002727
2728 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002729 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002730 err = copy_to_user_state_extra(x, p, skb);
2731 if (err)
2732 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002733
Thomas Graf98250692007-08-22 12:47:26 -07002734 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002735
Michal Kubecek21ee5432014-06-03 10:26:06 +02002736 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002737
David S. Miller1d1e34d2012-06-27 21:57:03 -07002738out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002739 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002740 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002741}
2742
David S. Miller214e0052011-02-24 00:02:38 -05002743static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002744{
2745
2746 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002747 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002748 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002749 case XFRM_MSG_NEWAE:
2750 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002751 case XFRM_MSG_DELSA:
2752 case XFRM_MSG_UPDSA:
2753 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002754 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002755 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002756 return xfrm_notify_sa_flush(c);
2757 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002758 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2759 c->event);
2760 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002761 }
2762
2763 return 0;
2764
2765}
2766
Thomas Graf7deb2262007-08-22 13:57:39 -07002767static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2768 struct xfrm_policy *xp)
2769{
2770 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2771 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002772 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002773 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2774 + userpolicy_type_attrsize();
2775}
2776
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002778 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002780 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781 struct xfrm_user_acquire *ua;
2782 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002783 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002785 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2786 if (nlh == NULL)
2787 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
Thomas Graf7b67c852007-08-22 13:53:52 -07002789 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 memcpy(&ua->id, &x->id, sizeof(ua->id));
2791 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2792 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002793 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 ua->aalgos = xt->aalgos;
2795 ua->ealgos = xt->ealgos;
2796 ua->calgos = xt->calgos;
2797 ua->seq = x->km.seq = seq;
2798
David S. Miller1d1e34d2012-06-27 21:57:03 -07002799 err = copy_to_user_tmpl(xp, skb);
2800 if (!err)
2801 err = copy_to_user_state_sec_ctx(x, skb);
2802 if (!err)
2803 err = copy_to_user_policy_type(xp->type, skb);
2804 if (!err)
2805 err = xfrm_mark_put(skb, &xp->mark);
2806 if (err) {
2807 nlmsg_cancel(skb, nlh);
2808 return err;
2809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810
Johannes Berg053c0952015-01-16 22:09:00 +01002811 nlmsg_end(skb, nlh);
2812 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813}
2814
2815static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002816 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002818 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820
Thomas Graf7deb2262007-08-22 13:57:39 -07002821 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 if (skb == NULL)
2823 return -ENOMEM;
2824
Fan Du65e07362012-08-15 10:13:47 +08002825 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 BUG();
2827
Michal Kubecek21ee5432014-06-03 10:26:06 +02002828 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829}
2830
2831/* User gives us xfrm_user_policy_info followed by an array of 0
2832 * or more templates.
2833 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002834static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 u8 *data, int len, int *dir)
2836{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002837 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2839 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2840 struct xfrm_policy *xp;
2841 int nr;
2842
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002843 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 case AF_INET:
2845 if (opt != IP_XFRM_POLICY) {
2846 *dir = -EOPNOTSUPP;
2847 return NULL;
2848 }
2849 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002850#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 case AF_INET6:
2852 if (opt != IPV6_XFRM_POLICY) {
2853 *dir = -EOPNOTSUPP;
2854 return NULL;
2855 }
2856 break;
2857#endif
2858 default:
2859 *dir = -EINVAL;
2860 return NULL;
2861 }
2862
2863 *dir = -EINVAL;
2864
2865 if (len < sizeof(*p) ||
2866 verify_newpolicy_info(p))
2867 return NULL;
2868
2869 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002870 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 return NULL;
2872
Herbert Xua4f1bac2005-07-26 15:43:17 -07002873 if (p->dir > XFRM_POLICY_OUT)
2874 return NULL;
2875
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002876 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 if (xp == NULL) {
2878 *dir = -ENOBUFS;
2879 return NULL;
2880 }
2881
2882 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002883 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 copy_templates(xp, ut, nr);
2885
2886 *dir = p->dir;
2887
2888 return xp;
2889}
2890
Thomas Graf7deb2262007-08-22 13:57:39 -07002891static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2892{
2893 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2894 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2895 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002896 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002897 + userpolicy_type_attrsize();
2898}
2899
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002901 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902{
2903 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002904 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002905 struct nlmsghdr *nlh;
2906 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
Eric W. Biederman15e47302012-09-07 20:12:54 +00002908 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002909 if (nlh == NULL)
2910 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911
Thomas Graf7b67c852007-08-22 13:53:52 -07002912 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002914 err = copy_to_user_tmpl(xp, skb);
2915 if (!err)
2916 err = copy_to_user_sec_ctx(xp, skb);
2917 if (!err)
2918 err = copy_to_user_policy_type(xp->type, skb);
2919 if (!err)
2920 err = xfrm_mark_put(skb, &xp->mark);
2921 if (err) {
2922 nlmsg_cancel(skb, nlh);
2923 return err;
2924 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 upe->hard = !!hard;
2926
Johannes Berg053c0952015-01-16 22:09:00 +01002927 nlmsg_end(skb, nlh);
2928 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929}
2930
David S. Miller214e0052011-02-24 00:02:38 -05002931static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002933 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Thomas Graf7deb2262007-08-22 13:57:39 -07002936 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 if (skb == NULL)
2938 return -ENOMEM;
2939
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002940 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 BUG();
2942
Michal Kubecek21ee5432014-06-03 10:26:06 +02002943 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944}
2945
David S. Miller214e0052011-02-24 00:02:38 -05002946static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002947{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002948 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002949 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002950 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002951 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002952 struct nlmsghdr *nlh;
2953 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002954 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002955
2956 headlen = sizeof(*p);
2957 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002958 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002959 headlen = sizeof(*id);
2960 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002961 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002962 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002963 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002964
Thomas Graf7deb2262007-08-22 13:57:39 -07002965 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002966 if (skb == NULL)
2967 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002968
Eric W. Biederman15e47302012-09-07 20:12:54 +00002969 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002970 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002971 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002972 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002973
Thomas Graf7b67c852007-08-22 13:53:52 -07002974 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002975 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002976 struct nlattr *attr;
2977
Thomas Graf7b67c852007-08-22 13:53:52 -07002978 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002979 memset(id, 0, sizeof(*id));
2980 id->dir = dir;
2981 if (c->data.byid)
2982 id->index = xp->index;
2983 else
2984 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2985
Thomas Grafc0144be2007-08-22 13:55:43 -07002986 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002987 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002988 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002989 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002990
2991 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002992 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002993
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002994 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002995 err = copy_to_user_tmpl(xp, skb);
2996 if (!err)
2997 err = copy_to_user_policy_type(xp->type, skb);
2998 if (!err)
2999 err = xfrm_mark_put(skb, &xp->mark);
3000 if (err)
3001 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003002
Thomas Graf98250692007-08-22 12:47:26 -07003003 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003004
Michal Kubecek21ee5432014-06-03 10:26:06 +02003005 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003006
David S. Miller1d1e34d2012-06-27 21:57:03 -07003007out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003008 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003009 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003010}
3011
David S. Miller214e0052011-02-24 00:02:38 -05003012static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003013{
Alexey Dobriyan70678022008-11-25 17:50:36 -08003014 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003015 struct nlmsghdr *nlh;
3016 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003017 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003018
Thomas Graf7deb2262007-08-22 13:57:39 -07003019 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003020 if (skb == NULL)
3021 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003022
Eric W. Biederman15e47302012-09-07 20:12:54 +00003023 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003024 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003025 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003026 goto out_free_skb;
3027 err = copy_to_user_policy_type(c->data.type, skb);
3028 if (err)
3029 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003030
Thomas Graf98250692007-08-22 12:47:26 -07003031 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003032
Michal Kubecek21ee5432014-06-03 10:26:06 +02003033 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003034
David S. Miller1d1e34d2012-06-27 21:57:03 -07003035out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003036 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003037 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003038}
3039
David S. Miller214e0052011-02-24 00:02:38 -05003040static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003041{
3042
3043 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003044 case XFRM_MSG_NEWPOLICY:
3045 case XFRM_MSG_UPDPOLICY:
3046 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003047 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003048 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003049 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003050 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003051 return xfrm_exp_policy_notify(xp, dir, c);
3052 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003053 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3054 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003055 }
3056
3057 return 0;
3058
3059}
3060
Thomas Graf7deb2262007-08-22 13:57:39 -07003061static inline size_t xfrm_report_msgsize(void)
3062{
3063 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3064}
3065
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003066static int build_report(struct sk_buff *skb, u8 proto,
3067 struct xfrm_selector *sel, xfrm_address_t *addr)
3068{
3069 struct xfrm_user_report *ur;
3070 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003071
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003072 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3073 if (nlh == NULL)
3074 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003075
Thomas Graf7b67c852007-08-22 13:53:52 -07003076 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003077 ur->proto = proto;
3078 memcpy(&ur->sel, sel, sizeof(ur->sel));
3079
David S. Miller1d1e34d2012-06-27 21:57:03 -07003080 if (addr) {
3081 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3082 if (err) {
3083 nlmsg_cancel(skb, nlh);
3084 return err;
3085 }
3086 }
Johannes Berg053c0952015-01-16 22:09:00 +01003087 nlmsg_end(skb, nlh);
3088 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003089}
3090
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003091static int xfrm_send_report(struct net *net, u8 proto,
3092 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003093{
3094 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003095
Thomas Graf7deb2262007-08-22 13:57:39 -07003096 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003097 if (skb == NULL)
3098 return -ENOMEM;
3099
3100 if (build_report(skb, proto, sel, addr) < 0)
3101 BUG();
3102
Michal Kubecek21ee5432014-06-03 10:26:06 +02003103 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003104}
3105
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003106static inline size_t xfrm_mapping_msgsize(void)
3107{
3108 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3109}
3110
3111static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3112 xfrm_address_t *new_saddr, __be16 new_sport)
3113{
3114 struct xfrm_user_mapping *um;
3115 struct nlmsghdr *nlh;
3116
3117 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3118 if (nlh == NULL)
3119 return -EMSGSIZE;
3120
3121 um = nlmsg_data(nlh);
3122
3123 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3124 um->id.spi = x->id.spi;
3125 um->id.family = x->props.family;
3126 um->id.proto = x->id.proto;
3127 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3128 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3129 um->new_sport = new_sport;
3130 um->old_sport = x->encap->encap_sport;
3131 um->reqid = x->props.reqid;
3132
Johannes Berg053c0952015-01-16 22:09:00 +01003133 nlmsg_end(skb, nlh);
3134 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003135}
3136
3137static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3138 __be16 sport)
3139{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003140 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003141 struct sk_buff *skb;
3142
3143 if (x->id.proto != IPPROTO_ESP)
3144 return -EINVAL;
3145
3146 if (!x->encap)
3147 return -EINVAL;
3148
3149 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3150 if (skb == NULL)
3151 return -ENOMEM;
3152
3153 if (build_mapping(skb, x, ipaddr, sport) < 0)
3154 BUG();
3155
Michal Kubecek21ee5432014-06-03 10:26:06 +02003156 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003157}
3158
Horia Geanta0f245582014-02-12 16:20:06 +02003159static bool xfrm_is_alive(const struct km_event *c)
3160{
3161 return (bool)xfrm_acquire_is_on(c->net);
3162}
3163
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164static struct xfrm_mgr netlink_mgr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 .notify = xfrm_send_state_notify,
3166 .acquire = xfrm_send_acquire,
3167 .compile_policy = xfrm_compile_policy,
3168 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003169 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003170 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003171 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003172 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173};
3174
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003175static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176{
Patrick McHardybe336902006-03-20 22:40:54 -08003177 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003178 struct netlink_kernel_cfg cfg = {
3179 .groups = XFRMNLGRP_MAX,
3180 .input = xfrm_netlink_rcv,
3181 };
Patrick McHardybe336902006-03-20 22:40:54 -08003182
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003183 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003184 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003186 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003187 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 return 0;
3189}
3190
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003191static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003192{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003193 struct net *net;
3194 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003195 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003196 synchronize_net();
3197 list_for_each_entry(net, net_exit_list, exit_list)
3198 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003199}
3200
3201static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003202 .init = xfrm_user_net_init,
3203 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003204};
3205
3206static int __init xfrm_user_init(void)
3207{
3208 int rv;
3209
3210 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3211
3212 rv = register_pernet_subsys(&xfrm_user_net_ops);
3213 if (rv < 0)
3214 return rv;
3215 rv = xfrm_register_km(&netlink_mgr);
3216 if (rv < 0)
3217 unregister_pernet_subsys(&xfrm_user_net_ops);
3218 return rv;
3219}
3220
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221static void __exit xfrm_user_exit(void)
3222{
3223 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003224 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003225}
3226
3227module_init(xfrm_user_init);
3228module_exit(xfrm_user_exit);
3229MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003230MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003231