blob: a131f9ff979e1b64015ade91942cf1ce88eee15c [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);
Alexey Dobriyan06cd22f2017-09-21 23:46:30 +030045 if (nla_len(rt) < (int)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);
Alexey Dobriyan1bd963a2017-09-21 23:47:09 +030071 if (nla_len(rt) < (int)xfrm_alg_auth_len(algp))
Martin Willi4447bb32009-11-25 00:29:52 +000072 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);
Alexey Dobriyan373b8ee2017-09-21 23:45:43 +030087 if (nla_len(rt) < (int)aead_len(algp))
Herbert Xu1a6509d2008-01-28 19:37:29 -080088 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
124 if (!rt)
Florian Westphald97ca5d2018-02-12 14:42:01 +0100125 return (p->flags & XFRM_STATE_ESN) ? -EINVAL : 0;
126
127 rs = nla_data(rt);
128
129 if (rs->bmp_len > XFRMA_REPLAY_ESN_MAX / sizeof(rs->bmp[0]) / 8)
130 return -EINVAL;
131
132 if (nla_len(rt) < (int)xfrm_replay_state_esn_len(rs) &&
133 nla_len(rt) != sizeof(*rs))
134 return -EINVAL;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000135
Fan Du01714102014-01-18 09:54:28 +0800136 /* As only ESP and AH support ESN feature. */
137 if ((p->id.proto != IPPROTO_ESP) && (p->id.proto != IPPROTO_AH))
Steffen Klassert02aadf72011-03-28 19:48:09 +0000138 return -EINVAL;
139
Steffen Klassertd8647b72011-03-08 00:10:27 +0000140 if (p->replay_window != 0)
141 return -EINVAL;
142
143 return 0;
144}
Trent Jaegerdf718372005-12-13 23:12:27 -0800145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146static int verify_newsa_info(struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700147 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148{
149 int err;
150
151 err = -EINVAL;
152 switch (p->family) {
153 case AF_INET:
Steffen Klassert07bf7902018-08-01 13:45:11 +0200154 if (p->sel.prefixlen_d > 32 || p->sel.prefixlen_s > 32)
155 goto out;
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 break;
158
159 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000160#if IS_ENABLED(CONFIG_IPV6)
Steffen Klassert07bf7902018-08-01 13:45:11 +0200161 if (p->sel.prefixlen_d > 128 || p->sel.prefixlen_s > 128)
162 goto out;
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 break;
165#else
166 err = -EAFNOSUPPORT;
167 goto out;
168#endif
169
170 default:
171 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 err = -EINVAL;
175 switch (p->id.proto) {
176 case IPPROTO_AH:
Martin Willi4447bb32009-11-25 00:29:52 +0000177 if ((!attrs[XFRMA_ALG_AUTH] &&
178 !attrs[XFRMA_ALG_AUTH_TRUNC]) ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800179 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700180 attrs[XFRMA_ALG_CRYPT] ||
Martin Willi35d28562010-12-08 04:37:49 +0000181 attrs[XFRMA_ALG_COMP] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200182 attrs[XFRMA_TFCPAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 goto out;
184 break;
185
186 case IPPROTO_ESP:
Herbert Xu1a6509d2008-01-28 19:37:29 -0800187 if (attrs[XFRMA_ALG_COMP])
188 goto out;
189 if (!attrs[XFRMA_ALG_AUTH] &&
Martin Willi4447bb32009-11-25 00:29:52 +0000190 !attrs[XFRMA_ALG_AUTH_TRUNC] &&
Herbert Xu1a6509d2008-01-28 19:37:29 -0800191 !attrs[XFRMA_ALG_CRYPT] &&
192 !attrs[XFRMA_ALG_AEAD])
193 goto out;
194 if ((attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000195 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800196 attrs[XFRMA_ALG_CRYPT]) &&
197 attrs[XFRMA_ALG_AEAD])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 goto out;
Martin Willi35d28562010-12-08 04:37:49 +0000199 if (attrs[XFRMA_TFCPAD] &&
200 p->mode != XFRM_MODE_TUNNEL)
201 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 break;
203
204 case IPPROTO_COMP:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700205 if (!attrs[XFRMA_ALG_COMP] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800206 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700207 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000208 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Martin Willi35d28562010-12-08 04:37:49 +0000209 attrs[XFRMA_ALG_CRYPT] ||
Tobias Brunnera0e5ef52014-06-26 15:12:45 +0200210 attrs[XFRMA_TFCPAD] ||
211 (ntohl(p->id.spi) >= 0x10000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 goto out;
213 break;
214
Eric Dumazetdfd56b82011-12-10 09:48:31 +0000215#if IS_ENABLED(CONFIG_IPV6)
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700216 case IPPROTO_DSTOPTS:
217 case IPPROTO_ROUTING:
Thomas Graf35a7aa02007-08-22 14:00:40 -0700218 if (attrs[XFRMA_ALG_COMP] ||
219 attrs[XFRMA_ALG_AUTH] ||
Martin Willi4447bb32009-11-25 00:29:52 +0000220 attrs[XFRMA_ALG_AUTH_TRUNC] ||
Herbert Xu1a6509d2008-01-28 19:37:29 -0800221 attrs[XFRMA_ALG_AEAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700222 attrs[XFRMA_ALG_CRYPT] ||
223 attrs[XFRMA_ENCAP] ||
224 attrs[XFRMA_SEC_CTX] ||
Martin Willi35d28562010-12-08 04:37:49 +0000225 attrs[XFRMA_TFCPAD] ||
Thomas Graf35a7aa02007-08-22 14:00:40 -0700226 !attrs[XFRMA_COADDR])
Masahide NAKAMURAe23c7192006-08-23 20:33:28 -0700227 goto out;
228 break;
229#endif
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 default:
232 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Herbert Xu1a6509d2008-01-28 19:37:29 -0800235 if ((err = verify_aead(attrs)))
236 goto out;
Martin Willi4447bb32009-11-25 00:29:52 +0000237 if ((err = verify_auth_trunc(attrs)))
238 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700239 if ((err = verify_one_alg(attrs, XFRMA_ALG_AUTH)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700241 if ((err = verify_one_alg(attrs, XFRMA_ALG_CRYPT)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700243 if ((err = verify_one_alg(attrs, XFRMA_ALG_COMP)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 goto out;
Thomas Graf35a7aa02007-08-22 14:00:40 -0700245 if ((err = verify_sec_ctx_len(attrs)))
Trent Jaegerdf718372005-12-13 23:12:27 -0800246 goto out;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000247 if ((err = verify_replay(p, attrs)))
248 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 err = -EINVAL;
251 switch (p->mode) {
Masahide NAKAMURA7e49e6d2006-09-22 15:05:15 -0700252 case XFRM_MODE_TRANSPORT:
253 case XFRM_MODE_TUNNEL:
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700254 case XFRM_MODE_ROUTEOPTIMIZATION:
Diego Beltrami0a694522006-10-03 23:47:05 -0700255 case XFRM_MODE_BEET:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 break;
257
258 default:
259 goto out;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700260 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262 err = 0;
263
264out:
265 return err;
266}
267
268static int attach_one_algo(struct xfrm_algo **algpp, u8 *props,
David S. Miller6f2f19e2011-02-27 23:04:45 -0800269 struct xfrm_algo_desc *(*get_byname)(const char *, int),
Thomas Graf5424f322007-08-22 14:01:33 -0700270 struct nlattr *rta)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 struct xfrm_algo *p, *ualg;
273 struct xfrm_algo_desc *algo;
274
275 if (!rta)
276 return 0;
277
Thomas Graf5424f322007-08-22 14:01:33 -0700278 ualg = nla_data(rta);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279
280 algo = get_byname(ualg->alg_name, 1);
281 if (!algo)
282 return -ENOSYS;
283 *props = algo->desc.sadb_alg_id;
284
Eric Dumazet0f99be02008-01-08 23:39:06 -0800285 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 if (!p)
287 return -ENOMEM;
288
Herbert Xu04ff1262006-08-13 08:50:00 +1000289 strcpy(p->alg_name, algo->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 *algpp = p;
291 return 0;
292}
293
Herbert Xu69b01372015-05-27 16:03:45 +0800294static int attach_crypt(struct xfrm_state *x, struct nlattr *rta)
295{
296 struct xfrm_algo *p, *ualg;
297 struct xfrm_algo_desc *algo;
298
299 if (!rta)
300 return 0;
301
302 ualg = nla_data(rta);
303
304 algo = xfrm_ealg_get_byname(ualg->alg_name, 1);
305 if (!algo)
306 return -ENOSYS;
307 x->props.ealgo = algo->desc.sadb_alg_id;
308
309 p = kmemdup(ualg, xfrm_alg_len(ualg), GFP_KERNEL);
310 if (!p)
311 return -ENOMEM;
312
313 strcpy(p->alg_name, algo->name);
314 x->ealg = p;
315 x->geniv = algo->uinfo.encr.geniv;
316 return 0;
317}
318
Martin Willi4447bb32009-11-25 00:29:52 +0000319static int attach_auth(struct xfrm_algo_auth **algpp, u8 *props,
320 struct nlattr *rta)
321{
322 struct xfrm_algo *ualg;
323 struct xfrm_algo_auth *p;
324 struct xfrm_algo_desc *algo;
325
326 if (!rta)
327 return 0;
328
329 ualg = nla_data(rta);
330
331 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
332 if (!algo)
333 return -ENOSYS;
334 *props = algo->desc.sadb_alg_id;
335
336 p = kmalloc(sizeof(*p) + (ualg->alg_key_len + 7) / 8, GFP_KERNEL);
337 if (!p)
338 return -ENOMEM;
339
340 strcpy(p->alg_name, algo->name);
341 p->alg_key_len = ualg->alg_key_len;
342 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
343 memcpy(p->alg_key, ualg->alg_key, (ualg->alg_key_len + 7) / 8);
344
345 *algpp = p;
346 return 0;
347}
348
349static int attach_auth_trunc(struct xfrm_algo_auth **algpp, u8 *props,
350 struct nlattr *rta)
351{
352 struct xfrm_algo_auth *p, *ualg;
353 struct xfrm_algo_desc *algo;
354
355 if (!rta)
356 return 0;
357
358 ualg = nla_data(rta);
359
360 algo = xfrm_aalg_get_byname(ualg->alg_name, 1);
361 if (!algo)
362 return -ENOSYS;
Herbert Xu689f1c92014-09-18 16:38:18 +0800363 if (ualg->alg_trunc_len > algo->uinfo.auth.icv_fullbits)
Martin Willi4447bb32009-11-25 00:29:52 +0000364 return -EINVAL;
365 *props = algo->desc.sadb_alg_id;
366
367 p = kmemdup(ualg, xfrm_alg_auth_len(ualg), GFP_KERNEL);
368 if (!p)
369 return -ENOMEM;
370
371 strcpy(p->alg_name, algo->name);
372 if (!p->alg_trunc_len)
373 p->alg_trunc_len = algo->uinfo.auth.icv_truncbits;
374
375 *algpp = p;
376 return 0;
377}
378
Herbert Xu69b01372015-05-27 16:03:45 +0800379static int attach_aead(struct xfrm_state *x, struct nlattr *rta)
Herbert Xu1a6509d2008-01-28 19:37:29 -0800380{
381 struct xfrm_algo_aead *p, *ualg;
382 struct xfrm_algo_desc *algo;
383
384 if (!rta)
385 return 0;
386
387 ualg = nla_data(rta);
388
389 algo = xfrm_aead_get_byname(ualg->alg_name, ualg->alg_icv_len, 1);
390 if (!algo)
391 return -ENOSYS;
Herbert Xu69b01372015-05-27 16:03:45 +0800392 x->props.ealgo = algo->desc.sadb_alg_id;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800393
394 p = kmemdup(ualg, aead_len(ualg), GFP_KERNEL);
395 if (!p)
396 return -ENOMEM;
397
398 strcpy(p->alg_name, algo->name);
Herbert Xu69b01372015-05-27 16:03:45 +0800399 x->aead = p;
400 x->geniv = algo->uinfo.aead.geniv;
Herbert Xu1a6509d2008-01-28 19:37:29 -0800401 return 0;
402}
403
Steffen Klasserte2b19122011-03-28 19:47:30 +0000404static inline int xfrm_replay_verify_len(struct xfrm_replay_state_esn *replay_esn,
405 struct nlattr *rp)
406{
407 struct xfrm_replay_state_esn *up;
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300408 unsigned int ulen;
Steffen Klasserte2b19122011-03-28 19:47:30 +0000409
410 if (!replay_esn || !rp)
411 return 0;
412
413 up = nla_data(rp);
Mathias Krauseecd79182012-09-20 10:01:49 +0000414 ulen = xfrm_replay_state_esn_len(up);
Steffen Klasserte2b19122011-03-28 19:47:30 +0000415
Andy Whitcroftf843ee62017-03-23 07:45:44 +0000416 /* Check the overall length and the internal bitmap length to avoid
417 * potential overflow. */
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300418 if (nla_len(rp) < (int)ulen ||
Andy Whitcroftf843ee62017-03-23 07:45:44 +0000419 xfrm_replay_state_esn_len(replay_esn) != ulen ||
420 replay_esn->bmp_len != up->bmp_len)
Steffen Klasserte2b19122011-03-28 19:47:30 +0000421 return -EINVAL;
422
Andy Whitcroft677e8062017-03-22 07:29:31 +0000423 if (up->replay_window > up->bmp_len * sizeof(__u32) * 8)
424 return -EINVAL;
425
Steffen Klasserte2b19122011-03-28 19:47:30 +0000426 return 0;
427}
428
Steffen Klassertd8647b72011-03-08 00:10:27 +0000429static int xfrm_alloc_replay_state_esn(struct xfrm_replay_state_esn **replay_esn,
430 struct xfrm_replay_state_esn **preplay_esn,
431 struct nlattr *rta)
432{
433 struct xfrm_replay_state_esn *p, *pp, *up;
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300434 unsigned int klen, ulen;
Steffen Klassertd8647b72011-03-08 00:10:27 +0000435
436 if (!rta)
437 return 0;
438
439 up = nla_data(rta);
Mathias Krauseecd79182012-09-20 10:01:49 +0000440 klen = xfrm_replay_state_esn_len(up);
Alexey Dobriyan5e708e42017-09-21 23:47:50 +0300441 ulen = nla_len(rta) >= (int)klen ? klen : sizeof(*up);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000442
Mathias Krauseecd79182012-09-20 10:01:49 +0000443 p = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000444 if (!p)
445 return -ENOMEM;
446
Mathias Krauseecd79182012-09-20 10:01:49 +0000447 pp = kzalloc(klen, GFP_KERNEL);
Steffen Klassertd8647b72011-03-08 00:10:27 +0000448 if (!pp) {
449 kfree(p);
450 return -ENOMEM;
451 }
452
Mathias Krauseecd79182012-09-20 10:01:49 +0000453 memcpy(p, up, ulen);
454 memcpy(pp, up, ulen);
455
Steffen Klassertd8647b72011-03-08 00:10:27 +0000456 *replay_esn = p;
457 *preplay_esn = pp;
458
459 return 0;
460}
461
Alexey Dobriyana1b831f2017-09-21 23:48:54 +0300462static inline unsigned int xfrm_user_sec_ctx_size(struct xfrm_sec_ctx *xfrm_ctx)
Trent Jaegerdf718372005-12-13 23:12:27 -0800463{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +0300464 unsigned int len = 0;
Trent Jaegerdf718372005-12-13 23:12:27 -0800465
466 if (xfrm_ctx) {
467 len += sizeof(struct xfrm_user_sec_ctx);
468 len += xfrm_ctx->ctx_len;
469 }
470 return len;
471}
472
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473static void copy_from_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
474{
475 memcpy(&x->id, &p->id, sizeof(x->id));
476 memcpy(&x->sel, &p->sel, sizeof(x->sel));
477 memcpy(&x->lft, &p->lft, sizeof(x->lft));
478 x->props.mode = p->mode;
Fan Du33fce602013-09-17 15:14:13 +0800479 x->props.replay_window = min_t(unsigned int, p->replay_window,
480 sizeof(x->replay.bitmap) * 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 x->props.reqid = p->reqid;
482 x->props.family = p->family;
David S. Miller54489c142006-10-27 15:29:47 -0700483 memcpy(&x->props.saddr, &p->saddr, sizeof(x->props.saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 x->props.flags = p->flags;
Herbert Xu196b0032007-07-31 02:04:32 -0700485
Steffen Klassertccf9b3b2008-07-10 16:55:37 -0700486 if (!x->sel.family && !(p->flags & XFRM_STATE_AF_UNSPEC))
Herbert Xu196b0032007-07-31 02:04:32 -0700487 x->sel.family = p->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800490/*
491 * someday when pfkey also has support, we could have the code
492 * somehow made shareable and move it to xfrm_state.c - JHS
493 *
494*/
Mathias Krausee3ac1042012-09-19 11:33:43 +0000495static void xfrm_update_ae_params(struct xfrm_state *x, struct nlattr **attrs,
496 int update_esn)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800497{
Thomas Graf5424f322007-08-22 14:01:33 -0700498 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Mathias Krausee3ac1042012-09-19 11:33:43 +0000499 struct nlattr *re = update_esn ? attrs[XFRMA_REPLAY_ESN_VAL] : NULL;
Thomas Graf5424f322007-08-22 14:01:33 -0700500 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
501 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
502 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800503
Steffen Klassertd8647b72011-03-08 00:10:27 +0000504 if (re) {
505 struct xfrm_replay_state_esn *replay_esn;
506 replay_esn = nla_data(re);
507 memcpy(x->replay_esn, replay_esn,
508 xfrm_replay_state_esn_len(replay_esn));
509 memcpy(x->preplay_esn, replay_esn,
510 xfrm_replay_state_esn_len(replay_esn));
511 }
512
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800513 if (rp) {
514 struct xfrm_replay_state *replay;
Thomas Graf5424f322007-08-22 14:01:33 -0700515 replay = nla_data(rp);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800516 memcpy(&x->replay, replay, sizeof(*replay));
517 memcpy(&x->preplay, replay, sizeof(*replay));
518 }
519
520 if (lt) {
521 struct xfrm_lifetime_cur *ltime;
Thomas Graf5424f322007-08-22 14:01:33 -0700522 ltime = nla_data(lt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800523 x->curlft.bytes = ltime->bytes;
524 x->curlft.packets = ltime->packets;
525 x->curlft.add_time = ltime->add_time;
526 x->curlft.use_time = ltime->use_time;
527 }
528
Thomas Grafcf5cb792007-08-22 13:59:04 -0700529 if (et)
Thomas Graf5424f322007-08-22 14:01:33 -0700530 x->replay_maxage = nla_get_u32(et);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800531
Thomas Grafcf5cb792007-08-22 13:59:04 -0700532 if (rt)
Thomas Graf5424f322007-08-22 14:01:33 -0700533 x->replay_maxdiff = nla_get_u32(rt);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800534}
535
Steffen Klassert9b42c1f2018-06-12 12:44:26 +0200536static void xfrm_smark_init(struct nlattr **attrs, struct xfrm_mark *m)
537{
538 if (attrs[XFRMA_SET_MARK]) {
539 m->v = nla_get_u32(attrs[XFRMA_SET_MARK]);
540 if (attrs[XFRMA_SET_MARK_MASK])
541 m->m = nla_get_u32(attrs[XFRMA_SET_MARK_MASK]);
542 else
543 m->m = 0xffffffff;
544 } else {
545 m->v = m->m = 0;
546 }
547}
548
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800549static struct xfrm_state *xfrm_state_construct(struct net *net,
550 struct xfrm_usersa_info *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700551 struct nlattr **attrs,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 int *errp)
553{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800554 struct xfrm_state *x = xfrm_state_alloc(net);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 int err = -ENOMEM;
556
557 if (!x)
558 goto error_no_put;
559
560 copy_from_user_state(x, p);
561
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100562 if (attrs[XFRMA_SA_EXTRA_FLAGS])
563 x->props.extra_flags = nla_get_u32(attrs[XFRMA_SA_EXTRA_FLAGS]);
564
Herbert Xu69b01372015-05-27 16:03:45 +0800565 if ((err = attach_aead(x, attrs[XFRMA_ALG_AEAD])))
Herbert Xu1a6509d2008-01-28 19:37:29 -0800566 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000567 if ((err = attach_auth_trunc(&x->aalg, &x->props.aalgo,
568 attrs[XFRMA_ALG_AUTH_TRUNC])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 goto error;
Martin Willi4447bb32009-11-25 00:29:52 +0000570 if (!x->props.aalgo) {
571 if ((err = attach_auth(&x->aalg, &x->props.aalgo,
572 attrs[XFRMA_ALG_AUTH])))
573 goto error;
574 }
Herbert Xu69b01372015-05-27 16:03:45 +0800575 if ((err = attach_crypt(x, attrs[XFRMA_ALG_CRYPT])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 goto error;
577 if ((err = attach_one_algo(&x->calg, &x->props.calgo,
578 xfrm_calg_get_byname,
Thomas Graf35a7aa02007-08-22 14:00:40 -0700579 attrs[XFRMA_ALG_COMP])))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 goto error;
Thomas Graffd211502007-09-06 03:28:08 -0700581
582 if (attrs[XFRMA_ENCAP]) {
583 x->encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
584 sizeof(*x->encap), GFP_KERNEL);
585 if (x->encap == NULL)
586 goto error;
587 }
588
Martin Willi35d28562010-12-08 04:37:49 +0000589 if (attrs[XFRMA_TFCPAD])
590 x->tfcpad = nla_get_u32(attrs[XFRMA_TFCPAD]);
591
Thomas Graffd211502007-09-06 03:28:08 -0700592 if (attrs[XFRMA_COADDR]) {
593 x->coaddr = kmemdup(nla_data(attrs[XFRMA_COADDR]),
594 sizeof(*x->coaddr), GFP_KERNEL);
595 if (x->coaddr == NULL)
596 goto error;
597 }
598
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000599 xfrm_mark_get(attrs, &x->mark);
600
Steffen Klassert9b42c1f2018-06-12 12:44:26 +0200601 xfrm_smark_init(attrs, &x->props.smark);
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900602
Steffen Klassert7e652642018-06-12 14:07:07 +0200603 if (attrs[XFRMA_IF_ID])
604 x->if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
Noriaki TAKAMIYA060f02a2006-08-23 18:18:55 -0700605
Ilan Tayariffdb5212017-08-01 12:49:08 +0300606 err = __xfrm_init_state(x, false, attrs[XFRMA_OFFLOAD_DEV]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (err)
608 goto error;
609
Mathias Krause2f30ea52016-09-08 18:09:57 +0200610 if (attrs[XFRMA_SEC_CTX]) {
611 err = security_xfrm_state_alloc(x,
612 nla_data(attrs[XFRMA_SEC_CTX]));
613 if (err)
614 goto error;
615 }
Trent Jaegerdf718372005-12-13 23:12:27 -0800616
Steffen Klassertd8647b72011-03-08 00:10:27 +0000617 if ((err = xfrm_alloc_replay_state_esn(&x->replay_esn, &x->preplay_esn,
618 attrs[XFRMA_REPLAY_ESN_VAL])))
619 goto error;
620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 x->km.seq = p->seq;
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800622 x->replay_maxdiff = net->xfrm.sysctl_aevent_rseqth;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800623 /* sysctl_xfrm_aevent_etime is in 100ms units */
Alexey Dobriyanb27aead2008-11-25 18:00:48 -0800624 x->replay_maxage = (net->xfrm.sysctl_aevent_etime*HZ)/XFRM_AE_ETH_M;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800625
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000626 if ((err = xfrm_init_replay(x)))
627 goto error;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -0800628
Steffen Klassert9fdc4882011-03-08 00:08:32 +0000629 /* override default values from above */
Mathias Krausee3ac1042012-09-19 11:33:43 +0000630 xfrm_update_ae_params(x, attrs, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
Yossi Kupermancc015722018-01-17 15:52:41 +0200632 /* configure the hardware if offload is requested */
633 if (attrs[XFRMA_OFFLOAD_DEV]) {
634 err = xfrm_dev_state_add(net, x,
635 nla_data(attrs[XFRMA_OFFLOAD_DEV]));
636 if (err)
637 goto error;
638 }
639
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return x;
641
642error:
643 x->km.state = XFRM_STATE_DEAD;
644 xfrm_state_put(x);
645error_no_put:
646 *errp = err;
647 return NULL;
648}
649
Christoph Hellwig22e70052007-01-02 15:22:30 -0800650static int xfrm_add_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700651 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800653 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -0700654 struct xfrm_usersa_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 struct xfrm_state *x;
656 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700657 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Thomas Graf35a7aa02007-08-22 14:00:40 -0700659 err = verify_newsa_info(p, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 if (err)
661 return err;
662
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800663 x = xfrm_state_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 if (!x)
665 return err;
666
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700667 xfrm_state_hold(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 if (nlh->nlmsg_type == XFRM_MSG_NEWSA)
669 err = xfrm_state_add(x);
670 else
671 err = xfrm_state_update(x);
672
Tetsuo Handa2e710292014-04-22 21:48:30 +0900673 xfrm_audit_state_add(x, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -0600674
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 if (err < 0) {
676 x->km.state = XFRM_STATE_DEAD;
Steffen Klassertc5d4d7d2017-09-04 10:28:02 +0200677 xfrm_dev_state_delete(x);
Herbert Xu21380b82006-02-22 14:47:13 -0800678 __xfrm_state_put(x);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700679 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
681
Yossi Kupermancc015722018-01-17 15:52:41 +0200682 if (x->km.state == XFRM_STATE_VOID)
683 x->km.state = XFRM_STATE_VALID;
684
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700685 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000686 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700687 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700688
689 km_state_notify(x, &c);
Patrick McHardy7d6dfe12005-06-18 22:45:31 -0700690out:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700691 xfrm_state_put(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 return err;
693}
694
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800695static struct xfrm_state *xfrm_user_state_lookup(struct net *net,
696 struct xfrm_usersa_id *p,
Thomas Graf5424f322007-08-22 14:01:33 -0700697 struct nlattr **attrs,
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700698 int *errp)
699{
700 struct xfrm_state *x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000701 struct xfrm_mark m;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700702 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000703 u32 mark = xfrm_mark_get(attrs, &m);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700704
705 if (xfrm_id_proto_match(p->proto, IPSEC_PROTO_ANY)) {
706 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000707 x = xfrm_state_lookup(net, mark, &p->daddr, p->spi, p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700708 } else {
709 xfrm_address_t *saddr = NULL;
710
Thomas Graf35a7aa02007-08-22 14:00:40 -0700711 verify_one_addr(attrs, XFRMA_SRCADDR, &saddr);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700712 if (!saddr) {
713 err = -EINVAL;
714 goto out;
715 }
716
Masahide NAKAMURA9abbffe2006-11-24 20:34:51 -0800717 err = -ESRCH;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +0000718 x = xfrm_state_lookup_byaddr(net, mark,
719 &p->daddr, saddr,
Alexey Dobriyan221df1e2008-11-25 17:30:50 -0800720 p->proto, p->family);
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700721 }
722
723 out:
724 if (!x && errp)
725 *errp = err;
726 return x;
727}
728
Christoph Hellwig22e70052007-01-02 15:22:30 -0800729static int xfrm_del_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -0700730 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800732 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 struct xfrm_state *x;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700734 int err = -ESRCH;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700735 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -0700736 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800738 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 if (x == NULL)
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -0700740 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
David S. Miller6f68dc32006-06-08 23:58:52 -0700742 if ((err = security_xfrm_state_delete(x)) != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700743 goto out;
744
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 if (xfrm_state_kern(x)) {
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700746 err = -EPERM;
747 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 }
749
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700750 err = xfrm_state_delete(x);
Joy Latten161a09e2006-11-27 13:11:54 -0600751
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700752 if (err < 0)
753 goto out;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700754
755 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +0000756 c.portid = nlh->nlmsg_pid;
Herbert Xuf60f6b82005-06-18 22:44:37 -0700757 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700758 km_state_notify(x, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700760out:
Tetsuo Handa2e710292014-04-22 21:48:30 +0900761 xfrm_audit_state_delete(x, err ? 0 : 1, true);
Catherine Zhangc8c05a82006-06-08 23:39:49 -0700762 xfrm_state_put(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -0700763 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764}
765
766static void copy_to_user_state(struct xfrm_state *x, struct xfrm_usersa_info *p)
767{
Mathias Krausef778a632012-09-19 11:33:39 +0000768 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 memcpy(&p->id, &x->id, sizeof(p->id));
770 memcpy(&p->sel, &x->sel, sizeof(p->sel));
771 memcpy(&p->lft, &x->lft, sizeof(p->lft));
772 memcpy(&p->curlft, &x->curlft, sizeof(p->curlft));
Sowmini Varadhane33d4f12015-10-21 11:48:25 -0400773 put_unaligned(x->stats.replay_window, &p->stats.replay_window);
774 put_unaligned(x->stats.replay, &p->stats.replay);
775 put_unaligned(x->stats.integrity_failed, &p->stats.integrity_failed);
David S. Miller54489c142006-10-27 15:29:47 -0700776 memcpy(&p->saddr, &x->props.saddr, sizeof(p->saddr));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 p->mode = x->props.mode;
778 p->replay_window = x->props.replay_window;
779 p->reqid = x->props.reqid;
780 p->family = x->props.family;
781 p->flags = x->props.flags;
782 p->seq = x->km.seq;
783}
784
785struct xfrm_dump_info {
786 struct sk_buff *in_skb;
787 struct sk_buff *out_skb;
788 u32 nlmsg_seq;
789 u16 nlmsg_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790};
791
Thomas Grafc0144be2007-08-22 13:55:43 -0700792static int copy_sec_ctx(struct xfrm_sec_ctx *s, struct sk_buff *skb)
793{
Thomas Grafc0144be2007-08-22 13:55:43 -0700794 struct xfrm_user_sec_ctx *uctx;
795 struct nlattr *attr;
Herbert Xu68325d32007-10-09 13:30:57 -0700796 int ctx_size = sizeof(*uctx) + s->ctx_len;
Thomas Grafc0144be2007-08-22 13:55:43 -0700797
798 attr = nla_reserve(skb, XFRMA_SEC_CTX, ctx_size);
799 if (attr == NULL)
800 return -EMSGSIZE;
801
802 uctx = nla_data(attr);
803 uctx->exttype = XFRMA_SEC_CTX;
804 uctx->len = ctx_size;
805 uctx->ctx_doi = s->ctx_doi;
806 uctx->ctx_alg = s->ctx_alg;
807 uctx->ctx_len = s->ctx_len;
808 memcpy(uctx + 1, s->ctx_str, s->ctx_len);
809
810 return 0;
811}
812
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200813static int copy_user_offload(struct xfrm_state_offload *xso, struct sk_buff *skb)
814{
815 struct xfrm_user_offload *xuo;
816 struct nlattr *attr;
817
818 attr = nla_reserve(skb, XFRMA_OFFLOAD_DEV, sizeof(*xuo));
819 if (attr == NULL)
820 return -EMSGSIZE;
821
822 xuo = nla_data(attr);
Mathias Krause5fe0d4b2017-08-26 17:08:57 +0200823 memset(xuo, 0, sizeof(*xuo));
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200824 xuo->ifindex = xso->dev->ifindex;
825 xuo->flags = xso->flags;
826
827 return 0;
828}
829
Martin Willi4447bb32009-11-25 00:29:52 +0000830static int copy_to_user_auth(struct xfrm_algo_auth *auth, struct sk_buff *skb)
831{
832 struct xfrm_algo *algo;
833 struct nlattr *nla;
834
835 nla = nla_reserve(skb, XFRMA_ALG_AUTH,
836 sizeof(*algo) + (auth->alg_key_len + 7) / 8);
837 if (!nla)
838 return -EMSGSIZE;
839
840 algo = nla_data(nla);
Mathias Krause4c873082012-09-19 11:33:38 +0000841 strncpy(algo->alg_name, auth->alg_name, sizeof(algo->alg_name));
Martin Willi4447bb32009-11-25 00:29:52 +0000842 memcpy(algo->alg_key, auth->alg_key, (auth->alg_key_len + 7) / 8);
843 algo->alg_key_len = auth->alg_key_len;
844
845 return 0;
846}
847
Steffen Klassert9b42c1f2018-06-12 12:44:26 +0200848static int xfrm_smark_put(struct sk_buff *skb, struct xfrm_mark *m)
849{
850 int ret = 0;
851
852 if (m->v | m->m) {
853 ret = nla_put_u32(skb, XFRMA_SET_MARK, m->v);
854 if (!ret)
855 ret = nla_put_u32(skb, XFRMA_SET_MARK_MASK, m->m);
856 }
857 return ret;
858}
859
Herbert Xu68325d32007-10-09 13:30:57 -0700860/* Don't change this without updating xfrm_sa_len! */
861static int copy_to_user_state_extra(struct xfrm_state *x,
862 struct xfrm_usersa_info *p,
863 struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
David S. Miller1d1e34d2012-06-27 21:57:03 -0700865 int ret = 0;
866
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 copy_to_user_state(x, p);
868
Nicolas Dichtela947b0a2013-02-22 10:54:54 +0100869 if (x->props.extra_flags) {
870 ret = nla_put_u32(skb, XFRMA_SA_EXTRA_FLAGS,
871 x->props.extra_flags);
872 if (ret)
873 goto out;
874 }
875
David S. Miller1d1e34d2012-06-27 21:57:03 -0700876 if (x->coaddr) {
877 ret = nla_put(skb, XFRMA_COADDR, sizeof(*x->coaddr), x->coaddr);
878 if (ret)
879 goto out;
880 }
881 if (x->lastused) {
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +0200882 ret = nla_put_u64_64bit(skb, XFRMA_LASTUSED, x->lastused,
883 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700884 if (ret)
885 goto out;
886 }
887 if (x->aead) {
888 ret = nla_put(skb, XFRMA_ALG_AEAD, aead_len(x->aead), x->aead);
889 if (ret)
890 goto out;
891 }
892 if (x->aalg) {
893 ret = copy_to_user_auth(x->aalg, skb);
894 if (!ret)
895 ret = nla_put(skb, XFRMA_ALG_AUTH_TRUNC,
896 xfrm_alg_auth_len(x->aalg), x->aalg);
897 if (ret)
898 goto out;
899 }
900 if (x->ealg) {
901 ret = nla_put(skb, XFRMA_ALG_CRYPT, xfrm_alg_len(x->ealg), x->ealg);
902 if (ret)
903 goto out;
904 }
905 if (x->calg) {
906 ret = nla_put(skb, XFRMA_ALG_COMP, sizeof(*(x->calg)), x->calg);
907 if (ret)
908 goto out;
909 }
910 if (x->encap) {
911 ret = nla_put(skb, XFRMA_ENCAP, sizeof(*x->encap), x->encap);
912 if (ret)
913 goto out;
914 }
915 if (x->tfcpad) {
916 ret = nla_put_u32(skb, XFRMA_TFCPAD, x->tfcpad);
917 if (ret)
918 goto out;
919 }
920 ret = xfrm_mark_put(skb, &x->mark);
921 if (ret)
922 goto out;
Steffen Klassert9b42c1f2018-06-12 12:44:26 +0200923
924 ret = xfrm_smark_put(skb, &x->props.smark);
925 if (ret)
926 goto out;
927
dingzhif293a5e2014-10-30 09:39:36 +0100928 if (x->replay_esn)
David S. Miller1d1e34d2012-06-27 21:57:03 -0700929 ret = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
930 xfrm_replay_state_esn_len(x->replay_esn),
931 x->replay_esn);
dingzhif293a5e2014-10-30 09:39:36 +0100932 else
933 ret = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
934 &x->replay);
935 if (ret)
936 goto out;
Steffen Klassertd77e38e2017-04-14 10:06:10 +0200937 if(x->xso.dev)
938 ret = copy_user_offload(&x->xso, skb);
939 if (ret)
940 goto out;
Steffen Klassert7e652642018-06-12 14:07:07 +0200941 if (x->if_id) {
942 ret = nla_put_u32(skb, XFRMA_IF_ID, x->if_id);
Lorenzo Colitti077fbac2017-08-11 02:11:33 +0900943 if (ret)
944 goto out;
945 }
Steffen Klassert85981122017-08-31 10:37:00 +0200946 if (x->security)
947 ret = copy_sec_ctx(x->security, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700948out:
949 return ret;
Herbert Xu68325d32007-10-09 13:30:57 -0700950}
951
952static int dump_one_state(struct xfrm_state *x, int count, void *ptr)
953{
954 struct xfrm_dump_info *sp = ptr;
955 struct sk_buff *in_skb = sp->in_skb;
956 struct sk_buff *skb = sp->out_skb;
957 struct xfrm_usersa_info *p;
958 struct nlmsghdr *nlh;
959 int err;
960
Eric W. Biederman15e47302012-09-07 20:12:54 +0000961 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Herbert Xu68325d32007-10-09 13:30:57 -0700962 XFRM_MSG_NEWSA, sizeof(*p), sp->nlmsg_flags);
963 if (nlh == NULL)
964 return -EMSGSIZE;
965
966 p = nlmsg_data(nlh);
967
968 err = copy_to_user_state_extra(x, p, skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -0700969 if (err) {
970 nlmsg_cancel(skb, nlh);
971 return err;
972 }
Thomas Graf98250692007-08-22 12:47:26 -0700973 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975}
976
Timo Teras4c563f72008-02-28 21:31:08 -0800977static int xfrm_dump_sa_done(struct netlink_callback *cb)
978{
979 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Fan Du283bc9f2013-11-07 17:47:50 +0800980 struct sock *sk = cb->skb->sk;
981 struct net *net = sock_net(sk);
982
Vegard Nossum1ba5bf92016-07-05 10:18:08 +0200983 if (cb->args[0])
984 xfrm_state_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -0800985 return 0;
986}
987
Nicolas Dichteld3623092014-02-14 15:30:36 +0100988static const struct nla_policy xfrma_policy[XFRMA_MAX+1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989static int xfrm_dump_sa(struct sk_buff *skb, struct netlink_callback *cb)
990{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -0800991 struct net *net = sock_net(skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -0800992 struct xfrm_state_walk *walk = (struct xfrm_state_walk *) &cb->args[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 struct xfrm_dump_info info;
994
Timo Teras4c563f72008-02-28 21:31:08 -0800995 BUILD_BUG_ON(sizeof(struct xfrm_state_walk) >
996 sizeof(cb->args) - sizeof(cb->args[0]));
997
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 info.in_skb = cb->skb;
999 info.out_skb = skb;
1000 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1001 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001002
1003 if (!cb->args[0]) {
Nicolas Dichteld3623092014-02-14 15:30:36 +01001004 struct nlattr *attrs[XFRMA_MAX+1];
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01001005 struct xfrm_address_filter *filter = NULL;
Nicolas Dichteld3623092014-02-14 15:30:36 +01001006 u8 proto = 0;
1007 int err;
1008
Johannes Bergfceb6432017-04-12 14:34:07 +02001009 err = nlmsg_parse(cb->nlh, 0, attrs, XFRMA_MAX, xfrma_policy,
David Aherndac9c972018-10-07 20:16:24 -07001010 cb->extack);
Nicolas Dichteld3623092014-02-14 15:30:36 +01001011 if (err < 0)
1012 return err;
1013
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01001014 if (attrs[XFRMA_ADDRESS_FILTER]) {
Andrzej Hajdadf367562015-08-07 09:59:34 +02001015 filter = kmemdup(nla_data(attrs[XFRMA_ADDRESS_FILTER]),
1016 sizeof(*filter), GFP_KERNEL);
Nicolas Dichteld3623092014-02-14 15:30:36 +01001017 if (filter == NULL)
1018 return -ENOMEM;
Nicolas Dichteld3623092014-02-14 15:30:36 +01001019 }
1020
1021 if (attrs[XFRMA_PROTO])
1022 proto = nla_get_u8(attrs[XFRMA_PROTO]);
1023
1024 xfrm_state_walk_init(walk, proto, filter);
Vegard Nossum1ba5bf92016-07-05 10:18:08 +02001025 cb->args[0] = 1;
Timo Teras4c563f72008-02-28 21:31:08 -08001026 }
1027
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001028 (void) xfrm_state_walk(net, walk, dump_one_state, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
1030 return skb->len;
1031}
1032
1033static struct sk_buff *xfrm_state_netlink(struct sk_buff *in_skb,
1034 struct xfrm_state *x, u32 seq)
1035{
1036 struct xfrm_dump_info info;
1037 struct sk_buff *skb;
Mathias Krause864745d2012-09-13 11:41:26 +00001038 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039
Thomas Graf7deb2262007-08-22 13:57:39 -07001040 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 if (!skb)
1042 return ERR_PTR(-ENOMEM);
1043
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 info.in_skb = in_skb;
1045 info.out_skb = skb;
1046 info.nlmsg_seq = seq;
1047 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048
Mathias Krause864745d2012-09-13 11:41:26 +00001049 err = dump_one_state(x, 0, &info);
1050 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 kfree_skb(skb);
Mathias Krause864745d2012-09-13 11:41:26 +00001052 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 }
1054
1055 return skb;
1056}
1057
Michal Kubecek21ee5432014-06-03 10:26:06 +02001058/* A wrapper for nlmsg_multicast() checking that nlsk is still available.
1059 * Must be called with RCU read lock.
1060 */
1061static inline int xfrm_nlmsg_multicast(struct net *net, struct sk_buff *skb,
1062 u32 pid, unsigned int group)
1063{
1064 struct sock *nlsk = rcu_dereference(net->xfrm.nlsk);
1065
Florian Westphal86126b72018-06-25 14:00:07 +02001066 if (!nlsk) {
1067 kfree_skb(skb);
1068 return -EPIPE;
1069 }
1070
1071 return nlmsg_multicast(nlsk, skb, pid, group, GFP_ATOMIC);
Michal Kubecek21ee5432014-06-03 10:26:06 +02001072}
1073
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001074static inline unsigned int xfrm_spdinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001075{
1076 return NLMSG_ALIGN(4)
1077 + nla_total_size(sizeof(struct xfrmu_spdinfo))
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001078 + nla_total_size(sizeof(struct xfrmu_spdhinfo))
1079 + nla_total_size(sizeof(struct xfrmu_spdhthresh))
1080 + nla_total_size(sizeof(struct xfrmu_spdhthresh));
Thomas Graf7deb2262007-08-22 13:57:39 -07001081}
1082
Alexey Dobriyane0710412010-01-23 13:37:10 +00001083static int build_spdinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001084 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001085{
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001086 struct xfrmk_spdinfo si;
1087 struct xfrmu_spdinfo spc;
1088 struct xfrmu_spdhinfo sph;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001089 struct xfrmu_spdhthresh spt4, spt6;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001090 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001091 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001092 u32 *f;
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001093 unsigned lseq;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001094
Eric W. Biederman15e47302012-09-07 20:12:54 +00001095 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSPDINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001096 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001097 return -EMSGSIZE;
1098
1099 f = nlmsg_data(nlh);
1100 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001101 xfrm_spd_getinfo(net, &si);
Jamal Hadi Salim5a6d3412007-05-04 12:55:39 -07001102 spc.incnt = si.incnt;
1103 spc.outcnt = si.outcnt;
1104 spc.fwdcnt = si.fwdcnt;
1105 spc.inscnt = si.inscnt;
1106 spc.outscnt = si.outscnt;
1107 spc.fwdscnt = si.fwdscnt;
1108 sph.spdhcnt = si.spdhcnt;
1109 sph.spdhmcnt = si.spdhmcnt;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001110
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001111 do {
1112 lseq = read_seqbegin(&net->xfrm.policy_hthresh.lock);
1113
1114 spt4.lbits = net->xfrm.policy_hthresh.lbits4;
1115 spt4.rbits = net->xfrm.policy_hthresh.rbits4;
1116 spt6.lbits = net->xfrm.policy_hthresh.lbits6;
1117 spt6.rbits = net->xfrm.policy_hthresh.rbits6;
1118 } while (read_seqretry(&net->xfrm.policy_hthresh.lock, lseq));
1119
David S. Miller1d1e34d2012-06-27 21:57:03 -07001120 err = nla_put(skb, XFRMA_SPD_INFO, sizeof(spc), &spc);
1121 if (!err)
1122 err = nla_put(skb, XFRMA_SPD_HINFO, sizeof(sph), &sph);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001123 if (!err)
1124 err = nla_put(skb, XFRMA_SPD_IPV4_HTHRESH, sizeof(spt4), &spt4);
1125 if (!err)
1126 err = nla_put(skb, XFRMA_SPD_IPV6_HTHRESH, sizeof(spt6), &spt6);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001127 if (err) {
1128 nlmsg_cancel(skb, nlh);
1129 return err;
1130 }
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001131
Johannes Berg053c0952015-01-16 22:09:00 +01001132 nlmsg_end(skb, nlh);
1133 return 0;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001134}
1135
Christophe Gouault880a6fa2014-08-29 16:16:05 +02001136static int xfrm_set_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
1137 struct nlattr **attrs)
1138{
1139 struct net *net = sock_net(skb->sk);
1140 struct xfrmu_spdhthresh *thresh4 = NULL;
1141 struct xfrmu_spdhthresh *thresh6 = NULL;
1142
1143 /* selector prefixlen thresholds to hash policies */
1144 if (attrs[XFRMA_SPD_IPV4_HTHRESH]) {
1145 struct nlattr *rta = attrs[XFRMA_SPD_IPV4_HTHRESH];
1146
1147 if (nla_len(rta) < sizeof(*thresh4))
1148 return -EINVAL;
1149 thresh4 = nla_data(rta);
1150 if (thresh4->lbits > 32 || thresh4->rbits > 32)
1151 return -EINVAL;
1152 }
1153 if (attrs[XFRMA_SPD_IPV6_HTHRESH]) {
1154 struct nlattr *rta = attrs[XFRMA_SPD_IPV6_HTHRESH];
1155
1156 if (nla_len(rta) < sizeof(*thresh6))
1157 return -EINVAL;
1158 thresh6 = nla_data(rta);
1159 if (thresh6->lbits > 128 || thresh6->rbits > 128)
1160 return -EINVAL;
1161 }
1162
1163 if (thresh4 || thresh6) {
1164 write_seqlock(&net->xfrm.policy_hthresh.lock);
1165 if (thresh4) {
1166 net->xfrm.policy_hthresh.lbits4 = thresh4->lbits;
1167 net->xfrm.policy_hthresh.rbits4 = thresh4->rbits;
1168 }
1169 if (thresh6) {
1170 net->xfrm.policy_hthresh.lbits6 = thresh6->lbits;
1171 net->xfrm.policy_hthresh.rbits6 = thresh6->rbits;
1172 }
1173 write_sequnlock(&net->xfrm.policy_hthresh.lock);
1174
1175 xfrm_policy_hash_rebuild(net);
1176 }
1177
1178 return 0;
1179}
1180
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001181static int xfrm_get_spdinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001182 struct nlattr **attrs)
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001183{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001184 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001185 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001186 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001187 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001188 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001189 int err;
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001190
Thomas Graf7deb2262007-08-22 13:57:39 -07001191 r_skb = nlmsg_new(xfrm_spdinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001192 if (r_skb == NULL)
1193 return -ENOMEM;
1194
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001195 err = build_spdinfo(r_skb, net, sportid, seq, *flags);
1196 BUG_ON(err < 0);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001197
Eric W. Biederman15e47302012-09-07 20:12:54 +00001198 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07001199}
1200
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001201static inline unsigned int xfrm_sadinfo_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07001202{
1203 return NLMSG_ALIGN(4)
1204 + nla_total_size(sizeof(struct xfrmu_sadhinfo))
1205 + nla_total_size(4); /* XFRMA_SAD_CNT */
1206}
1207
Alexey Dobriyane0710412010-01-23 13:37:10 +00001208static int build_sadinfo(struct sk_buff *skb, struct net *net,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001209 u32 portid, u32 seq, u32 flags)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001210{
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001211 struct xfrmk_sadinfo si;
1212 struct xfrmu_sadhinfo sh;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001213 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001214 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001215 u32 *f;
1216
Eric W. Biederman15e47302012-09-07 20:12:54 +00001217 nlh = nlmsg_put(skb, portid, seq, XFRM_MSG_NEWSADINFO, sizeof(u32), 0);
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001218 if (nlh == NULL) /* shouldn't really happen ... */
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001219 return -EMSGSIZE;
1220
1221 f = nlmsg_data(nlh);
1222 *f = flags;
Alexey Dobriyane0710412010-01-23 13:37:10 +00001223 xfrm_sad_getinfo(net, &si);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001224
Jamal Hadi Salimaf11e312007-05-04 12:55:13 -07001225 sh.sadhmcnt = si.sadhmcnt;
1226 sh.sadhcnt = si.sadhcnt;
1227
David S. Miller1d1e34d2012-06-27 21:57:03 -07001228 err = nla_put_u32(skb, XFRMA_SAD_CNT, si.sadcnt);
1229 if (!err)
1230 err = nla_put(skb, XFRMA_SAD_HINFO, sizeof(sh), &sh);
1231 if (err) {
1232 nlmsg_cancel(skb, nlh);
1233 return err;
1234 }
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001235
Johannes Berg053c0952015-01-16 22:09:00 +01001236 nlmsg_end(skb, nlh);
1237 return 0;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001238}
1239
1240static int xfrm_get_sadinfo(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001241 struct nlattr **attrs)
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001242{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001243 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001244 struct sk_buff *r_skb;
Thomas Graf7b67c852007-08-22 13:53:52 -07001245 u32 *flags = nlmsg_data(nlh);
Eric W. Biederman15e47302012-09-07 20:12:54 +00001246 u32 sportid = NETLINK_CB(skb).portid;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001247 u32 seq = nlh->nlmsg_seq;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001248 int err;
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001249
Thomas Graf7deb2262007-08-22 13:57:39 -07001250 r_skb = nlmsg_new(xfrm_sadinfo_msgsize(), GFP_ATOMIC);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001251 if (r_skb == NULL)
1252 return -ENOMEM;
1253
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05001254 err = build_sadinfo(r_skb, net, sportid, seq, *flags);
1255 BUG_ON(err < 0);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001256
Eric W. Biederman15e47302012-09-07 20:12:54 +00001257 return nlmsg_unicast(net->xfrm.nlsk, r_skb, sportid);
Jamal Hadi Salim28d89092007-04-26 00:10:29 -07001258}
1259
Christoph Hellwig22e70052007-01-02 15:22:30 -08001260static int xfrm_get_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001261 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001263 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001264 struct xfrm_usersa_id *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 struct xfrm_state *x;
1266 struct sk_buff *resp_skb;
Masahide NAKAMURAeb2971b2006-08-23 17:56:04 -07001267 int err = -ESRCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001269 x = xfrm_user_state_lookup(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 if (x == NULL)
1271 goto out_noput;
1272
1273 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
1274 if (IS_ERR(resp_skb)) {
1275 err = PTR_ERR(resp_skb);
1276 } else {
Eric W. Biederman15e47302012-09-07 20:12:54 +00001277 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 }
1279 xfrm_state_put(x);
1280out_noput:
1281 return err;
1282}
1283
Christoph Hellwig22e70052007-01-02 15:22:30 -08001284static int xfrm_alloc_userspi(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001285 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001287 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 struct xfrm_state *x;
1289 struct xfrm_userspi_info *p;
1290 struct sk_buff *resp_skb;
1291 xfrm_address_t *daddr;
1292 int family;
1293 int err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001294 u32 mark;
1295 struct xfrm_mark m;
Steffen Klassert7e652642018-06-12 14:07:07 +02001296 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297
Thomas Graf7b67c852007-08-22 13:53:52 -07001298 p = nlmsg_data(nlh);
Fan Du776e9dd2013-12-16 18:47:49 +08001299 err = verify_spi_info(p->info.id.proto, p->min, p->max);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 if (err)
1301 goto out_noput;
1302
1303 family = p->info.family;
1304 daddr = &p->info.id.daddr;
1305
1306 x = NULL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001307
1308 mark = xfrm_mark_get(attrs, &m);
Steffen Klassert7e652642018-06-12 14:07:07 +02001309
1310 if (attrs[XFRMA_IF_ID])
1311 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 if (p->info.seq) {
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001314 x = xfrm_find_acq_byseq(net, mark, p->info.seq);
YOSHIFUJI Hideaki / 吉藤英明70e94e62013-01-29 12:48:50 +00001315 if (x && !xfrm_addr_equal(&x->id.daddr, daddr, family)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 xfrm_state_put(x);
1317 x = NULL;
1318 }
1319 }
1320
1321 if (!x)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001322 x = xfrm_find_acq(net, &m, p->info.mode, p->info.reqid,
Steffen Klassert7e652642018-06-12 14:07:07 +02001323 if_id, p->info.id.proto, daddr,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 &p->info.saddr, 1,
1325 family);
1326 err = -ENOENT;
1327 if (x == NULL)
1328 goto out_noput;
1329
Herbert Xu658b2192007-10-09 13:29:52 -07001330 err = xfrm_alloc_spi(x, p->min, p->max);
1331 if (err)
1332 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
Herbert Xu658b2192007-10-09 13:29:52 -07001334 resp_skb = xfrm_state_netlink(skb, x, nlh->nlmsg_seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 if (IS_ERR(resp_skb)) {
1336 err = PTR_ERR(resp_skb);
1337 goto out;
1338 }
1339
Eric W. Biederman15e47302012-09-07 20:12:54 +00001340 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb, NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
1342out:
1343 xfrm_state_put(x);
1344out_noput:
1345 return err;
1346}
1347
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001348static int verify_policy_dir(u8 dir)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349{
1350 switch (dir) {
1351 case XFRM_POLICY_IN:
1352 case XFRM_POLICY_OUT:
1353 case XFRM_POLICY_FWD:
1354 break;
1355
1356 default:
1357 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
1360 return 0;
1361}
1362
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001363static int verify_policy_type(u8 type)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001364{
1365 switch (type) {
1366 case XFRM_POLICY_TYPE_MAIN:
1367#ifdef CONFIG_XFRM_SUB_POLICY
1368 case XFRM_POLICY_TYPE_SUB:
1369#endif
1370 break;
1371
1372 default:
1373 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001374 }
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001375
1376 return 0;
1377}
1378
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379static int verify_newpolicy_info(struct xfrm_userpolicy_info *p)
1380{
Fan Due682adf02013-11-07 17:47:48 +08001381 int ret;
1382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 switch (p->share) {
1384 case XFRM_SHARE_ANY:
1385 case XFRM_SHARE_SESSION:
1386 case XFRM_SHARE_USER:
1387 case XFRM_SHARE_UNIQUE:
1388 break;
1389
1390 default:
1391 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001392 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
1394 switch (p->action) {
1395 case XFRM_POLICY_ALLOW:
1396 case XFRM_POLICY_BLOCK:
1397 break;
1398
1399 default:
1400 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
1403 switch (p->sel.family) {
1404 case AF_INET:
Steffen Klassert07bf7902018-08-01 13:45:11 +02001405 if (p->sel.prefixlen_d > 32 || p->sel.prefixlen_s > 32)
1406 return -EINVAL;
1407
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 break;
1409
1410 case AF_INET6:
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001411#if IS_ENABLED(CONFIG_IPV6)
Steffen Klassert07bf7902018-08-01 13:45:11 +02001412 if (p->sel.prefixlen_d > 128 || p->sel.prefixlen_s > 128)
1413 return -EINVAL;
1414
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 break;
1416#else
1417 return -EAFNOSUPPORT;
1418#endif
1419
1420 default:
1421 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001422 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Fan Due682adf02013-11-07 17:47:48 +08001424 ret = verify_policy_dir(p->dir);
1425 if (ret)
1426 return ret;
1427 if (p->index && ((p->index & XFRM_POLICY_MAX) != p->dir))
1428 return -EINVAL;
1429
1430 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431}
1432
Thomas Graf5424f322007-08-22 14:01:33 -07001433static int copy_from_user_sec_ctx(struct xfrm_policy *pol, struct nlattr **attrs)
Trent Jaegerdf718372005-12-13 23:12:27 -08001434{
Thomas Graf5424f322007-08-22 14:01:33 -07001435 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Trent Jaegerdf718372005-12-13 23:12:27 -08001436 struct xfrm_user_sec_ctx *uctx;
1437
1438 if (!rt)
1439 return 0;
1440
Thomas Graf5424f322007-08-22 14:01:33 -07001441 uctx = nla_data(rt);
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001442 return security_xfrm_policy_alloc(&pol->security, uctx, GFP_KERNEL);
Trent Jaegerdf718372005-12-13 23:12:27 -08001443}
1444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445static void copy_templates(struct xfrm_policy *xp, struct xfrm_user_tmpl *ut,
1446 int nr)
1447{
1448 int i;
1449
1450 xp->xfrm_nr = nr;
1451 for (i = 0; i < nr; i++, ut++) {
1452 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
1453
1454 memcpy(&t->id, &ut->id, sizeof(struct xfrm_id));
1455 memcpy(&t->saddr, &ut->saddr,
1456 sizeof(xfrm_address_t));
1457 t->reqid = ut->reqid;
1458 t->mode = ut->mode;
1459 t->share = ut->share;
1460 t->optional = ut->optional;
1461 t->aalgos = ut->aalgos;
1462 t->ealgos = ut->ealgos;
1463 t->calgos = ut->calgos;
Herbert Xuc5d18e92008-04-22 00:46:42 -07001464 /* If all masks are ~0, then we allow all algorithms. */
1465 t->allalgs = !~(t->aalgos & t->ealgos & t->calgos);
Miika Komu8511d012006-11-30 16:40:51 -08001466 t->encap_family = ut->family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 }
1468}
1469
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001470static int validate_tmpl(int nr, struct xfrm_user_tmpl *ut, u16 family)
1471{
Steffen Klassert732706a2017-12-08 08:07:25 +01001472 u16 prev_family;
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001473 int i;
1474
1475 if (nr > XFRM_MAX_DEPTH)
1476 return -EINVAL;
1477
Steffen Klassert732706a2017-12-08 08:07:25 +01001478 prev_family = family;
1479
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001480 for (i = 0; i < nr; i++) {
1481 /* We never validated the ut->family value, so many
1482 * applications simply leave it at zero. The check was
1483 * never made and ut->family was ignored because all
1484 * templates could be assumed to have the same family as
1485 * the policy itself. Now that we will have ipv4-in-ipv6
1486 * and ipv6-in-ipv4 tunnels, this is no longer true.
1487 */
1488 if (!ut[i].family)
1489 ut[i].family = family;
1490
Florian Westphal35e6103862019-01-09 14:37:34 +01001491 switch (ut[i].mode) {
1492 case XFRM_MODE_TUNNEL:
1493 case XFRM_MODE_BEET:
1494 break;
1495 default:
1496 if (ut[i].family != prev_family)
1497 return -EINVAL;
1498 break;
1499 }
Sean Tranchetti32bf94f2018-09-19 13:54:56 -06001500 if (ut[i].mode >= XFRM_MODE_MAX)
1501 return -EINVAL;
1502
Steffen Klassert732706a2017-12-08 08:07:25 +01001503 prev_family = ut[i].family;
1504
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001505 switch (ut[i].family) {
1506 case AF_INET:
1507 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00001508#if IS_ENABLED(CONFIG_IPV6)
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001509 case AF_INET6:
1510 break;
1511#endif
1512 default:
1513 return -EINVAL;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -07001514 }
Cong Wang6a53b752017-11-27 11:15:16 -08001515
1516 switch (ut[i].id.proto) {
1517 case IPPROTO_AH:
1518 case IPPROTO_ESP:
1519 case IPPROTO_COMP:
1520#if IS_ENABLED(CONFIG_IPV6)
1521 case IPPROTO_ROUTING:
1522 case IPPROTO_DSTOPTS:
1523#endif
1524 case IPSEC_PROTO_ANY:
1525 break;
1526 default:
1527 return -EINVAL;
1528 }
1529
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001530 }
1531
1532 return 0;
1533}
1534
Thomas Graf5424f322007-08-22 14:01:33 -07001535static int copy_from_user_tmpl(struct xfrm_policy *pol, struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536{
Thomas Graf5424f322007-08-22 14:01:33 -07001537 struct nlattr *rt = attrs[XFRMA_TMPL];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
1539 if (!rt) {
1540 pol->xfrm_nr = 0;
1541 } else {
Thomas Graf5424f322007-08-22 14:01:33 -07001542 struct xfrm_user_tmpl *utmpl = nla_data(rt);
1543 int nr = nla_len(rt) / sizeof(*utmpl);
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001544 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
David S. Millerb4ad86bf2006-12-03 19:19:26 -08001546 err = validate_tmpl(nr, utmpl, pol->family);
1547 if (err)
1548 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Thomas Graf5424f322007-08-22 14:01:33 -07001550 copy_templates(pol, utmpl, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 }
1552 return 0;
1553}
1554
Thomas Graf5424f322007-08-22 14:01:33 -07001555static int copy_from_user_policy_type(u8 *tp, struct nlattr **attrs)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001556{
Thomas Graf5424f322007-08-22 14:01:33 -07001557 struct nlattr *rt = attrs[XFRMA_POLICY_TYPE];
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001558 struct xfrm_userpolicy_type *upt;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001559 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001560 int err;
1561
1562 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001563 upt = nla_data(rt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001564 type = upt->type;
1565 }
1566
1567 err = verify_policy_type(type);
1568 if (err)
1569 return err;
1570
1571 *tp = type;
1572 return 0;
1573}
1574
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575static void copy_from_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p)
1576{
1577 xp->priority = p->priority;
1578 xp->index = p->index;
1579 memcpy(&xp->selector, &p->sel, sizeof(xp->selector));
1580 memcpy(&xp->lft, &p->lft, sizeof(xp->lft));
1581 xp->action = p->action;
1582 xp->flags = p->flags;
1583 xp->family = p->sel.family;
1584 /* XXX xp->share = p->share; */
1585}
1586
1587static void copy_to_user_policy(struct xfrm_policy *xp, struct xfrm_userpolicy_info *p, int dir)
1588{
Mathias Krause7b789832012-09-19 11:33:40 +00001589 memset(p, 0, sizeof(*p));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 memcpy(&p->sel, &xp->selector, sizeof(p->sel));
1591 memcpy(&p->lft, &xp->lft, sizeof(p->lft));
1592 memcpy(&p->curlft, &xp->curlft, sizeof(p->curlft));
1593 p->priority = xp->priority;
1594 p->index = xp->index;
1595 p->sel.family = xp->family;
1596 p->dir = dir;
1597 p->action = xp->action;
1598 p->flags = xp->flags;
1599 p->share = XFRM_SHARE_ANY; /* XXX xp->share */
1600}
1601
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001602static 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 -07001603{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001604 struct xfrm_policy *xp = xfrm_policy_alloc(net, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 int err;
1606
1607 if (!xp) {
1608 *errp = -ENOMEM;
1609 return NULL;
1610 }
1611
1612 copy_from_user_policy(xp, p);
Trent Jaegerdf718372005-12-13 23:12:27 -08001613
Thomas Graf35a7aa02007-08-22 14:00:40 -07001614 err = copy_from_user_policy_type(&xp->type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001615 if (err)
1616 goto error;
1617
Thomas Graf35a7aa02007-08-22 14:00:40 -07001618 if (!(err = copy_from_user_tmpl(xp, attrs)))
1619 err = copy_from_user_sec_ctx(xp, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001620 if (err)
1621 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001623 xfrm_mark_get(attrs, &xp->mark);
1624
Steffen Klassert7e652642018-06-12 14:07:07 +02001625 if (attrs[XFRMA_IF_ID])
1626 xp->if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1627
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 return xp;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001629 error:
1630 *errp = err;
Herbert Xu12a169e2008-10-01 07:03:24 -07001631 xp->walk.dead = 1;
WANG Cong64c31b32008-01-07 22:34:29 -08001632 xfrm_policy_destroy(xp);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001633 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
1635
Christoph Hellwig22e70052007-01-02 15:22:30 -08001636static int xfrm_add_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001637 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001639 struct net *net = sock_net(skb->sk);
Thomas Graf7b67c852007-08-22 13:53:52 -07001640 struct xfrm_userpolicy_info *p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 struct xfrm_policy *xp;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001642 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 int err;
1644 int excl;
1645
1646 err = verify_newpolicy_info(p);
1647 if (err)
1648 return err;
Thomas Graf35a7aa02007-08-22 14:00:40 -07001649 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001650 if (err)
1651 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001653 xp = xfrm_policy_construct(net, p, attrs, &err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 if (!xp)
1655 return err;
1656
Lucas De Marchi25985ed2011-03-30 22:57:33 -03001657 /* shouldn't excl be based on nlh flags??
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001658 * Aha! this is anti-netlink really i.e more pfkey derived
1659 * in netlink excl is a flag and you wouldnt need
1660 * a type XFRM_MSG_UPDPOLICY - JHS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 excl = nlh->nlmsg_type == XFRM_MSG_NEWPOLICY;
1662 err = xfrm_policy_insert(p->dir, xp, excl);
Tetsuo Handa2e710292014-04-22 21:48:30 +09001663 xfrm_audit_policy_add(xp, err ? 0 : 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06001664
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665 if (err) {
Paul Moore03e1ad72008-04-12 19:07:52 -07001666 security_xfrm_policy_free(xp->security);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 kfree(xp);
1668 return err;
1669 }
1670
Herbert Xuf60f6b82005-06-18 22:44:37 -07001671 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001672 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001673 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001674 km_policy_notify(xp, p->dir, &c);
1675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 xfrm_pol_put(xp);
1677
1678 return 0;
1679}
1680
1681static int copy_to_user_tmpl(struct xfrm_policy *xp, struct sk_buff *skb)
1682{
1683 struct xfrm_user_tmpl vec[XFRM_MAX_DEPTH];
1684 int i;
1685
1686 if (xp->xfrm_nr == 0)
1687 return 0;
1688
1689 for (i = 0; i < xp->xfrm_nr; i++) {
1690 struct xfrm_user_tmpl *up = &vec[i];
1691 struct xfrm_tmpl *kp = &xp->xfrm_vec[i];
1692
Mathias Krause1f868402012-09-19 11:33:41 +00001693 memset(up, 0, sizeof(*up));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 memcpy(&up->id, &kp->id, sizeof(up->id));
Miika Komu8511d012006-11-30 16:40:51 -08001695 up->family = kp->encap_family;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 memcpy(&up->saddr, &kp->saddr, sizeof(up->saddr));
1697 up->reqid = kp->reqid;
1698 up->mode = kp->mode;
1699 up->share = kp->share;
1700 up->optional = kp->optional;
1701 up->aalgos = kp->aalgos;
1702 up->ealgos = kp->ealgos;
1703 up->calgos = kp->calgos;
1704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705
Thomas Grafc0144be2007-08-22 13:55:43 -07001706 return nla_put(skb, XFRMA_TMPL,
1707 sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr, vec);
Trent Jaegerdf718372005-12-13 23:12:27 -08001708}
1709
Serge Hallyn0d681622006-07-24 23:30:44 -07001710static inline int copy_to_user_state_sec_ctx(struct xfrm_state *x, struct sk_buff *skb)
1711{
1712 if (x->security) {
1713 return copy_sec_ctx(x->security, skb);
1714 }
1715 return 0;
1716}
1717
1718static inline int copy_to_user_sec_ctx(struct xfrm_policy *xp, struct sk_buff *skb)
1719{
David S. Miller1d1e34d2012-06-27 21:57:03 -07001720 if (xp->security)
Serge Hallyn0d681622006-07-24 23:30:44 -07001721 return copy_sec_ctx(xp->security, skb);
Serge Hallyn0d681622006-07-24 23:30:44 -07001722 return 0;
1723}
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001724static inline unsigned int userpolicy_type_attrsize(void)
Thomas Grafcfbfd452007-08-22 13:57:04 -07001725{
1726#ifdef CONFIG_XFRM_SUB_POLICY
1727 return nla_total_size(sizeof(struct xfrm_userpolicy_type));
1728#else
1729 return 0;
1730#endif
1731}
Serge Hallyn0d681622006-07-24 23:30:44 -07001732
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001733#ifdef CONFIG_XFRM_SUB_POLICY
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001734static int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001735{
Eric Dumazet45c180b2018-06-18 21:35:07 -07001736 struct xfrm_userpolicy_type upt;
1737
1738 /* Sadly there are two holes in struct xfrm_userpolicy_type */
1739 memset(&upt, 0, sizeof(upt));
1740 upt.type = type;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001741
Thomas Grafc0144be2007-08-22 13:55:43 -07001742 return nla_put(skb, XFRMA_POLICY_TYPE, sizeof(upt), &upt);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001743}
1744
1745#else
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001746static inline int copy_to_user_policy_type(u8 type, struct sk_buff *skb)
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001747{
1748 return 0;
1749}
1750#endif
1751
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752static int dump_one_policy(struct xfrm_policy *xp, int dir, int count, void *ptr)
1753{
1754 struct xfrm_dump_info *sp = ptr;
1755 struct xfrm_userpolicy_info *p;
1756 struct sk_buff *in_skb = sp->in_skb;
1757 struct sk_buff *skb = sp->out_skb;
1758 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001759 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
Eric W. Biederman15e47302012-09-07 20:12:54 +00001761 nlh = nlmsg_put(skb, NETLINK_CB(in_skb).portid, sp->nlmsg_seq,
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001762 XFRM_MSG_NEWPOLICY, sizeof(*p), sp->nlmsg_flags);
1763 if (nlh == NULL)
1764 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Thomas Graf7b67c852007-08-22 13:53:52 -07001766 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001768 err = copy_to_user_tmpl(xp, skb);
1769 if (!err)
1770 err = copy_to_user_sec_ctx(xp, skb);
1771 if (!err)
1772 err = copy_to_user_policy_type(xp->type, skb);
1773 if (!err)
1774 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02001775 if (!err)
1776 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001777 if (err) {
1778 nlmsg_cancel(skb, nlh);
1779 return err;
1780 }
Thomas Graf98250692007-08-22 12:47:26 -07001781 nlmsg_end(skb, nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783}
1784
Timo Teras4c563f72008-02-28 21:31:08 -08001785static int xfrm_dump_policy_done(struct netlink_callback *cb)
1786{
Herbert Xu1137b5e2017-10-19 20:51:10 +08001787 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Fan Du283bc9f2013-11-07 17:47:50 +08001788 struct net *net = sock_net(cb->skb->sk);
Timo Teras4c563f72008-02-28 21:31:08 -08001789
Fan Du283bc9f2013-11-07 17:47:50 +08001790 xfrm_policy_walk_done(walk, net);
Timo Teras4c563f72008-02-28 21:31:08 -08001791 return 0;
1792}
1793
Herbert Xu1137b5e2017-10-19 20:51:10 +08001794static int xfrm_dump_policy_start(struct netlink_callback *cb)
1795{
1796 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
1797
1798 BUILD_BUG_ON(sizeof(*walk) > sizeof(cb->args));
1799
1800 xfrm_policy_walk_init(walk, XFRM_POLICY_TYPE_ANY);
1801 return 0;
1802}
1803
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804static int xfrm_dump_policy(struct sk_buff *skb, struct netlink_callback *cb)
1805{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001806 struct net *net = sock_net(skb->sk);
Herbert Xu1137b5e2017-10-19 20:51:10 +08001807 struct xfrm_policy_walk *walk = (struct xfrm_policy_walk *)cb->args;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 struct xfrm_dump_info info;
1809
1810 info.in_skb = cb->skb;
1811 info.out_skb = skb;
1812 info.nlmsg_seq = cb->nlh->nlmsg_seq;
1813 info.nlmsg_flags = NLM_F_MULTI;
Timo Teras4c563f72008-02-28 21:31:08 -08001814
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001815 (void) xfrm_policy_walk(net, walk, dump_one_policy, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816
1817 return skb->len;
1818}
1819
1820static struct sk_buff *xfrm_policy_netlink(struct sk_buff *in_skb,
1821 struct xfrm_policy *xp,
1822 int dir, u32 seq)
1823{
1824 struct xfrm_dump_info info;
1825 struct sk_buff *skb;
Mathias Krausec2546372012-09-14 09:58:32 +00001826 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Thomas Graf7deb2262007-08-22 13:57:39 -07001828 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 if (!skb)
1830 return ERR_PTR(-ENOMEM);
1831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 info.in_skb = in_skb;
1833 info.out_skb = skb;
1834 info.nlmsg_seq = seq;
1835 info.nlmsg_flags = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001836
Mathias Krausec2546372012-09-14 09:58:32 +00001837 err = dump_one_policy(xp, dir, 0, &info);
1838 if (err) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 kfree_skb(skb);
Mathias Krausec2546372012-09-14 09:58:32 +00001840 return ERR_PTR(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 }
1842
1843 return skb;
1844}
1845
Christoph Hellwig22e70052007-01-02 15:22:30 -08001846static int xfrm_get_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001847 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001849 struct net *net = sock_net(skb->sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850 struct xfrm_policy *xp;
1851 struct xfrm_userpolicy_id *p;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08001852 u8 type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001854 struct km_event c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 int delete;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00001856 struct xfrm_mark m;
1857 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klassert7e652642018-06-12 14:07:07 +02001858 u32 if_id = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Thomas Graf7b67c852007-08-22 13:53:52 -07001860 p = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 delete = nlh->nlmsg_type == XFRM_MSG_DELPOLICY;
1862
Thomas Graf35a7aa02007-08-22 14:00:40 -07001863 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07001864 if (err)
1865 return err;
1866
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 err = verify_policy_dir(p->dir);
1868 if (err)
1869 return err;
1870
Steffen Klassert7e652642018-06-12 14:07:07 +02001871 if (attrs[XFRMA_IF_ID])
1872 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
1873
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 if (p->index)
Steffen Klassert7e652642018-06-12 14:07:07 +02001875 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, delete, &err);
Trent Jaegerdf718372005-12-13 23:12:27 -08001876 else {
Thomas Graf5424f322007-08-22 14:01:33 -07001877 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07001878 struct xfrm_sec_ctx *ctx;
Trent Jaegerdf718372005-12-13 23:12:27 -08001879
Thomas Graf35a7aa02007-08-22 14:00:40 -07001880 err = verify_sec_ctx_len(attrs);
Trent Jaegerdf718372005-12-13 23:12:27 -08001881 if (err)
1882 return err;
1883
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001884 ctx = NULL;
Trent Jaegerdf718372005-12-13 23:12:27 -08001885 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07001886 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Trent Jaegerdf718372005-12-13 23:12:27 -08001887
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01001888 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07001889 if (err)
Trent Jaegerdf718372005-12-13 23:12:27 -08001890 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07001891 }
Steffen Klassert7e652642018-06-12 14:07:07 +02001892 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir, &p->sel,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001893 ctx, delete, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07001894 security_xfrm_policy_free(ctx);
Trent Jaegerdf718372005-12-13 23:12:27 -08001895 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 if (xp == NULL)
1897 return -ENOENT;
1898
1899 if (!delete) {
1900 struct sk_buff *resp_skb;
1901
1902 resp_skb = xfrm_policy_netlink(skb, xp, p->dir, nlh->nlmsg_seq);
1903 if (IS_ERR(resp_skb)) {
1904 err = PTR_ERR(resp_skb);
1905 } else {
Alexey Dobriyana6483b72008-11-25 17:38:20 -08001906 err = nlmsg_unicast(net->xfrm.nlsk, resp_skb,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001907 NETLINK_CB(skb).portid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001909 } else {
Tetsuo Handa2e710292014-04-22 21:48:30 +09001910 xfrm_audit_policy_delete(xp, err ? 0 : 1, true);
David S. Miller13fcfbb02007-02-12 13:53:54 -08001911
1912 if (err != 0)
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001913 goto out;
David S. Miller13fcfbb02007-02-12 13:53:54 -08001914
Herbert Xue7443892005-06-18 22:44:18 -07001915 c.data.byid = p->index;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001916 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001917 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001918 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001919 km_policy_notify(xp, p->dir, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 }
1921
Catherine Zhangc8c05a82006-06-08 23:39:49 -07001922out:
Eric Parisef41aaa2007-03-07 15:37:58 -08001923 xfrm_pol_put(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924 return err;
1925}
1926
Christoph Hellwig22e70052007-01-02 15:22:30 -08001927static int xfrm_flush_sa(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07001928 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08001930 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001931 struct km_event c;
Thomas Graf7b67c852007-08-22 13:53:52 -07001932 struct xfrm_usersa_flush *p = nlmsg_data(nlh);
Joy Latten4aa2e622007-06-04 19:05:57 -04001933 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Cong Wangf75a2802019-01-31 13:05:49 -08001935 err = xfrm_state_flush(net, p->proto, true, false);
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001936 if (err) {
1937 if (err == -ESRCH) /* empty table */
1938 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08001939 return err;
Jamal Hadi Salim9e64cc92010-02-19 02:00:41 +00001940 }
Herbert Xubf08867f92005-06-18 22:44:00 -07001941 c.data.proto = p->proto;
Herbert Xuf60f6b82005-06-18 22:44:37 -07001942 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001943 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00001944 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08001945 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07001946 km_state_notify(NULL, &c);
1947
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 return 0;
1949}
1950
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001951static inline unsigned int xfrm_aevent_msgsize(struct xfrm_state *x)
Thomas Graf7deb2262007-08-22 13:57:39 -07001952{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03001953 unsigned int replay_size = x->replay_esn ?
Steffen Klassertd8647b72011-03-08 00:10:27 +00001954 xfrm_replay_state_esn_len(x->replay_esn) :
1955 sizeof(struct xfrm_replay_state);
1956
Thomas Graf7deb2262007-08-22 13:57:39 -07001957 return NLMSG_ALIGN(sizeof(struct xfrm_aevent_id))
Steffen Klassertd8647b72011-03-08 00:10:27 +00001958 + nla_total_size(replay_size)
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001959 + nla_total_size_64bit(sizeof(struct xfrm_lifetime_cur))
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00001960 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07001961 + nla_total_size(4) /* XFRM_AE_RTHR */
1962 + nla_total_size(4); /* XFRM_AE_ETHR */
1963}
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001964
David S. Miller214e0052011-02-24 00:02:38 -05001965static int build_aevent(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001966{
1967 struct xfrm_aevent_id *id;
1968 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07001969 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001970
Eric W. Biederman15e47302012-09-07 20:12:54 +00001971 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_NEWAE, sizeof(*id), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07001972 if (nlh == NULL)
1973 return -EMSGSIZE;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001974
Thomas Graf7b67c852007-08-22 13:53:52 -07001975 id = nlmsg_data(nlh);
Mathias Krause931e79d2017-08-26 17:09:00 +02001976 memset(&id->sa_id, 0, sizeof(id->sa_id));
Weilong Chen9b7a7872013-12-24 09:43:46 +08001977 memcpy(&id->sa_id.daddr, &x->id.daddr, sizeof(x->id.daddr));
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001978 id->sa_id.spi = x->id.spi;
1979 id->sa_id.family = x->props.family;
1980 id->sa_id.proto = x->id.proto;
Weilong Chen9b7a7872013-12-24 09:43:46 +08001981 memcpy(&id->saddr, &x->props.saddr, sizeof(x->props.saddr));
Jamal Hadi Salim2b5f6dc2006-12-02 22:22:25 -08001982 id->reqid = x->props.reqid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08001983 id->flags = c->data.aevent;
1984
David S. Millerd0fde792012-03-29 04:02:26 -04001985 if (x->replay_esn) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001986 err = nla_put(skb, XFRMA_REPLAY_ESN_VAL,
1987 xfrm_replay_state_esn_len(x->replay_esn),
1988 x->replay_esn);
David S. Millerd0fde792012-03-29 04:02:26 -04001989 } else {
David S. Miller1d1e34d2012-06-27 21:57:03 -07001990 err = nla_put(skb, XFRMA_REPLAY_VAL, sizeof(x->replay),
1991 &x->replay);
David S. Millerd0fde792012-03-29 04:02:26 -04001992 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07001993 if (err)
1994 goto out_cancel;
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02001995 err = nla_put_64bit(skb, XFRMA_LTIME_VAL, sizeof(x->curlft), &x->curlft,
1996 XFRMA_PAD);
David S. Miller1d1e34d2012-06-27 21:57:03 -07001997 if (err)
1998 goto out_cancel;
Steffen Klassertd8647b72011-03-08 00:10:27 +00001999
David S. Miller1d1e34d2012-06-27 21:57:03 -07002000 if (id->flags & XFRM_AE_RTHR) {
2001 err = nla_put_u32(skb, XFRMA_REPLAY_THRESH, x->replay_maxdiff);
2002 if (err)
2003 goto out_cancel;
2004 }
2005 if (id->flags & XFRM_AE_ETHR) {
2006 err = nla_put_u32(skb, XFRMA_ETIMER_THRESH,
2007 x->replay_maxage * 10 / HZ);
2008 if (err)
2009 goto out_cancel;
2010 }
2011 err = xfrm_mark_put(skb, &x->mark);
2012 if (err)
2013 goto out_cancel;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002014
Steffen Klassert7e652642018-06-12 14:07:07 +02002015 err = xfrm_if_id_put(skb, x->if_id);
2016 if (err)
2017 goto out_cancel;
2018
Johannes Berg053c0952015-01-16 22:09:00 +01002019 nlmsg_end(skb, nlh);
2020 return 0;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002021
David S. Miller1d1e34d2012-06-27 21:57:03 -07002022out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002023 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002024 return err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002025}
2026
Christoph Hellwig22e70052007-01-02 15:22:30 -08002027static int xfrm_get_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002028 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002029{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002030 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002031 struct xfrm_state *x;
2032 struct sk_buff *r_skb;
2033 int err;
2034 struct km_event c;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002035 u32 mark;
2036 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002037 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002038 struct xfrm_usersa_id *id = &p->sa_id;
2039
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002040 mark = xfrm_mark_get(attrs, &m);
2041
2042 x = xfrm_state_lookup(net, mark, &id->daddr, id->spi, id->proto, id->family);
Steffen Klassertd8647b72011-03-08 00:10:27 +00002043 if (x == NULL)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002044 return -ESRCH;
Steffen Klassertd8647b72011-03-08 00:10:27 +00002045
2046 r_skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
2047 if (r_skb == NULL) {
2048 xfrm_state_put(x);
2049 return -ENOMEM;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002050 }
2051
2052 /*
2053 * XXX: is this lock really needed - none of the other
2054 * gets lock (the concern is things getting updated
2055 * while we are still reading) - jhs
2056 */
2057 spin_lock_bh(&x->lock);
2058 c.data.aevent = p->flags;
2059 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002060 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002061
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002062 err = build_aevent(r_skb, x, &c);
2063 BUG_ON(err < 0);
2064
Eric W. Biederman15e47302012-09-07 20:12:54 +00002065 err = nlmsg_unicast(net->xfrm.nlsk, r_skb, NETLINK_CB(skb).portid);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002066 spin_unlock_bh(&x->lock);
2067 xfrm_state_put(x);
2068 return err;
2069}
2070
Christoph Hellwig22e70052007-01-02 15:22:30 -08002071static int xfrm_new_ae(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002072 struct nlattr **attrs)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002073{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002074 struct net *net = sock_net(skb->sk);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002075 struct xfrm_state *x;
2076 struct km_event c;
Weilong Chen02d08922013-12-24 09:43:48 +08002077 int err = -EINVAL;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002078 u32 mark = 0;
2079 struct xfrm_mark m;
Thomas Graf7b67c852007-08-22 13:53:52 -07002080 struct xfrm_aevent_id *p = nlmsg_data(nlh);
Thomas Graf5424f322007-08-22 14:01:33 -07002081 struct nlattr *rp = attrs[XFRMA_REPLAY_VAL];
Steffen Klassertd8647b72011-03-08 00:10:27 +00002082 struct nlattr *re = attrs[XFRMA_REPLAY_ESN_VAL];
Thomas Graf5424f322007-08-22 14:01:33 -07002083 struct nlattr *lt = attrs[XFRMA_LTIME_VAL];
Michael Rossberg4e077232015-09-29 11:25:08 +02002084 struct nlattr *et = attrs[XFRMA_ETIMER_THRESH];
2085 struct nlattr *rt = attrs[XFRMA_REPLAY_THRESH];
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002086
Michael Rossberg4e077232015-09-29 11:25:08 +02002087 if (!lt && !rp && !re && !et && !rt)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002088 return err;
2089
2090 /* pedantic mode - thou shalt sayeth replaceth */
2091 if (!(nlh->nlmsg_flags&NLM_F_REPLACE))
2092 return err;
2093
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002094 mark = xfrm_mark_get(attrs, &m);
2095
2096 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 -08002097 if (x == NULL)
2098 return -ESRCH;
2099
2100 if (x->km.state != XFRM_STATE_VALID)
2101 goto out;
2102
Steffen Klassert4479ff72013-09-09 09:39:01 +02002103 err = xfrm_replay_verify_len(x->replay_esn, re);
Steffen Klasserte2b19122011-03-28 19:47:30 +00002104 if (err)
2105 goto out;
2106
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002107 spin_lock_bh(&x->lock);
Mathias Krausee3ac1042012-09-19 11:33:43 +00002108 xfrm_update_ae_params(x, attrs, 1);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002109 spin_unlock_bh(&x->lock);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002110
2111 c.event = nlh->nlmsg_type;
2112 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002113 c.portid = nlh->nlmsg_pid;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002114 c.data.aevent = XFRM_AE_CU;
2115 km_state_notify(x, &c);
2116 err = 0;
2117out:
2118 xfrm_state_put(x);
2119 return err;
2120}
2121
Christoph Hellwig22e70052007-01-02 15:22:30 -08002122static int xfrm_flush_policy(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002123 struct nlattr **attrs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002125 struct net *net = sock_net(skb->sk);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002126 struct km_event c;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002127 u8 type = XFRM_POLICY_TYPE_MAIN;
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002128 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002129
Thomas Graf35a7aa02007-08-22 14:00:40 -07002130 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002131 if (err)
2132 return err;
2133
Tetsuo Handa2e710292014-04-22 21:48:30 +09002134 err = xfrm_policy_flush(net, type, true);
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002135 if (err) {
2136 if (err == -ESRCH) /* empty table */
2137 return 0;
David S. Miller069c4742010-02-17 13:41:40 -08002138 return err;
Jamal Hadi Salim2f1eb652010-02-19 02:00:42 +00002139 }
2140
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002141 c.data.type = type;
Herbert Xuf60f6b82005-06-18 22:44:37 -07002142 c.event = nlh->nlmsg_type;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002143 c.seq = nlh->nlmsg_seq;
Eric W. Biederman15e47302012-09-07 20:12:54 +00002144 c.portid = nlh->nlmsg_pid;
Alexey Dobriyan70678022008-11-25 17:50:36 -08002145 c.net = net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002146 km_policy_notify(NULL, 0, &c);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 return 0;
2148}
2149
Christoph Hellwig22e70052007-01-02 15:22:30 -08002150static int xfrm_add_pol_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002151 struct nlattr **attrs)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002152{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002153 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002154 struct xfrm_policy *xp;
Thomas Graf7b67c852007-08-22 13:53:52 -07002155 struct xfrm_user_polexpire *up = nlmsg_data(nlh);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002156 struct xfrm_userpolicy_info *p = &up->pol;
Jamal Hadi Salimb798a9e2006-11-27 12:59:30 -08002157 u8 type = XFRM_POLICY_TYPE_MAIN;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002158 int err = -ENOENT;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00002159 struct xfrm_mark m;
2160 u32 mark = xfrm_mark_get(attrs, &m);
Steffen Klassert7e652642018-06-12 14:07:07 +02002161 u32 if_id = 0;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002162
Thomas Graf35a7aa02007-08-22 14:00:40 -07002163 err = copy_from_user_policy_type(&type, attrs);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07002164 if (err)
2165 return err;
2166
Timo Teräsc8bf4d02010-03-31 00:17:04 +00002167 err = verify_policy_dir(p->dir);
2168 if (err)
2169 return err;
2170
Steffen Klassert7e652642018-06-12 14:07:07 +02002171 if (attrs[XFRMA_IF_ID])
2172 if_id = nla_get_u32(attrs[XFRMA_IF_ID]);
2173
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002174 if (p->index)
Steffen Klassert7e652642018-06-12 14:07:07 +02002175 xp = xfrm_policy_byid(net, mark, if_id, type, p->dir, p->index, 0, &err);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002176 else {
Thomas Graf5424f322007-08-22 14:01:33 -07002177 struct nlattr *rt = attrs[XFRMA_SEC_CTX];
Paul Moore03e1ad72008-04-12 19:07:52 -07002178 struct xfrm_sec_ctx *ctx;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002179
Thomas Graf35a7aa02007-08-22 14:00:40 -07002180 err = verify_sec_ctx_len(attrs);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002181 if (err)
2182 return err;
2183
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002184 ctx = NULL;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002185 if (rt) {
Thomas Graf5424f322007-08-22 14:01:33 -07002186 struct xfrm_user_sec_ctx *uctx = nla_data(rt);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002187
Nikolay Aleksandrov52a4c642014-03-07 12:44:19 +01002188 err = security_xfrm_policy_alloc(&ctx, uctx, GFP_KERNEL);
Paul Moore03e1ad72008-04-12 19:07:52 -07002189 if (err)
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002190 return err;
Denis V. Lunev2c8dd112008-04-14 14:47:48 -07002191 }
Steffen Klassert7e652642018-06-12 14:07:07 +02002192 xp = xfrm_policy_bysel_ctx(net, mark, if_id, type, p->dir,
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002193 &p->sel, ctx, 0, &err);
Paul Moore03e1ad72008-04-12 19:07:52 -07002194 security_xfrm_policy_free(ctx);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002195 }
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002196 if (xp == NULL)
Eric Parisef41aaa2007-03-07 15:37:58 -08002197 return -ENOENT;
Paul Moore03e1ad72008-04-12 19:07:52 -07002198
Timo Teräsea2dea92010-03-31 00:17:05 +00002199 if (unlikely(xp->walk.dead))
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002200 goto out;
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002201
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002202 err = 0;
2203 if (up->hard) {
2204 xfrm_policy_delete(xp, p->dir);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002205 xfrm_audit_policy_delete(xp, 1, true);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002206 }
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002207 km_policy_expired(xp, p->dir, up->hard, nlh->nlmsg_pid);
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002208
2209out:
2210 xfrm_pol_put(xp);
2211 return err;
2212}
2213
Christoph Hellwig22e70052007-01-02 15:22:30 -08002214static int xfrm_add_sa_expire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002215 struct nlattr **attrs)
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002216{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002217 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002218 struct xfrm_state *x;
2219 int err;
Thomas Graf7b67c852007-08-22 13:53:52 -07002220 struct xfrm_user_expire *ue = nlmsg_data(nlh);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002221 struct xfrm_usersa_info *p = &ue->state;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002222 struct xfrm_mark m;
Nicolas Dichtel928497f2010-08-31 05:54:00 +00002223 u32 mark = xfrm_mark_get(attrs, &m);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002224
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002225 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 -08002226
David S. Miller3a765aa2007-02-26 14:52:21 -08002227 err = -ENOENT;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002228 if (x == NULL)
2229 return err;
2230
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002231 spin_lock_bh(&x->lock);
David S. Miller3a765aa2007-02-26 14:52:21 -08002232 err = -EINVAL;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002233 if (x->km.state != XFRM_STATE_VALID)
2234 goto out;
Eric W. Biedermanc6bb8132012-09-07 21:17:17 +00002235 km_state_expired(x, ue->hard, nlh->nlmsg_pid);
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002236
Joy Latten161a09e2006-11-27 13:11:54 -06002237 if (ue->hard) {
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002238 __xfrm_state_delete(x);
Tetsuo Handa2e710292014-04-22 21:48:30 +09002239 xfrm_audit_state_delete(x, 1, true);
Joy Latten161a09e2006-11-27 13:11:54 -06002240 }
David S. Miller3a765aa2007-02-26 14:52:21 -08002241 err = 0;
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002242out:
2243 spin_unlock_bh(&x->lock);
2244 xfrm_state_put(x);
2245 return err;
2246}
2247
Christoph Hellwig22e70052007-01-02 15:22:30 -08002248static int xfrm_add_acquire(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002249 struct nlattr **attrs)
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002250{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002251 struct net *net = sock_net(skb->sk);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002252 struct xfrm_policy *xp;
2253 struct xfrm_user_tmpl *ut;
2254 int i;
Thomas Graf5424f322007-08-22 14:01:33 -07002255 struct nlattr *rt = attrs[XFRMA_TMPL];
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002256 struct xfrm_mark mark;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002257
Thomas Graf7b67c852007-08-22 13:53:52 -07002258 struct xfrm_user_acquire *ua = nlmsg_data(nlh);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002259 struct xfrm_state *x = xfrm_state_alloc(net);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002260 int err = -ENOMEM;
2261
2262 if (!x)
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002263 goto nomem;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002264
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002265 xfrm_mark_get(attrs, &mark);
2266
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002267 err = verify_newpolicy_info(&ua->policy);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002268 if (err)
Vegard Nossum73efc322016-07-27 08:03:18 +02002269 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002270
2271 /* build an XP */
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002272 xp = xfrm_policy_construct(net, &ua->policy, attrs, &err);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002273 if (!xp)
2274 goto free_state;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002275
2276 memcpy(&x->id, &ua->id, sizeof(ua->id));
2277 memcpy(&x->props.saddr, &ua->saddr, sizeof(ua->saddr));
2278 memcpy(&x->sel, &ua->sel, sizeof(ua->sel));
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002279 xp->mark.m = x->mark.m = mark.m;
2280 xp->mark.v = x->mark.v = mark.v;
Thomas Graf5424f322007-08-22 14:01:33 -07002281 ut = nla_data(rt);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002282 /* extract the templates and for each call km_key */
2283 for (i = 0; i < xp->xfrm_nr; i++, ut++) {
2284 struct xfrm_tmpl *t = &xp->xfrm_vec[i];
2285 memcpy(&x->id, &t->id, sizeof(x->id));
2286 x->props.mode = t->mode;
2287 x->props.reqid = t->reqid;
2288 x->props.family = ut->family;
2289 t->aalgos = ua->aalgos;
2290 t->ealgos = ua->ealgos;
2291 t->calgos = ua->calgos;
2292 err = km_query(x, t, xp);
2293
2294 }
2295
Mathias Krause4a135e52018-11-21 21:09:23 +01002296 xfrm_state_free(x);
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002297 kfree(xp);
2298
2299 return 0;
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002300
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002301free_state:
Mathias Krause4a135e52018-11-21 21:09:23 +01002302 xfrm_state_free(x);
Ilpo Järvinend8eb9302008-12-14 23:16:22 -08002303nomem:
2304 return err;
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002305}
2306
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002307#ifdef CONFIG_XFRM_MIGRATE
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002308static int copy_from_user_migrate(struct xfrm_migrate *ma,
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002309 struct xfrm_kmaddress *k,
Thomas Graf5424f322007-08-22 14:01:33 -07002310 struct nlattr **attrs, int *num)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002311{
Thomas Graf5424f322007-08-22 14:01:33 -07002312 struct nlattr *rt = attrs[XFRMA_MIGRATE];
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002313 struct xfrm_user_migrate *um;
2314 int i, num_migrate;
2315
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002316 if (k != NULL) {
2317 struct xfrm_user_kmaddress *uk;
2318
2319 uk = nla_data(attrs[XFRMA_KMADDRESS]);
2320 memcpy(&k->local, &uk->local, sizeof(k->local));
2321 memcpy(&k->remote, &uk->remote, sizeof(k->remote));
2322 k->family = uk->family;
2323 k->reserved = uk->reserved;
2324 }
2325
Thomas Graf5424f322007-08-22 14:01:33 -07002326 um = nla_data(rt);
2327 num_migrate = nla_len(rt) / sizeof(*um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002328
2329 if (num_migrate <= 0 || num_migrate > XFRM_MAX_DEPTH)
2330 return -EINVAL;
2331
2332 for (i = 0; i < num_migrate; i++, um++, ma++) {
2333 memcpy(&ma->old_daddr, &um->old_daddr, sizeof(ma->old_daddr));
2334 memcpy(&ma->old_saddr, &um->old_saddr, sizeof(ma->old_saddr));
2335 memcpy(&ma->new_daddr, &um->new_daddr, sizeof(ma->new_daddr));
2336 memcpy(&ma->new_saddr, &um->new_saddr, sizeof(ma->new_saddr));
2337
2338 ma->proto = um->proto;
2339 ma->mode = um->mode;
2340 ma->reqid = um->reqid;
2341
2342 ma->old_family = um->old_family;
2343 ma->new_family = um->new_family;
2344 }
2345
2346 *num = i;
2347 return 0;
2348}
2349
2350static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002351 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002352{
Thomas Graf7b67c852007-08-22 13:53:52 -07002353 struct xfrm_userpolicy_id *pi = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002354 struct xfrm_migrate m[XFRM_MAX_DEPTH];
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002355 struct xfrm_kmaddress km, *kmp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002356 u8 type;
2357 int err;
2358 int n = 0;
Fan Du8d549c42013-11-07 17:47:49 +08002359 struct net *net = sock_net(skb->sk);
Antony Antony4ab47d42017-06-06 12:12:13 +02002360 struct xfrm_encap_tmpl *encap = NULL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002361
Thomas Graf35a7aa02007-08-22 14:00:40 -07002362 if (attrs[XFRMA_MIGRATE] == NULL)
Thomas Grafcf5cb792007-08-22 13:59:04 -07002363 return -EINVAL;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002364
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002365 kmp = attrs[XFRMA_KMADDRESS] ? &km : NULL;
2366
Thomas Graf5424f322007-08-22 14:01:33 -07002367 err = copy_from_user_policy_type(&type, attrs);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002368 if (err)
2369 return err;
2370
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002371 err = copy_from_user_migrate((struct xfrm_migrate *)m, kmp, attrs, &n);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002372 if (err)
2373 return err;
2374
2375 if (!n)
2376 return 0;
2377
Antony Antony4ab47d42017-06-06 12:12:13 +02002378 if (attrs[XFRMA_ENCAP]) {
2379 encap = kmemdup(nla_data(attrs[XFRMA_ENCAP]),
2380 sizeof(*encap), GFP_KERNEL);
2381 if (!encap)
2382 return 0;
2383 }
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002384
Antony Antony4ab47d42017-06-06 12:12:13 +02002385 err = xfrm_migrate(&pi->sel, pi->dir, type, m, n, kmp, net, encap);
2386
2387 kfree(encap);
2388
2389 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002390}
2391#else
2392static int xfrm_do_migrate(struct sk_buff *skb, struct nlmsghdr *nlh,
Thomas Graf5424f322007-08-22 14:01:33 -07002393 struct nlattr **attrs)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002394{
2395 return -ENOPROTOOPT;
2396}
2397#endif
2398
2399#ifdef CONFIG_XFRM_MIGRATE
David S. Miller183cad12011-02-24 00:28:01 -05002400static int copy_to_user_migrate(const struct xfrm_migrate *m, struct sk_buff *skb)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002401{
2402 struct xfrm_user_migrate um;
2403
2404 memset(&um, 0, sizeof(um));
2405 um.proto = m->proto;
2406 um.mode = m->mode;
2407 um.reqid = m->reqid;
2408 um.old_family = m->old_family;
2409 memcpy(&um.old_daddr, &m->old_daddr, sizeof(um.old_daddr));
2410 memcpy(&um.old_saddr, &m->old_saddr, sizeof(um.old_saddr));
2411 um.new_family = m->new_family;
2412 memcpy(&um.new_daddr, &m->new_daddr, sizeof(um.new_daddr));
2413 memcpy(&um.new_saddr, &m->new_saddr, sizeof(um.new_saddr));
2414
Thomas Grafc0144be2007-08-22 13:55:43 -07002415 return nla_put(skb, XFRMA_MIGRATE, sizeof(um), &um);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002416}
2417
David S. Miller183cad12011-02-24 00:28:01 -05002418static int copy_to_user_kmaddress(const struct xfrm_kmaddress *k, struct sk_buff *skb)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002419{
2420 struct xfrm_user_kmaddress uk;
2421
2422 memset(&uk, 0, sizeof(uk));
2423 uk.family = k->family;
2424 uk.reserved = k->reserved;
2425 memcpy(&uk.local, &k->local, sizeof(uk.local));
Arnaud Ebalarda1caa322008-11-03 01:30:23 -08002426 memcpy(&uk.remote, &k->remote, sizeof(uk.remote));
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002427
2428 return nla_put(skb, XFRMA_KMADDRESS, sizeof(uk), &uk);
2429}
2430
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002431static inline unsigned int xfrm_migrate_msgsize(int num_migrate, int with_kma,
2432 int with_encp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002433{
2434 return NLMSG_ALIGN(sizeof(struct xfrm_userpolicy_id))
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002435 + (with_kma ? nla_total_size(sizeof(struct xfrm_kmaddress)) : 0)
Antony Antony8bafd732017-06-06 12:12:14 +02002436 + (with_encp ? nla_total_size(sizeof(struct xfrm_encap_tmpl)) : 0)
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002437 + nla_total_size(sizeof(struct xfrm_user_migrate) * num_migrate)
2438 + userpolicy_type_attrsize();
Thomas Graf7deb2262007-08-22 13:57:39 -07002439}
2440
David S. Miller183cad12011-02-24 00:28:01 -05002441static int build_migrate(struct sk_buff *skb, const struct xfrm_migrate *m,
2442 int num_migrate, const struct xfrm_kmaddress *k,
Antony Antony8bafd732017-06-06 12:12:14 +02002443 const struct xfrm_selector *sel,
2444 const struct xfrm_encap_tmpl *encap, u8 dir, u8 type)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002445{
David S. Miller183cad12011-02-24 00:28:01 -05002446 const struct xfrm_migrate *mp;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002447 struct xfrm_userpolicy_id *pol_id;
2448 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002449 int i, err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002450
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002451 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MIGRATE, sizeof(*pol_id), 0);
2452 if (nlh == NULL)
2453 return -EMSGSIZE;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002454
Thomas Graf7b67c852007-08-22 13:53:52 -07002455 pol_id = nlmsg_data(nlh);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002456 /* copy data from selector, dir, and type to the pol_id */
2457 memset(pol_id, 0, sizeof(*pol_id));
2458 memcpy(&pol_id->sel, sel, sizeof(pol_id->sel));
2459 pol_id->dir = dir;
2460
David S. Miller1d1e34d2012-06-27 21:57:03 -07002461 if (k != NULL) {
2462 err = copy_to_user_kmaddress(k, skb);
2463 if (err)
2464 goto out_cancel;
2465 }
Antony Antony8bafd732017-06-06 12:12:14 +02002466 if (encap) {
2467 err = nla_put(skb, XFRMA_ENCAP, sizeof(*encap), encap);
2468 if (err)
2469 goto out_cancel;
2470 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002471 err = copy_to_user_policy_type(type, skb);
2472 if (err)
2473 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002474 for (i = 0, mp = m ; i < num_migrate; i++, mp++) {
David S. Miller1d1e34d2012-06-27 21:57:03 -07002475 err = copy_to_user_migrate(mp, skb);
2476 if (err)
2477 goto out_cancel;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002478 }
2479
Johannes Berg053c0952015-01-16 22:09:00 +01002480 nlmsg_end(skb, nlh);
2481 return 0;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002482
2483out_cancel:
Thomas Graf98250692007-08-22 12:47:26 -07002484 nlmsg_cancel(skb, nlh);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002485 return err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002486}
2487
David S. Miller183cad12011-02-24 00:28:01 -05002488static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2489 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002490 const struct xfrm_kmaddress *k,
2491 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002492{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002493 struct net *net = &init_net;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002494 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002495 int err;
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002496
Antony Antony8bafd732017-06-06 12:12:14 +02002497 skb = nlmsg_new(xfrm_migrate_msgsize(num_migrate, !!k, !!encap),
2498 GFP_ATOMIC);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002499 if (skb == NULL)
2500 return -ENOMEM;
2501
2502 /* build migrate */
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002503 err = build_migrate(skb, m, num_migrate, k, sel, encap, dir, type);
2504 BUG_ON(err < 0);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002505
Michal Kubecek21ee5432014-06-03 10:26:06 +02002506 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MIGRATE);
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002507}
2508#else
David S. Miller183cad12011-02-24 00:28:01 -05002509static int xfrm_send_migrate(const struct xfrm_selector *sel, u8 dir, u8 type,
2510 const struct xfrm_migrate *m, int num_migrate,
Antony Antony8bafd732017-06-06 12:12:14 +02002511 const struct xfrm_kmaddress *k,
2512 const struct xfrm_encap_tmpl *encap)
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002513{
2514 return -ENOPROTOOPT;
2515}
2516#endif
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002517
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002518#define XMSGSIZE(type) sizeof(struct type)
Thomas Graf492b5582005-05-03 14:26:40 -07002519
2520static const int xfrm_msg_min[XFRM_NR_MSGTYPES] = {
David S. Miller66f9a252009-01-20 09:49:51 -08002521 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Thomas Graf492b5582005-05-03 14:26:40 -07002522 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2523 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_id),
2524 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
2525 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2526 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
2527 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userspi_info),
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002528 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_acquire),
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002529 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_expire),
Thomas Graf492b5582005-05-03 14:26:40 -07002530 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_info),
David S. Miller66f9a252009-01-20 09:49:51 -08002531 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_info),
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002532 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_polexpire),
Thomas Graf492b5582005-05-03 14:26:40 -07002533 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = XMSGSIZE(xfrm_usersa_flush),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002534 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = 0,
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002535 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
2536 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_aevent_id),
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07002537 [XFRM_MSG_REPORT - XFRM_MSG_BASE] = XMSGSIZE(xfrm_user_report),
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002538 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = XMSGSIZE(xfrm_userpolicy_id),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002539 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = sizeof(u32),
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002540 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002541 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = sizeof(u32),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542};
2543
Thomas Graf492b5582005-05-03 14:26:40 -07002544#undef XMSGSIZE
2545
Thomas Grafcf5cb792007-08-22 13:59:04 -07002546static const struct nla_policy xfrma_policy[XFRMA_MAX+1] = {
jamalc28e9302010-02-09 03:59:38 +00002547 [XFRMA_SA] = { .len = sizeof(struct xfrm_usersa_info)},
2548 [XFRMA_POLICY] = { .len = sizeof(struct xfrm_userpolicy_info)},
2549 [XFRMA_LASTUSED] = { .type = NLA_U64},
2550 [XFRMA_ALG_AUTH_TRUNC] = { .len = sizeof(struct xfrm_algo_auth)},
Herbert Xu1a6509d2008-01-28 19:37:29 -08002551 [XFRMA_ALG_AEAD] = { .len = sizeof(struct xfrm_algo_aead) },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002552 [XFRMA_ALG_AUTH] = { .len = sizeof(struct xfrm_algo) },
2553 [XFRMA_ALG_CRYPT] = { .len = sizeof(struct xfrm_algo) },
2554 [XFRMA_ALG_COMP] = { .len = sizeof(struct xfrm_algo) },
2555 [XFRMA_ENCAP] = { .len = sizeof(struct xfrm_encap_tmpl) },
2556 [XFRMA_TMPL] = { .len = sizeof(struct xfrm_user_tmpl) },
2557 [XFRMA_SEC_CTX] = { .len = sizeof(struct xfrm_sec_ctx) },
2558 [XFRMA_LTIME_VAL] = { .len = sizeof(struct xfrm_lifetime_cur) },
2559 [XFRMA_REPLAY_VAL] = { .len = sizeof(struct xfrm_replay_state) },
2560 [XFRMA_REPLAY_THRESH] = { .type = NLA_U32 },
2561 [XFRMA_ETIMER_THRESH] = { .type = NLA_U32 },
2562 [XFRMA_SRCADDR] = { .len = sizeof(xfrm_address_t) },
2563 [XFRMA_COADDR] = { .len = sizeof(xfrm_address_t) },
2564 [XFRMA_POLICY_TYPE] = { .len = sizeof(struct xfrm_userpolicy_type)},
2565 [XFRMA_MIGRATE] = { .len = sizeof(struct xfrm_user_migrate) },
Arnaud Ebalard13c1d182008-10-05 13:33:42 -07002566 [XFRMA_KMADDRESS] = { .len = sizeof(struct xfrm_user_kmaddress) },
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002567 [XFRMA_MARK] = { .len = sizeof(struct xfrm_mark) },
Martin Willi35d28562010-12-08 04:37:49 +00002568 [XFRMA_TFCPAD] = { .type = NLA_U32 },
Steffen Klassertd8647b72011-03-08 00:10:27 +00002569 [XFRMA_REPLAY_ESN_VAL] = { .len = sizeof(struct xfrm_replay_state_esn) },
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002570 [XFRMA_SA_EXTRA_FLAGS] = { .type = NLA_U32 },
Nicolas Dichteld3623092014-02-14 15:30:36 +01002571 [XFRMA_PROTO] = { .type = NLA_U8 },
Nicolas Dichtel870a2df2014-03-06 18:24:29 +01002572 [XFRMA_ADDRESS_FILTER] = { .len = sizeof(struct xfrm_address_filter) },
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002573 [XFRMA_OFFLOAD_DEV] = { .len = sizeof(struct xfrm_user_offload) },
Steffen Klassert9b42c1f2018-06-12 12:44:26 +02002574 [XFRMA_SET_MARK] = { .type = NLA_U32 },
2575 [XFRMA_SET_MARK_MASK] = { .type = NLA_U32 },
Steffen Klassert7e652642018-06-12 14:07:07 +02002576 [XFRMA_IF_ID] = { .type = NLA_U32 },
Thomas Grafcf5cb792007-08-22 13:59:04 -07002577};
2578
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002579static const struct nla_policy xfrma_spd_policy[XFRMA_SPD_MAX+1] = {
2580 [XFRMA_SPD_IPV4_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2581 [XFRMA_SPD_IPV6_HTHRESH] = { .len = sizeof(struct xfrmu_spdhthresh) },
2582};
2583
Mathias Krause05600a72013-02-24 14:10:27 +01002584static const struct xfrm_link {
Thomas Graf5424f322007-08-22 14:01:33 -07002585 int (*doit)(struct sk_buff *, struct nlmsghdr *, struct nlattr **);
Herbert Xu1137b5e2017-10-19 20:51:10 +08002586 int (*start)(struct netlink_callback *);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 int (*dump)(struct sk_buff *, struct netlink_callback *);
Timo Teras4c563f72008-02-28 21:31:08 -08002588 int (*done)(struct netlink_callback *);
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002589 const struct nla_policy *nla_pol;
2590 int nla_max;
Thomas Graf492b5582005-05-03 14:26:40 -07002591} xfrm_dispatch[XFRM_NR_MSGTYPES] = {
2592 [XFRM_MSG_NEWSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
2593 [XFRM_MSG_DELSA - XFRM_MSG_BASE] = { .doit = xfrm_del_sa },
2594 [XFRM_MSG_GETSA - XFRM_MSG_BASE] = { .doit = xfrm_get_sa,
Timo Teras4c563f72008-02-28 21:31:08 -08002595 .dump = xfrm_dump_sa,
2596 .done = xfrm_dump_sa_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002597 [XFRM_MSG_NEWPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2598 [XFRM_MSG_DELPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy },
2599 [XFRM_MSG_GETPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_get_policy,
Herbert Xu1137b5e2017-10-19 20:51:10 +08002600 .start = xfrm_dump_policy_start,
Timo Teras4c563f72008-02-28 21:31:08 -08002601 .dump = xfrm_dump_policy,
2602 .done = xfrm_dump_policy_done },
Thomas Graf492b5582005-05-03 14:26:40 -07002603 [XFRM_MSG_ALLOCSPI - XFRM_MSG_BASE] = { .doit = xfrm_alloc_userspi },
Jamal Hadi Salim980ebd22006-03-20 19:16:40 -08002604 [XFRM_MSG_ACQUIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_acquire },
Jamal Hadi Salim53bc6b42006-03-20 19:17:03 -08002605 [XFRM_MSG_EXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_sa_expire },
Thomas Graf492b5582005-05-03 14:26:40 -07002606 [XFRM_MSG_UPDPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_add_policy },
2607 [XFRM_MSG_UPDSA - XFRM_MSG_BASE] = { .doit = xfrm_add_sa },
Jamal Hadi Salim6c5c8ca2006-03-20 19:17:25 -08002608 [XFRM_MSG_POLEXPIRE - XFRM_MSG_BASE] = { .doit = xfrm_add_pol_expire},
Thomas Graf492b5582005-05-03 14:26:40 -07002609 [XFRM_MSG_FLUSHSA - XFRM_MSG_BASE] = { .doit = xfrm_flush_sa },
2610 [XFRM_MSG_FLUSHPOLICY - XFRM_MSG_BASE] = { .doit = xfrm_flush_policy },
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002611 [XFRM_MSG_NEWAE - XFRM_MSG_BASE] = { .doit = xfrm_new_ae },
2612 [XFRM_MSG_GETAE - XFRM_MSG_BASE] = { .doit = xfrm_get_ae },
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08002613 [XFRM_MSG_MIGRATE - XFRM_MSG_BASE] = { .doit = xfrm_do_migrate },
Jamal Hadi Salim566ec032007-04-26 14:12:15 -07002614 [XFRM_MSG_GETSADINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_sadinfo },
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002615 [XFRM_MSG_NEWSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_set_spdinfo,
2616 .nla_pol = xfrma_spd_policy,
2617 .nla_max = XFRMA_SPD_MAX },
Jamal Hadi Salimecfd6b12007-04-28 21:20:32 -07002618 [XFRM_MSG_GETSPDINFO - XFRM_MSG_BASE] = { .doit = xfrm_get_spdinfo },
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619};
2620
Johannes Berg2d4bc932017-04-12 14:34:04 +02002621static int xfrm_user_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
2622 struct netlink_ext_ack *extack)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002624 struct net *net = sock_net(skb->sk);
Thomas Graf35a7aa02007-08-22 14:00:40 -07002625 struct nlattr *attrs[XFRMA_MAX+1];
Mathias Krause05600a72013-02-24 14:10:27 +01002626 const struct xfrm_link *link;
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002627 int type, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628
Andy Lutomirski2bf8c472016-03-22 14:25:10 -07002629 if (in_compat_syscall())
Yi Zhao83e2d052016-11-29 18:09:01 +08002630 return -EOPNOTSUPP;
Fan Du74005992015-01-27 17:00:29 +08002631
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 type = nlh->nlmsg_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 if (type > XFRM_MSG_MAX)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002634 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
2636 type -= XFRM_MSG_BASE;
2637 link = &xfrm_dispatch[type];
2638
2639 /* All operations require privileges, even GET */
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07002640 if (!netlink_net_capable(skb, CAP_NET_ADMIN))
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002641 return -EPERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642
Thomas Graf492b5582005-05-03 14:26:40 -07002643 if ((type == (XFRM_MSG_GETSA - XFRM_MSG_BASE) ||
2644 type == (XFRM_MSG_GETPOLICY - XFRM_MSG_BASE)) &&
David S. Millerb8f3ab42011-01-18 12:40:38 -08002645 (nlh->nlmsg_flags & NLM_F_DUMP)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 if (link->dump == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002647 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002649 {
2650 struct netlink_dump_control c = {
Herbert Xu1137b5e2017-10-19 20:51:10 +08002651 .start = link->start,
Pablo Neira Ayuso80d326f2012-02-24 14:30:15 +00002652 .dump = link->dump,
2653 .done = link->done,
2654 };
2655 return netlink_dump_start(net->xfrm.nlsk, skb, nlh, &c);
2656 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 }
2658
Christophe Gouault880a6fa2014-08-29 16:16:05 +02002659 err = nlmsg_parse(nlh, xfrm_msg_min[type], attrs,
2660 link->nla_max ? : XFRMA_MAX,
Johannes Bergfe521452017-04-12 14:34:08 +02002661 link->nla_pol ? : xfrma_policy, extack);
Thomas Grafa7bd9a42007-08-22 13:58:18 -07002662 if (err < 0)
2663 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664
2665 if (link->doit == NULL)
Thomas Graf1d00a4e2007-03-22 23:30:12 -07002666 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667
Thomas Graf5424f322007-08-22 14:01:33 -07002668 return link->doit(skb, nlh, attrs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669}
2670
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002671static void xfrm_netlink_rcv(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672{
Fan Du283bc9f2013-11-07 17:47:50 +08002673 struct net *net = sock_net(skb->sk);
2674
2675 mutex_lock(&net->xfrm.xfrm_cfg_mutex);
Denis V. Lunevcd40b7d2007-10-10 21:15:29 -07002676 netlink_rcv_skb(skb, &xfrm_user_rcv_msg);
Fan Du283bc9f2013-11-07 17:47:50 +08002677 mutex_unlock(&net->xfrm.xfrm_cfg_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678}
2679
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002680static inline unsigned int xfrm_expire_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07002681{
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002682 return NLMSG_ALIGN(sizeof(struct xfrm_user_expire))
2683 + nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07002684}
2685
David S. Miller214e0052011-02-24 00:02:38 -05002686static int build_expire(struct sk_buff *skb, struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687{
2688 struct xfrm_user_expire *ue;
2689 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002690 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691
Eric W. Biederman15e47302012-09-07 20:12:54 +00002692 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_EXPIRE, sizeof(*ue), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002693 if (nlh == NULL)
2694 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695
Thomas Graf7b67c852007-08-22 13:53:52 -07002696 ue = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 copy_to_user_state(x, &ue->state);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002698 ue->hard = (c->data.hard != 0) ? 1 : 0;
Mathias Krausee3e5fc12017-08-26 17:08:59 +02002699 /* clear the padding bytes */
2700 memset(&ue->hard + 1, 0, sizeof(*ue) - offsetofend(typeof(*ue), hard));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701
David S. Miller1d1e34d2012-06-27 21:57:03 -07002702 err = xfrm_mark_put(skb, &x->mark);
2703 if (err)
2704 return err;
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002705
Steffen Klassert7e652642018-06-12 14:07:07 +02002706 err = xfrm_if_id_put(skb, x->if_id);
2707 if (err)
2708 return err;
2709
Johannes Berg053c0952015-01-16 22:09:00 +01002710 nlmsg_end(skb, nlh);
2711 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712}
2713
David S. Miller214e0052011-02-24 00:02:38 -05002714static int xfrm_exp_state_notify(struct xfrm_state *x, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002716 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 struct sk_buff *skb;
2718
Thomas Graf7deb2262007-08-22 13:57:39 -07002719 skb = nlmsg_new(xfrm_expire_msgsize(), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 if (skb == NULL)
2721 return -ENOMEM;
2722
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002723 if (build_expire(skb, x, c) < 0) {
2724 kfree_skb(skb);
2725 return -EMSGSIZE;
2726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727
Michal Kubecek21ee5432014-06-03 10:26:06 +02002728 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729}
2730
David S. Miller214e0052011-02-24 00:02:38 -05002731static int xfrm_aevent_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002732{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002733 struct net *net = xs_net(x);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002734 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002735 int err;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002736
Steffen Klassertd8647b72011-03-08 00:10:27 +00002737 skb = nlmsg_new(xfrm_aevent_msgsize(x), GFP_ATOMIC);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002738 if (skb == NULL)
2739 return -ENOMEM;
2740
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002741 err = build_aevent(skb, x, c);
2742 BUG_ON(err < 0);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002743
Michal Kubecek21ee5432014-06-03 10:26:06 +02002744 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_AEVENTS);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002745}
2746
David S. Miller214e0052011-02-24 00:02:38 -05002747static int xfrm_notify_sa_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002748{
Alexey Dobriyan70678022008-11-25 17:50:36 -08002749 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002750 struct xfrm_usersa_flush *p;
2751 struct nlmsghdr *nlh;
2752 struct sk_buff *skb;
Thomas Graf7deb2262007-08-22 13:57:39 -07002753 int len = NLMSG_ALIGN(sizeof(struct xfrm_usersa_flush));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002754
Thomas Graf7deb2262007-08-22 13:57:39 -07002755 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002756 if (skb == NULL)
2757 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002758
Eric W. Biederman15e47302012-09-07 20:12:54 +00002759 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHSA, sizeof(*p), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002760 if (nlh == NULL) {
2761 kfree_skb(skb);
2762 return -EMSGSIZE;
2763 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002764
Thomas Graf7b67c852007-08-22 13:53:52 -07002765 p = nlmsg_data(nlh);
Herbert Xubf08867f92005-06-18 22:44:00 -07002766 p->proto = c->data.proto;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002767
Thomas Graf98250692007-08-22 12:47:26 -07002768 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002769
Michal Kubecek21ee5432014-06-03 10:26:06 +02002770 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002771}
2772
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002773static inline unsigned int xfrm_sa_len(struct xfrm_state *x)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002774{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002775 unsigned int l = 0;
Herbert Xu1a6509d2008-01-28 19:37:29 -08002776 if (x->aead)
2777 l += nla_total_size(aead_len(x->aead));
Martin Willi4447bb32009-11-25 00:29:52 +00002778 if (x->aalg) {
2779 l += nla_total_size(sizeof(struct xfrm_algo) +
2780 (x->aalg->alg_key_len + 7) / 8);
2781 l += nla_total_size(xfrm_alg_auth_len(x->aalg));
2782 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002783 if (x->ealg)
Eric Dumazet0f99be02008-01-08 23:39:06 -08002784 l += nla_total_size(xfrm_alg_len(x->ealg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002785 if (x->calg)
Thomas Graf7deb2262007-08-22 13:57:39 -07002786 l += nla_total_size(sizeof(*x->calg));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002787 if (x->encap)
Thomas Graf7deb2262007-08-22 13:57:39 -07002788 l += nla_total_size(sizeof(*x->encap));
Martin Willi35d28562010-12-08 04:37:49 +00002789 if (x->tfcpad)
2790 l += nla_total_size(sizeof(x->tfcpad));
Steffen Klassertd8647b72011-03-08 00:10:27 +00002791 if (x->replay_esn)
2792 l += nla_total_size(xfrm_replay_state_esn_len(x->replay_esn));
dingzhif293a5e2014-10-30 09:39:36 +01002793 else
2794 l += nla_total_size(sizeof(struct xfrm_replay_state));
Herbert Xu68325d32007-10-09 13:30:57 -07002795 if (x->security)
2796 l += nla_total_size(sizeof(struct xfrm_user_sec_ctx) +
2797 x->security->ctx_len);
2798 if (x->coaddr)
2799 l += nla_total_size(sizeof(*x->coaddr));
Nicolas Dichtela947b0a2013-02-22 10:54:54 +01002800 if (x->props.extra_flags)
2801 l += nla_total_size(sizeof(x->props.extra_flags));
Steffen Klassertd77e38e2017-04-14 10:06:10 +02002802 if (x->xso.dev)
2803 l += nla_total_size(sizeof(x->xso));
Steffen Klassert9b42c1f2018-06-12 12:44:26 +02002804 if (x->props.smark.v | x->props.smark.m) {
2805 l += nla_total_size(sizeof(x->props.smark.v));
2806 l += nla_total_size(sizeof(x->props.smark.m));
2807 }
Steffen Klassert7e652642018-06-12 14:07:07 +02002808 if (x->if_id)
2809 l += nla_total_size(sizeof(x->if_id));
Herbert Xu68325d32007-10-09 13:30:57 -07002810
Herbert Xud26f3982007-11-13 21:47:08 -08002811 /* Must count x->lastused as it may become non-zero behind our back. */
Nicolas Dichtelde95c4a2016-04-22 17:31:23 +02002812 l += nla_total_size_64bit(sizeof(u64));
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002813
2814 return l;
2815}
2816
David S. Miller214e0052011-02-24 00:02:38 -05002817static int xfrm_notify_sa(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002818{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002819 struct net *net = xs_net(x);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002820 struct xfrm_usersa_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07002821 struct xfrm_usersa_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002822 struct nlmsghdr *nlh;
2823 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002824 unsigned int len = xfrm_sa_len(x);
2825 unsigned int headlen;
2826 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07002827
2828 headlen = sizeof(*p);
2829 if (c->event == XFRM_MSG_DELSA) {
Thomas Graf7deb2262007-08-22 13:57:39 -07002830 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07002831 headlen = sizeof(*id);
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002832 len += nla_total_size(sizeof(struct xfrm_mark));
Herbert Xu0603eac2005-06-18 22:54:36 -07002833 }
Thomas Graf7deb2262007-08-22 13:57:39 -07002834 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002835
Thomas Graf7deb2262007-08-22 13:57:39 -07002836 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002837 if (skb == NULL)
2838 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002839
Eric W. Biederman15e47302012-09-07 20:12:54 +00002840 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002841 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002842 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002843 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002844
Thomas Graf7b67c852007-08-22 13:53:52 -07002845 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07002846 if (c->event == XFRM_MSG_DELSA) {
Thomas Grafc0144be2007-08-22 13:55:43 -07002847 struct nlattr *attr;
2848
Thomas Graf7b67c852007-08-22 13:53:52 -07002849 id = nlmsg_data(nlh);
Mathias Krause50329c82017-08-26 17:08:58 +02002850 memset(id, 0, sizeof(*id));
Herbert Xu0603eac2005-06-18 22:54:36 -07002851 memcpy(&id->daddr, &x->id.daddr, sizeof(id->daddr));
2852 id->spi = x->id.spi;
2853 id->family = x->props.family;
2854 id->proto = x->id.proto;
2855
Thomas Grafc0144be2007-08-22 13:55:43 -07002856 attr = nla_reserve(skb, XFRMA_SA, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07002857 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07002858 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07002859 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07002860
2861 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07002862 }
David S. Miller1d1e34d2012-06-27 21:57:03 -07002863 err = copy_to_user_state_extra(x, p, skb);
2864 if (err)
2865 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002866
Thomas Graf98250692007-08-22 12:47:26 -07002867 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002868
Michal Kubecek21ee5432014-06-03 10:26:06 +02002869 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_SA);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002870
David S. Miller1d1e34d2012-06-27 21:57:03 -07002871out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002872 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002873 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002874}
2875
David S. Miller214e0052011-02-24 00:02:38 -05002876static int xfrm_send_state_notify(struct xfrm_state *x, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002877{
2878
2879 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07002880 case XFRM_MSG_EXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002881 return xfrm_exp_state_notify(x, c);
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08002882 case XFRM_MSG_NEWAE:
2883 return xfrm_aevent_state_notify(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002884 case XFRM_MSG_DELSA:
2885 case XFRM_MSG_UPDSA:
2886 case XFRM_MSG_NEWSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002887 return xfrm_notify_sa(x, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07002888 case XFRM_MSG_FLUSHSA:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002889 return xfrm_notify_sa_flush(c);
2890 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00002891 printk(KERN_NOTICE "xfrm_user: Unknown SA event %d\n",
2892 c->event);
2893 break;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07002894 }
2895
2896 return 0;
2897
2898}
2899
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03002900static inline unsigned int xfrm_acquire_msgsize(struct xfrm_state *x,
2901 struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07002902{
2903 return NLMSG_ALIGN(sizeof(struct xfrm_user_acquire))
2904 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
Jamal Hadi Salim6f26b612010-02-22 11:32:59 +00002905 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07002906 + nla_total_size(xfrm_user_sec_ctx_size(x->security))
2907 + userpolicy_type_attrsize();
2908}
2909
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910static int build_acquire(struct sk_buff *skb, struct xfrm_state *x,
Fan Du65e07362012-08-15 10:13:47 +08002911 struct xfrm_tmpl *xt, struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912{
David S. Miller1d1e34d2012-06-27 21:57:03 -07002913 __u32 seq = xfrm_get_acqseq();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 struct xfrm_user_acquire *ua;
2915 struct nlmsghdr *nlh;
David S. Miller1d1e34d2012-06-27 21:57:03 -07002916 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
Thomas Graf79b8b7f2007-08-22 12:46:53 -07002918 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_ACQUIRE, sizeof(*ua), 0);
2919 if (nlh == NULL)
2920 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921
Thomas Graf7b67c852007-08-22 13:53:52 -07002922 ua = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 memcpy(&ua->id, &x->id, sizeof(ua->id));
2924 memcpy(&ua->saddr, &x->props.saddr, sizeof(ua->saddr));
2925 memcpy(&ua->sel, &x->sel, sizeof(ua->sel));
Fan Du65e07362012-08-15 10:13:47 +08002926 copy_to_user_policy(xp, &ua->policy, XFRM_POLICY_OUT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 ua->aalgos = xt->aalgos;
2928 ua->ealgos = xt->ealgos;
2929 ua->calgos = xt->calgos;
2930 ua->seq = x->km.seq = seq;
2931
David S. Miller1d1e34d2012-06-27 21:57:03 -07002932 err = copy_to_user_tmpl(xp, skb);
2933 if (!err)
2934 err = copy_to_user_state_sec_ctx(x, skb);
2935 if (!err)
2936 err = copy_to_user_policy_type(xp->type, skb);
2937 if (!err)
2938 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02002939 if (!err)
2940 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07002941 if (err) {
2942 nlmsg_cancel(skb, nlh);
2943 return err;
2944 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945
Johannes Berg053c0952015-01-16 22:09:00 +01002946 nlmsg_end(skb, nlh);
2947 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948}
2949
2950static int xfrm_send_acquire(struct xfrm_state *x, struct xfrm_tmpl *xt,
Fan Du65e07362012-08-15 10:13:47 +08002951 struct xfrm_policy *xp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08002953 struct net *net = xs_net(x);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002955 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956
Thomas Graf7deb2262007-08-22 13:57:39 -07002957 skb = nlmsg_new(xfrm_acquire_msgsize(x, xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 if (skb == NULL)
2959 return -ENOMEM;
2960
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05002961 err = build_acquire(skb, x, xt, xp);
2962 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963
Michal Kubecek21ee5432014-06-03 10:26:06 +02002964 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_ACQUIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965}
2966
2967/* User gives us xfrm_user_policy_info followed by an array of 0
2968 * or more templates.
2969 */
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002970static struct xfrm_policy *xfrm_compile_policy(struct sock *sk, int opt,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 u8 *data, int len, int *dir)
2972{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08002973 struct net *net = sock_net(sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 struct xfrm_userpolicy_info *p = (struct xfrm_userpolicy_info *)data;
2975 struct xfrm_user_tmpl *ut = (struct xfrm_user_tmpl *) (p + 1);
2976 struct xfrm_policy *xp;
2977 int nr;
2978
Venkat Yekkiralacb969f02006-07-24 23:32:20 -07002979 switch (sk->sk_family) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 case AF_INET:
2981 if (opt != IP_XFRM_POLICY) {
2982 *dir = -EOPNOTSUPP;
2983 return NULL;
2984 }
2985 break;
Eric Dumazetdfd56b82011-12-10 09:48:31 +00002986#if IS_ENABLED(CONFIG_IPV6)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 case AF_INET6:
2988 if (opt != IPV6_XFRM_POLICY) {
2989 *dir = -EOPNOTSUPP;
2990 return NULL;
2991 }
2992 break;
2993#endif
2994 default:
2995 *dir = -EINVAL;
2996 return NULL;
2997 }
2998
2999 *dir = -EINVAL;
3000
3001 if (len < sizeof(*p) ||
3002 verify_newpolicy_info(p))
3003 return NULL;
3004
3005 nr = ((len - sizeof(*p)) / sizeof(*ut));
David S. Millerb4ad86bf2006-12-03 19:19:26 -08003006 if (validate_tmpl(nr, ut, p->sel.family))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 return NULL;
3008
Herbert Xua4f1bac2005-07-26 15:43:17 -07003009 if (p->dir > XFRM_POLICY_OUT)
3010 return NULL;
3011
Herbert Xu2f09a4d2010-08-14 22:38:09 -07003012 xp = xfrm_policy_alloc(net, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 if (xp == NULL) {
3014 *dir = -ENOBUFS;
3015 return NULL;
3016 }
3017
3018 copy_from_user_policy(xp, p);
Masahide NAKAMURAf7b69832006-08-23 22:49:28 -07003019 xp->type = XFRM_POLICY_TYPE_MAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 copy_templates(xp, ut, nr);
3021
3022 *dir = p->dir;
3023
3024 return xp;
3025}
3026
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003027static inline unsigned int xfrm_polexpire_msgsize(struct xfrm_policy *xp)
Thomas Graf7deb2262007-08-22 13:57:39 -07003028{
3029 return NLMSG_ALIGN(sizeof(struct xfrm_user_polexpire))
3030 + nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr)
3031 + nla_total_size(xfrm_user_sec_ctx_size(xp->security))
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003032 + nla_total_size(sizeof(struct xfrm_mark))
Thomas Graf7deb2262007-08-22 13:57:39 -07003033 + userpolicy_type_attrsize();
3034}
3035
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036static int build_polexpire(struct sk_buff *skb, struct xfrm_policy *xp,
David S. Miller214e0052011-02-24 00:02:38 -05003037 int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038{
3039 struct xfrm_user_polexpire *upe;
Jamal Hadi Salimd51d0812006-03-20 19:16:12 -08003040 int hard = c->data.hard;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003041 struct nlmsghdr *nlh;
3042 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043
Eric W. Biederman15e47302012-09-07 20:12:54 +00003044 nlh = nlmsg_put(skb, c->portid, 0, XFRM_MSG_POLEXPIRE, sizeof(*upe), 0);
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003045 if (nlh == NULL)
3046 return -EMSGSIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
Thomas Graf7b67c852007-08-22 13:53:52 -07003048 upe = nlmsg_data(nlh);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 copy_to_user_policy(xp, &upe->pol, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003050 err = copy_to_user_tmpl(xp, skb);
3051 if (!err)
3052 err = copy_to_user_sec_ctx(xp, skb);
3053 if (!err)
3054 err = copy_to_user_policy_type(xp->type, skb);
3055 if (!err)
3056 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02003057 if (!err)
3058 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003059 if (err) {
3060 nlmsg_cancel(skb, nlh);
3061 return err;
3062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 upe->hard = !!hard;
3064
Johannes Berg053c0952015-01-16 22:09:00 +01003065 nlmsg_end(skb, nlh);
3066 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067}
3068
David S. Miller214e0052011-02-24 00:02:38 -05003069static int xfrm_exp_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070{
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003071 struct net *net = xp_net(xp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003073 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003074
Thomas Graf7deb2262007-08-22 13:57:39 -07003075 skb = nlmsg_new(xfrm_polexpire_msgsize(xp), GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 if (skb == NULL)
3077 return -ENOMEM;
3078
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003079 err = build_polexpire(skb, xp, dir, c);
3080 BUG_ON(err < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081
Michal Kubecek21ee5432014-06-03 10:26:06 +02003082 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_EXPIRE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083}
3084
David S. Miller214e0052011-02-24 00:02:38 -05003085static int xfrm_notify_policy(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003086{
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003087 unsigned int len = nla_total_size(sizeof(struct xfrm_user_tmpl) * xp->xfrm_nr);
Alexey Dobriyanfc34acd2008-11-25 17:50:08 -08003088 struct net *net = xp_net(xp);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003089 struct xfrm_userpolicy_info *p;
Herbert Xu0603eac2005-06-18 22:54:36 -07003090 struct xfrm_userpolicy_id *id;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003091 struct nlmsghdr *nlh;
3092 struct sk_buff *skb;
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003093 unsigned int headlen;
3094 int err;
Herbert Xu0603eac2005-06-18 22:54:36 -07003095
3096 headlen = sizeof(*p);
3097 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Graf7deb2262007-08-22 13:57:39 -07003098 len += nla_total_size(headlen);
Herbert Xu0603eac2005-06-18 22:54:36 -07003099 headlen = sizeof(*id);
3100 }
Thomas Grafcfbfd452007-08-22 13:57:04 -07003101 len += userpolicy_type_attrsize();
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003102 len += nla_total_size(sizeof(struct xfrm_mark));
Thomas Graf7deb2262007-08-22 13:57:39 -07003103 len += NLMSG_ALIGN(headlen);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003104
Thomas Graf7deb2262007-08-22 13:57:39 -07003105 skb = nlmsg_new(len, GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003106 if (skb == NULL)
3107 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003108
Eric W. Biederman15e47302012-09-07 20:12:54 +00003109 nlh = nlmsg_put(skb, c->portid, c->seq, c->event, headlen, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003110 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003111 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003112 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003113
Thomas Graf7b67c852007-08-22 13:53:52 -07003114 p = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003115 if (c->event == XFRM_MSG_DELPOLICY) {
Thomas Grafc0144be2007-08-22 13:55:43 -07003116 struct nlattr *attr;
3117
Thomas Graf7b67c852007-08-22 13:53:52 -07003118 id = nlmsg_data(nlh);
Herbert Xu0603eac2005-06-18 22:54:36 -07003119 memset(id, 0, sizeof(*id));
3120 id->dir = dir;
3121 if (c->data.byid)
3122 id->index = xp->index;
3123 else
3124 memcpy(&id->sel, &xp->selector, sizeof(id->sel));
3125
Thomas Grafc0144be2007-08-22 13:55:43 -07003126 attr = nla_reserve(skb, XFRMA_POLICY, sizeof(*p));
David S. Miller1d1e34d2012-06-27 21:57:03 -07003127 err = -EMSGSIZE;
Thomas Grafc0144be2007-08-22 13:55:43 -07003128 if (attr == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003129 goto out_free_skb;
Thomas Grafc0144be2007-08-22 13:55:43 -07003130
3131 p = nla_data(attr);
Herbert Xu0603eac2005-06-18 22:54:36 -07003132 }
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003133
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003134 copy_to_user_policy(xp, p, dir);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003135 err = copy_to_user_tmpl(xp, skb);
3136 if (!err)
3137 err = copy_to_user_policy_type(xp->type, skb);
3138 if (!err)
3139 err = xfrm_mark_put(skb, &xp->mark);
Steffen Klassert7e652642018-06-12 14:07:07 +02003140 if (!err)
3141 err = xfrm_if_id_put(skb, xp->if_id);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003142 if (err)
3143 goto out_free_skb;
Jamal Hadi Salim295fae52010-02-22 11:33:00 +00003144
Thomas Graf98250692007-08-22 12:47:26 -07003145 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003146
Michal Kubecek21ee5432014-06-03 10:26:06 +02003147 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003148
David S. Miller1d1e34d2012-06-27 21:57:03 -07003149out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003150 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003151 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003152}
3153
David S. Miller214e0052011-02-24 00:02:38 -05003154static int xfrm_notify_policy_flush(const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003155{
Alexey Dobriyan70678022008-11-25 17:50:36 -08003156 struct net *net = c->net;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003157 struct nlmsghdr *nlh;
3158 struct sk_buff *skb;
David S. Miller1d1e34d2012-06-27 21:57:03 -07003159 int err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003160
Thomas Graf7deb2262007-08-22 13:57:39 -07003161 skb = nlmsg_new(userpolicy_type_attrsize(), GFP_ATOMIC);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003162 if (skb == NULL)
3163 return -ENOMEM;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003164
Eric W. Biederman15e47302012-09-07 20:12:54 +00003165 nlh = nlmsg_put(skb, c->portid, c->seq, XFRM_MSG_FLUSHPOLICY, 0, 0);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003166 err = -EMSGSIZE;
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003167 if (nlh == NULL)
David S. Miller1d1e34d2012-06-27 21:57:03 -07003168 goto out_free_skb;
3169 err = copy_to_user_policy_type(c->data.type, skb);
3170 if (err)
3171 goto out_free_skb;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003172
Thomas Graf98250692007-08-22 12:47:26 -07003173 nlmsg_end(skb, nlh);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003174
Michal Kubecek21ee5432014-06-03 10:26:06 +02003175 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_POLICY);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003176
David S. Miller1d1e34d2012-06-27 21:57:03 -07003177out_free_skb:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003178 kfree_skb(skb);
David S. Miller1d1e34d2012-06-27 21:57:03 -07003179 return err;
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003180}
3181
David S. Miller214e0052011-02-24 00:02:38 -05003182static int xfrm_send_policy_notify(struct xfrm_policy *xp, int dir, const struct km_event *c)
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003183{
3184
3185 switch (c->event) {
Herbert Xuf60f6b82005-06-18 22:44:37 -07003186 case XFRM_MSG_NEWPOLICY:
3187 case XFRM_MSG_UPDPOLICY:
3188 case XFRM_MSG_DELPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003189 return xfrm_notify_policy(xp, dir, c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003190 case XFRM_MSG_FLUSHPOLICY:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003191 return xfrm_notify_policy_flush(c);
Herbert Xuf60f6b82005-06-18 22:44:37 -07003192 case XFRM_MSG_POLEXPIRE:
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003193 return xfrm_exp_policy_notify(xp, dir, c);
3194 default:
stephen hemminger62db5cf2010-05-12 06:37:06 +00003195 printk(KERN_NOTICE "xfrm_user: Unknown Policy event %d\n",
3196 c->event);
Jamal Hadi Salim26b15da2005-06-18 22:42:13 -07003197 }
3198
3199 return 0;
3200
3201}
3202
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003203static inline unsigned int xfrm_report_msgsize(void)
Thomas Graf7deb2262007-08-22 13:57:39 -07003204{
3205 return NLMSG_ALIGN(sizeof(struct xfrm_user_report));
3206}
3207
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003208static int build_report(struct sk_buff *skb, u8 proto,
3209 struct xfrm_selector *sel, xfrm_address_t *addr)
3210{
3211 struct xfrm_user_report *ur;
3212 struct nlmsghdr *nlh;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003213
Thomas Graf79b8b7f2007-08-22 12:46:53 -07003214 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_REPORT, sizeof(*ur), 0);
3215 if (nlh == NULL)
3216 return -EMSGSIZE;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003217
Thomas Graf7b67c852007-08-22 13:53:52 -07003218 ur = nlmsg_data(nlh);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003219 ur->proto = proto;
3220 memcpy(&ur->sel, sel, sizeof(ur->sel));
3221
David S. Miller1d1e34d2012-06-27 21:57:03 -07003222 if (addr) {
3223 int err = nla_put(skb, XFRMA_COADDR, sizeof(*addr), addr);
3224 if (err) {
3225 nlmsg_cancel(skb, nlh);
3226 return err;
3227 }
3228 }
Johannes Berg053c0952015-01-16 22:09:00 +01003229 nlmsg_end(skb, nlh);
3230 return 0;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003231}
3232
Alexey Dobriyandb983c12008-11-25 17:51:01 -08003233static int xfrm_send_report(struct net *net, u8 proto,
3234 struct xfrm_selector *sel, xfrm_address_t *addr)
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003235{
3236 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003237 int err;
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003238
Thomas Graf7deb2262007-08-22 13:57:39 -07003239 skb = nlmsg_new(xfrm_report_msgsize(), GFP_ATOMIC);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003240 if (skb == NULL)
3241 return -ENOMEM;
3242
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003243 err = build_report(skb, proto, sel, addr);
3244 BUG_ON(err < 0);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003245
Michal Kubecek21ee5432014-06-03 10:26:06 +02003246 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_REPORT);
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003247}
3248
Alexey Dobriyana1b831f2017-09-21 23:48:54 +03003249static inline unsigned int xfrm_mapping_msgsize(void)
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003250{
3251 return NLMSG_ALIGN(sizeof(struct xfrm_user_mapping));
3252}
3253
3254static int build_mapping(struct sk_buff *skb, struct xfrm_state *x,
3255 xfrm_address_t *new_saddr, __be16 new_sport)
3256{
3257 struct xfrm_user_mapping *um;
3258 struct nlmsghdr *nlh;
3259
3260 nlh = nlmsg_put(skb, 0, 0, XFRM_MSG_MAPPING, sizeof(*um), 0);
3261 if (nlh == NULL)
3262 return -EMSGSIZE;
3263
3264 um = nlmsg_data(nlh);
3265
3266 memcpy(&um->id.daddr, &x->id.daddr, sizeof(um->id.daddr));
3267 um->id.spi = x->id.spi;
3268 um->id.family = x->props.family;
3269 um->id.proto = x->id.proto;
3270 memcpy(&um->new_saddr, new_saddr, sizeof(um->new_saddr));
3271 memcpy(&um->old_saddr, &x->props.saddr, sizeof(um->old_saddr));
3272 um->new_sport = new_sport;
3273 um->old_sport = x->encap->encap_sport;
3274 um->reqid = x->props.reqid;
3275
Johannes Berg053c0952015-01-16 22:09:00 +01003276 nlmsg_end(skb, nlh);
3277 return 0;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003278}
3279
3280static int xfrm_send_mapping(struct xfrm_state *x, xfrm_address_t *ipaddr,
3281 __be16 sport)
3282{
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003283 struct net *net = xs_net(x);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003284 struct sk_buff *skb;
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003285 int err;
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003286
3287 if (x->id.proto != IPPROTO_ESP)
3288 return -EINVAL;
3289
3290 if (!x->encap)
3291 return -EINVAL;
3292
3293 skb = nlmsg_new(xfrm_mapping_msgsize(), GFP_ATOMIC);
3294 if (skb == NULL)
3295 return -ENOMEM;
3296
Gustavo A. R. Silva2fc5f832017-10-26 06:31:35 -05003297 err = build_mapping(skb, x, ipaddr, sport);
3298 BUG_ON(err < 0);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003299
Michal Kubecek21ee5432014-06-03 10:26:06 +02003300 return xfrm_nlmsg_multicast(net, skb, 0, XFRMNLGRP_MAPPING);
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003301}
3302
Horia Geanta0f245582014-02-12 16:20:06 +02003303static bool xfrm_is_alive(const struct km_event *c)
3304{
3305 return (bool)xfrm_acquire_is_on(c->net);
3306}
3307
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308static struct xfrm_mgr netlink_mgr = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 .notify = xfrm_send_state_notify,
3310 .acquire = xfrm_send_acquire,
3311 .compile_policy = xfrm_compile_policy,
3312 .notify_policy = xfrm_send_policy_notify,
Masahide NAKAMURA97a64b42006-08-23 20:44:06 -07003313 .report = xfrm_send_report,
Shinta Sugimoto5c79de62007-02-08 13:12:32 -08003314 .migrate = xfrm_send_migrate,
Martin Willi3a2dfbe2008-10-28 16:01:07 -07003315 .new_mapping = xfrm_send_mapping,
Horia Geanta0f245582014-02-12 16:20:06 +02003316 .is_alive = xfrm_is_alive,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317};
3318
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003319static int __net_init xfrm_user_net_init(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320{
Patrick McHardybe336902006-03-20 22:40:54 -08003321 struct sock *nlsk;
Pablo Neira Ayusoa31f2d12012-06-29 06:15:21 +00003322 struct netlink_kernel_cfg cfg = {
3323 .groups = XFRMNLGRP_MAX,
3324 .input = xfrm_netlink_rcv,
3325 };
Patrick McHardybe336902006-03-20 22:40:54 -08003326
Pablo Neira Ayuso9f00d972012-09-08 02:53:54 +00003327 nlsk = netlink_kernel_create(net, NETLINK_XFRM, &cfg);
Patrick McHardybe336902006-03-20 22:40:54 -08003328 if (nlsk == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 return -ENOMEM;
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003330 net->xfrm.nlsk_stash = nlsk; /* Don't set to NULL */
Eric Dumazetcf778b02012-01-12 04:41:32 +00003331 rcu_assign_pointer(net->xfrm.nlsk, nlsk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 return 0;
3333}
3334
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003335static void __net_exit xfrm_user_net_exit(struct list_head *net_exit_list)
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003336{
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003337 struct net *net;
3338 list_for_each_entry(net, net_exit_list, exit_list)
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003339 RCU_INIT_POINTER(net->xfrm.nlsk, NULL);
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003340 synchronize_net();
3341 list_for_each_entry(net, net_exit_list, exit_list)
3342 netlink_kernel_release(net->xfrm.nlsk_stash);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003343}
3344
3345static struct pernet_operations xfrm_user_net_ops = {
Eric W. Biedermand79d7922009-12-03 02:29:05 +00003346 .init = xfrm_user_net_init,
3347 .exit_batch = xfrm_user_net_exit,
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003348};
3349
3350static int __init xfrm_user_init(void)
3351{
3352 int rv;
3353
3354 printk(KERN_INFO "Initializing XFRM netlink socket\n");
3355
3356 rv = register_pernet_subsys(&xfrm_user_net_ops);
3357 if (rv < 0)
3358 return rv;
3359 rv = xfrm_register_km(&netlink_mgr);
3360 if (rv < 0)
3361 unregister_pernet_subsys(&xfrm_user_net_ops);
3362 return rv;
3363}
3364
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365static void __exit xfrm_user_exit(void)
3366{
3367 xfrm_unregister_km(&netlink_mgr);
Alexey Dobriyana6483b72008-11-25 17:38:20 -08003368 unregister_pernet_subsys(&xfrm_user_net_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369}
3370
3371module_init(xfrm_user_init);
3372module_exit(xfrm_user_exit);
3373MODULE_LICENSE("GPL");
Harald Welte4fdb3bb2005-08-09 19:40:55 -07003374MODULE_ALIAS_NET_PF_PROTO(PF_NETLINK, NETLINK_XFRM);