blob: 2bfbd9121e3b21b0eb793d2d3a685bd4cebde22b [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
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900587 if (attrs[XFRMA_OUTPUT_MARK])
588 x->props.output_mark = nla_get_u32(attrs[XFRMA_OUTPUT_MARK]);
589
Ilan Tayariffdb5212017-08-01 12:49:08 +0300590 err = __xfrm_init_state(x, false, attrs[XFRMA_OFFLOAD_DEV]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 if (err)
592 goto error;
593
Mathias Krause2f30ea52016-09-08 18:09:57 +0200594 if (attrs[XFRMA_SEC_CTX]) {
595 err = security_xfrm_state_alloc(x,
596 nla_data(attrs[XFRMA_SEC_CTX]));
597 if (err)
598 goto error;
599 }
Trent Jaegerdf718372005-12-13 23:12:27 -0800600
Ilan Tayari152afb92017-04-30 16:51:19 +0300601 if (attrs[XFRMA_OFFLOAD_DEV]) {
602 err = xfrm_dev_state_add(net, x,
603 nla_data(attrs[XFRMA_OFFLOAD_DEV]));
604 if (err)
605 goto error;
606 }
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200607
Steffen Klassertd8647b72011-03-08 00:10:27 +0000608 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
609 attrs[XFRMA_REPLAY_ESN_VAL])))
610 goto error;
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800613 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800614 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800615 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800616
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000617 if ((err = xfrm_init_replay(x)))
618 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800619
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000620 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000621 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
623 return x;
624
625error:
626 x->km.state = XFRM_STATE_DEAD;
627 xfrm_state_put(x);
628error_no_put:
629 *errp = err;
630 return NULL;
631}
632
Christoph Hellwig22e70052007-01-02 15:22:30 -0800633static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700634 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800636 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700637 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 struct xfrm_state *x;
639 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700640 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
Thomas Graf35a7aa02007-08-22 14:00:40 -0700642 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 if (err)
644 return err;
645
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800646 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 if (!x)
648 return err;
649
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700650 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
652 err = xfrm_state_add(x);
653 else
654 err = xfrm_state_update(x);
655
Tetsuo Handa2e710292014-04-22 21:48:30 +0900656 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 if (err < 0) {
659 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800660 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700661 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700664 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000665 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700666 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700667
668 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700669out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700670 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return err;
672}
673
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800674static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
675 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700676 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700677 int *errp)
678{
679 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000680 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700681 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000682 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700683
684 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
685 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000686 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700687 } else {
688 xfrm_address_t *saddr = NULL;
689
Thomas Graf35a7aa02007-08-22 14:00:40 -0700690 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700691 if (!saddr) {
692 err = -EINVAL;
693 goto out;
694 }
695
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800696 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000697 x = xfrm_state_lookup_byaddr(net, mark,
698 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800699 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700700 }
701
702 out:
703 if (!x && errp)
704 *errp = err;
705 return x;
706}
707
Christoph Hellwig22e70052007-01-02 15:22:30 -0800708static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700709 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800711 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700713 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700714 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700715 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800717 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700719 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
David S. Miller6f68dc32006-06-08 23:58:52 -0700721 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700722 goto out;
723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700725 err = -EPERM;
726 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 }
728
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700729 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600730
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700731 if (err < 0)
732 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700733
734 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000735 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700736 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700737 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700739out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900740 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700741 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700742 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
744
745static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
746{
Mathias Krausef778a632012-09-19 11:33:39 +0000747 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 memcpy(&p->id, &x->id, sizeof(p->id));
749 memcpy(&p->sel, &x->sel, sizeof(p->sel));
750 memcpy(&p->lft, &x->lft, sizeof(p->lft));
751 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
Sowmini Varadhane33d4f12015-10-21 11:48:25 -0400752 put_unaligned(x->stats.replay_window, &p->stats.replay_window);
753 put_unaligned(x->stats.replay, &p->stats.replay);
754 put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
David S. Miller54489c142006-10-27 15:29:47 -0700755 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 p->mode = x->props.mode;
757 p->replay_window = x->props.replay_window;
758 p->reqid = x->props.reqid;
759 p->family = x->props.family;
760 p->flags = x->props.flags;
761 p->seq = x->km.seq;
762}
763
764struct xfrm_dump_info {
765 struct sk_buff *in_skb;
766 struct sk_buff *out_skb;
767 u32 nlmsg_seq;
768 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769};
770
Thomas Grafc0144be2007-08-22 13:55:43 -0700771static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
772{
Thomas Grafc0144be2007-08-22 13:55:43 -0700773 struct xfrm_user_sec_ctx *uctx;
774 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700775 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700776
777 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
778 if (attr == NULL)
779 return -EMSGSIZE;
780
781 uctx = nla_data(attr);
782 uctx->exttype = XFRMA_SEC_CTX;
783 uctx->len = ctx_size;
784 uctx->ctx_doi = s->ctx_doi;
785 uctx->ctx_alg = s->ctx_alg;
786 uctx->ctx_len = s->ctx_len;
787 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
788
789 return 0;
790}
791
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200792static int copy_user_offload(struct xfrm_state_offload *xso, struct sk_buff *skb)
793{
794 struct xfrm_user_offload *xuo;
795 struct nlattr *attr;
796
797 attr = nla_reserve(skb, XFRMA_OFFLOAD_DEV, sizeof(*xuo));
798 if (attr == NULL)
799 return -EMSGSIZE;
800
801 xuo = nla_data(attr);
Mathias Krause5fe0d4b2017-08-26 17:08:57 +0200802 memset(xuo, 0, sizeof(*xuo));
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200803 xuo->ifindex = xso->dev->ifindex;
804 xuo->flags = xso->flags;
805
806 return 0;
807}
808
Martin Willi4447bb32009-11-25 00:29:52 +0000809static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
810{
811 struct xfrm_algo *algo;
812 struct nlattr *nla;
813
814 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
815 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
816 if (!nla)
817 return -EMSGSIZE;
818
819 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000820 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000821 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
822 algo->alg_key_len = auth->alg_key_len;
823
824 return 0;
825}
826
Herbert Xu68325d32007-10-09 13:30:57 -0700827/* Don't change this without updating xfrm_sa_len! */
828static int copy_to_user_state_extra(struct xfrm_state *x,
829 struct xfrm_usersa_info *p,
830 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700832 int ret = 0;
833
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 copy_to_user_state(x, p);
835
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100836 if (x->props.extra_flags) {
837 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
838 x->props.extra_flags);
839 if (ret)
840 goto out;
841 }
842
David S. Miller1d1e34d2012-06-27 21:57:03 -0700843 if (x->coaddr) {
844 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
845 if (ret)
846 goto out;
847 }
848 if (x->lastused) {
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +0200849 ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused,
850 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700851 if (ret)
852 goto out;
853 }
854 if (x->aead) {
855 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
856 if (ret)
857 goto out;
858 }
859 if (x->aalg) {
860 ret = copy_to_user_auth(x->aalg, skb);
861 if (!ret)
862 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
863 xfrm_alg_auth_len(x->aalg), x->aalg);
864 if (ret)
865 goto out;
866 }
867 if (x->ealg) {
868 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
869 if (ret)
870 goto out;
871 }
872 if (x->calg) {
873 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
874 if (ret)
875 goto out;
876 }
877 if (x->encap) {
878 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
879 if (ret)
880 goto out;
881 }
882 if (x->tfcpad) {
883 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
884 if (ret)
885 goto out;
886 }
887 ret = xfrm_mark_put(skb, &x->mark);
888 if (ret)
889 goto out;
dingzhif293a5e2014-10-30 09:39:36 +0100890 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700891 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
892 xfrm_replay_state_esn_len(x->replay_esn),
893 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100894 else
895 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
896 &x->replay);
897 if (ret)
898 goto out;
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200899 if(x->xso.dev)
900 ret = copy_user_offload(&x->xso, skb);
901 if (ret)
902 goto out;
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900903 if (x->props.output_mark) {
904 ret = nla_put_u32(skb, XFRMA_OUTPUT_MARK, x->props.output_mark);
905 if (ret)
906 goto out;
907 }
Steffen Klassert85981122017-08-31 10:37:00 +0200908 if (x->security)
909 ret = copy_sec_ctx(x->security, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700910out:
911 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700912}
913
914static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
915{
916 struct xfrm_dump_info *sp = ptr;
917 struct sk_buff *in_skb = sp->in_skb;
918 struct sk_buff *skb = sp->out_skb;
919 struct xfrm_usersa_info *p;
920 struct nlmsghdr *nlh;
921 int err;
922
Eric W. Biederman15e47302012-09-07 20:12:54 +0000923 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700924 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
925 if (nlh == NULL)
926 return -EMSGSIZE;
927
928 p = nlmsg_data(nlh);
929
930 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700931 if (err) {
932 nlmsg_cancel(skb, nlh);
933 return err;
934 }
Thomas Graf98250692007-08-22 12:47:26 -0700935 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
Timo Teras4c563f72008-02-28 21:31:08 -0800939static int xfrm_dump_sa_done(struct netlink_callback *cb)
940{
941 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800942 struct sock *sk = cb->skb->sk;
943 struct net *net = sock_net(sk);
944
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200945 if (cb->args[0])
946 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800947 return 0;
948}
949
Nicolas Dichteld3623092014-02-14 15:30:36 +0100950static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
952{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800953 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800954 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 struct xfrm_dump_info info;
956
Timo Teras4c563f72008-02-28 21:31:08 -0800957 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
958 sizeof(cb->args) - sizeof(cb->args[0]));
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 info.in_skb = cb->skb;
961 info.out_skb = skb;
962 info.nlmsg_seq = cb->nlh->nlmsg_seq;
963 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800964
965 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100966 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100967 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100968 u8 proto = 0;
969 int err;
970
Johannes Bergfceb6432017-04-12 14:34:07 +0200971 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX, xfrma_policy,
972 NULL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100973 if (err < 0)
974 return err;
975
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100976 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +0200977 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
978 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100979 if (filter == NULL)
980 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100981 }
982
983 if (attrs[XFRMA_PROTO])
984 proto = nla_get_u8(attrs[XFRMA_PROTO]);
985
986 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200987 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -0800988 }
989
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800990 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991
992 return skb->len;
993}
994
995static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
996 struct xfrm_state *x, u32 seq)
997{
998 struct xfrm_dump_info info;
999 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +00001000 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001
Thomas Graf7deb2262007-08-22 13:57:39 -07001002 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 if (!skb)
1004 return ERR_PTR(-ENOMEM);
1005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 info.in_skb = in_skb;
1007 info.out_skb = skb;
1008 info.nlmsg_seq = seq;
1009 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
Mathias Krause864745d2012-09-13 11:41:26 +00001011 err = dump_one_state(x, 0, &info);
1012 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +00001014 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 }
1016
1017 return skb;
1018}
1019
Michal Kubecek21ee5432014-06-03 10:26:06 +02001020/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
1021 * Must be called with RCU read lock.
1022 */
1023static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
1024 u32 pid, unsigned int group)
1025{
1026 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
1027
1028 if (nlsk)
1029 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
1030 else
1031 return -1;
1032}
1033
Thomas Graf7deb2262007-08-22 13:57:39 -07001034static inline size_t xfrm_spdinfo_msgsize(void)
1035{
1036 return NLMSG_ALIGN(4)
1037 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001038 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1039 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1040 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001041}
1042
Alexey Dobriyane0710412010-01-23 13:37:10 +00001043static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001044 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001045{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001046 struct xfrmk_spdinfo si;
1047 struct xfrmu_spdinfo spc;
1048 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001049 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001050 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001051 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001052 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001053 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001054
Eric W. Biederman15e47302012-09-07 20:12:54 +00001055 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001056 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001057 return -EMSGSIZE;
1058
1059 f = nlmsg_data(nlh);
1060 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001061 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001062 spc.incnt = si.incnt;
1063 spc.outcnt = si.outcnt;
1064 spc.fwdcnt = si.fwdcnt;
1065 spc.inscnt = si.inscnt;
1066 spc.outscnt = si.outscnt;
1067 spc.fwdscnt = si.fwdscnt;
1068 sph.spdhcnt = si.spdhcnt;
1069 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001070
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001071 do {
1072 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1073
1074 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1075 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1076 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1077 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1078 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1079
David S. Miller1d1e34d2012-06-27 21:57:03 -07001080 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1081 if (!err)
1082 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001083 if (!err)
1084 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1085 if (!err)
1086 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001087 if (err) {
1088 nlmsg_cancel(skb, nlh);
1089 return err;
1090 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001091
Johannes Berg053c0952015-01-16 22:09:00 +01001092 nlmsg_end(skb, nlh);
1093 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001094}
1095
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001096static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1097 struct nlattr **attrs)
1098{
1099 struct net *net = sock_net(skb->sk);
1100 struct xfrmu_spdhthresh *thresh4 = NULL;
1101 struct xfrmu_spdhthresh *thresh6 = NULL;
1102
1103 /* selector prefixlen thresholds to hash policies */
1104 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1105 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1106
1107 if (nla_len(rta) < sizeof(*thresh4))
1108 return -EINVAL;
1109 thresh4 = nla_data(rta);
1110 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1111 return -EINVAL;
1112 }
1113 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1114 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1115
1116 if (nla_len(rta) < sizeof(*thresh6))
1117 return -EINVAL;
1118 thresh6 = nla_data(rta);
1119 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1120 return -EINVAL;
1121 }
1122
1123 if (thresh4 || thresh6) {
1124 write_seqlock(&net->xfrm.policy_hthresh.lock);
1125 if (thresh4) {
1126 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1127 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1128 }
1129 if (thresh6) {
1130 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1131 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1132 }
1133 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1134
1135 xfrm_policy_hash_rebuild(net);
1136 }
1137
1138 return 0;
1139}
1140
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001141static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001142 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001143{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001144 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001145 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001146 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001147 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001148 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001149
Thomas Graf7deb2262007-08-22 13:57:39 -07001150 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001151 if (r_skb == NULL)
1152 return -ENOMEM;
1153
Eric W. Biederman15e47302012-09-07 20:12:54 +00001154 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001155 BUG();
1156
Eric W. Biederman15e47302012-09-07 20:12:54 +00001157 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001158}
1159
Thomas Graf7deb2262007-08-22 13:57:39 -07001160static inline size_t xfrm_sadinfo_msgsize(void)
1161{
1162 return NLMSG_ALIGN(4)
1163 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1164 + nla_total_size(4); /* XFRMA_SAD_CNT */
1165}
1166
Alexey Dobriyane0710412010-01-23 13:37:10 +00001167static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001168 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001169{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001170 struct xfrmk_sadinfo si;
1171 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001172 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001173 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001174 u32 *f;
1175
Eric W. Biederman15e47302012-09-07 20:12:54 +00001176 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001177 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001178 return -EMSGSIZE;
1179
1180 f = nlmsg_data(nlh);
1181 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001182 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001183
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001184 sh.sadhmcnt = si.sadhmcnt;
1185 sh.sadhcnt = si.sadhcnt;
1186
David S. Miller1d1e34d2012-06-27 21:57:03 -07001187 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1188 if (!err)
1189 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1190 if (err) {
1191 nlmsg_cancel(skb, nlh);
1192 return err;
1193 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001194
Johannes Berg053c0952015-01-16 22:09:00 +01001195 nlmsg_end(skb, nlh);
1196 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001197}
1198
1199static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001200 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001201{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001202 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001203 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001204 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001205 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001206 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001207
Thomas Graf7deb2262007-08-22 13:57:39 -07001208 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001209 if (r_skb == NULL)
1210 return -ENOMEM;
1211
Eric W. Biederman15e47302012-09-07 20:12:54 +00001212 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001213 BUG();
1214
Eric W. Biederman15e47302012-09-07 20:12:54 +00001215 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001216}
1217
Christoph Hellwig22e70052007-01-02 15:22:30 -08001218static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001219 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001221 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001222 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 struct xfrm_state *x;
1224 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001225 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001227 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 if (x == NULL)
1229 goto out_noput;
1230
1231 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1232 if (IS_ERR(resp_skb)) {
1233 err = PTR_ERR(resp_skb);
1234 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001235 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 }
1237 xfrm_state_put(x);
1238out_noput:
1239 return err;
1240}
1241
Christoph Hellwig22e70052007-01-02 15:22:30 -08001242static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001243 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001245 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 struct xfrm_state *x;
1247 struct xfrm_userspi_info *p;
1248 struct sk_buff *resp_skb;
1249 xfrm_address_t *daddr;
1250 int family;
1251 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001252 u32 mark;
1253 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001254
Thomas Graf7b67c852007-08-22 13:53:52 -07001255 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001256 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 if (err)
1258 goto out_noput;
1259
1260 family = p->info.family;
1261 daddr = &p->info.id.daddr;
1262
1263 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001264
1265 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001267 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001268 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 xfrm_state_put(x);
1270 x = NULL;
1271 }
1272 }
1273
1274 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001275 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 p->info.id.proto, daddr,
1277 &p->info.saddr, 1,
1278 family);
1279 err = -ENOENT;
1280 if (x == NULL)
1281 goto out_noput;
1282
Herbert Xu658b2192007-10-09 13:29:52 -07001283 err = xfrm_alloc_spi(x, p->min, p->max);
1284 if (err)
1285 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
Herbert Xu658b2192007-10-09 13:29:52 -07001287 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 if (IS_ERR(resp_skb)) {
1289 err = PTR_ERR(resp_skb);
1290 goto out;
1291 }
1292
Eric W. Biederman15e47302012-09-07 20:12:54 +00001293 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295out:
1296 xfrm_state_put(x);
1297out_noput:
1298 return err;
1299}
1300
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001301static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302{
1303 switch (dir) {
1304 case XFRM_POLICY_IN:
1305 case XFRM_POLICY_OUT:
1306 case XFRM_POLICY_FWD:
1307 break;
1308
1309 default:
1310 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001311 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312
1313 return 0;
1314}
1315
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001316static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001317{
1318 switch (type) {
1319 case XFRM_POLICY_TYPE_MAIN:
1320#ifdef CONFIG_XFRM_SUB_POLICY
1321 case XFRM_POLICY_TYPE_SUB:
1322#endif
1323 break;
1324
1325 default:
1326 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001327 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001328
1329 return 0;
1330}
1331
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1333{
Fan Due682adf2013-11-07 17:47:48 +08001334 int ret;
1335
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 switch (p->share) {
1337 case XFRM_SHARE_ANY:
1338 case XFRM_SHARE_SESSION:
1339 case XFRM_SHARE_USER:
1340 case XFRM_SHARE_UNIQUE:
1341 break;
1342
1343 default:
1344 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 switch (p->action) {
1348 case XFRM_POLICY_ALLOW:
1349 case XFRM_POLICY_BLOCK:
1350 break;
1351
1352 default:
1353 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001354 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
1356 switch (p->sel.family) {
1357 case AF_INET:
1358 break;
1359
1360 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001361#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 break;
1363#else
1364 return -EAFNOSUPPORT;
1365#endif
1366
1367 default:
1368 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001369 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Fan Due682adf2013-11-07 17:47:48 +08001371 ret = verify_policy_dir(p->dir);
1372 if (ret)
1373 return ret;
1374 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1375 return -EINVAL;
1376
1377 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378}
1379
Thomas Graf5424f322007-08-22 14:01:33 -07001380static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001381{
Thomas Graf5424f322007-08-22 14:01:33 -07001382 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001383 struct xfrm_user_sec_ctx *uctx;
1384
1385 if (!rt)
1386 return 0;
1387
Thomas Graf5424f322007-08-22 14:01:33 -07001388 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001389 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001390}
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1393 int nr)
1394{
1395 int i;
1396
1397 xp->xfrm_nr = nr;
1398 for (i = 0; i < nr; i++, ut++) {
1399 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1400
1401 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1402 memcpy(&t->saddr, &ut->saddr,
1403 sizeof(xfrm_address_t));
1404 t->reqid = ut->reqid;
1405 t->mode = ut->mode;
1406 t->share = ut->share;
1407 t->optional = ut->optional;
1408 t->aalgos = ut->aalgos;
1409 t->ealgos = ut->ealgos;
1410 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001411 /* If all masks are ~0, then we allow all algorithms. */
1412 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001413 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 }
1415}
1416
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001417static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1418{
1419 int i;
1420
1421 if (nr > XFRM_MAX_DEPTH)
1422 return -EINVAL;
1423
1424 for (i = 0; i < nr; i++) {
1425 /* We never validated the ut->family value, so many
1426 * applications simply leave it at zero. The check was
1427 * never made and ut->family was ignored because all
1428 * templates could be assumed to have the same family as
1429 * the policy itself. Now that we will have ipv4-in-ipv6
1430 * and ipv6-in-ipv4 tunnels, this is no longer true.
1431 */
1432 if (!ut[i].family)
1433 ut[i].family = family;
1434
1435 switch (ut[i].family) {
1436 case AF_INET:
1437 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001438#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001439 case AF_INET6:
1440 break;
1441#endif
1442 default:
1443 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001444 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001445 }
1446
1447 return 0;
1448}
1449
Thomas Graf5424f322007-08-22 14:01:33 -07001450static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451{
Thomas Graf5424f322007-08-22 14:01:33 -07001452 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454 if (!rt) {
1455 pol->xfrm_nr = 0;
1456 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001457 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1458 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001459 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001461 err = validate_tmpl(nr, utmpl, pol->family);
1462 if (err)
1463 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Thomas Graf5424f322007-08-22 14:01:33 -07001465 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
1467 return 0;
1468}
1469
Thomas Graf5424f322007-08-22 14:01:33 -07001470static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001471{
Thomas Graf5424f322007-08-22 14:01:33 -07001472 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001473 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001474 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001475 int err;
1476
1477 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001478 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001479 type = upt->type;
1480 }
1481
1482 err = verify_policy_type(type);
1483 if (err)
1484 return err;
1485
1486 *tp = type;
1487 return 0;
1488}
1489
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1491{
1492 xp->priority = p->priority;
1493 xp->index = p->index;
1494 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1495 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1496 xp->action = p->action;
1497 xp->flags = p->flags;
1498 xp->family = p->sel.family;
1499 /* XXX xp->share = p->share; */
1500}
1501
1502static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1503{
Mathias Krause7b789832012-09-19 11:33:40 +00001504 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1506 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1507 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1508 p->priority = xp->priority;
1509 p->index = xp->index;
1510 p->sel.family = xp->family;
1511 p->dir = dir;
1512 p->action = xp->action;
1513 p->flags = xp->flags;
1514 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1515}
1516
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001517static 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 -07001518{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001519 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 int err;
1521
1522 if (!xp) {
1523 *errp = -ENOMEM;
1524 return NULL;
1525 }
1526
1527 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001528
Thomas Graf35a7aa02007-08-22 14:00:40 -07001529 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001530 if (err)
1531 goto error;
1532
Thomas Graf35a7aa02007-08-22 14:00:40 -07001533 if (!(err = copy_from_user_tmpl(xp, attrs)))
1534 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001535 if (err)
1536 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001538 xfrm_mark_get(attrs, &xp->mark);
1539
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001541 error:
1542 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001543 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001544 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001545 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546}
1547
Christoph Hellwig22e70052007-01-02 15:22:30 -08001548static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001549 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001551 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001552 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001554 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 int err;
1556 int excl;
1557
1558 err = verify_newpolicy_info(p);
1559 if (err)
1560 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001561 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001562 if (err)
1563 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001565 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 if (!xp)
1567 return err;
1568
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001569 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001570 * Aha! this is anti-netlink really i.e more pfkey derived
1571 * in netlink excl is a flag and you wouldnt need
1572 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1574 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001575 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001576
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001578 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579 kfree(xp);
1580 return err;
1581 }
1582
Herbert Xuf60f6b82005-06-18 22:44:37 -07001583 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001584 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001585 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001586 km_policy_notify(xp, p->dir, &c);
1587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 xfrm_pol_put(xp);
1589
1590 return 0;
1591}
1592
1593static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1594{
1595 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1596 int i;
1597
1598 if (xp->xfrm_nr == 0)
1599 return 0;
1600
1601 for (i = 0; i < xp->xfrm_nr; i++) {
1602 struct xfrm_user_tmpl *up = &vec[i];
1603 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1604
Mathias Krause1f868402012-09-19 11:33:41 +00001605 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001607 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1609 up->reqid = kp->reqid;
1610 up->mode = kp->mode;
1611 up->share = kp->share;
1612 up->optional = kp->optional;
1613 up->aalgos = kp->aalgos;
1614 up->ealgos = kp->ealgos;
1615 up->calgos = kp->calgos;
1616 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617
Thomas Grafc0144be2007-08-22 13:55:43 -07001618 return nla_put(skb, XFRMA_TMPL,
1619 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001620}
1621
Serge Hallyn0d681622006-07-24 23:30:44 -07001622static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1623{
1624 if (x->security) {
1625 return copy_sec_ctx(x->security, skb);
1626 }
1627 return 0;
1628}
1629
1630static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1631{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001632 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001633 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001634 return 0;
1635}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001636static inline size_t userpolicy_type_attrsize(void)
1637{
1638#ifdef CONFIG_XFRM_SUB_POLICY
1639 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1640#else
1641 return 0;
1642#endif
1643}
Serge Hallyn0d681622006-07-24 23:30:44 -07001644
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001645#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001646static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001647{
Thomas Grafc0144be2007-08-22 13:55:43 -07001648 struct xfrm_userpolicy_type upt = {
1649 .type = type,
1650 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001651
Thomas Grafc0144be2007-08-22 13:55:43 -07001652 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001653}
1654
1655#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001656static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001657{
1658 return 0;
1659}
1660#endif
1661
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1663{
1664 struct xfrm_dump_info *sp = ptr;
1665 struct xfrm_userpolicy_info *p;
1666 struct sk_buff *in_skb = sp->in_skb;
1667 struct sk_buff *skb = sp->out_skb;
1668 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001669 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670
Eric W. Biederman15e47302012-09-07 20:12:54 +00001671 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001672 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1673 if (nlh == NULL)
1674 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675
Thomas Graf7b67c852007-08-22 13:53:52 -07001676 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001678 err = copy_to_user_tmpl(xp, skb);
1679 if (!err)
1680 err = copy_to_user_sec_ctx(xp, skb);
1681 if (!err)
1682 err = copy_to_user_policy_type(xp->type, skb);
1683 if (!err)
1684 err = xfrm_mark_put(skb, &xp->mark);
1685 if (err) {
1686 nlmsg_cancel(skb, nlh);
1687 return err;
1688 }
Thomas Graf98250692007-08-22 12:47:26 -07001689 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691}
1692
Timo Teras4c563f72008-02-28 21:31:08 -08001693static int xfrm_dump_policy_done(struct netlink_callback *cb)
1694{
1695 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +08001696 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001697
Fan Du283bc9f2013-11-07 17:47:50 +08001698 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001699 return 0;
1700}
1701
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1703{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001704 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001705 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706 struct xfrm_dump_info info;
1707
Timo Teras4c563f72008-02-28 21:31:08 -08001708 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) >
1709 sizeof(cb->args) - sizeof(cb->args[0]));
1710
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711 info.in_skb = cb->skb;
1712 info.out_skb = skb;
1713 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1714 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001715
1716 if (!cb->args[0]) {
1717 cb->args[0] = 1;
1718 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1719 }
1720
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001721 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
1723 return skb->len;
1724}
1725
1726static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1727 struct xfrm_policy *xp,
1728 int dir, u32 seq)
1729{
1730 struct xfrm_dump_info info;
1731 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001732 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733
Thomas Graf7deb2262007-08-22 13:57:39 -07001734 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 if (!skb)
1736 return ERR_PTR(-ENOMEM);
1737
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 info.in_skb = in_skb;
1739 info.out_skb = skb;
1740 info.nlmsg_seq = seq;
1741 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742
Mathias Krausec2546372012-09-14 09:58:32 +00001743 err = dump_one_policy(xp, dir, 0, &info);
1744 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001746 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747 }
1748
1749 return skb;
1750}
1751
Christoph Hellwig22e70052007-01-02 15:22:30 -08001752static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001753 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001755 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 struct xfrm_policy *xp;
1757 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001758 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001760 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001762 struct xfrm_mark m;
1763 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764
Thomas Graf7b67c852007-08-22 13:53:52 -07001765 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1767
Thomas Graf35a7aa02007-08-22 14:00:40 -07001768 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001769 if (err)
1770 return err;
1771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 err = verify_policy_dir(p->dir);
1773 if (err)
1774 return err;
1775
1776 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001777 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001778 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001779 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001780 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001781
Thomas Graf35a7aa02007-08-22 14:00:40 -07001782 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001783 if (err)
1784 return err;
1785
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001786 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001787 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001788 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001789
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001790 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001791 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001792 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001793 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001794 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001795 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001796 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001797 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 if (xp == NULL)
1799 return -ENOENT;
1800
1801 if (!delete) {
1802 struct sk_buff *resp_skb;
1803
1804 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1805 if (IS_ERR(resp_skb)) {
1806 err = PTR_ERR(resp_skb);
1807 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001808 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001809 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001811 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001812 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001813
1814 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001815 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001816
Herbert Xue7443892005-06-18 22:44:18 -07001817 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001818 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001819 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001820 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001821 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 }
1823
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001824out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001825 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 return err;
1827}
1828
Christoph Hellwig22e70052007-01-02 15:22:30 -08001829static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001830 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001832 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001833 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001834 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001835 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Tetsuo Handa2e710292014-04-22 21:48:30 +09001837 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001838 if (err) {
1839 if (err == -ESRCH) /* empty table */
1840 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001841 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001842 }
Herbert Xubf088672005-06-18 22:44:00 -07001843 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001844 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001845 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001846 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001847 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001848 km_state_notify(NULL, &c);
1849
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 return 0;
1851}
1852
Steffen Klassertd8647b72011-03-08 00:10:27 +00001853static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001854{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001855 size_t replay_size = x->replay_esn ?
1856 xfrm_replay_state_esn_len(x->replay_esn) :
1857 sizeof(struct xfrm_replay_state);
1858
Thomas Graf7deb2262007-08-22 13:57:39 -07001859 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001860 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001861 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001862 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001863 + nla_total_size(4) /* XFRM_AE_RTHR */
1864 + nla_total_size(4); /* XFRM_AE_ETHR */
1865}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001866
David S. Miller214e0052011-02-24 00:02:38 -05001867static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001868{
1869 struct xfrm_aevent_id *id;
1870 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001871 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001872
Eric W. Biederman15e47302012-09-07 20:12:54 +00001873 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001874 if (nlh == NULL)
1875 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001876
Thomas Graf7b67c852007-08-22 13:53:52 -07001877 id = nlmsg_data(nlh);
Mathias Krause931e79d2017-08-26 17:09:00 +02001878 memset(&id->sa_id, 0, sizeof(id->sa_id));
Weilong Chen9b7a7872013-12-24 09:43:46 +08001879 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001880 id->sa_id.spi = x->id.spi;
1881 id->sa_id.family = x->props.family;
1882 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001883 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001884 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001885 id->flags = c->data.aevent;
1886
David S. Millerd0fde792012-03-29 04:02:26 -04001887 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001888 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1889 xfrm_replay_state_esn_len(x->replay_esn),
1890 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001891 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001892 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1893 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001894 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001895 if (err)
1896 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001897 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1898 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001899 if (err)
1900 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001901
David S. Miller1d1e34d2012-06-27 21:57:03 -07001902 if (id->flags & XFRM_AE_RTHR) {
1903 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1904 if (err)
1905 goto out_cancel;
1906 }
1907 if (id->flags & XFRM_AE_ETHR) {
1908 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1909 x->replay_maxage * 10 / HZ);
1910 if (err)
1911 goto out_cancel;
1912 }
1913 err = xfrm_mark_put(skb, &x->mark);
1914 if (err)
1915 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001916
Johannes Berg053c0952015-01-16 22:09:00 +01001917 nlmsg_end(skb, nlh);
1918 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001919
David S. Miller1d1e34d2012-06-27 21:57:03 -07001920out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001921 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001922 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001923}
1924
Christoph Hellwig22e70052007-01-02 15:22:30 -08001925static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001926 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001927{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001928 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001929 struct xfrm_state *x;
1930 struct sk_buff *r_skb;
1931 int err;
1932 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001933 u32 mark;
1934 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001935 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001936 struct xfrm_usersa_id *id = &p->sa_id;
1937
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001938 mark = xfrm_mark_get(attrs, &m);
1939
1940 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001941 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001942 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001943
1944 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1945 if (r_skb == NULL) {
1946 xfrm_state_put(x);
1947 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001948 }
1949
1950 /*
1951 * XXX: is this lock really needed - none of the other
1952 * gets lock (the concern is things getting updated
1953 * while we are still reading) - jhs
1954 */
1955 spin_lock_bh(&x->lock);
1956 c.data.aevent = p->flags;
1957 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001958 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001959
1960 if (build_aevent(r_skb, x, &c) < 0)
1961 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001962 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001963 spin_unlock_bh(&x->lock);
1964 xfrm_state_put(x);
1965 return err;
1966}
1967
Christoph Hellwig22e70052007-01-02 15:22:30 -08001968static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001969 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001970{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001971 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001972 struct xfrm_state *x;
1973 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08001974 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001975 u32 mark = 0;
1976 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001977 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001978 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001979 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001980 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02001981 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
1982 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001983
Michael Rossberg4e077232015-09-29 11:25:08 +02001984 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001985 return err;
1986
1987 /* pedantic mode - thou shalt sayeth replaceth */
1988 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1989 return err;
1990
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001991 mark = xfrm_mark_get(attrs, &m);
1992
1993 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 -08001994 if (x == NULL)
1995 return -ESRCH;
1996
1997 if (x->km.state != XFRM_STATE_VALID)
1998 goto out;
1999
Steffen Klassert4479ff72013-09-09 09:39:01 +02002000 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00002001 if (err)
2002 goto out;
2003
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002004 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00002005 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002006 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002007
2008 c.event = nlh->nlmsg_type;
2009 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002010 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002011 c.data.aevent = XFRM_AE_CU;
2012 km_state_notify(x, &c);
2013 err = 0;
2014out:
2015 xfrm_state_put(x);
2016 return err;
2017}
2018
Christoph Hellwig22e70052007-01-02 15:22:30 -08002019static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002020 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002022 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002023 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002024 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002025 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002026
Thomas Graf35a7aa02007-08-22 14:00:40 -07002027 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002028 if (err)
2029 return err;
2030
Tetsuo Handa2e710292014-04-22 21:48:30 +09002031 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002032 if (err) {
2033 if (err == -ESRCH) /* empty table */
2034 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002035 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002036 }
2037
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002038 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002039 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002040 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002041 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002042 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002043 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 return 0;
2045}
2046
Christoph Hellwig22e70052007-01-02 15:22:30 -08002047static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002048 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002049{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002050 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002051 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002052 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002053 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002054 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002055 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002056 struct xfrm_mark m;
2057 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002058
Thomas Graf35a7aa02007-08-22 14:00:40 -07002059 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002060 if (err)
2061 return err;
2062
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002063 err = verify_policy_dir(p->dir);
2064 if (err)
2065 return err;
2066
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002067 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002068 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002069 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002070 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002071 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002072
Thomas Graf35a7aa02007-08-22 14:00:40 -07002073 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002074 if (err)
2075 return err;
2076
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002077 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002078 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002079 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002080
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002081 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002082 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002083 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002084 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002085 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002086 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002087 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002088 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002089 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002090 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002091
Timo Teräsea2dea92010-03-31 00:17:05 +00002092 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002093 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002094
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002095 err = 0;
2096 if (up->hard) {
2097 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002098 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002099 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002100 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002101
2102out:
2103 xfrm_pol_put(xp);
2104 return err;
2105}
2106
Christoph Hellwig22e70052007-01-02 15:22:30 -08002107static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002108 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002109{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002110 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002111 struct xfrm_state *x;
2112 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002113 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002114 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002115 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002116 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002117
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002118 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 -08002119
David S. Miller3a765aa2007-02-26 14:52:21 -08002120 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002121 if (x == NULL)
2122 return err;
2123
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002124 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002125 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002126 if (x->km.state != XFRM_STATE_VALID)
2127 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002128 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002129
Joy Latten161a09e2006-11-27 13:11:54 -06002130 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002131 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002132 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002133 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002134 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002135out:
2136 spin_unlock_bh(&x->lock);
2137 xfrm_state_put(x);
2138 return err;
2139}
2140
Christoph Hellwig22e70052007-01-02 15:22:30 -08002141static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002142 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002143{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002144 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002145 struct xfrm_policy *xp;
2146 struct xfrm_user_tmpl *ut;
2147 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002148 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002149 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002150
Thomas Graf7b67c852007-08-22 13:53:52 -07002151 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002152 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002153 int err = -ENOMEM;
2154
2155 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002156 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002157
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002158 xfrm_mark_get(attrs, &mark);
2159
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002160 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002161 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002162 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002163
2164 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002165 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002166 if (!xp)
2167 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002168
2169 memcpy(&x->id, &ua->id, sizeof(ua->id));
2170 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2171 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002172 xp->mark.m = x->mark.m = mark.m;
2173 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002174 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002175 /* extract the templates and for each call km_key */
2176 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2177 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2178 memcpy(&x->id, &t->id, sizeof(x->id));
2179 x->props.mode = t->mode;
2180 x->props.reqid = t->reqid;
2181 x->props.family = ut->family;
2182 t->aalgos = ua->aalgos;
2183 t->ealgos = ua->ealgos;
2184 t->calgos = ua->calgos;
2185 err = km_query(x, t, xp);
2186
2187 }
2188
2189 kfree(x);
2190 kfree(xp);
2191
2192 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002193
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002194free_state:
2195 kfree(x);
2196nomem:
2197 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002198}
2199
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002200#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002201static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002202 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002203 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002204{
Thomas Graf5424f322007-08-22 14:01:33 -07002205 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002206 struct xfrm_user_migrate *um;
2207 int i, num_migrate;
2208
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002209 if (k != NULL) {
2210 struct xfrm_user_kmaddress *uk;
2211
2212 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2213 memcpy(&k->local, &uk->local, sizeof(k->local));
2214 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2215 k->family = uk->family;
2216 k->reserved = uk->reserved;
2217 }
2218
Thomas Graf5424f322007-08-22 14:01:33 -07002219 um = nla_data(rt);
2220 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002221
2222 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2223 return -EINVAL;
2224
2225 for (i = 0; i < num_migrate; i++, um++, ma++) {
2226 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2227 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2228 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2229 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2230
2231 ma->proto = um->proto;
2232 ma->mode = um->mode;
2233 ma->reqid = um->reqid;
2234
2235 ma->old_family = um->old_family;
2236 ma->new_family = um->new_family;
2237 }
2238
2239 *num = i;
2240 return 0;
2241}
2242
2243static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002244 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002245{
Thomas Graf7b67c852007-08-22 13:53:52 -07002246 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002247 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002248 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002249 u8 type;
2250 int err;
2251 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002252 struct net *net = sock_net(skb->sk);
Antony Antony4ab47d42017-06-06 12:12:13 +02002253 struct xfrm_encap_tmpl *encap = NULL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002254
Thomas Graf35a7aa02007-08-22 14:00:40 -07002255 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002256 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002257
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002258 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2259
Thomas Graf5424f322007-08-22 14:01:33 -07002260 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002261 if (err)
2262 return err;
2263
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002264 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002265 if (err)
2266 return err;
2267
2268 if (!n)
2269 return 0;
2270
Antony Antony4ab47d42017-06-06 12:12:13 +02002271 if (attrs[XFRMA_ENCAP]) {
2272 encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
2273 sizeof(*encap), GFP_KERNEL);
2274 if (!encap)
2275 return 0;
2276 }
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002277
Antony Antony4ab47d42017-06-06 12:12:13 +02002278 err = xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net, encap);
2279
2280 kfree(encap);
2281
2282 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002283}
2284#else
2285static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002286 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002287{
2288 return -ENOPROTOOPT;
2289}
2290#endif
2291
2292#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002293static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002294{
2295 struct xfrm_user_migrate um;
2296
2297 memset(&um, 0, sizeof(um));
2298 um.proto = m->proto;
2299 um.mode = m->mode;
2300 um.reqid = m->reqid;
2301 um.old_family = m->old_family;
2302 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2303 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2304 um.new_family = m->new_family;
2305 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2306 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2307
Thomas Grafc0144be2007-08-22 13:55:43 -07002308 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002309}
2310
David S. Miller183cad12011-02-24 00:28:01 -05002311static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002312{
2313 struct xfrm_user_kmaddress uk;
2314
2315 memset(&uk, 0, sizeof(uk));
2316 uk.family = k->family;
2317 uk.reserved = k->reserved;
2318 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002319 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002320
2321 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2322}
2323
Antony Antony8bafd732017-06-06 12:12:14 +02002324static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma,
2325 int with_encp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002326{
2327 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002328 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
Antony Antony8bafd732017-06-06 12:12:14 +02002329 + (with_encp ? nla_total_size(sizeof(struct xfrm_encap_tmpl)) : 0)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002330 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2331 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002332}
2333
David S. Miller183cad12011-02-24 00:28:01 -05002334static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2335 int num_migrate, const struct xfrm_kmaddress *k,
Antony Antony8bafd732017-06-06 12:12:14 +02002336 const struct xfrm_selector *sel,
2337 const struct xfrm_encap_tmpl *encap, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002338{
David S. Miller183cad12011-02-24 00:28:01 -05002339 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002340 struct xfrm_userpolicy_id *pol_id;
2341 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002342 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002343
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002344 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2345 if (nlh == NULL)
2346 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002347
Thomas Graf7b67c852007-08-22 13:53:52 -07002348 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002349 /* copy data from selector, dir, and type to the pol_id */
2350 memset(pol_id, 0, sizeof(*pol_id));
2351 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2352 pol_id->dir = dir;
2353
David S. Miller1d1e34d2012-06-27 21:57:03 -07002354 if (k != NULL) {
2355 err = copy_to_user_kmaddress(k, skb);
2356 if (err)
2357 goto out_cancel;
2358 }
Antony Antony8bafd732017-06-06 12:12:14 +02002359 if (encap) {
2360 err = nla_put(skb, XFRMA_ENCAP, sizeof(*encap), encap);
2361 if (err)
2362 goto out_cancel;
2363 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002364 err = copy_to_user_policy_type(type, skb);
2365 if (err)
2366 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002367 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002368 err = copy_to_user_migrate(mp, skb);
2369 if (err)
2370 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002371 }
2372
Johannes Berg053c0952015-01-16 22:09:00 +01002373 nlmsg_end(skb, nlh);
2374 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002375
2376out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002377 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002378 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002379}
2380
David S. Miller183cad12011-02-24 00:28:01 -05002381static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2382 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002383 const struct xfrm_kmaddress *k,
2384 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002385{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002386 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002387 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002388
Antony Antony8bafd732017-06-06 12:12:14 +02002389 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k, !!encap),
2390 GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002391 if (skb == NULL)
2392 return -ENOMEM;
2393
2394 /* build migrate */
Antony Antony8bafd732017-06-06 12:12:14 +02002395 if (build_migrate(skb, m, num_migrate, k, sel, encap, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002396 BUG();
2397
Michal Kubecek21ee5432014-06-03 10:26:06 +02002398 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002399}
2400#else
David S. Miller183cad12011-02-24 00:28:01 -05002401static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2402 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002403 const struct xfrm_kmaddress *k,
2404 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002405{
2406 return -ENOPROTOOPT;
2407}
2408#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002409
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002410#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002411
2412static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002413 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002414 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2415 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2416 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2417 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2418 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2419 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002420 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002421 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002422 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002423 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002424 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002425 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002426 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002427 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2428 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002429 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002430 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002431 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002432 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002433 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434};
2435
Thomas Graf492b5582005-05-03 14:26:40 -07002436#undef XMSGSIZE
2437
Thomas Grafcf5cb792007-08-22 13:59:04 -07002438static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002439 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2440 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2441 [XFRMA_LASTUSED] = { .type = NLA_U64},
2442 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002443 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002444 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2445 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2446 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2447 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2448 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2449 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2450 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2451 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2452 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2453 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2454 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2455 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2456 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2457 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002458 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002459 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002460 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002461 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002462 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002463 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002464 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002465 [XFRMA_OFFLOAD_DEV] = { .len = sizeof(struct xfrm_user_offload) },
Lorenzo Colitti077fbac2017-08-11 02:11:33 +09002466 [XFRMA_OUTPUT_MARK] = { .len = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002467};
2468
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002469static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2470 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2471 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2472};
2473
Mathias Krause05600a72013-02-24 14:10:27 +01002474static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002475 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002477 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002478 const struct nla_policy *nla_pol;
2479 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002480} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2481 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2482 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2483 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002484 .dump = xfrm_dump_sa,
2485 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002486 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2487 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2488 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Timo Teras4c563f72008-02-28 21:31:08 -08002489 .dump = xfrm_dump_policy,
2490 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002491 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002492 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002493 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002494 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2495 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002496 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002497 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2498 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002499 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2500 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002501 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002502 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002503 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2504 .nla_pol = xfrma_spd_policy,
2505 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002506 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507};
2508
Johannes Berg2d4bc932017-04-12 14:34:04 +02002509static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
2510 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002512 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002513 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002514 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002515 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516
Fan Du74005992015-01-27 17:00:29 +08002517#ifdef CONFIG_COMPAT
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002518 if (in_compat_syscall())
Yi Zhao83e2d052016-11-29 18:09:01 +08002519 return -EOPNOTSUPP;
Fan Du74005992015-01-27 17:00:29 +08002520#endif
2521
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002524 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
2526 type -= XFRM_MSG_BASE;
2527 link = &xfrm_dispatch[type];
2528
2529 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002530 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002531 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
Thomas Graf492b5582005-05-03 14:26:40 -07002533 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2534 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002535 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002537 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002539 {
2540 struct netlink_dump_control c = {
2541 .dump = link->dump,
2542 .done = link->done,
2543 };
2544 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2545 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 }
2547
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002548 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2549 link->nla_max ? : XFRMA_MAX,
Johannes Bergfe521452017-04-12 14:34:08 +02002550 link->nla_pol ? : xfrma_policy, extack);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002551 if (err < 0)
2552 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
2554 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002555 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Thomas Graf5424f322007-08-22 14:01:33 -07002557 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558}
2559
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002560static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561{
Fan Du283bc9f2013-11-07 17:47:50 +08002562 struct net *net = sock_net(skb->sk);
2563
2564 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002565 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002566 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567}
2568
Thomas Graf7deb2262007-08-22 13:57:39 -07002569static inline size_t xfrm_expire_msgsize(void)
2570{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002571 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2572 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002573}
2574
David S. Miller214e0052011-02-24 00:02:38 -05002575static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576{
2577 struct xfrm_user_expire *ue;
2578 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002579 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580
Eric W. Biederman15e47302012-09-07 20:12:54 +00002581 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002582 if (nlh == NULL)
2583 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Thomas Graf7b67c852007-08-22 13:53:52 -07002585 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002587 ue->hard = (c->data.hard != 0) ? 1 : 0;
Mathias Krausee3e5fc12017-08-26 17:08:59 +02002588 /* clear the padding bytes */
2589 memset(&ue->hard + 1, 0, sizeof(*ue) - offsetofend(typeof(*ue), hard));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590
David S. Miller1d1e34d2012-06-27 21:57:03 -07002591 err = xfrm_mark_put(skb, &x->mark);
2592 if (err)
2593 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002594
Johannes Berg053c0952015-01-16 22:09:00 +01002595 nlmsg_end(skb, nlh);
2596 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597}
2598
David S. Miller214e0052011-02-24 00:02:38 -05002599static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002601 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 struct sk_buff *skb;
2603
Thomas Graf7deb2262007-08-22 13:57:39 -07002604 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 if (skb == NULL)
2606 return -ENOMEM;
2607
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002608 if (build_expire(skb, x, c) < 0) {
2609 kfree_skb(skb);
2610 return -EMSGSIZE;
2611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
Michal Kubecek21ee5432014-06-03 10:26:06 +02002613 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614}
2615
David S. Miller214e0052011-02-24 00:02:38 -05002616static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002617{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002618 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002619 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002620
Steffen Klassertd8647b72011-03-08 00:10:27 +00002621 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002622 if (skb == NULL)
2623 return -ENOMEM;
2624
2625 if (build_aevent(skb, x, c) < 0)
2626 BUG();
2627
Michal Kubecek21ee5432014-06-03 10:26:06 +02002628 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002629}
2630
David S. Miller214e0052011-02-24 00:02:38 -05002631static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002632{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002633 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002634 struct xfrm_usersa_flush *p;
2635 struct nlmsghdr *nlh;
2636 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002637 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002638
Thomas Graf7deb2262007-08-22 13:57:39 -07002639 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002640 if (skb == NULL)
2641 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002642
Eric W. Biederman15e47302012-09-07 20:12:54 +00002643 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002644 if (nlh == NULL) {
2645 kfree_skb(skb);
2646 return -EMSGSIZE;
2647 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002648
Thomas Graf7b67c852007-08-22 13:53:52 -07002649 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002650 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002651
Thomas Graf98250692007-08-22 12:47:26 -07002652 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002653
Michal Kubecek21ee5432014-06-03 10:26:06 +02002654 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002655}
2656
Thomas Graf7deb2262007-08-22 13:57:39 -07002657static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002658{
Thomas Graf7deb2262007-08-22 13:57:39 -07002659 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002660 if (x->aead)
2661 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002662 if (x->aalg) {
2663 l += nla_total_size(sizeof(struct xfrm_algo) +
2664 (x->aalg->alg_key_len + 7) / 8);
2665 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2666 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002667 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002668 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002669 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002670 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002671 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002672 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002673 if (x->tfcpad)
2674 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002675 if (x->replay_esn)
2676 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002677 else
2678 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002679 if (x->security)
2680 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2681 x->security->ctx_len);
2682 if (x->coaddr)
2683 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002684 if (x->props.extra_flags)
2685 l += nla_total_size(sizeof(x->props.extra_flags));
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002686 if (x->xso.dev)
2687 l += nla_total_size(sizeof(x->xso));
Lorenzo Colitti077fbac2017-08-11 02:11:33 +09002688 if (x->props.output_mark)
2689 l += nla_total_size(sizeof(x->props.output_mark));
Herbert Xu68325d32007-10-09 13:30:57 -07002690
Herbert Xud26f3982007-11-13 21:47:08 -08002691 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002692 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002693
2694 return l;
2695}
2696
David S. Miller214e0052011-02-24 00:02:38 -05002697static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002698{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002699 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002700 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002701 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002702 struct nlmsghdr *nlh;
2703 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002704 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002705 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002706
2707 headlen = sizeof(*p);
2708 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002709 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002710 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002711 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002712 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002713 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002714
Thomas Graf7deb2262007-08-22 13:57:39 -07002715 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002716 if (skb == NULL)
2717 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002718
Eric W. Biederman15e47302012-09-07 20:12:54 +00002719 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002720 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002721 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002722 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002723
Thomas Graf7b67c852007-08-22 13:53:52 -07002724 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002725 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002726 struct nlattr *attr;
2727
Thomas Graf7b67c852007-08-22 13:53:52 -07002728 id = nlmsg_data(nlh);
Mathias Krause50329c82017-08-26 17:08:58 +02002729 memset(id, 0, sizeof(*id));
Herbert Xu0603eac2005-06-18 22:54:36 -07002730 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2731 id->spi = x->id.spi;
2732 id->family = x->props.family;
2733 id->proto = x->id.proto;
2734
Thomas Grafc0144be2007-08-22 13:55:43 -07002735 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002736 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002737 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002738 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002739
2740 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002741 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002742 err = copy_to_user_state_extra(x, p, skb);
2743 if (err)
2744 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002745
Thomas Graf98250692007-08-22 12:47:26 -07002746 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002747
Michal Kubecek21ee5432014-06-03 10:26:06 +02002748 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002749
David S. Miller1d1e34d2012-06-27 21:57:03 -07002750out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002751 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002752 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002753}
2754
David S. Miller214e0052011-02-24 00:02:38 -05002755static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002756{
2757
2758 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002759 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002760 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002761 case XFRM_MSG_NEWAE:
2762 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002763 case XFRM_MSG_DELSA:
2764 case XFRM_MSG_UPDSA:
2765 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002766 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002767 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002768 return xfrm_notify_sa_flush(c);
2769 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002770 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2771 c->event);
2772 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002773 }
2774
2775 return 0;
2776
2777}
2778
Thomas Graf7deb2262007-08-22 13:57:39 -07002779static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2780 struct xfrm_policy *xp)
2781{
2782 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2783 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002784 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002785 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2786 + userpolicy_type_attrsize();
2787}
2788
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002790 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002792 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 struct xfrm_user_acquire *ua;
2794 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002795 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002797 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2798 if (nlh == NULL)
2799 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
Thomas Graf7b67c852007-08-22 13:53:52 -07002801 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 memcpy(&ua->id, &x->id, sizeof(ua->id));
2803 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2804 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002805 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 ua->aalgos = xt->aalgos;
2807 ua->ealgos = xt->ealgos;
2808 ua->calgos = xt->calgos;
2809 ua->seq = x->km.seq = seq;
2810
David S. Miller1d1e34d2012-06-27 21:57:03 -07002811 err = copy_to_user_tmpl(xp, skb);
2812 if (!err)
2813 err = copy_to_user_state_sec_ctx(x, skb);
2814 if (!err)
2815 err = copy_to_user_policy_type(xp->type, skb);
2816 if (!err)
2817 err = xfrm_mark_put(skb, &xp->mark);
2818 if (err) {
2819 nlmsg_cancel(skb, nlh);
2820 return err;
2821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
Johannes Berg053c0952015-01-16 22:09:00 +01002823 nlmsg_end(skb, nlh);
2824 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825}
2826
2827static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002828 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002830 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
Thomas Graf7deb2262007-08-22 13:57:39 -07002833 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 if (skb == NULL)
2835 return -ENOMEM;
2836
Fan Du65e07362012-08-15 10:13:47 +08002837 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 BUG();
2839
Michal Kubecek21ee5432014-06-03 10:26:06 +02002840 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841}
2842
2843/* User gives us xfrm_user_policy_info followed by an array of 0
2844 * or more templates.
2845 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002846static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 u8 *data, int len, int *dir)
2848{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002849 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2851 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2852 struct xfrm_policy *xp;
2853 int nr;
2854
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002855 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 case AF_INET:
2857 if (opt != IP_XFRM_POLICY) {
2858 *dir = -EOPNOTSUPP;
2859 return NULL;
2860 }
2861 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002862#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 case AF_INET6:
2864 if (opt != IPV6_XFRM_POLICY) {
2865 *dir = -EOPNOTSUPP;
2866 return NULL;
2867 }
2868 break;
2869#endif
2870 default:
2871 *dir = -EINVAL;
2872 return NULL;
2873 }
2874
2875 *dir = -EINVAL;
2876
2877 if (len < sizeof(*p) ||
2878 verify_newpolicy_info(p))
2879 return NULL;
2880
2881 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002882 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 return NULL;
2884
Herbert Xua4f1bac2005-07-26 15:43:17 -07002885 if (p->dir > XFRM_POLICY_OUT)
2886 return NULL;
2887
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002888 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 if (xp == NULL) {
2890 *dir = -ENOBUFS;
2891 return NULL;
2892 }
2893
2894 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002895 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 copy_templates(xp, ut, nr);
2897
2898 *dir = p->dir;
2899
2900 return xp;
2901}
2902
Thomas Graf7deb2262007-08-22 13:57:39 -07002903static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2904{
2905 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2906 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2907 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002908 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002909 + userpolicy_type_attrsize();
2910}
2911
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002913 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914{
2915 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002916 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002917 struct nlmsghdr *nlh;
2918 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
Eric W. Biederman15e47302012-09-07 20:12:54 +00002920 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002921 if (nlh == NULL)
2922 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
Thomas Graf7b67c852007-08-22 13:53:52 -07002924 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002926 err = copy_to_user_tmpl(xp, skb);
2927 if (!err)
2928 err = copy_to_user_sec_ctx(xp, skb);
2929 if (!err)
2930 err = copy_to_user_policy_type(xp->type, skb);
2931 if (!err)
2932 err = xfrm_mark_put(skb, &xp->mark);
2933 if (err) {
2934 nlmsg_cancel(skb, nlh);
2935 return err;
2936 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 upe->hard = !!hard;
2938
Johannes Berg053c0952015-01-16 22:09:00 +01002939 nlmsg_end(skb, nlh);
2940 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941}
2942
David S. Miller214e0052011-02-24 00:02:38 -05002943static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002945 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
Thomas Graf7deb2262007-08-22 13:57:39 -07002948 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 if (skb == NULL)
2950 return -ENOMEM;
2951
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002952 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 BUG();
2954
Michal Kubecek21ee5432014-06-03 10:26:06 +02002955 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956}
2957
David S. Miller214e0052011-02-24 00:02:38 -05002958static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002959{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002960 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002961 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002962 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002963 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002964 struct nlmsghdr *nlh;
2965 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002966 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002967
2968 headlen = sizeof(*p);
2969 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002970 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002971 headlen = sizeof(*id);
2972 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002973 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002974 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002975 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002976
Thomas Graf7deb2262007-08-22 13:57:39 -07002977 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002978 if (skb == NULL)
2979 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002980
Eric W. Biederman15e47302012-09-07 20:12:54 +00002981 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002982 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002983 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002984 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002985
Thomas Graf7b67c852007-08-22 13:53:52 -07002986 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002987 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002988 struct nlattr *attr;
2989
Thomas Graf7b67c852007-08-22 13:53:52 -07002990 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002991 memset(id, 0, sizeof(*id));
2992 id->dir = dir;
2993 if (c->data.byid)
2994 id->index = xp->index;
2995 else
2996 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2997
Thomas Grafc0144be2007-08-22 13:55:43 -07002998 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002999 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07003000 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003001 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07003002
3003 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07003004 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003005
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003006 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003007 err = copy_to_user_tmpl(xp, skb);
3008 if (!err)
3009 err = copy_to_user_policy_type(xp->type, skb);
3010 if (!err)
3011 err = xfrm_mark_put(skb, &xp->mark);
3012 if (err)
3013 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003014
Thomas Graf98250692007-08-22 12:47:26 -07003015 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003016
Michal Kubecek21ee5432014-06-03 10:26:06 +02003017 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003018
David S. Miller1d1e34d2012-06-27 21:57:03 -07003019out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003020 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003021 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003022}
3023
David S. Miller214e0052011-02-24 00:02:38 -05003024static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003025{
Alexey Dobriyan70678022008-11-25 17:50:36 -08003026 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003027 struct nlmsghdr *nlh;
3028 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003029 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003030
Thomas Graf7deb2262007-08-22 13:57:39 -07003031 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003032 if (skb == NULL)
3033 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003034
Eric W. Biederman15e47302012-09-07 20:12:54 +00003035 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003036 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003037 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003038 goto out_free_skb;
3039 err = copy_to_user_policy_type(c->data.type, skb);
3040 if (err)
3041 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003042
Thomas Graf98250692007-08-22 12:47:26 -07003043 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003044
Michal Kubecek21ee5432014-06-03 10:26:06 +02003045 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003046
David S. Miller1d1e34d2012-06-27 21:57:03 -07003047out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003048 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003049 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003050}
3051
David S. Miller214e0052011-02-24 00:02:38 -05003052static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003053{
3054
3055 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003056 case XFRM_MSG_NEWPOLICY:
3057 case XFRM_MSG_UPDPOLICY:
3058 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003059 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003060 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003061 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003062 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003063 return xfrm_exp_policy_notify(xp, dir, c);
3064 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003065 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3066 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003067 }
3068
3069 return 0;
3070
3071}
3072
Thomas Graf7deb2262007-08-22 13:57:39 -07003073static inline size_t xfrm_report_msgsize(void)
3074{
3075 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3076}
3077
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003078static int build_report(struct sk_buff *skb, u8 proto,
3079 struct xfrm_selector *sel, xfrm_address_t *addr)
3080{
3081 struct xfrm_user_report *ur;
3082 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003083
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003084 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3085 if (nlh == NULL)
3086 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003087
Thomas Graf7b67c852007-08-22 13:53:52 -07003088 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003089 ur->proto = proto;
3090 memcpy(&ur->sel, sel, sizeof(ur->sel));
3091
David S. Miller1d1e34d2012-06-27 21:57:03 -07003092 if (addr) {
3093 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3094 if (err) {
3095 nlmsg_cancel(skb, nlh);
3096 return err;
3097 }
3098 }
Johannes Berg053c0952015-01-16 22:09:00 +01003099 nlmsg_end(skb, nlh);
3100 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003101}
3102
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003103static int xfrm_send_report(struct net *net, u8 proto,
3104 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003105{
3106 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003107
Thomas Graf7deb2262007-08-22 13:57:39 -07003108 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003109 if (skb == NULL)
3110 return -ENOMEM;
3111
3112 if (build_report(skb, proto, sel, addr) < 0)
3113 BUG();
3114
Michal Kubecek21ee5432014-06-03 10:26:06 +02003115 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003116}
3117
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003118static inline size_t xfrm_mapping_msgsize(void)
3119{
3120 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3121}
3122
3123static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3124 xfrm_address_t *new_saddr, __be16 new_sport)
3125{
3126 struct xfrm_user_mapping *um;
3127 struct nlmsghdr *nlh;
3128
3129 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3130 if (nlh == NULL)
3131 return -EMSGSIZE;
3132
3133 um = nlmsg_data(nlh);
3134
3135 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3136 um->id.spi = x->id.spi;
3137 um->id.family = x->props.family;
3138 um->id.proto = x->id.proto;
3139 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3140 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3141 um->new_sport = new_sport;
3142 um->old_sport = x->encap->encap_sport;
3143 um->reqid = x->props.reqid;
3144
Johannes Berg053c0952015-01-16 22:09:00 +01003145 nlmsg_end(skb, nlh);
3146 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003147}
3148
3149static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3150 __be16 sport)
3151{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003152 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003153 struct sk_buff *skb;
3154
3155 if (x->id.proto != IPPROTO_ESP)
3156 return -EINVAL;
3157
3158 if (!x->encap)
3159 return -EINVAL;
3160
3161 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3162 if (skb == NULL)
3163 return -ENOMEM;
3164
3165 if (build_mapping(skb, x, ipaddr, sport) < 0)
3166 BUG();
3167
Michal Kubecek21ee5432014-06-03 10:26:06 +02003168 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003169}
3170
Horia Geanta0f245582014-02-12 16:20:06 +02003171static bool xfrm_is_alive(const struct km_event *c)
3172{
3173 return (bool)xfrm_acquire_is_on(c->net);
3174}
3175
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176static struct xfrm_mgr netlink_mgr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 .notify = xfrm_send_state_notify,
3178 .acquire = xfrm_send_acquire,
3179 .compile_policy = xfrm_compile_policy,
3180 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003181 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003182 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003183 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003184 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185};
3186
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003187static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188{
Patrick McHardybe336902006-03-20 22:40:54 -08003189 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003190 struct netlink_kernel_cfg cfg = {
3191 .groups = XFRMNLGRP_MAX,
3192 .input = xfrm_netlink_rcv,
3193 };
Patrick McHardybe336902006-03-20 22:40:54 -08003194
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003195 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003196 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003198 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003199 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 return 0;
3201}
3202
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003203static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003204{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003205 struct net *net;
3206 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003207 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003208 synchronize_net();
3209 list_for_each_entry(net, net_exit_list, exit_list)
3210 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003211}
3212
3213static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003214 .init = xfrm_user_net_init,
3215 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003216};
3217
3218static int __init xfrm_user_init(void)
3219{
3220 int rv;
3221
3222 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3223
3224 rv = register_pernet_subsys(&xfrm_user_net_ops);
3225 if (rv < 0)
3226 return rv;
3227 rv = xfrm_register_km(&netlink_mgr);
3228 if (rv < 0)
3229 unregister_pernet_subsys(&xfrm_user_net_ops);
3230 return rv;
3231}
3232
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233static void __exit xfrm_user_exit(void)
3234{
3235 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003236 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237}
3238
3239module_init(xfrm_user_init);
3240module_exit(xfrm_user_exit);
3241MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003242MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003243