blob: 38614df33ec8d5751bd88a48d0068926b9032556 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* xfrm_user.c: User interface to configure xfrm engine.
2 *
3 * Copyright (C) 2002 David S. Miller (davem@redhat.com)
4 *
5 * Changes:
6 * Mitsuru KANDA @USAGI
7 * Kazunori MIYAZAWA @USAGI
8 * Kunihiro Ishiguro <kunihiro@ipinfusion.com>
9 * IPv6 support
Trent Jaegerdf718372005-12-13 23:12:27 -080010 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 */
12
Herbert Xu9409f382006-08-06 19:49:12 +100013#include <linux/crypto.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/module.h>
15#include <linux/kernel.h>
16#include <linux/types.h>
17#include <linux/slab.h>
18#include <linux/socket.h>
19#include <linux/string.h>
20#include <linux/net.h>
21#include <linux/skbuff.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/pfkeyv2.h>
23#include <linux/ipsec.h>
24#include <linux/init.h>
25#include <linux/security.h>
26#include <net/sock.h>
27#include <net/xfrm.h>
Thomas Graf88fc2c82005-11-10 02:25:54 +010028#include <net/netlink.h>
Nicolas Dichtelfa6dd8a2011-01-11 08:04:12 +000029#include <net/ah.h>
Linus Torvalds7c0f6ba2016-12-24 11:46:01 -080030#include <linux/uaccess.h>
Eric Dumazetdfd56b82011-12-10 09:48:31 +000031#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -070032#include <linux/in6.h>
33#endif
Sowmini Varadhane33d4f12015-10-21 11:48:25 -040034#include <asm/unaligned.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Thomas Graf5424f322007-08-22 14:01:33 -070036static int verify_one_alg(struct nlattr **attrs, enum xfrm_attr_type_t type)
Linus Torvalds1da177e2005-04-16 15:20:36 -070037{
Thomas Graf5424f322007-08-22 14:01:33 -070038 struct nlattr *rt = attrs[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -070039 struct xfrm_algo *algp;
40
41 if (!rt)
42 return 0;
43
Thomas Graf5424f322007-08-22 14:01:33 -070044 algp = nla_data(rt);
Eric Dumazet0f99be02008-01-08 23:39:06 -080045 if (nla_len(rt) < xfrm_alg_len(algp))
Herbert Xu31c26852005-05-19 12:39:49 -070046 return -EINVAL;
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 switch (type) {
49 case XFRMA_ALG_AUTH:
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 case XFRMA_ALG_CRYPT:
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 case XFRMA_ALG_COMP:
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 break;
53
54 default:
55 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Herbert Xu633439f2017-04-06 16:16:10 +080058 algp->alg_name[sizeof(algp->alg_name) - 1] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 return 0;
60}
61
Martin Willi4447bb32009-11-25 00:29:52 +000062static int verify_auth_trunc(struct nlattr **attrs)
63{
64 struct nlattr *rt = attrs[XFRMA_ALG_AUTH_TRUNC];
65 struct xfrm_algo_auth *algp;
66
67 if (!rt)
68 return 0;
69
70 algp = nla_data(rt);
71 if (nla_len(rt) < xfrm_alg_auth_len(algp))
72 return -EINVAL;
73
Herbert Xu633439f2017-04-06 16:16:10 +080074 algp->alg_name[sizeof(algp->alg_name) - 1] = '\0';
Martin Willi4447bb32009-11-25 00:29:52 +000075 return 0;
76}
77
Herbert Xu1a6509d2008-01-28 19:37:29 -080078static int verify_aead(struct nlattr **attrs)
79{
80 struct nlattr *rt = attrs[XFRMA_ALG_AEAD];
81 struct xfrm_algo_aead *algp;
82
83 if (!rt)
84 return 0;
85
86 algp = nla_data(rt);
87 if (nla_len(rt) < aead_len(algp))
88 return -EINVAL;
89
Herbert Xu633439f2017-04-06 16:16:10 +080090 algp->alg_name[sizeof(algp->alg_name) - 1] = '\0';
Herbert Xu1a6509d2008-01-28 19:37:29 -080091 return 0;
92}
93
Thomas Graf5424f322007-08-22 14:01:33 -070094static void verify_one_addr(struct nlattr **attrs, enum xfrm_attr_type_t type,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070095 xfrm_address_t **addrp)
96{
Thomas Graf5424f322007-08-22 14:01:33 -070097 struct nlattr *rt = attrs[type];
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -070098
Thomas Grafcf5cb792007-08-22 13:59:04 -070099 if (rt && addrp)
Thomas Graf5424f322007-08-22 14:01:33 -0700100 *addrp = nla_data(rt);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700101}
Trent Jaegerdf718372005-12-13 23:12:27 -0800102
Thomas Graf5424f322007-08-22 14:01:33 -0700103static inline int verify_sec_ctx_len(struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -0800104{
Thomas Graf5424f322007-08-22 14:01:33 -0700105 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -0800106 struct xfrm_user_sec_ctx *uctx;
Trent Jaegerdf718372005-12-13 23:12:27 -0800107
108 if (!rt)
109 return 0;
110
Thomas Graf5424f322007-08-22 14:01:33 -0700111 uctx = nla_data(rt);
Thomas Grafcf5cb792007-08-22 13:59:04 -0700112 if (uctx->len != (sizeof(struct xfrm_user_sec_ctx) + uctx->ctx_len))
Trent Jaegerdf718372005-12-13 23:12:27 -0800113 return -EINVAL;
114
115 return 0;
116}
117
Steffen Klassertd8647b72011-03-08 00:10:27 +0000118static inline int verify_replay(struct xfrm_usersa_info *p,
119 struct nlattr **attrs)
120{
121 struct nlattr *rt = attrs[XFRMA_REPLAY_ESN_VAL];
Mathias Krauseecd79182012-09-20 10:01:49 +0000122 struct xfrm_replay_state_esn *rs;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000123
Mathias Krauseecd79182012-09-20 10:01:49 +0000124 if (p->flags & XFRM_STATE_ESN) {
125 if (!rt)
126 return -EINVAL;
127
128 rs = nla_data(rt);
129
130 if (rs->bmp_len > XFRMA_REPLAY_ESN_MAX / sizeof(rs->bmp[0]) / 8)
131 return -EINVAL;
132
133 if (nla_len(rt) < xfrm_replay_state_esn_len(rs) &&
134 nla_len(rt) != sizeof(*rs))
135 return -EINVAL;
136 }
Steffen Klassert7833aa02011-04-25 19:41:21 +0000137
Steffen Klassertd8647b72011-03-08 00:10:27 +0000138 if (!rt)
139 return 0;
140
Fan Du01714102014-01-18 09:54:28 +0800141 /* As only ESP and AH support ESN feature. */
142 if ((p->id.proto != IPPROTO_ESP) && (p->id.proto != IPPROTO_AH))
Steffen Klassert02aadf72011-03-28 19:48:09 +0000143 return -EINVAL;
144
Steffen Klassertd8647b72011-03-08 00:10:27 +0000145 if (p->replay_window != 0)
146 return -EINVAL;
147
148 return 0;
149}
Trent Jaegerdf718372005-12-13 23:12:27 -0800150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151static int verify_newsa_info(struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700152 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153{
154 int err;
155
156 err = -EINVAL;
157 switch (p->family) {
158 case AF_INET:
159 break;
160
161 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000162#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 break;
164#else
165 err = -EAFNOSUPPORT;
166 goto out;
167#endif
168
169 default:
170 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700171 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
173 err = -EINVAL;
174 switch (p->id.proto) {
175 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000176 if ((!attrs[XFRMA_ALG_AUTH] &&
177 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800178 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700179 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000180 attrs[XFRMA_ALG_COMP] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200181 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 goto out;
183 break;
184
185 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800186 if (attrs[XFRMA_ALG_COMP])
187 goto out;
188 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000189 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800190 !attrs[XFRMA_ALG_CRYPT] &&
191 !attrs[XFRMA_ALG_AEAD])
192 goto out;
193 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000194 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800195 attrs[XFRMA_ALG_CRYPT]) &&
196 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000198 if (attrs[XFRMA_TFCPAD] &&
199 p->mode != XFRM_MODE_TUNNEL)
200 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 break;
202
203 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700204 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800205 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700206 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000207 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000208 attrs[XFRMA_ALG_CRYPT] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200209 attrs[XFRMA_TFCPAD] ||
210 (ntohl(p->id.spi) >= 0x10000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 goto out;
212 break;
213
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000214#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700215 case IPPROTO_DSTOPTS:
216 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700217 if (attrs[XFRMA_ALG_COMP] ||
218 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000219 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800220 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700221 attrs[XFRMA_ALG_CRYPT] ||
222 attrs[XFRMA_ENCAP] ||
223 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000224 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700225 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700226 goto out;
227 break;
228#endif
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 default:
231 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
Herbert Xu1a6509d2008-01-28 19:37:29 -0800234 if ((err = verify_aead(attrs)))
235 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000236 if ((err = verify_auth_trunc(attrs)))
237 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700238 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700240 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700242 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700244 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800245 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000246 if ((err = verify_replay(p, attrs)))
247 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
249 err = -EINVAL;
250 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700251 case XFRM_MODE_TRANSPORT:
252 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700253 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a694522006-10-03 23:47:05 -0700254 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 break;
256
257 default:
258 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261 err = 0;
262
263out:
264 return err;
265}
266
267static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800268 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700269 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 struct xfrm_algo *p, *ualg;
272 struct xfrm_algo_desc *algo;
273
274 if (!rta)
275 return 0;
276
Thomas Graf5424f322007-08-22 14:01:33 -0700277 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 algo = get_byname(ualg->alg_name, 1);
280 if (!algo)
281 return -ENOSYS;
282 *props = algo->desc.sadb_alg_id;
283
Eric Dumazet0f99be02008-01-08 23:39:06 -0800284 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (!p)
286 return -ENOMEM;
287
Herbert Xu04ff1262006-08-13 08:50:00 +1000288 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 *algpp = p;
290 return 0;
291}
292
Herbert Xu69b01372015-05-27 16:03:45 +0800293static int attach_crypt(struct xfrm_state *x, struct nlattr *rta)
294{
295 struct xfrm_algo *p, *ualg;
296 struct xfrm_algo_desc *algo;
297
298 if (!rta)
299 return 0;
300
301 ualg = nla_data(rta);
302
303 algo = xfrm_ealg_get_byname(ualg->alg_name, 1);
304 if (!algo)
305 return -ENOSYS;
306 x->props.ealgo = algo->desc.sadb_alg_id;
307
308 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
309 if (!p)
310 return -ENOMEM;
311
312 strcpy(p->alg_name, algo->name);
313 x->ealg = p;
314 x->geniv = algo->uinfo.encr.geniv;
315 return 0;
316}
317
Martin Willi4447bb32009-11-25 00:29:52 +0000318static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
319 struct nlattr *rta)
320{
321 struct xfrm_algo *ualg;
322 struct xfrm_algo_auth *p;
323 struct xfrm_algo_desc *algo;
324
325 if (!rta)
326 return 0;
327
328 ualg = nla_data(rta);
329
330 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
331 if (!algo)
332 return -ENOSYS;
333 *props = algo->desc.sadb_alg_id;
334
335 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
336 if (!p)
337 return -ENOMEM;
338
339 strcpy(p->alg_name, algo->name);
340 p->alg_key_len = ualg->alg_key_len;
341 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
342 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
343
344 *algpp = p;
345 return 0;
346}
347
348static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
349 struct nlattr *rta)
350{
351 struct xfrm_algo_auth *p, *ualg;
352 struct xfrm_algo_desc *algo;
353
354 if (!rta)
355 return 0;
356
357 ualg = nla_data(rta);
358
359 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
360 if (!algo)
361 return -ENOSYS;
Herbert Xu689f1c92014-09-18 16:38:18 +0800362 if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000363 return -EINVAL;
364 *props = algo->desc.sadb_alg_id;
365
366 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
367 if (!p)
368 return -ENOMEM;
369
370 strcpy(p->alg_name, algo->name);
371 if (!p->alg_trunc_len)
372 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
373
374 *algpp = p;
375 return 0;
376}
377
Herbert Xu69b01372015-05-27 16:03:45 +0800378static int attach_aead(struct xfrm_state *x, struct nlattr *rta)
Herbert Xu1a6509d2008-01-28 19:37:29 -0800379{
380 struct xfrm_algo_aead *p, *ualg;
381 struct xfrm_algo_desc *algo;
382
383 if (!rta)
384 return 0;
385
386 ualg = nla_data(rta);
387
388 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
389 if (!algo)
390 return -ENOSYS;
Herbert Xu69b01372015-05-27 16:03:45 +0800391 x->props.ealgo = algo->desc.sadb_alg_id;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800392
393 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
394 if (!p)
395 return -ENOMEM;
396
397 strcpy(p->alg_name, algo->name);
Herbert Xu69b01372015-05-27 16:03:45 +0800398 x->aead = p;
399 x->geniv = algo->uinfo.aead.geniv;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800400 return 0;
401}
402
Steffen Klasserte2b19122011-03-28 19:47:30 +0000403static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
404 struct nlattr *rp)
405{
406 struct xfrm_replay_state_esn *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000407 int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000408
409 if (!replay_esn || !rp)
410 return 0;
411
412 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000413 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000414
Andy Whitcroftf843ee62017-03-23 07:45:44 +0000415 /* Check the overall length and the internal bitmap length to avoid
416 * potential overflow. */
417 if (nla_len(rp) < ulen ||
418 xfrm_replay_state_esn_len(replay_esn) != ulen ||
419 replay_esn->bmp_len != up->bmp_len)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000420 return -EINVAL;
421
Andy Whitcroft677e8062017-03-22 07:29:31 +0000422 if (up->replay_window > up->bmp_len * sizeof(__u32) * 8)
423 return -EINVAL;
424
Steffen Klasserte2b19122011-03-28 19:47:30 +0000425 return 0;
426}
427
Steffen Klassertd8647b72011-03-08 00:10:27 +0000428static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
429 struct xfrm_replay_state_esn **preplay_esn,
430 struct nlattr *rta)
431{
432 struct xfrm_replay_state_esn *p, *pp, *up;
Mathias Krauseecd79182012-09-20 10:01:49 +0000433 int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000434
435 if (!rta)
436 return 0;
437
438 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000439 klen = xfrm_replay_state_esn_len(up);
440 ulen = nla_len(rta) >= klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000441
Mathias Krauseecd79182012-09-20 10:01:49 +0000442 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000443 if (!p)
444 return -ENOMEM;
445
Mathias Krauseecd79182012-09-20 10:01:49 +0000446 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000447 if (!pp) {
448 kfree(p);
449 return -ENOMEM;
450 }
451
Mathias Krauseecd79182012-09-20 10:01:49 +0000452 memcpy(p, up, ulen);
453 memcpy(pp, up, ulen);
454
Steffen Klassertd8647b72011-03-08 00:10:27 +0000455 *replay_esn = p;
456 *preplay_esn = pp;
457
458 return 0;
459}
460
Joy Latten661697f2007-04-13 16:14:35 -0700461static inline int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800462{
Trent Jaegerdf718372005-12-13 23:12:27 -0800463 int len = 0;
464
465 if (xfrm_ctx) {
466 len += sizeof(struct xfrm_user_sec_ctx);
467 len += xfrm_ctx->ctx_len;
468 }
469 return len;
470}
471
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
473{
474 memcpy(&x->id, &p->id, sizeof(x->id));
475 memcpy(&x->sel, &p->sel, sizeof(x->sel));
476 memcpy(&x->lft, &p->lft, sizeof(x->lft));
477 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800478 x->props.replay_window = min_t(unsigned int, p->replay_window,
479 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 x->props.reqid = p->reqid;
481 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700482 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700484
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700485 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700486 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800489/*
490 * someday when pfkey also has support, we could have the code
491 * somehow made shareable and move it to xfrm_state.c - JHS
492 *
493*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000494static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
495 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800496{
Thomas Graf5424f322007-08-22 14:01:33 -0700497 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000498 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700499 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
500 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
501 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800502
Steffen Klassertd8647b72011-03-08 00:10:27 +0000503 if (re) {
504 struct xfrm_replay_state_esn *replay_esn;
505 replay_esn = nla_data(re);
506 memcpy(x->replay_esn, replay_esn,
507 xfrm_replay_state_esn_len(replay_esn));
508 memcpy(x->preplay_esn, replay_esn,
509 xfrm_replay_state_esn_len(replay_esn));
510 }
511
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800512 if (rp) {
513 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700514 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800515 memcpy(&x->replay, replay, sizeof(*replay));
516 memcpy(&x->preplay, replay, sizeof(*replay));
517 }
518
519 if (lt) {
520 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700521 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800522 x->curlft.bytes = ltime->bytes;
523 x->curlft.packets = ltime->packets;
524 x->curlft.add_time = ltime->add_time;
525 x->curlft.use_time = ltime->use_time;
526 }
527
Thomas Grafcf5cb792007-08-22 13:59:04 -0700528 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700529 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800530
Thomas Grafcf5cb792007-08-22 13:59:04 -0700531 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700532 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800533}
534
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800535static struct xfrm_state *xfrm_state_construct(struct net *net,
536 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700537 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 int *errp)
539{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800540 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 int err = -ENOMEM;
542
543 if (!x)
544 goto error_no_put;
545
546 copy_from_user_state(x, p);
547
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100548 if (attrs[XFRMA_SA_EXTRA_FLAGS])
549 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
550
Herbert Xu69b01372015-05-27 16:03:45 +0800551 if ((err = attach_aead(x, attrs[XFRMA_ALG_AEAD])))
Herbert Xu1a6509d2008-01-28 19:37:29 -0800552 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000553 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
554 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000556 if (!x->props.aalgo) {
557 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
558 attrs[XFRMA_ALG_AUTH])))
559 goto error;
560 }
Herbert Xu69b01372015-05-27 16:03:45 +0800561 if ((err = attach_crypt(x, attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 goto error;
563 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
564 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700565 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700567
568 if (attrs[XFRMA_ENCAP]) {
569 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
570 sizeof(*x->encap), GFP_KERNEL);
571 if (x->encap == NULL)
572 goto error;
573 }
574
Martin Willi35d28562010-12-08 04:37:49 +0000575 if (attrs[XFRMA_TFCPAD])
576 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
577
Thomas Graffd211502007-09-06 03:28:08 -0700578 if (attrs[XFRMA_COADDR]) {
579 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
580 sizeof(*x->coaddr), GFP_KERNEL);
581 if (x->coaddr == NULL)
582 goto error;
583 }
584
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000585 xfrm_mark_get(attrs, &x->mark);
586
Wei Yongjuna454f0c2011-03-21 18:08:28 -0700587 err = __xfrm_init_state(x, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 if (err)
589 goto error;
590
Mathias Krause2f30ea52016-09-08 18:09:57 +0200591 if (attrs[XFRMA_SEC_CTX]) {
592 err = security_xfrm_state_alloc(x,
593 nla_data(attrs[XFRMA_SEC_CTX]));
594 if (err)
595 goto error;
596 }
Trent Jaegerdf718372005-12-13 23:12:27 -0800597
Ilan Tayari152afb92017-04-30 16:51:19 +0300598 if (attrs[XFRMA_OFFLOAD_DEV]) {
599 err = xfrm_dev_state_add(net, x,
600 nla_data(attrs[XFRMA_OFFLOAD_DEV]));
601 if (err)
602 goto error;
603 }
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200604
Steffen Klassertd8647b72011-03-08 00:10:27 +0000605 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
606 attrs[XFRMA_REPLAY_ESN_VAL])))
607 goto error;
608
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800610 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800611 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800612 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800613
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000614 if ((err = xfrm_init_replay(x)))
615 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800616
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000617 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000618 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619
620 return x;
621
622error:
623 x->km.state = XFRM_STATE_DEAD;
624 xfrm_state_put(x);
625error_no_put:
626 *errp = err;
627 return NULL;
628}
629
Christoph Hellwig22e70052007-01-02 15:22:30 -0800630static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700631 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800633 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700634 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 struct xfrm_state *x;
636 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700637 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Thomas Graf35a7aa02007-08-22 14:00:40 -0700639 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 if (err)
641 return err;
642
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800643 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 if (!x)
645 return err;
646
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700647 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
649 err = xfrm_state_add(x);
650 else
651 err = xfrm_state_update(x);
652
Tetsuo Handa2e710292014-04-22 21:48:30 +0900653 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600654
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 if (err < 0) {
656 x->km.state = XFRM_STATE_DEAD;
Herbert Xu21380b82006-02-22 14:47:13 -0800657 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700658 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 }
660
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700661 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000662 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700663 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700664
665 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700666out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700667 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return err;
669}
670
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800671static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
672 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700673 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700674 int *errp)
675{
676 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000677 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700678 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000679 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700680
681 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
682 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000683 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700684 } else {
685 xfrm_address_t *saddr = NULL;
686
Thomas Graf35a7aa02007-08-22 14:00:40 -0700687 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700688 if (!saddr) {
689 err = -EINVAL;
690 goto out;
691 }
692
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800693 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000694 x = xfrm_state_lookup_byaddr(net, mark,
695 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800696 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700697 }
698
699 out:
700 if (!x && errp)
701 *errp = err;
702 return x;
703}
704
Christoph Hellwig22e70052007-01-02 15:22:30 -0800705static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700706 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800708 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700710 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700711 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700712 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800714 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700716 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
David S. Miller6f68dc32006-06-08 23:58:52 -0700718 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700719 goto out;
720
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700722 err = -EPERM;
723 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 }
725
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700726 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600727
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700728 if (err < 0)
729 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700730
731 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000732 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700733 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700734 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700736out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900737 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700738 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700739 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
742static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
743{
Mathias Krausef778a632012-09-19 11:33:39 +0000744 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 memcpy(&p->id, &x->id, sizeof(p->id));
746 memcpy(&p->sel, &x->sel, sizeof(p->sel));
747 memcpy(&p->lft, &x->lft, sizeof(p->lft));
748 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
Sowmini Varadhane33d4f12015-10-21 11:48:25 -0400749 put_unaligned(x->stats.replay_window, &p->stats.replay_window);
750 put_unaligned(x->stats.replay, &p->stats.replay);
751 put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
David S. Miller54489c142006-10-27 15:29:47 -0700752 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 p->mode = x->props.mode;
754 p->replay_window = x->props.replay_window;
755 p->reqid = x->props.reqid;
756 p->family = x->props.family;
757 p->flags = x->props.flags;
758 p->seq = x->km.seq;
759}
760
761struct xfrm_dump_info {
762 struct sk_buff *in_skb;
763 struct sk_buff *out_skb;
764 u32 nlmsg_seq;
765 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766};
767
Thomas Grafc0144be2007-08-22 13:55:43 -0700768static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
769{
Thomas Grafc0144be2007-08-22 13:55:43 -0700770 struct xfrm_user_sec_ctx *uctx;
771 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700772 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700773
774 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
775 if (attr == NULL)
776 return -EMSGSIZE;
777
778 uctx = nla_data(attr);
779 uctx->exttype = XFRMA_SEC_CTX;
780 uctx->len = ctx_size;
781 uctx->ctx_doi = s->ctx_doi;
782 uctx->ctx_alg = s->ctx_alg;
783 uctx->ctx_len = s->ctx_len;
784 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
785
786 return 0;
787}
788
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200789static int copy_user_offload(struct xfrm_state_offload *xso, struct sk_buff *skb)
790{
791 struct xfrm_user_offload *xuo;
792 struct nlattr *attr;
793
794 attr = nla_reserve(skb, XFRMA_OFFLOAD_DEV, sizeof(*xuo));
795 if (attr == NULL)
796 return -EMSGSIZE;
797
798 xuo = nla_data(attr);
799
800 xuo->ifindex = xso->dev->ifindex;
801 xuo->flags = xso->flags;
802
803 return 0;
804}
805
Martin Willi4447bb32009-11-25 00:29:52 +0000806static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
807{
808 struct xfrm_algo *algo;
809 struct nlattr *nla;
810
811 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
812 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
813 if (!nla)
814 return -EMSGSIZE;
815
816 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000817 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000818 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
819 algo->alg_key_len = auth->alg_key_len;
820
821 return 0;
822}
823
Herbert Xu68325d32007-10-09 13:30:57 -0700824/* Don't change this without updating xfrm_sa_len! */
825static int copy_to_user_state_extra(struct xfrm_state *x,
826 struct xfrm_usersa_info *p,
827 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700829 int ret = 0;
830
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 copy_to_user_state(x, p);
832
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100833 if (x->props.extra_flags) {
834 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
835 x->props.extra_flags);
836 if (ret)
837 goto out;
838 }
839
David S. Miller1d1e34d2012-06-27 21:57:03 -0700840 if (x->coaddr) {
841 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
842 if (ret)
843 goto out;
844 }
845 if (x->lastused) {
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +0200846 ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused,
847 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700848 if (ret)
849 goto out;
850 }
851 if (x->aead) {
852 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
853 if (ret)
854 goto out;
855 }
856 if (x->aalg) {
857 ret = copy_to_user_auth(x->aalg, skb);
858 if (!ret)
859 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
860 xfrm_alg_auth_len(x->aalg), x->aalg);
861 if (ret)
862 goto out;
863 }
864 if (x->ealg) {
865 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
866 if (ret)
867 goto out;
868 }
869 if (x->calg) {
870 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
871 if (ret)
872 goto out;
873 }
874 if (x->encap) {
875 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
876 if (ret)
877 goto out;
878 }
879 if (x->tfcpad) {
880 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
881 if (ret)
882 goto out;
883 }
884 ret = xfrm_mark_put(skb, &x->mark);
885 if (ret)
886 goto out;
dingzhif293a5e2014-10-30 09:39:36 +0100887 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700888 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
889 xfrm_replay_state_esn_len(x->replay_esn),
890 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100891 else
892 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
893 &x->replay);
894 if (ret)
895 goto out;
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200896 if(x->xso.dev)
897 ret = copy_user_offload(&x->xso, skb);
898 if (ret)
899 goto out;
David S. Miller1d1e34d2012-06-27 21:57:03 -0700900 if (x->security)
901 ret = copy_sec_ctx(x->security, skb);
902out:
903 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700904}
905
906static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
907{
908 struct xfrm_dump_info *sp = ptr;
909 struct sk_buff *in_skb = sp->in_skb;
910 struct sk_buff *skb = sp->out_skb;
911 struct xfrm_usersa_info *p;
912 struct nlmsghdr *nlh;
913 int err;
914
Eric W. Biederman15e47302012-09-07 20:12:54 +0000915 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700916 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
917 if (nlh == NULL)
918 return -EMSGSIZE;
919
920 p = nlmsg_data(nlh);
921
922 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700923 if (err) {
924 nlmsg_cancel(skb, nlh);
925 return err;
926 }
Thomas Graf98250692007-08-22 12:47:26 -0700927 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929}
930
Timo Teras4c563f72008-02-28 21:31:08 -0800931static int xfrm_dump_sa_done(struct netlink_callback *cb)
932{
933 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800934 struct sock *sk = cb->skb->sk;
935 struct net *net = sock_net(sk);
936
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200937 if (cb->args[0])
938 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800939 return 0;
940}
941
Nicolas Dichteld3623092014-02-14 15:30:36 +0100942static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
944{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800945 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800946 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 struct xfrm_dump_info info;
948
Timo Teras4c563f72008-02-28 21:31:08 -0800949 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
950 sizeof(cb->args) - sizeof(cb->args[0]));
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 info.in_skb = cb->skb;
953 info.out_skb = skb;
954 info.nlmsg_seq = cb->nlh->nlmsg_seq;
955 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -0800956
957 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +0100958 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100959 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100960 u8 proto = 0;
961 int err;
962
Johannes Bergfceb6432017-04-12 14:34:07 +0200963 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX, xfrma_policy,
964 NULL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100965 if (err < 0)
966 return err;
967
Nicolas Dichtel870a2df2014-03-06 18:24:29 +0100968 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +0200969 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
970 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +0100971 if (filter == NULL)
972 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +0100973 }
974
975 if (attrs[XFRMA_PROTO])
976 proto = nla_get_u8(attrs[XFRMA_PROTO]);
977
978 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200979 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -0800980 }
981
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800982 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 return skb->len;
985}
986
987static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
988 struct xfrm_state *x, u32 seq)
989{
990 struct xfrm_dump_info info;
991 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +0000992 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993
Thomas Graf7deb2262007-08-22 13:57:39 -0700994 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if (!skb)
996 return ERR_PTR(-ENOMEM);
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 info.in_skb = in_skb;
999 info.out_skb = skb;
1000 info.nlmsg_seq = seq;
1001 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Mathias Krause864745d2012-09-13 11:41:26 +00001003 err = dump_one_state(x, 0, &info);
1004 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +00001006 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 }
1008
1009 return skb;
1010}
1011
Michal Kubecek21ee5432014-06-03 10:26:06 +02001012/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
1013 * Must be called with RCU read lock.
1014 */
1015static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
1016 u32 pid, unsigned int group)
1017{
1018 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
1019
1020 if (nlsk)
1021 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
1022 else
1023 return -1;
1024}
1025
Thomas Graf7deb2262007-08-22 13:57:39 -07001026static inline size_t xfrm_spdinfo_msgsize(void)
1027{
1028 return NLMSG_ALIGN(4)
1029 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001030 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1031 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1032 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001033}
1034
Alexey Dobriyane0710412010-01-23 13:37:10 +00001035static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001036 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001037{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001038 struct xfrmk_spdinfo si;
1039 struct xfrmu_spdinfo spc;
1040 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001041 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001042 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001043 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001044 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001045 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001046
Eric W. Biederman15e47302012-09-07 20:12:54 +00001047 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001048 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001049 return -EMSGSIZE;
1050
1051 f = nlmsg_data(nlh);
1052 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001053 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001054 spc.incnt = si.incnt;
1055 spc.outcnt = si.outcnt;
1056 spc.fwdcnt = si.fwdcnt;
1057 spc.inscnt = si.inscnt;
1058 spc.outscnt = si.outscnt;
1059 spc.fwdscnt = si.fwdscnt;
1060 sph.spdhcnt = si.spdhcnt;
1061 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001062
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001063 do {
1064 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1065
1066 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1067 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1068 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1069 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1070 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1071
David S. Miller1d1e34d2012-06-27 21:57:03 -07001072 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1073 if (!err)
1074 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001075 if (!err)
1076 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1077 if (!err)
1078 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001079 if (err) {
1080 nlmsg_cancel(skb, nlh);
1081 return err;
1082 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001083
Johannes Berg053c0952015-01-16 22:09:00 +01001084 nlmsg_end(skb, nlh);
1085 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001086}
1087
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001088static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1089 struct nlattr **attrs)
1090{
1091 struct net *net = sock_net(skb->sk);
1092 struct xfrmu_spdhthresh *thresh4 = NULL;
1093 struct xfrmu_spdhthresh *thresh6 = NULL;
1094
1095 /* selector prefixlen thresholds to hash policies */
1096 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1097 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1098
1099 if (nla_len(rta) < sizeof(*thresh4))
1100 return -EINVAL;
1101 thresh4 = nla_data(rta);
1102 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1103 return -EINVAL;
1104 }
1105 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1106 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1107
1108 if (nla_len(rta) < sizeof(*thresh6))
1109 return -EINVAL;
1110 thresh6 = nla_data(rta);
1111 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1112 return -EINVAL;
1113 }
1114
1115 if (thresh4 || thresh6) {
1116 write_seqlock(&net->xfrm.policy_hthresh.lock);
1117 if (thresh4) {
1118 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1119 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1120 }
1121 if (thresh6) {
1122 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1123 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1124 }
1125 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1126
1127 xfrm_policy_hash_rebuild(net);
1128 }
1129
1130 return 0;
1131}
1132
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001133static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001134 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001135{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001136 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001137 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001138 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001139 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001140 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001141
Thomas Graf7deb2262007-08-22 13:57:39 -07001142 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001143 if (r_skb == NULL)
1144 return -ENOMEM;
1145
Eric W. Biederman15e47302012-09-07 20:12:54 +00001146 if (build_spdinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001147 BUG();
1148
Eric W. Biederman15e47302012-09-07 20:12:54 +00001149 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001150}
1151
Thomas Graf7deb2262007-08-22 13:57:39 -07001152static inline size_t xfrm_sadinfo_msgsize(void)
1153{
1154 return NLMSG_ALIGN(4)
1155 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1156 + nla_total_size(4); /* XFRMA_SAD_CNT */
1157}
1158
Alexey Dobriyane0710412010-01-23 13:37:10 +00001159static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001160 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001161{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001162 struct xfrmk_sadinfo si;
1163 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001164 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001165 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001166 u32 *f;
1167
Eric W. Biederman15e47302012-09-07 20:12:54 +00001168 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001169 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001170 return -EMSGSIZE;
1171
1172 f = nlmsg_data(nlh);
1173 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001174 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001175
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001176 sh.sadhmcnt = si.sadhmcnt;
1177 sh.sadhcnt = si.sadhcnt;
1178
David S. Miller1d1e34d2012-06-27 21:57:03 -07001179 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1180 if (!err)
1181 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1182 if (err) {
1183 nlmsg_cancel(skb, nlh);
1184 return err;
1185 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001186
Johannes Berg053c0952015-01-16 22:09:00 +01001187 nlmsg_end(skb, nlh);
1188 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001189}
1190
1191static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001192 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001193{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001194 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001195 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001196 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001197 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001198 u32 seq = nlh->nlmsg_seq;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001199
Thomas Graf7deb2262007-08-22 13:57:39 -07001200 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001201 if (r_skb == NULL)
1202 return -ENOMEM;
1203
Eric W. Biederman15e47302012-09-07 20:12:54 +00001204 if (build_sadinfo(r_skb, net, sportid, seq, *flags) < 0)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001205 BUG();
1206
Eric W. Biederman15e47302012-09-07 20:12:54 +00001207 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001208}
1209
Christoph Hellwig22e70052007-01-02 15:22:30 -08001210static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001211 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001213 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001214 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 struct xfrm_state *x;
1216 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001217 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001219 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 if (x == NULL)
1221 goto out_noput;
1222
1223 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1224 if (IS_ERR(resp_skb)) {
1225 err = PTR_ERR(resp_skb);
1226 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001227 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
1229 xfrm_state_put(x);
1230out_noput:
1231 return err;
1232}
1233
Christoph Hellwig22e70052007-01-02 15:22:30 -08001234static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001235 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001237 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 struct xfrm_state *x;
1239 struct xfrm_userspi_info *p;
1240 struct sk_buff *resp_skb;
1241 xfrm_address_t *daddr;
1242 int family;
1243 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001244 u32 mark;
1245 struct xfrm_mark m;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246
Thomas Graf7b67c852007-08-22 13:53:52 -07001247 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001248 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 if (err)
1250 goto out_noput;
1251
1252 family = p->info.family;
1253 daddr = &p->info.id.daddr;
1254
1255 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001256
1257 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001259 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001260 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 xfrm_state_put(x);
1262 x = NULL;
1263 }
1264 }
1265
1266 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001267 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 p->info.id.proto, daddr,
1269 &p->info.saddr, 1,
1270 family);
1271 err = -ENOENT;
1272 if (x == NULL)
1273 goto out_noput;
1274
Herbert Xu658b2192007-10-09 13:29:52 -07001275 err = xfrm_alloc_spi(x, p->min, p->max);
1276 if (err)
1277 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
Herbert Xu658b2192007-10-09 13:29:52 -07001279 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 if (IS_ERR(resp_skb)) {
1281 err = PTR_ERR(resp_skb);
1282 goto out;
1283 }
1284
Eric W. Biederman15e47302012-09-07 20:12:54 +00001285 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287out:
1288 xfrm_state_put(x);
1289out_noput:
1290 return err;
1291}
1292
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001293static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294{
1295 switch (dir) {
1296 case XFRM_POLICY_IN:
1297 case XFRM_POLICY_OUT:
1298 case XFRM_POLICY_FWD:
1299 break;
1300
1301 default:
1302 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 return 0;
1306}
1307
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001308static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001309{
1310 switch (type) {
1311 case XFRM_POLICY_TYPE_MAIN:
1312#ifdef CONFIG_XFRM_SUB_POLICY
1313 case XFRM_POLICY_TYPE_SUB:
1314#endif
1315 break;
1316
1317 default:
1318 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001319 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001320
1321 return 0;
1322}
1323
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1325{
Fan Due682adf2013-11-07 17:47:48 +08001326 int ret;
1327
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 switch (p->share) {
1329 case XFRM_SHARE_ANY:
1330 case XFRM_SHARE_SESSION:
1331 case XFRM_SHARE_USER:
1332 case XFRM_SHARE_UNIQUE:
1333 break;
1334
1335 default:
1336 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 switch (p->action) {
1340 case XFRM_POLICY_ALLOW:
1341 case XFRM_POLICY_BLOCK:
1342 break;
1343
1344 default:
1345 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001346 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347
1348 switch (p->sel.family) {
1349 case AF_INET:
1350 break;
1351
1352 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001353#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 break;
1355#else
1356 return -EAFNOSUPPORT;
1357#endif
1358
1359 default:
1360 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001361 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362
Fan Due682adf2013-11-07 17:47:48 +08001363 ret = verify_policy_dir(p->dir);
1364 if (ret)
1365 return ret;
1366 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1367 return -EINVAL;
1368
1369 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370}
1371
Thomas Graf5424f322007-08-22 14:01:33 -07001372static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001373{
Thomas Graf5424f322007-08-22 14:01:33 -07001374 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001375 struct xfrm_user_sec_ctx *uctx;
1376
1377 if (!rt)
1378 return 0;
1379
Thomas Graf5424f322007-08-22 14:01:33 -07001380 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001381 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001382}
1383
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1385 int nr)
1386{
1387 int i;
1388
1389 xp->xfrm_nr = nr;
1390 for (i = 0; i < nr; i++, ut++) {
1391 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1392
1393 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1394 memcpy(&t->saddr, &ut->saddr,
1395 sizeof(xfrm_address_t));
1396 t->reqid = ut->reqid;
1397 t->mode = ut->mode;
1398 t->share = ut->share;
1399 t->optional = ut->optional;
1400 t->aalgos = ut->aalgos;
1401 t->ealgos = ut->ealgos;
1402 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001403 /* If all masks are ~0, then we allow all algorithms. */
1404 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001405 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 }
1407}
1408
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001409static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1410{
1411 int i;
1412
1413 if (nr > XFRM_MAX_DEPTH)
1414 return -EINVAL;
1415
1416 for (i = 0; i < nr; i++) {
1417 /* We never validated the ut->family value, so many
1418 * applications simply leave it at zero. The check was
1419 * never made and ut->family was ignored because all
1420 * templates could be assumed to have the same family as
1421 * the policy itself. Now that we will have ipv4-in-ipv6
1422 * and ipv6-in-ipv4 tunnels, this is no longer true.
1423 */
1424 if (!ut[i].family)
1425 ut[i].family = family;
1426
1427 switch (ut[i].family) {
1428 case AF_INET:
1429 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001430#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001431 case AF_INET6:
1432 break;
1433#endif
1434 default:
1435 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001436 }
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001437 }
1438
1439 return 0;
1440}
1441
Thomas Graf5424f322007-08-22 14:01:33 -07001442static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
Thomas Graf5424f322007-08-22 14:01:33 -07001444 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 if (!rt) {
1447 pol->xfrm_nr = 0;
1448 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001449 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1450 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001451 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001453 err = validate_tmpl(nr, utmpl, pol->family);
1454 if (err)
1455 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Thomas Graf5424f322007-08-22 14:01:33 -07001457 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 }
1459 return 0;
1460}
1461
Thomas Graf5424f322007-08-22 14:01:33 -07001462static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001463{
Thomas Graf5424f322007-08-22 14:01:33 -07001464 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001465 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001466 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001467 int err;
1468
1469 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001470 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001471 type = upt->type;
1472 }
1473
1474 err = verify_policy_type(type);
1475 if (err)
1476 return err;
1477
1478 *tp = type;
1479 return 0;
1480}
1481
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1483{
1484 xp->priority = p->priority;
1485 xp->index = p->index;
1486 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1487 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1488 xp->action = p->action;
1489 xp->flags = p->flags;
1490 xp->family = p->sel.family;
1491 /* XXX xp->share = p->share; */
1492}
1493
1494static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1495{
Mathias Krause7b789832012-09-19 11:33:40 +00001496 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1498 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1499 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1500 p->priority = xp->priority;
1501 p->index = xp->index;
1502 p->sel.family = xp->family;
1503 p->dir = dir;
1504 p->action = xp->action;
1505 p->flags = xp->flags;
1506 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1507}
1508
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001509static struct xfrm_policy *xfrm_policy_construct(struct net *net, struct xfrm_userpolicy_info *p, struct nlattr **attrs, int *errp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001511 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 int err;
1513
1514 if (!xp) {
1515 *errp = -ENOMEM;
1516 return NULL;
1517 }
1518
1519 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001520
Thomas Graf35a7aa02007-08-22 14:00:40 -07001521 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001522 if (err)
1523 goto error;
1524
Thomas Graf35a7aa02007-08-22 14:00:40 -07001525 if (!(err = copy_from_user_tmpl(xp, attrs)))
1526 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001527 if (err)
1528 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001530 xfrm_mark_get(attrs, &xp->mark);
1531
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001533 error:
1534 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001535 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001536 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001537 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538}
1539
Christoph Hellwig22e70052007-01-02 15:22:30 -08001540static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001541 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001543 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001544 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001546 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547 int err;
1548 int excl;
1549
1550 err = verify_newpolicy_info(p);
1551 if (err)
1552 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001553 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001554 if (err)
1555 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001557 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 if (!xp)
1559 return err;
1560
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001561 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001562 * Aha! this is anti-netlink really i.e more pfkey derived
1563 * in netlink excl is a flag and you wouldnt need
1564 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1566 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001567 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001568
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001570 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 kfree(xp);
1572 return err;
1573 }
1574
Herbert Xuf60f6b82005-06-18 22:44:37 -07001575 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001576 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001577 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001578 km_policy_notify(xp, p->dir, &c);
1579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 xfrm_pol_put(xp);
1581
1582 return 0;
1583}
1584
1585static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1586{
1587 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1588 int i;
1589
1590 if (xp->xfrm_nr == 0)
1591 return 0;
1592
1593 for (i = 0; i < xp->xfrm_nr; i++) {
1594 struct xfrm_user_tmpl *up = &vec[i];
1595 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1596
Mathias Krause1f868402012-09-19 11:33:41 +00001597 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001599 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1601 up->reqid = kp->reqid;
1602 up->mode = kp->mode;
1603 up->share = kp->share;
1604 up->optional = kp->optional;
1605 up->aalgos = kp->aalgos;
1606 up->ealgos = kp->ealgos;
1607 up->calgos = kp->calgos;
1608 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
Thomas Grafc0144be2007-08-22 13:55:43 -07001610 return nla_put(skb, XFRMA_TMPL,
1611 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001612}
1613
Serge Hallyn0d681622006-07-24 23:30:44 -07001614static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1615{
1616 if (x->security) {
1617 return copy_sec_ctx(x->security, skb);
1618 }
1619 return 0;
1620}
1621
1622static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1623{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001624 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001625 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001626 return 0;
1627}
Thomas Grafcfbfd452007-08-22 13:57:04 -07001628static inline size_t userpolicy_type_attrsize(void)
1629{
1630#ifdef CONFIG_XFRM_SUB_POLICY
1631 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1632#else
1633 return 0;
1634#endif
1635}
Serge Hallyn0d681622006-07-24 23:30:44 -07001636
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001637#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001638static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001639{
Thomas Grafc0144be2007-08-22 13:55:43 -07001640 struct xfrm_userpolicy_type upt = {
1641 .type = type,
1642 };
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001643
Thomas Grafc0144be2007-08-22 13:55:43 -07001644 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001645}
1646
1647#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001648static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001649{
1650 return 0;
1651}
1652#endif
1653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1655{
1656 struct xfrm_dump_info *sp = ptr;
1657 struct xfrm_userpolicy_info *p;
1658 struct sk_buff *in_skb = sp->in_skb;
1659 struct sk_buff *skb = sp->out_skb;
1660 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001661 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Eric W. Biederman15e47302012-09-07 20:12:54 +00001663 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001664 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1665 if (nlh == NULL)
1666 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Thomas Graf7b67c852007-08-22 13:53:52 -07001668 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001670 err = copy_to_user_tmpl(xp, skb);
1671 if (!err)
1672 err = copy_to_user_sec_ctx(xp, skb);
1673 if (!err)
1674 err = copy_to_user_policy_type(xp->type, skb);
1675 if (!err)
1676 err = xfrm_mark_put(skb, &xp->mark);
1677 if (err) {
1678 nlmsg_cancel(skb, nlh);
1679 return err;
1680 }
Thomas Graf98250692007-08-22 12:47:26 -07001681 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683}
1684
Timo Teras4c563f72008-02-28 21:31:08 -08001685static int xfrm_dump_policy_done(struct netlink_callback *cb)
1686{
1687 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +08001688 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001689
Fan Du283bc9f2013-11-07 17:47:50 +08001690 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001691 return 0;
1692}
1693
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1695{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001696 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001697 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 struct xfrm_dump_info info;
1699
Timo Teras4c563f72008-02-28 21:31:08 -08001700 BUILD_BUG_ON(sizeof(struct xfrm_policy_walk) >
1701 sizeof(cb->args) - sizeof(cb->args[0]));
1702
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 info.in_skb = cb->skb;
1704 info.out_skb = skb;
1705 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1706 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001707
1708 if (!cb->args[0]) {
1709 cb->args[0] = 1;
1710 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1711 }
1712
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001713 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
1715 return skb->len;
1716}
1717
1718static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1719 struct xfrm_policy *xp,
1720 int dir, u32 seq)
1721{
1722 struct xfrm_dump_info info;
1723 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001724 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Thomas Graf7deb2262007-08-22 13:57:39 -07001726 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 if (!skb)
1728 return ERR_PTR(-ENOMEM);
1729
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 info.in_skb = in_skb;
1731 info.out_skb = skb;
1732 info.nlmsg_seq = seq;
1733 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Mathias Krausec2546372012-09-14 09:58:32 +00001735 err = dump_one_policy(xp, dir, 0, &info);
1736 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001738 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739 }
1740
1741 return skb;
1742}
1743
Christoph Hellwig22e70052007-01-02 15:22:30 -08001744static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001745 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001747 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 struct xfrm_policy *xp;
1749 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001750 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001752 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001754 struct xfrm_mark m;
1755 u32 mark = xfrm_mark_get(attrs, &m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756
Thomas Graf7b67c852007-08-22 13:53:52 -07001757 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1759
Thomas Graf35a7aa02007-08-22 14:00:40 -07001760 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001761 if (err)
1762 return err;
1763
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 err = verify_policy_dir(p->dir);
1765 if (err)
1766 return err;
1767
1768 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001769 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001770 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001771 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001772 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001773
Thomas Graf35a7aa02007-08-22 14:00:40 -07001774 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001775 if (err)
1776 return err;
1777
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001778 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001779 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001780 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001781
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001782 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001783 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001784 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001785 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001786 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001787 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001788 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001789 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 if (xp == NULL)
1791 return -ENOENT;
1792
1793 if (!delete) {
1794 struct sk_buff *resp_skb;
1795
1796 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1797 if (IS_ERR(resp_skb)) {
1798 err = PTR_ERR(resp_skb);
1799 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001800 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001801 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001803 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001804 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001805
1806 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001807 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001808
Herbert Xue7443892005-06-18 22:44:18 -07001809 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001810 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001811 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001812 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001813 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 }
1815
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001816out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001817 xfrm_pol_put(xp);
Paul Mooree4c17212013-05-29 07:36:25 +00001818 if (delete && err == 0)
1819 xfrm_garbage_collect(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 return err;
1821}
1822
Christoph Hellwig22e70052007-01-02 15:22:30 -08001823static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001824 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001826 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001827 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001828 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001829 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830
Tetsuo Handa2e710292014-04-22 21:48:30 +09001831 err = xfrm_state_flush(net, p->proto, true);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001832 if (err) {
1833 if (err == -ESRCH) /* empty table */
1834 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001835 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001836 }
Herbert Xubf088672005-06-18 22:44:00 -07001837 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001838 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001839 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001840 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001841 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001842 km_state_notify(NULL, &c);
1843
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 return 0;
1845}
1846
Steffen Klassertd8647b72011-03-08 00:10:27 +00001847static inline size_t xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001848{
Steffen Klassertd8647b72011-03-08 00:10:27 +00001849 size_t replay_size = x->replay_esn ?
1850 xfrm_replay_state_esn_len(x->replay_esn) :
1851 sizeof(struct xfrm_replay_state);
1852
Thomas Graf7deb2262007-08-22 13:57:39 -07001853 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001854 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001855 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001856 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001857 + nla_total_size(4) /* XFRM_AE_RTHR */
1858 + nla_total_size(4); /* XFRM_AE_ETHR */
1859}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001860
David S. Miller214e0052011-02-24 00:02:38 -05001861static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001862{
1863 struct xfrm_aevent_id *id;
1864 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001865 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001866
Eric W. Biederman15e47302012-09-07 20:12:54 +00001867 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001868 if (nlh == NULL)
1869 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001870
Thomas Graf7b67c852007-08-22 13:53:52 -07001871 id = nlmsg_data(nlh);
Weilong Chen9b7a7872013-12-24 09:43:46 +08001872 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001873 id->sa_id.spi = x->id.spi;
1874 id->sa_id.family = x->props.family;
1875 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001876 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001877 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001878 id->flags = c->data.aevent;
1879
David S. Millerd0fde792012-03-29 04:02:26 -04001880 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001881 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1882 xfrm_replay_state_esn_len(x->replay_esn),
1883 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001884 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001885 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1886 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001887 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001888 if (err)
1889 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001890 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1891 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001892 if (err)
1893 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001894
David S. Miller1d1e34d2012-06-27 21:57:03 -07001895 if (id->flags & XFRM_AE_RTHR) {
1896 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
1897 if (err)
1898 goto out_cancel;
1899 }
1900 if (id->flags & XFRM_AE_ETHR) {
1901 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
1902 x->replay_maxage * 10 / HZ);
1903 if (err)
1904 goto out_cancel;
1905 }
1906 err = xfrm_mark_put(skb, &x->mark);
1907 if (err)
1908 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001909
Johannes Berg053c0952015-01-16 22:09:00 +01001910 nlmsg_end(skb, nlh);
1911 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001912
David S. Miller1d1e34d2012-06-27 21:57:03 -07001913out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07001914 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001915 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001916}
1917
Christoph Hellwig22e70052007-01-02 15:22:30 -08001918static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001919 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001920{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001921 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001922 struct xfrm_state *x;
1923 struct sk_buff *r_skb;
1924 int err;
1925 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001926 u32 mark;
1927 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001928 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001929 struct xfrm_usersa_id *id = &p->sa_id;
1930
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001931 mark = xfrm_mark_get(attrs, &m);
1932
1933 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00001934 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001935 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001936
1937 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
1938 if (r_skb == NULL) {
1939 xfrm_state_put(x);
1940 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001941 }
1942
1943 /*
1944 * XXX: is this lock really needed - none of the other
1945 * gets lock (the concern is things getting updated
1946 * while we are still reading) - jhs
1947 */
1948 spin_lock_bh(&x->lock);
1949 c.data.aevent = p->flags;
1950 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001951 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001952
1953 if (build_aevent(r_skb, x, &c) < 0)
1954 BUG();
Eric W. Biederman15e47302012-09-07 20:12:54 +00001955 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001956 spin_unlock_bh(&x->lock);
1957 xfrm_state_put(x);
1958 return err;
1959}
1960
Christoph Hellwig22e70052007-01-02 15:22:30 -08001961static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001962 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001963{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001964 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001965 struct xfrm_state *x;
1966 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08001967 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001968 u32 mark = 0;
1969 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07001970 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07001971 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00001972 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07001973 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02001974 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
1975 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001976
Michael Rossberg4e077232015-09-29 11:25:08 +02001977 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001978 return err;
1979
1980 /* pedantic mode - thou shalt sayeth replaceth */
1981 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
1982 return err;
1983
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001984 mark = xfrm_mark_get(attrs, &m);
1985
1986 x = xfrm_state_lookup(net, mark, &p->sa_id.daddr, p->sa_id.spi, p->sa_id.proto, p->sa_id.family);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001987 if (x == NULL)
1988 return -ESRCH;
1989
1990 if (x->km.state != XFRM_STATE_VALID)
1991 goto out;
1992
Steffen Klassert4479ff72013-09-09 09:39:01 +02001993 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00001994 if (err)
1995 goto out;
1996
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001997 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00001998 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001999 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002000
2001 c.event = nlh->nlmsg_type;
2002 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002003 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002004 c.data.aevent = XFRM_AE_CU;
2005 km_state_notify(x, &c);
2006 err = 0;
2007out:
2008 xfrm_state_put(x);
2009 return err;
2010}
2011
Christoph Hellwig22e70052007-01-02 15:22:30 -08002012static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002013 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002015 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002016 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002017 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002018 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002019
Thomas Graf35a7aa02007-08-22 14:00:40 -07002020 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002021 if (err)
2022 return err;
2023
Tetsuo Handa2e710292014-04-22 21:48:30 +09002024 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002025 if (err) {
2026 if (err == -ESRCH) /* empty table */
2027 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002028 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002029 }
2030
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002031 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002032 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002033 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002034 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002035 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002036 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 return 0;
2038}
2039
Christoph Hellwig22e70052007-01-02 15:22:30 -08002040static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002041 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002042{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002043 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002044 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002045 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002046 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002047 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002048 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002049 struct xfrm_mark m;
2050 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002051
Thomas Graf35a7aa02007-08-22 14:00:40 -07002052 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002053 if (err)
2054 return err;
2055
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002056 err = verify_policy_dir(p->dir);
2057 if (err)
2058 return err;
2059
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002060 if (p->index)
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002061 xp = xfrm_policy_byid(net, mark, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002062 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002063 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002064 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002065
Thomas Graf35a7aa02007-08-22 14:00:40 -07002066 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002067 if (err)
2068 return err;
2069
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002070 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002071 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002072 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002073
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002074 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002075 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002076 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002077 }
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002078 xp = xfrm_policy_bysel_ctx(net, mark, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002079 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002080 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002081 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002082 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002083 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002084
Timo Teräsea2dea92010-03-31 00:17:05 +00002085 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002086 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002087
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002088 err = 0;
2089 if (up->hard) {
2090 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002091 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002092 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002093 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002094
2095out:
2096 xfrm_pol_put(xp);
2097 return err;
2098}
2099
Christoph Hellwig22e70052007-01-02 15:22:30 -08002100static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002101 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002102{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002103 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002104 struct xfrm_state *x;
2105 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002106 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002107 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002108 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002109 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002110
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002111 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 -08002112
David S. Miller3a765aa2007-02-26 14:52:21 -08002113 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002114 if (x == NULL)
2115 return err;
2116
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002117 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002118 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002119 if (x->km.state != XFRM_STATE_VALID)
2120 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002121 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002122
Joy Latten161a09e2006-11-27 13:11:54 -06002123 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002124 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002125 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002126 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002127 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002128out:
2129 spin_unlock_bh(&x->lock);
2130 xfrm_state_put(x);
2131 return err;
2132}
2133
Christoph Hellwig22e70052007-01-02 15:22:30 -08002134static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002135 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002136{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002137 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002138 struct xfrm_policy *xp;
2139 struct xfrm_user_tmpl *ut;
2140 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002141 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002142 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002143
Thomas Graf7b67c852007-08-22 13:53:52 -07002144 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002145 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002146 int err = -ENOMEM;
2147
2148 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002149 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002150
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002151 xfrm_mark_get(attrs, &mark);
2152
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002153 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002154 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002155 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002156
2157 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002158 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002159 if (!xp)
2160 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002161
2162 memcpy(&x->id, &ua->id, sizeof(ua->id));
2163 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2164 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002165 xp->mark.m = x->mark.m = mark.m;
2166 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002167 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002168 /* extract the templates and for each call km_key */
2169 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2170 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2171 memcpy(&x->id, &t->id, sizeof(x->id));
2172 x->props.mode = t->mode;
2173 x->props.reqid = t->reqid;
2174 x->props.family = ut->family;
2175 t->aalgos = ua->aalgos;
2176 t->ealgos = ua->ealgos;
2177 t->calgos = ua->calgos;
2178 err = km_query(x, t, xp);
2179
2180 }
2181
2182 kfree(x);
2183 kfree(xp);
2184
2185 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002186
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002187free_state:
2188 kfree(x);
2189nomem:
2190 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002191}
2192
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002193#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002194static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002195 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002196 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002197{
Thomas Graf5424f322007-08-22 14:01:33 -07002198 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002199 struct xfrm_user_migrate *um;
2200 int i, num_migrate;
2201
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002202 if (k != NULL) {
2203 struct xfrm_user_kmaddress *uk;
2204
2205 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2206 memcpy(&k->local, &uk->local, sizeof(k->local));
2207 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2208 k->family = uk->family;
2209 k->reserved = uk->reserved;
2210 }
2211
Thomas Graf5424f322007-08-22 14:01:33 -07002212 um = nla_data(rt);
2213 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002214
2215 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2216 return -EINVAL;
2217
2218 for (i = 0; i < num_migrate; i++, um++, ma++) {
2219 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2220 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2221 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2222 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2223
2224 ma->proto = um->proto;
2225 ma->mode = um->mode;
2226 ma->reqid = um->reqid;
2227
2228 ma->old_family = um->old_family;
2229 ma->new_family = um->new_family;
2230 }
2231
2232 *num = i;
2233 return 0;
2234}
2235
2236static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002237 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002238{
Thomas Graf7b67c852007-08-22 13:53:52 -07002239 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002240 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002241 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002242 u8 type;
2243 int err;
2244 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002245 struct net *net = sock_net(skb->sk);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002246
Thomas Graf35a7aa02007-08-22 14:00:40 -07002247 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002248 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002249
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002250 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2251
Thomas Graf5424f322007-08-22 14:01:33 -07002252 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002253 if (err)
2254 return err;
2255
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002256 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002257 if (err)
2258 return err;
2259
2260 if (!n)
2261 return 0;
2262
Fan Du8d549c42013-11-07 17:47:49 +08002263 xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002264
2265 return 0;
2266}
2267#else
2268static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002269 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002270{
2271 return -ENOPROTOOPT;
2272}
2273#endif
2274
2275#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002276static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002277{
2278 struct xfrm_user_migrate um;
2279
2280 memset(&um, 0, sizeof(um));
2281 um.proto = m->proto;
2282 um.mode = m->mode;
2283 um.reqid = m->reqid;
2284 um.old_family = m->old_family;
2285 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2286 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2287 um.new_family = m->new_family;
2288 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2289 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2290
Thomas Grafc0144be2007-08-22 13:55:43 -07002291 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002292}
2293
David S. Miller183cad12011-02-24 00:28:01 -05002294static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002295{
2296 struct xfrm_user_kmaddress uk;
2297
2298 memset(&uk, 0, sizeof(uk));
2299 uk.family = k->family;
2300 uk.reserved = k->reserved;
2301 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002302 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002303
2304 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2305}
2306
2307static inline size_t xfrm_migrate_msgsize(int num_migrate, int with_kma)
Thomas Graf7deb2262007-08-22 13:57:39 -07002308{
2309 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002310 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
2311 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2312 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002313}
2314
David S. Miller183cad12011-02-24 00:28:01 -05002315static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2316 int num_migrate, const struct xfrm_kmaddress *k,
2317 const struct xfrm_selector *sel, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002318{
David S. Miller183cad12011-02-24 00:28:01 -05002319 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002320 struct xfrm_userpolicy_id *pol_id;
2321 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002322 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002323
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002324 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2325 if (nlh == NULL)
2326 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002327
Thomas Graf7b67c852007-08-22 13:53:52 -07002328 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002329 /* copy data from selector, dir, and type to the pol_id */
2330 memset(pol_id, 0, sizeof(*pol_id));
2331 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2332 pol_id->dir = dir;
2333
David S. Miller1d1e34d2012-06-27 21:57:03 -07002334 if (k != NULL) {
2335 err = copy_to_user_kmaddress(k, skb);
2336 if (err)
2337 goto out_cancel;
2338 }
2339 err = copy_to_user_policy_type(type, skb);
2340 if (err)
2341 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002342 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002343 err = copy_to_user_migrate(mp, skb);
2344 if (err)
2345 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002346 }
2347
Johannes Berg053c0952015-01-16 22:09:00 +01002348 nlmsg_end(skb, nlh);
2349 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002350
2351out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002352 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002353 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002354}
2355
David S. Miller183cad12011-02-24 00:28:01 -05002356static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2357 const struct xfrm_migrate *m, int num_migrate,
2358 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002359{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002360 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002361 struct sk_buff *skb;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002362
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002363 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k), GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002364 if (skb == NULL)
2365 return -ENOMEM;
2366
2367 /* build migrate */
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002368 if (build_migrate(skb, m, num_migrate, k, sel, dir, type) < 0)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002369 BUG();
2370
Michal Kubecek21ee5432014-06-03 10:26:06 +02002371 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002372}
2373#else
David S. Miller183cad12011-02-24 00:28:01 -05002374static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2375 const struct xfrm_migrate *m, int num_migrate,
2376 const struct xfrm_kmaddress *k)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002377{
2378 return -ENOPROTOOPT;
2379}
2380#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002381
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002382#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002383
2384static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002385 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002386 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2387 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2388 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2389 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2390 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2391 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002392 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002393 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002394 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002395 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002396 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002397 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002398 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002399 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2400 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002401 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002402 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002403 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002404 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002405 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406};
2407
Thomas Graf492b5582005-05-03 14:26:40 -07002408#undef XMSGSIZE
2409
Thomas Grafcf5cb792007-08-22 13:59:04 -07002410static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002411 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2412 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2413 [XFRMA_LASTUSED] = { .type = NLA_U64},
2414 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002415 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002416 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2417 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2418 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2419 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2420 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2421 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2422 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2423 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2424 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2425 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2426 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2427 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2428 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2429 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002430 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002431 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002432 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002433 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002434 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002435 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002436 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002437 [XFRMA_OFFLOAD_DEV] = { .len = sizeof(struct xfrm_user_offload) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002438};
2439
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002440static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2441 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2442 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2443};
2444
Mathias Krause05600a72013-02-24 14:10:27 +01002445static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002446 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002448 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002449 const struct nla_policy *nla_pol;
2450 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002451} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2452 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2453 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2454 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002455 .dump = xfrm_dump_sa,
2456 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002457 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2458 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2459 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Timo Teras4c563f72008-02-28 21:31:08 -08002460 .dump = xfrm_dump_policy,
2461 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002462 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002463 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002464 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002465 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2466 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002467 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002468 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2469 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002470 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2471 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002472 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002473 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002474 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2475 .nla_pol = xfrma_spd_policy,
2476 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002477 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478};
2479
Johannes Berg2d4bc932017-04-12 14:34:04 +02002480static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
2481 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002483 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002484 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002485 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002486 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487
Fan Du74005992015-01-27 17:00:29 +08002488#ifdef CONFIG_COMPAT
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002489 if (in_compat_syscall())
Yi Zhao83e2d052016-11-29 18:09:01 +08002490 return -EOPNOTSUPP;
Fan Du74005992015-01-27 17:00:29 +08002491#endif
2492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002495 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
2497 type -= XFRM_MSG_BASE;
2498 link = &xfrm_dispatch[type];
2499
2500 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002501 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002502 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503
Thomas Graf492b5582005-05-03 14:26:40 -07002504 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2505 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002506 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002508 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002510 {
2511 struct netlink_dump_control c = {
2512 .dump = link->dump,
2513 .done = link->done,
2514 };
2515 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2516 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 }
2518
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002519 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2520 link->nla_max ? : XFRMA_MAX,
Johannes Bergfe521452017-04-12 14:34:08 +02002521 link->nla_pol ? : xfrma_policy, extack);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002522 if (err < 0)
2523 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
2525 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002526 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527
Thomas Graf5424f322007-08-22 14:01:33 -07002528 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529}
2530
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002531static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532{
Fan Du283bc9f2013-11-07 17:47:50 +08002533 struct net *net = sock_net(skb->sk);
2534
2535 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002536 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002537 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538}
2539
Thomas Graf7deb2262007-08-22 13:57:39 -07002540static inline size_t xfrm_expire_msgsize(void)
2541{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002542 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2543 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002544}
2545
David S. Miller214e0052011-02-24 00:02:38 -05002546static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547{
2548 struct xfrm_user_expire *ue;
2549 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002550 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
Eric W. Biederman15e47302012-09-07 20:12:54 +00002552 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002553 if (nlh == NULL)
2554 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
Thomas Graf7b67c852007-08-22 13:53:52 -07002556 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002558 ue->hard = (c->data.hard != 0) ? 1 : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559
David S. Miller1d1e34d2012-06-27 21:57:03 -07002560 err = xfrm_mark_put(skb, &x->mark);
2561 if (err)
2562 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002563
Johannes Berg053c0952015-01-16 22:09:00 +01002564 nlmsg_end(skb, nlh);
2565 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566}
2567
David S. Miller214e0052011-02-24 00:02:38 -05002568static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002570 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 struct sk_buff *skb;
2572
Thomas Graf7deb2262007-08-22 13:57:39 -07002573 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 if (skb == NULL)
2575 return -ENOMEM;
2576
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002577 if (build_expire(skb, x, c) < 0) {
2578 kfree_skb(skb);
2579 return -EMSGSIZE;
2580 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Michal Kubecek21ee5432014-06-03 10:26:06 +02002582 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583}
2584
David S. Miller214e0052011-02-24 00:02:38 -05002585static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002586{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002587 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002588 struct sk_buff *skb;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002589
Steffen Klassertd8647b72011-03-08 00:10:27 +00002590 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002591 if (skb == NULL)
2592 return -ENOMEM;
2593
2594 if (build_aevent(skb, x, c) < 0)
2595 BUG();
2596
Michal Kubecek21ee5432014-06-03 10:26:06 +02002597 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002598}
2599
David S. Miller214e0052011-02-24 00:02:38 -05002600static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002601{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002602 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002603 struct xfrm_usersa_flush *p;
2604 struct nlmsghdr *nlh;
2605 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002606 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002607
Thomas Graf7deb2262007-08-22 13:57:39 -07002608 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002609 if (skb == NULL)
2610 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002611
Eric W. Biederman15e47302012-09-07 20:12:54 +00002612 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002613 if (nlh == NULL) {
2614 kfree_skb(skb);
2615 return -EMSGSIZE;
2616 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002617
Thomas Graf7b67c852007-08-22 13:53:52 -07002618 p = nlmsg_data(nlh);
Herbert Xubf088672005-06-18 22:44:00 -07002619 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002620
Thomas Graf98250692007-08-22 12:47:26 -07002621 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002622
Michal Kubecek21ee5432014-06-03 10:26:06 +02002623 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002624}
2625
Thomas Graf7deb2262007-08-22 13:57:39 -07002626static inline size_t xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002627{
Thomas Graf7deb2262007-08-22 13:57:39 -07002628 size_t l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002629 if (x->aead)
2630 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002631 if (x->aalg) {
2632 l += nla_total_size(sizeof(struct xfrm_algo) +
2633 (x->aalg->alg_key_len + 7) / 8);
2634 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2635 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002636 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002637 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002638 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002639 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002640 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002641 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002642 if (x->tfcpad)
2643 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002644 if (x->replay_esn)
2645 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002646 else
2647 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002648 if (x->security)
2649 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2650 x->security->ctx_len);
2651 if (x->coaddr)
2652 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002653 if (x->props.extra_flags)
2654 l += nla_total_size(sizeof(x->props.extra_flags));
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002655 if (x->xso.dev)
2656 l += nla_total_size(sizeof(x->xso));
Herbert Xu68325d32007-10-09 13:30:57 -07002657
Herbert Xud26f3982007-11-13 21:47:08 -08002658 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002659 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002660
2661 return l;
2662}
2663
David S. Miller214e0052011-02-24 00:02:38 -05002664static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002665{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002666 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002667 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002668 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002669 struct nlmsghdr *nlh;
2670 struct sk_buff *skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002671 int len = xfrm_sa_len(x);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002672 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002673
2674 headlen = sizeof(*p);
2675 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002676 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002677 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002678 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002679 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002680 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002681
Thomas Graf7deb2262007-08-22 13:57:39 -07002682 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002683 if (skb == NULL)
2684 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002685
Eric W. Biederman15e47302012-09-07 20:12:54 +00002686 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002687 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002688 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002689 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002690
Thomas Graf7b67c852007-08-22 13:53:52 -07002691 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002692 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002693 struct nlattr *attr;
2694
Thomas Graf7b67c852007-08-22 13:53:52 -07002695 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002696 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2697 id->spi = x->id.spi;
2698 id->family = x->props.family;
2699 id->proto = x->id.proto;
2700
Thomas Grafc0144be2007-08-22 13:55:43 -07002701 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002702 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002703 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002704 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002705
2706 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002707 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002708 err = copy_to_user_state_extra(x, p, skb);
2709 if (err)
2710 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002711
Thomas Graf98250692007-08-22 12:47:26 -07002712 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002713
Michal Kubecek21ee5432014-06-03 10:26:06 +02002714 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002715
David S. Miller1d1e34d2012-06-27 21:57:03 -07002716out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002717 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002718 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002719}
2720
David S. Miller214e0052011-02-24 00:02:38 -05002721static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002722{
2723
2724 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002725 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002726 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002727 case XFRM_MSG_NEWAE:
2728 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002729 case XFRM_MSG_DELSA:
2730 case XFRM_MSG_UPDSA:
2731 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002732 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002733 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002734 return xfrm_notify_sa_flush(c);
2735 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002736 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2737 c->event);
2738 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002739 }
2740
2741 return 0;
2742
2743}
2744
Thomas Graf7deb2262007-08-22 13:57:39 -07002745static inline size_t xfrm_acquire_msgsize(struct xfrm_state *x,
2746 struct xfrm_policy *xp)
2747{
2748 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2749 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002750 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002751 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2752 + userpolicy_type_attrsize();
2753}
2754
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002756 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002758 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 struct xfrm_user_acquire *ua;
2760 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002761 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002763 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2764 if (nlh == NULL)
2765 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766
Thomas Graf7b67c852007-08-22 13:53:52 -07002767 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 memcpy(&ua->id, &x->id, sizeof(ua->id));
2769 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2770 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002771 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 ua->aalgos = xt->aalgos;
2773 ua->ealgos = xt->ealgos;
2774 ua->calgos = xt->calgos;
2775 ua->seq = x->km.seq = seq;
2776
David S. Miller1d1e34d2012-06-27 21:57:03 -07002777 err = copy_to_user_tmpl(xp, skb);
2778 if (!err)
2779 err = copy_to_user_state_sec_ctx(x, skb);
2780 if (!err)
2781 err = copy_to_user_policy_type(xp->type, skb);
2782 if (!err)
2783 err = xfrm_mark_put(skb, &xp->mark);
2784 if (err) {
2785 nlmsg_cancel(skb, nlh);
2786 return err;
2787 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
Johannes Berg053c0952015-01-16 22:09:00 +01002789 nlmsg_end(skb, nlh);
2790 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791}
2792
2793static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002794 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002796 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798
Thomas Graf7deb2262007-08-22 13:57:39 -07002799 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 if (skb == NULL)
2801 return -ENOMEM;
2802
Fan Du65e07362012-08-15 10:13:47 +08002803 if (build_acquire(skb, x, xt, xp) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 BUG();
2805
Michal Kubecek21ee5432014-06-03 10:26:06 +02002806 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807}
2808
2809/* User gives us xfrm_user_policy_info followed by an array of 0
2810 * or more templates.
2811 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002812static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 u8 *data, int len, int *dir)
2814{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002815 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2817 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2818 struct xfrm_policy *xp;
2819 int nr;
2820
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002821 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 case AF_INET:
2823 if (opt != IP_XFRM_POLICY) {
2824 *dir = -EOPNOTSUPP;
2825 return NULL;
2826 }
2827 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002828#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 case AF_INET6:
2830 if (opt != IPV6_XFRM_POLICY) {
2831 *dir = -EOPNOTSUPP;
2832 return NULL;
2833 }
2834 break;
2835#endif
2836 default:
2837 *dir = -EINVAL;
2838 return NULL;
2839 }
2840
2841 *dir = -EINVAL;
2842
2843 if (len < sizeof(*p) ||
2844 verify_newpolicy_info(p))
2845 return NULL;
2846
2847 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08002848 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 return NULL;
2850
Herbert Xua4f1bac2005-07-26 15:43:17 -07002851 if (p->dir > XFRM_POLICY_OUT)
2852 return NULL;
2853
Herbert Xu2f09a4d2010-08-14 22:38:09 -07002854 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 if (xp == NULL) {
2856 *dir = -ENOBUFS;
2857 return NULL;
2858 }
2859
2860 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002861 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 copy_templates(xp, ut, nr);
2863
2864 *dir = p->dir;
2865
2866 return xp;
2867}
2868
Thomas Graf7deb2262007-08-22 13:57:39 -07002869static inline size_t xfrm_polexpire_msgsize(struct xfrm_policy *xp)
2870{
2871 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
2872 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
2873 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002874 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002875 + userpolicy_type_attrsize();
2876}
2877
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05002879 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880{
2881 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002882 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002883 struct nlmsghdr *nlh;
2884 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885
Eric W. Biederman15e47302012-09-07 20:12:54 +00002886 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002887 if (nlh == NULL)
2888 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889
Thomas Graf7b67c852007-08-22 13:53:52 -07002890 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002892 err = copy_to_user_tmpl(xp, skb);
2893 if (!err)
2894 err = copy_to_user_sec_ctx(xp, skb);
2895 if (!err)
2896 err = copy_to_user_policy_type(xp->type, skb);
2897 if (!err)
2898 err = xfrm_mark_put(skb, &xp->mark);
2899 if (err) {
2900 nlmsg_cancel(skb, nlh);
2901 return err;
2902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 upe->hard = !!hard;
2904
Johannes Berg053c0952015-01-16 22:09:00 +01002905 nlmsg_end(skb, nlh);
2906 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907}
2908
David S. Miller214e0052011-02-24 00:02:38 -05002909static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002911 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
Thomas Graf7deb2262007-08-22 13:57:39 -07002914 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 if (skb == NULL)
2916 return -ENOMEM;
2917
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002918 if (build_polexpire(skb, xp, dir, c) < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 BUG();
2920
Michal Kubecek21ee5432014-06-03 10:26:06 +02002921 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922}
2923
David S. Miller214e0052011-02-24 00:02:38 -05002924static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002925{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002926 int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002927 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002928 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002929 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002930 struct nlmsghdr *nlh;
2931 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002932 int headlen, err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002933
2934 headlen = sizeof(*p);
2935 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002936 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002937 headlen = sizeof(*id);
2938 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07002939 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002940 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002941 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002942
Thomas Graf7deb2262007-08-22 13:57:39 -07002943 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002944 if (skb == NULL)
2945 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002946
Eric W. Biederman15e47302012-09-07 20:12:54 +00002947 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002948 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002949 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002950 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002951
Thomas Graf7b67c852007-08-22 13:53:52 -07002952 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002953 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002954 struct nlattr *attr;
2955
Thomas Graf7b67c852007-08-22 13:53:52 -07002956 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002957 memset(id, 0, sizeof(*id));
2958 id->dir = dir;
2959 if (c->data.byid)
2960 id->index = xp->index;
2961 else
2962 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
2963
Thomas Grafc0144be2007-08-22 13:55:43 -07002964 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002965 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002966 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002967 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002968
2969 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002970 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002971
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002972 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002973 err = copy_to_user_tmpl(xp, skb);
2974 if (!err)
2975 err = copy_to_user_policy_type(xp->type, skb);
2976 if (!err)
2977 err = xfrm_mark_put(skb, &xp->mark);
2978 if (err)
2979 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002980
Thomas Graf98250692007-08-22 12:47:26 -07002981 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002982
Michal Kubecek21ee5432014-06-03 10:26:06 +02002983 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002984
David S. Miller1d1e34d2012-06-27 21:57:03 -07002985out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002986 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002987 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002988}
2989
David S. Miller214e0052011-02-24 00:02:38 -05002990static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002991{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002992 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002993 struct nlmsghdr *nlh;
2994 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002995 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002996
Thomas Graf7deb2262007-08-22 13:57:39 -07002997 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002998 if (skb == NULL)
2999 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003000
Eric W. Biederman15e47302012-09-07 20:12:54 +00003001 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003002 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003003 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003004 goto out_free_skb;
3005 err = copy_to_user_policy_type(c->data.type, skb);
3006 if (err)
3007 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003008
Thomas Graf98250692007-08-22 12:47:26 -07003009 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003010
Michal Kubecek21ee5432014-06-03 10:26:06 +02003011 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003012
David S. Miller1d1e34d2012-06-27 21:57:03 -07003013out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003014 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003015 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003016}
3017
David S. Miller214e0052011-02-24 00:02:38 -05003018static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003019{
3020
3021 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003022 case XFRM_MSG_NEWPOLICY:
3023 case XFRM_MSG_UPDPOLICY:
3024 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003025 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003026 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003027 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003028 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003029 return xfrm_exp_policy_notify(xp, dir, c);
3030 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003031 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3032 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003033 }
3034
3035 return 0;
3036
3037}
3038
Thomas Graf7deb2262007-08-22 13:57:39 -07003039static inline size_t xfrm_report_msgsize(void)
3040{
3041 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3042}
3043
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003044static int build_report(struct sk_buff *skb, u8 proto,
3045 struct xfrm_selector *sel, xfrm_address_t *addr)
3046{
3047 struct xfrm_user_report *ur;
3048 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003049
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003050 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3051 if (nlh == NULL)
3052 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003053
Thomas Graf7b67c852007-08-22 13:53:52 -07003054 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003055 ur->proto = proto;
3056 memcpy(&ur->sel, sel, sizeof(ur->sel));
3057
David S. Miller1d1e34d2012-06-27 21:57:03 -07003058 if (addr) {
3059 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3060 if (err) {
3061 nlmsg_cancel(skb, nlh);
3062 return err;
3063 }
3064 }
Johannes Berg053c0952015-01-16 22:09:00 +01003065 nlmsg_end(skb, nlh);
3066 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003067}
3068
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003069static int xfrm_send_report(struct net *net, u8 proto,
3070 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003071{
3072 struct sk_buff *skb;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003073
Thomas Graf7deb2262007-08-22 13:57:39 -07003074 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003075 if (skb == NULL)
3076 return -ENOMEM;
3077
3078 if (build_report(skb, proto, sel, addr) < 0)
3079 BUG();
3080
Michal Kubecek21ee5432014-06-03 10:26:06 +02003081 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003082}
3083
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003084static inline size_t xfrm_mapping_msgsize(void)
3085{
3086 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3087}
3088
3089static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3090 xfrm_address_t *new_saddr, __be16 new_sport)
3091{
3092 struct xfrm_user_mapping *um;
3093 struct nlmsghdr *nlh;
3094
3095 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3096 if (nlh == NULL)
3097 return -EMSGSIZE;
3098
3099 um = nlmsg_data(nlh);
3100
3101 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3102 um->id.spi = x->id.spi;
3103 um->id.family = x->props.family;
3104 um->id.proto = x->id.proto;
3105 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3106 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3107 um->new_sport = new_sport;
3108 um->old_sport = x->encap->encap_sport;
3109 um->reqid = x->props.reqid;
3110
Johannes Berg053c0952015-01-16 22:09:00 +01003111 nlmsg_end(skb, nlh);
3112 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003113}
3114
3115static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3116 __be16 sport)
3117{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003118 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003119 struct sk_buff *skb;
3120
3121 if (x->id.proto != IPPROTO_ESP)
3122 return -EINVAL;
3123
3124 if (!x->encap)
3125 return -EINVAL;
3126
3127 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3128 if (skb == NULL)
3129 return -ENOMEM;
3130
3131 if (build_mapping(skb, x, ipaddr, sport) < 0)
3132 BUG();
3133
Michal Kubecek21ee5432014-06-03 10:26:06 +02003134 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003135}
3136
Horia Geanta0f245582014-02-12 16:20:06 +02003137static bool xfrm_is_alive(const struct km_event *c)
3138{
3139 return (bool)xfrm_acquire_is_on(c->net);
3140}
3141
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142static struct xfrm_mgr netlink_mgr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 .notify = xfrm_send_state_notify,
3144 .acquire = xfrm_send_acquire,
3145 .compile_policy = xfrm_compile_policy,
3146 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003147 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003148 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003149 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003150 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151};
3152
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003153static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154{
Patrick McHardybe336902006-03-20 22:40:54 -08003155 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003156 struct netlink_kernel_cfg cfg = {
3157 .groups = XFRMNLGRP_MAX,
3158 .input = xfrm_netlink_rcv,
3159 };
Patrick McHardybe336902006-03-20 22:40:54 -08003160
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003161 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003162 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003164 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003165 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 return 0;
3167}
3168
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003169static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003170{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003171 struct net *net;
3172 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003173 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003174 synchronize_net();
3175 list_for_each_entry(net, net_exit_list, exit_list)
3176 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003177}
3178
3179static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003180 .init = xfrm_user_net_init,
3181 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003182};
3183
3184static int __init xfrm_user_init(void)
3185{
3186 int rv;
3187
3188 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3189
3190 rv = register_pernet_subsys(&xfrm_user_net_ops);
3191 if (rv < 0)
3192 return rv;
3193 rv = xfrm_register_km(&netlink_mgr);
3194 if (rv < 0)
3195 unregister_pernet_subsys(&xfrm_user_net_ops);
3196 return rv;
3197}
3198
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199static void __exit xfrm_user_exit(void)
3200{
3201 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003202 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203}
3204
3205module_init(xfrm_user_init);
3206module_exit(xfrm_user_exit);
3207MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003208MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);
Jamal Hadi Salimf8cd5482006-03-20 19:15:11 -08003209